:root {
  --ink: #101820;
  --ink-soft: #23313d;
  --paper: #f7f5f0;
  --surface: #ffffff;
  --surface-alt: #eef0ec;
  --gold: #f4b83f;
  --gold-deep: #d99a1c;
  --line: #dce1df;
  --muted: #66727b;
  --success: #18794e;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(16, 24, 32, .08);
  --shadow-lg: 0 24px 70px rgba(16, 24, 32, .16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Arial Narrow", "Roboto Condensed", ui-sans-serif, sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p:last-child { margin-bottom: 0; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(76px, 10vw, 132px) 0; position: relative; }
.section-compact { padding: clamp(56px, 7vw, 88px) 0; }
.section-dark { color: #fff; background: var(--ink); }
.section-surface { background: var(--surface); }
.section-alt { background: var(--surface-alt); }
.section-grid {
  background-color: var(--paper);
  background-image: linear-gradient(rgba(16,24,32,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(16,24,32,.045) 1px, transparent 1px);
  background-size: 36px 36px;
}
.section-header { max-width: 760px; margin-bottom: 48px; }
.section-header.center { text-align: center; margin-inline: auto; }
.section-header p { color: var(--muted); font-size: 1.1rem; }
.section-dark .section-header p { color: rgba(255,255,255,.67); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #94630a;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.eyebrow-light { color: #ffd980; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); max-width: 720px; }
.kicker { color: var(--gold-deep); font-weight: 800; }
.muted { color: var(--muted); }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #1473e6; outline-offset: 3px; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); box-shadow: 0 9px 25px rgba(244,184,63,.22); }
.button-primary:hover { background: #ffc95d; box-shadow: 0 14px 34px rgba(244,184,63,.3); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: #25323d; }
.button-light { background: #fff; color: var(--ink); }
.button-outline { color: var(--ink); border-color: rgba(16,24,32,.24); background: transparent; }
.button-outline:hover { border-color: var(--ink); background: #fff; }
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.45); }
.button-outline-light:hover { background: #fff; color: var(--ink); }
.button-wide { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #815306; font-weight: 850; }
.text-link:hover { color: var(--ink); }

.utility-bar { background: var(--ink); color: rgba(255,255,255,.78); font-size: .79rem; }
.utility-inner { min-height: 35px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-inner p { margin: 0; }
.utility-links { display: flex; align-items: center; gap: 22px; }
.utility-links a:hover { color: #fff; }
.site-header { position: sticky; top: 0; z-index: 1000; transition: box-shadow .25s ease; }
.site-header.is-scrolled .nav-shell { box-shadow: 0 10px 26px rgba(16,24,32,.09); }
.nav-shell { background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(16,24,32,.08); }
.nav-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 232px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 26px; font-size: .85rem; font-weight: 800; }
.primary-nav > a:not(.button), .nav-group-toggle { position: relative; padding: 29px 0; }
.primary-nav > a:not(.button)::after, .nav-group-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--gold);
  transition: right .2s ease;
}
.primary-nav > a:hover::after, .primary-nav > a.is-active::after, .nav-group:hover .nav-group-toggle::after { right: 0; }
.nav-group { position: relative; }
.nav-group-toggle { display: flex; align-items: center; gap: 6px; border: 0; background: transparent; cursor: pointer; font-weight: 800; }
.nav-dropdown {
  position: absolute;
  top: calc(100% - 10px);
  left: -24px;
  display: grid;
  width: 270px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.nav-dropdown a { padding: 11px 12px; border-radius: 8px; color: var(--ink-soft); }
.nav-dropdown a:hover { background: var(--paper); color: var(--ink); }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 10px; background: var(--ink); }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: #fff; transition: .2s ease; }

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 113px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -100px;
  top: 50%;
  border: 1px solid rgba(244,184,63,.45);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 70px rgba(244,184,63,.04), 0 0 0 140px rgba(244,184,63,.025);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(40px, 7vw, 96px); padding: 74px 0; }
.hero-copy { max-width: 700px; }
.hero h1 { max-width: 820px; margin-bottom: 24px; }
.hero h1 span { color: var(--gold); }
.hero-copy > p { max-width: 650px; color: rgba(255,255,255,.75); font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 32px 0; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; padding: 0; margin: 0; list-style: none; color: rgba(255,255,255,.78); font-size: .86rem; font-weight: 720; }
.hero-trust li { display: flex; align-items: center; gap: 7px; }
.hero-trust li::before { content: "✓"; color: var(--gold); font-weight: 900; }
.blueprint-stage { position: relative; min-height: 520px; display: grid; place-items: center; }
.blueprint-frame {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: var(--shadow-lg);
}
.blueprint-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(244,184,63,.86) 0 2px, transparent 2px) 62% 0 / 100% 100% no-repeat;
  animation: scan-plan 6s ease-in-out infinite alternate;
}
.blueprint-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .76; filter: saturate(.72) contrast(1.06); }
.blueprint-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 28px 28px;
  mix-blend-mode: screen;
}
.blueprint-label { position: absolute; z-index: 3; left: 22px; bottom: 22px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(16,24,32,.8); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.floating-note { position: absolute; z-index: 4; padding: 12px 16px; border-radius: 12px; background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); font-size: .78rem; font-weight: 850; }
.floating-note.note-1 { top: 12%; right: -7%; }
.floating-note.note-2 { bottom: 12%; left: -9%; }
@keyframes scan-plan { 0% { background-position-x: 18%; } 100% { background-position-x: 82%; } }

.proof-strip { position: relative; z-index: 5; margin-top: -28px; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border-radius: 18px; background: #fff; box-shadow: var(--shadow-lg); }
.proof-item { padding: 26px 30px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; margin-bottom: 4px; font-family: "Arial Narrow", sans-serif; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1; }
.proof-item span { color: var(--muted); font-size: .82rem; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card, .service-card, .content-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(16,24,32,.02);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover, .service-card:hover, .content-card:hover { transform: translateY(-6px); border-color: #c5ccd0; box-shadow: var(--shadow-sm); }
.card-number { display: inline-grid; width: 46px; height: 46px; place-items: center; margin-bottom: 45px; border-radius: 50%; background: var(--paper); color: #8a5a05; font-weight: 900; }
.value-card h3, .service-card h3 { margin-bottom: 12px; }
.value-card p, .service-card p { color: var(--muted); }

.journey-wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.journey-intro { position: sticky; top: 130px; }
.journey-list { display: grid; gap: 16px; counter-reset: journey; }
.journey-step { display: grid; grid-template-columns: auto 1fr; gap: 22px; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.045); }
.journey-step::before { counter-increment: journey; content: "0" counter(journey); display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); font-weight: 900; }
.journey-step h3 { margin: 3px 0 8px; }
.journey-step p { color: rgba(255,255,255,.64); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 100px); align-items: center; }
.media-frame { position: relative; overflow: hidden; min-height: 520px; border-radius: var(--radius-lg); background: var(--ink); box-shadow: var(--shadow-lg); }
.media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(16,24,32,.3), transparent 55%); }
.media-badge { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; padding: 18px 20px; border-radius: 13px; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); }
.media-badge strong { display: block; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 28px 0 34px; list-style: none; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; }
.check-list li::before { content: "✓"; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: #fff0c9; color: #825204; font-size: .78rem; font-weight: 900; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { display: flex; min-height: 310px; flex-direction: column; }
.service-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gold); transform: scaleX(.22); transform-origin: left; transition: transform .25s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 62px; height: 62px; margin-bottom: 34px; display: grid; place-items: center; border-radius: 16px; background: var(--paper); color: #8b5b05; font-size: 1.5rem; font-weight: 900; }
.service-card .text-link { margin-top: auto; }

.project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.project-card { position: relative; grid-column: span 4; min-height: 440px; overflow: hidden; border-radius: 20px; color: #fff; background: var(--ink); }
.project-card.wide { grid-column: span 8; }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover img { transform: scale(1.035); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,13,18,.88), rgba(7,13,18,.04) 70%); }
.project-card-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 28px; }
.project-card-content span { display: block; margin-bottom: 8px; color: #ffd77e; font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.project-card-content h3 { margin-bottom: 0; }

.calculator-shell { display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; border-radius: 26px; background: #fff; box-shadow: var(--shadow-lg); }
.calculator-form { padding: clamp(30px, 6vw, 66px); }
.calculator-result { padding: clamp(30px, 6vw, 66px); color: #fff; background: var(--ink); }
.range-row { margin-bottom: 28px; }
.range-row-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 10px; font-weight: 800; }
input[type="range"] { width: 100%; accent-color: var(--gold-deep); }
.quality-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 24px; }
.quality-option { position: relative; }
.quality-option input { position: absolute; opacity: 0; }
.quality-option label { display: block; padding: 14px 10px; border: 1px solid var(--line); border-radius: 10px; text-align: center; cursor: pointer; font-size: .83rem; font-weight: 850; }
.quality-option input:checked + label { border-color: var(--gold-deep); background: #fff6df; box-shadow: 0 0 0 1px var(--gold-deep); }
.estimate-amount { margin: 24px 0 6px; color: var(--gold); font-family: "Arial Narrow", sans-serif; font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.estimate-note { color: rgba(255,255,255,.6); font-size: .78rem; }
.estimate-breakdown { display: grid; gap: 12px; margin: 28px 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); }
.estimate-breakdown div { display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.72); }

.testimonial-card { padding: clamp(28px, 4vw, 48px); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.quote-mark { color: var(--gold); font-family: Georgia, serif; font-size: 4rem; line-height: .65; }
.testimonial-card blockquote { margin: 20px 0 24px; font-size: 1.08rem; }
.testimonial-card cite { color: var(--muted); font-style: normal; font-weight: 800; }
.review-note { padding: 22px; border-left: 4px solid var(--gold); background: #fff8e7; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.article-card-image { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-alt); }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.article-card:hover .article-card-image img { transform: scale(1.04); }
.article-card-body { padding: 24px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; color: #8c5c06; font-size: .73rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.article-card h3 a:hover { color: #8c5c06; }

.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; cursor: pointer; list-style: none; font-weight: 850; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--paper); font-size: 1.2rem; }
.faq-item[open] summary::after { content: "−"; background: var(--gold); }
.faq-answer { padding: 0 24px 24px; color: var(--muted); }

.page-hero { position: relative; overflow: hidden; padding: clamp(74px, 10vw, 130px) 0; color: #fff; background: var(--ink); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 42px 42px; }
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; }
.page-hero h1 { max-width: 850px; margin-bottom: 20px; font-size: clamp(2.7rem, 6vw, 5.4rem); }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.72); font-size: 1.16rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: rgba(255,255,255,.58); font-size: .78rem; font-weight: 750; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span::before { content: "/"; margin-right: 8px; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 58px; align-items: start; }
.rich-content { color: #374650; font-size: 1.05rem; }
.rich-content h2, .rich-content h3, .rich-content h4 { margin-top: 1.7em; color: var(--ink); }
.rich-content h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
.rich-content img { height: auto !important; border-radius: 16px; }
.rich-content a { color: #8a5804; text-decoration: underline; text-underline-offset: 3px; }
.rich-content ul, .rich-content ol { padding-left: 1.2rem; }
.sidebar-card { position: sticky; top: 135px; padding: 28px; border-radius: 18px; color: #fff; background: var(--ink); }
.sidebar-card h2 { font-size: 1.75rem; }
.sidebar-card p { color: rgba(255,255,255,.68); }
.sidebar-links { display: grid; gap: 9px; margin: 25px 0; padding: 0; list-style: none; }
.sidebar-links a { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.sidebar-links a:hover { color: var(--gold); }

.lead-panel { padding: clamp(28px, 5vw, 54px); border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.lead-form { position: relative; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink-soft); font-size: .8rem; font-weight: 850; }
.field label span { color: var(--danger); }
.field label small { color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #cbd2d5;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input, .field select { min-height: 52px; padding: 0 14px; }
.field textarea { min-height: 110px; padding: 13px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(244,184,63,.22); }
.form-note { margin-top: 10px; color: var(--muted); text-align: center; font-size: .72rem; }
.honeypot { position: absolute; left: -9999px; }
.alert { margin-bottom: 22px; padding: 15px 18px; border-radius: 10px; font-weight: 700; }
.alert-success { color: #0d5e3c; border: 1px solid #a6d8c1; background: #ebfaf3; }
.alert-error { color: #8f2117; border: 1px solid #e5b2ad; background: #fff0ee; }
.error-list { margin: 0; padding-left: 20px; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; align-items: start; }
.contact-details { display: grid; gap: 16px; }
.contact-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.contact-card span { display: block; margin-bottom: 8px; color: #8d5c05; font-size: .75rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.map-frame { overflow: hidden; height: 420px; margin-top: 28px; border-radius: 20px; background: #ddd; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spec-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.spec-card-image { width: 64px; height: 64px; overflow: hidden; margin-bottom: 20px; border-radius: 14px; background: var(--paper); }
.spec-card-image img { width: 100%; height: 100%; object-fit: cover; }
.spec-card h3 { font-size: 1.25rem; }
.spec-card p { color: var(--muted); font-size: .9rem; }

.final-cta { padding: clamp(52px, 7vw, 80px) 0; color: #fff; background: #9d6810; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.final-cta h2 { max-width: 710px; margin-bottom: 12px; font-size: clamp(2rem, 4vw, 3.2rem); }
.final-cta p { max-width: 700px; color: rgba(255,255,255,.75); }
.final-cta-actions { display: flex; flex-wrap: wrap; flex: 0 0 auto; gap: 12px; }
.site-footer { padding: 72px 0 25px; color: rgba(255,255,255,.68); background: #0a1117; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; }
.brand-footer img { filter: brightness(0) invert(1); }
.footer-brand p { max-width: 370px; margin: 24px 0; }
.footer-title { margin-bottom: 22px; color: #fff; font-size: 1rem; letter-spacing: .02em; }
.footer-links { display: grid; gap: 10px; padding: 0; list-style: none; }
.footer-links a:hover, .site-footer address + p a:hover { color: #fff; }
.site-footer address { font-style: normal; }
.social-links { display: flex; gap: 9px; }
.social-links a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; font-size: .7rem; font-weight: 900; }
.social-links a:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 18px; }
.mobile-action-bar { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .primary-nav { gap: 16px; font-size: .78rem; }
  .brand img { width: 195px; }
  .nav-cta { padding-inline: 16px; }
  .hero-inner { grid-template-columns: 1fr .82fr; gap: 38px; }
  .blueprint-stage { min-height: 450px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}

@media (max-width: 900px) {
  .utility-bar { display: none; }
  .site-header { top: 0; }
  .nav-inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    z-index: 999;
    top: 72px;
    right: 0;
    bottom: 0;
    width: min(88vw, 390px);
    display: block;
    padding: 22px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -20px 30px 50px rgba(16,24,32,.2);
    transform: translateX(105%);
    transition: transform .25s ease;
  }
  .primary-nav.is-open { transform: none; }
  .primary-nav > a:not(.button), .nav-group-toggle { width: 100%; display: flex; justify-content: space-between; padding: 14px 6px; border-bottom: 1px solid var(--line); }
  .primary-nav > a::after, .nav-group-toggle::after { display: none; }
  .nav-group-toggle { font-size: .85rem; }
  .nav-dropdown { position: static; width: 100%; max-height: 0; padding: 0 8px; overflow: hidden; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: max-height .25s ease; }
  .nav-group.is-open .nav-dropdown { max-height: 330px; padding-block: 8px; }
  .nav-cta { width: 100%; margin-top: 20px; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding: 72px 0 100px; }
  .hero-copy { max-width: 780px; }
  .blueprint-stage { min-height: 520px; }
  .blueprint-frame { max-width: 500px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .value-grid, .services-grid, .blog-grid, .package-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-wrap { grid-template-columns: 1fr; gap: 40px; }
  .journey-intro { position: static; }
  .split { grid-template-columns: 1fr; }
  .media-frame { min-height: 460px; }
  .calculator-shell { grid-template-columns: 1fr; }
  .project-card, .project-card.wide { grid-column: span 6; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > :last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --radius-lg: 22px; }
  body { padding-bottom: 63px; }
  .container, .narrow { width: min(100% - 28px, var(--container)); }
  .brand img { width: 174px; }
  .nav-inner { min-height: 68px; }
  .primary-nav { top: 68px; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .section { padding: 72px 0; }
  .hero-inner { padding: 60px 0 72px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 11px 16px; }
  .blueprint-stage { min-height: 420px; }
  .blueprint-frame { width: calc(100% - 18px); }
  .floating-note { font-size: .7rem; }
  .floating-note.note-1 { right: -1%; }
  .floating-note.note-2 { left: -1%; }
  .proof-strip { margin-top: -20px; }
  .proof-item { padding: 20px 16px; }
  .proof-item strong { font-size: 1.65rem; }
  .value-grid, .services-grid, .blog-grid, .package-grid { grid-template-columns: 1fr; }
  .value-card, .service-card, .content-card { padding: 25px; }
  .service-card { min-height: 280px; }
  .journey-step { grid-template-columns: 40px 1fr; gap: 14px; padding: 19px; }
  .journey-step::before { width: 40px; height: 40px; }
  .media-frame { min-height: 390px; }
  .project-card, .project-card.wide { grid-column: 1 / -1; min-height: 390px; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .quality-options { grid-template-columns: 1fr; }
  .lead-panel { padding: 24px 18px; }
  .page-hero { padding: 70px 0; }
  .page-hero h1 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .final-cta-actions { width: 100%; flex-direction: column; }
  .final-cta-actions .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-action-bar {
    position: fixed;
    z-index: 1200;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 63px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255,255,255,.12);
    background: var(--ink);
    color: #fff;
    box-shadow: 0 -10px 25px rgba(16,24,32,.18);
  }
  .mobile-action-bar a { display: grid; place-items: center; gap: 0; padding: 8px 4px; border-right: 1px solid rgba(255,255,255,.12); font-size: .71rem; font-weight: 800; }
  .mobile-action-bar a:last-child { border-right: 0; background: var(--gold); color: var(--ink); }
  .mobile-action-bar span { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .final-cta, .mobile-action-bar, .button { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .page-hero { padding: 25px 0; color: #000; background: #fff; }
}
