﻿:root {
  --bg: #fbf7ef;
  --paper: #fffdf9;
  --muted: #f3ede3;
  --ink: #211d19;
  --soft-ink: #5e564c;
  --line: #ded3c3;
  --accent: #3a332c;
  --accent-hover: #211d19;
  --gold: #9b7d5d;
  --shadow: 0 22px 70px rgba(39, 32, 25, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  scroll-padding-bottom: 120px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(155, 125, 93, 0.55);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 18px clamp(18px, 5vw, 54px);
  background: rgba(251, 247, 239, 0.93);
  border-bottom: 1px solid rgba(222, 211, 195, 0.8);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  gap: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}

.logo span {
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.logo small {
  align-self: center;
  color: var(--soft-ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.site-nav,
.header-contact {
  display: none;
}

.site-nav {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 12px 0;
  color: var(--soft-ink);
  font-weight: 650;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding: 54px 0;
}

.hero {
  position: relative;
  display: grid;
  gap: 34px;
  min-height: calc(100svh - 82px);
  align-items: center;
  padding-top: 42px;
}

.hero::before {
  position: absolute;
  inset: 18px -10px auto auto;
  z-index: -1;
  width: min(620px, 80vw);
  height: min(420px, 56vw);
  content: "";
  background-image:
    linear-gradient(rgba(214, 202, 186, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 202, 186, 0.5) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, #000 0 45%, transparent 76%);
  opacity: 0.65;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.07;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 10vw, 4.6rem);
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(1.85rem, 6vw, 3rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  margin-bottom: 26px;
  color: var(--soft-ink);
  font-size: clamp(1rem, 3.8vw, 1.15rem);
}

.hero-actions {
  display: grid;
  gap: 12px;
  max-width: 430px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fffaf2;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  border-color: #cdbda9;
  color: var(--accent);
}

.quick-note {
  position: relative;
  margin: 18px 0 0;
  padding-left: 28px;
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.quick-note::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  content: "";
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.quick-note::after {
  position: absolute;
  left: 6px;
  top: 7px;
  width: 7px;
  height: 4px;
  content: "";
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.hero-visual {
  position: relative;
  width: min(100%, 660px);
  min-height: clamp(330px, 46vw, 520px);
  margin-inline: auto;
  isolation: isolate;
}

.drawing-sheet {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #fffdf9;
  border: 1px solid #d7cfc2;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(57, 45, 34, 0.14);
}

.drawing-sheet::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  content: "";
  border: 1px solid rgba(160, 149, 134, 0.36);
  pointer-events: none;
}

.drawing-sheet img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(1.04);
}

.drawing-sheet-main {
  z-index: 3;
  right: 3%;
  top: 23%;
  width: 78%;
  aspect-ratio: 16 / 9;
  padding: 10px;
}

.drawing-sheet-left {
  z-index: 1;
  left: 2%;
  top: 9%;
  width: 44%;
  aspect-ratio: 4 / 3;
  padding: 8px;
  opacity: 0.72;
  transform: rotate(-5deg);
}

.drawing-sheet-right {
  z-index: 2;
  right: 0;
  bottom: 4%;
  width: 38%;
  aspect-ratio: 4 / 3;
  padding: 8px;
  opacity: 0.86;
  transform: rotate(4deg);
}

.section-heading {
  display: grid;
  gap: 0;
  margin-bottom: 24px;
}

.cards {
  display: grid;
  gap: 14px;
}

.card {
  display: grid;
  align-content: start;
  min-height: 148px;
  padding: 20px;
  background: rgba(255, 253, 249, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card p {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.card h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.25;
}

.icon {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  place-items: center;
  color: var(--gold);
  border: 1px solid #cdbda9;
  border-radius: 6px;
}

.icon::before,
.icon::after {
  position: absolute;
  content: "";
  border-color: var(--gold);
}

.icon-board::before {
  inset: 9px 10px;
  border: 2px solid var(--gold);
}

.icon-board::after {
  left: 14px;
  right: 14px;
  top: 19px;
  border-top: 2px solid var(--gold);
}

.icon-home::before {
  left: 10px;
  top: 17px;
  width: 18px;
  height: 13px;
  border: 2px solid var(--gold);
  border-top: 0;
}

.icon-home::after {
  left: 10px;
  top: 10px;
  width: 17px;
  height: 17px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  transform: rotate(45deg);
}

.icon-tool::before {
  left: 9px;
  top: 12px;
  width: 22px;
  border-top: 3px solid var(--gold);
}

.icon-tool::after {
  left: 17px;
  top: 10px;
  height: 22px;
  border-left: 3px solid var(--gold);
}

.icon-building::before {
  left: 11px;
  top: 8px;
  width: 18px;
  height: 24px;
  border: 2px solid var(--gold);
}

.icon-building::after {
  left: 16px;
  top: 14px;
  width: 8px;
  height: 13px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.muted {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--muted);
}

.service-card strong {
  margin-top: 22px;
  color: var(--accent);
  font-size: 1.03rem;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  font-weight: 850;
}

.steps p {
  margin: 4px 0 0;
  color: var(--soft-ink);
}

.examples .section-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--soft-ink);
}

.example-grid {
  display: grid;
  gap: 14px;
}

.example-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(39, 32, 25, 0.08);
}

.example-grid img {
  width: 100%;
  aspect-ratio: 13 / 8;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.example-grid figcaption {
  padding: 12px 14px 14px;
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 750;
}

.standard-note {
  max-width: 860px;
  margin: 22px 0 0;
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.cad-link {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0 14px 14px;
  padding: 10px 12px;
  color: var(--accent);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 850;
}

.cad-link:hover {
  border-color: #b9a793;
  background: #fbf7ef;
}

.split {
  display: grid;
  gap: 24px;
}

.benefits {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft-ink);
}

.benefits li::before {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 9px;
  height: 5px;
  content: "";
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  color: var(--gold);
  transform: rotate(-45deg);
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-section {
  display: grid;
  gap: 26px;
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--soft-ink);
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--soft-ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-status {
  padding: 12px 14px;
  background: #f6efe4;
  border: 1px solid #d7c7b5;
  border-radius: 6px;
  color: var(--accent);
  font-weight: 750;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  border: 1px solid #d8ccbd;
  border-radius: 6px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(155, 125, 93, 0.16);
}

.quote-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 34px 18px calc(128px + env(safe-area-inset-bottom));
  color: var(--soft-ink);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(33, 29, 25, 0.22);
  backdrop-filter: blur(16px);
}

.mobile-cta .btn {
  min-height: 50px;
}

.call-btn {
  display: grid;
  min-height: 50px;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 850;
}


@media (max-width: 939px) {
  .hero-visual {
    min-height: clamp(300px, 72vw, 460px);
    width: min(100%, 620px);
  }

  .drawing-sheet-main {
    right: 5%;
    top: 22%;
    width: 82%;
  }

  .drawing-sheet-left {
    left: 0;
    top: 4%;
    width: 46%;
  }

  .drawing-sheet-right {
    right: 1%;
    bottom: 2%;
    width: 40%;
  }
}
@media (min-width: 680px) {
  .hero-actions {
    grid-template-columns: max-content max-content;
  }

  .cards,
  .steps,
  .quote-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .full {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1.2fr repeat(3, auto);
    align-items: center;
    padding-inline: clamp(28px, 5vw, 54px);
  }
}

@media (min-width: 940px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-block: 20px;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    grid-column: auto;
    flex-direction: row;
    justify-content: center;
    gap: clamp(22px, 3vw, 42px);
    padding-top: 0;
    border-top: 0;
  }

  .site-nav a {
    padding: 0;
  }

  .header-contact {
    display: flex;
    gap: 20px;
    color: var(--soft-ink);
    font-size: 0.95rem;
    font-weight: 650;
  }

  .section {
    padding-block: 70px;
  }

  .hero {
    grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1fr);
    gap: clamp(48px, 6vw, 88px);
    min-height: calc(100svh - 89px);
  }

  .hero-content {
    max-width: 620px;
  }

  .hero h1 {
    max-width: 620px;
  }

  .hero-visual {
    margin-inline: 0;
  }

  .audience-grid,
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .example-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .split,
  .contact-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  }

  .quote-form {
    padding: 24px;
  }

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 34px;
  }
}

@media (max-width: 420px) {
  .section {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(2.05rem, 13vw, 2.65rem);
  }

  .card,
  .steps li {
    padding: 16px;
  }
}


