:root {
  color-scheme: light;
  --forest: #063d21;
  --deep: #092517;
  --haven: #1f6f35;
  --leaf: #66b736;
  --new-leaf: #9ad45a;
  --sage: #dfeada;
  --mist: #edf3e9;
  --paper: #fbfaf2;
  --white: #ffffff;
  --ink: #162319;
  --muted: #60705f;
  --earth: #7a5237;
  --soil: #3e2a1e;
  --gold: #d5b75e;
  --stone: #d2d3c9;
  --line: rgba(22, 35, 25, 0.15);
  --shadow: 0 24px 64px rgba(9, 37, 23, 0.16);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(6, 61, 33, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 61, 33, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 56px;
  color: var(--ink);
}
body::selection { background: var(--new-leaf); color: var(--deep); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; letter-spacing: 0; }
h1 { margin-bottom: 22px; font-size: 5.25rem; line-height: 0.95; }
h2 { margin-bottom: 0; font-size: 3rem; line-height: 1.04; }
h3 { margin-bottom: 10px; font-size: 1.22rem; }
p { line-height: 1.68; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 500;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--forest);
  font-weight: 850;
  box-shadow: var(--shadow);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 12px max(22px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid rgba(6, 61, 33, 0.12);
  background: rgba(251, 250, 242, 0.94);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { box-shadow: 0 14px 34px rgba(22, 35, 25, 0.1); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  width: 64px;
  height: 52px;
  object-fit: contain;
  border: 1px solid rgba(6, 61, 33, 0.14);
  border-radius: var(--radius);
  background: var(--white);
}
.brand strong,
.brand small {
  display: block;
  line-height: 1;
}
.brand strong {
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 950;
}
.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.primary-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.primary-nav a,
.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 13px;
  border-radius: var(--radius);
  color: rgba(22, 35, 25, 0.76);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav a.is-active {
  background: var(--sage);
  color: var(--forest);
}
.nav-quote { display: none !important; }
.header-quote {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 12px 26px rgba(122, 82, 55, 0.16);
}
.header-quote.is-active {
  outline: 3px solid rgba(102, 183, 54, 0.28);
  outline-offset: 2px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
}

.hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 29, 17, 0.96), rgba(6, 61, 33, 0.82) 44%, rgba(6, 61, 33, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: center;
  width: min(100% - 44px, var(--max));
  min-height: 78svh;
  margin: 0 auto;
  padding: 76px 0 60px;
}
.hero-copy { max-width: 760px; }
.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}
.eyebrow {
  margin-bottom: 12px;
  color: var(--earth);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.hero .eyebrow,
.feature-band .eyebrow,
.cta-band .eyebrow,
.quote-result .eyebrow {
  color: var(--gold);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}
.button-primary {
  background: var(--leaf);
  color: var(--deep);
  box-shadow: 0 18px 38px rgba(9, 37, 23, 0.26);
}
.button-primary:hover { background: var(--new-leaf); }
.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero-orbit {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(9, 37, 23, 0.62);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.28);
}
.hero-orbit img {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}
.hero-orbit dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 0;
}
.hero-orbit div {
  padding: 12px 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}
.hero-orbit dt {
  color: var(--new-leaf);
  font-size: 1.28rem;
  font-weight: 950;
}
.hero-orbit dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
}

.signal-strip {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 14px max(22px, calc((100% - var(--max)) / 2));
  background: var(--deep);
  color: rgba(255, 255, 255, 0.84);
}
.signal-strip span {
  flex: 1 0 auto;
  min-width: max-content;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-weight: 850;
}

.section {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: 88px 0;
}
#questions,
#transformations { scroll-margin-top: 96px; }
.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.split-intro,
.quote-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: 48px;
  align-items: start;
}
.split-intro p:last-child { margin-bottom: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card,
.price-card,
.gallery-card,
.form-panel,
.quote-result,
.contact-details > *,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(22, 35, 25, 0.08);
}
.service-card,
.price-card,
.form-panel,
.quote-result,
.contact-details > *,
.timeline article {
  padding: 24px;
}
.service-card span,
.price-card span,
.gallery-card span,
.contact-details span,
.timeline span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--sage);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.service-card p,
.price-card p,
.gallery-card p,
.contact-details p,
.timeline p {
  color: rgba(22, 35, 25, 0.68);
}

.feature-band {
  background:
    linear-gradient(135deg, var(--deep), var(--forest) 58%, #244315);
  color: var(--white);
}
.feature-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: center;
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: 94px 0;
}
.feature-inner p:not(.eyebrow) { color: rgba(255, 255, 255, 0.78); }
.season-studio {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}
.season-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.season-tabs button {
  min-height: 52px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}
.season-tabs button:last-child { border-right: 0; }
.season-tabs button.is-active {
  background: var(--gold);
  color: var(--deep);
}
.season-output { padding: 26px; }
.season-output strong {
  display: block;
  margin-bottom: 10px;
  color: var(--new-leaf);
  font-size: 1.35rem;
}
.season-meter {
  height: 12px;
  margin: 22px 0 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}
.season-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--leaf), var(--gold));
  transition: width 240ms ease;
}
.season-output small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.work-teaser { padding-bottom: 94px; }
.image-triptych {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}
.image-triptych a {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--deep);
}
.image-triptych a:first-child { min-height: 460px; }
.image-triptych img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.image-triptych a:hover img { transform: scale(1.035); }
.image-triptych span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: var(--radius);
  background: rgba(251, 250, 242, 0.92);
  color: var(--forest);
  font-weight: 950;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 64px max(22px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(9, 37, 23, 0.96), rgba(31, 111, 53, 0.92)),
    var(--forest);
  color: var(--white);
}
.cta-band h2 {
  max-width: 790px;
  margin-bottom: 0;
}

.page-hero {
  padding: 88px max(22px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(223, 234, 218, 0.98), rgba(251, 250, 242, 0.94) 52%, rgba(213, 183, 94, 0.22)),
    var(--mist);
}
.page-hero h1 {
  max-width: 940px;
  color: var(--forest);
}
.page-hero p:last-child {
  max-width: 760px;
  color: rgba(22, 35, 25, 0.72);
  font-size: 1.08rem;
}
.about-hero,
.quote-hero {
  background:
    linear-gradient(135deg, rgba(237, 243, 233, 0.96), rgba(251, 250, 242, 0.92)),
    var(--mist);
}
.work-hero,
.prices-hero,
.contact-hero {
  background:
    linear-gradient(135deg, rgba(223, 234, 218, 0.96), rgba(251, 250, 242, 0.9) 58%, rgba(122, 82, 55, 0.16)),
    var(--paper);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.timeline article {
  position: relative;
  min-height: 220px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.price-card h2 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}
.price-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
}
.price-card small {
  color: var(--muted);
  font-size: 0.95rem;
}
.price-card.featured {
  background: linear-gradient(145deg, rgba(223, 234, 218, 0.98), rgba(255, 255, 255, 0.9));
  border-color: rgba(102, 183, 54, 0.42);
}
.price-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--forest);
  font-weight: 950;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}
th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
tr:last-child td { border-bottom: 0; }
th {
  background: var(--forest);
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
}

label,
legend {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--forest);
  font-weight: 900;
}
input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(22, 35, 25, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
input[type="range"] {
  padding: 0;
  accent-color: var(--haven);
}
textarea {
  min-height: 132px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(102, 183, 54, 0.42);
  outline-offset: 3px;
}
fieldset {
  margin: 0 0 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
fieldset label {
  display: block;
  color: rgba(22, 35, 25, 0.78);
  font-weight: 760;
}
fieldset input {
  width: auto;
  min-height: auto;
  accent-color: var(--haven);
}
.form-status {
  min-height: 26px;
  margin-top: 14px;
  color: var(--forest);
  font-weight: 850;
}
.quote-result {
  position: sticky;
  top: 104px;
  background: linear-gradient(145deg, var(--deep), var(--forest));
  color: var(--white);
}
.quote-result strong {
  display: block;
  margin-bottom: 14px;
  color: var(--new-leaf);
  font-size: 2.9rem;
  line-height: 1;
}
.quote-result span,
.quote-result p,
.quote-result small {
  color: rgba(255, 255, 255, 0.78);
}
.quote-breakdown {
  margin: 24px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.quote-copy { width: 100%; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.filter-bar button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--forest);
  font-weight: 850;
}
.filter-bar button.is-active {
  background: var(--forest);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  overflow: hidden;
}
.gallery-card.is-hidden { display: none; }
.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.gallery-card div { padding: 22px; }
.gallery-card h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.comparison-instructions {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(22, 35, 25, 0.7);
}
.transformation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.transformation-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(22, 35, 25, 0.08);
}
.transformation-card.is-hidden { display: none; }
.transformation-copy { padding: 23px 24px 21px; }
.transformation-copy span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: var(--sage);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.transformation-copy h3 {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 1.42rem;
}
.transformation-copy p {
  margin-bottom: 0;
  color: rgba(22, 35, 25, 0.68);
}
.before-after {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--deep);
  box-shadow: var(--shadow);
}
.transformation-card .before-after {
  min-height: 390px;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.before-img,
.after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.after-img {
  clip-path: inset(0 0 0 var(--split));
}
.split-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 3px;
  transform: translateX(-50%);
  background: var(--gold);
  box-shadow: 0 0 0 999px rgba(0, 0, 0, 0);
}
.split-line::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  content: "";
  transform: translate(-50%, -50%);
  border: 3px solid var(--gold);
  border-radius: 999px;
  background: rgba(9, 37, 23, 0.76);
  box-shadow: 0 6px 18px rgba(9, 37, 23, 0.28);
}
.before-after input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.before-label,
.after-label {
  position: absolute;
  bottom: 18px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest);
  font-weight: 950;
}
.before-label { left: 18px; }
.after-label { right: 18px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.faq-grid details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 36px rgba(22, 35, 25, 0.06);
}
.faq-grid summary {
  position: relative;
  min-height: 72px;
  padding: 23px 36px 20px 0;
  color: var(--forest);
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}
.faq-grid summary::-webkit-details-marker { display: none; }
.faq-grid summary::after {
  position: absolute;
  top: 22px;
  right: 0;
  content: "+";
  color: var(--haven);
  font-size: 1.45rem;
  line-height: 1;
}
.faq-grid details[open] summary::after { content: "-"; }
.faq-grid details p {
  margin: 0 0 22px;
  color: rgba(22, 35, 25, 0.7);
}

.contact-details {
  display: grid;
  gap: 14px;
}
.contact-details strong {
  display: block;
  color: var(--forest);
  font-size: 1.15rem;
  overflow-wrap: anywhere;
}
.contact-action {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  color: inherit;
  text-align: left;
  appearance: none;
  transition: border-color 160ms ease, transform 160ms ease;
}
.contact-action:hover {
  border-color: rgba(31, 111, 53, 0.42);
  transform: translateY(-2px);
}
.contact-action em {
  display: inline-flex;
  margin-top: 5px;
  color: var(--haven);
  font-style: normal;
  font-weight: 900;
}
.service-areas {
  background: linear-gradient(145deg, rgba(223, 234, 218, 0.86), rgba(255, 255, 255, 0.9));
}

.call-dialog {
  width: min(440px, calc(100% - 32px));
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--deep), var(--forest));
  color: var(--white);
  box-shadow: 0 28px 72px rgba(9, 37, 23, 0.36);
}
.call-dialog::backdrop { background: rgba(9, 20, 14, 0.56); }
.call-dialog form { padding: 28px; }
.call-dialog h2 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}
.call-dialog p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}
.dialog-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.dialog-actions > * { flex: 1; }

.mobile-contact-bar { display: none; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 36px max(22px, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}
.site-footer strong { color: var(--white); }
.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

[data-reveal] {
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms ease;
}
[data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

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

@media (max-width: 1080px) {
  h1 { font-size: 4.15rem; }
  h2 { font-size: 2.55rem; }
  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
    justify-self: end;
  }
  .site-header {
    grid-template-columns: auto auto auto;
  }
  .primary-nav {
    position: absolute;
    left: 22px;
    right: 22px;
    top: calc(100% + 8px);
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { justify-content: flex-start; }
  .nav-quote { display: inline-flex !important; }
  .hero-inner,
  .split-intro,
  .quote-grid,
  .contact-grid,
  .feature-inner,
  .price-grid,
  .gallery-grid,
  .transformation-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-orbit {
    align-self: start;
    max-width: 420px;
  }
  .image-triptych {
    grid-template-columns: 1fr 1fr;
  }
  .image-triptych a:first-child {
    grid-column: 1 / -1;
  }
  .quote-result { position: static; }
}

@media (max-width: 700px) {
  body { padding-bottom: 68px; }
  h1 { font-size: 3.05rem; }
  h2 { font-size: 2.05rem; }
  .site-header {
    grid-template-columns: auto auto;
    padding-left: 16px;
    padding-right: 16px;
  }
  .brand span { display: none; }
  .header-quote { display: none; }
  .brand img {
    width: 62px;
    height: 50px;
  }
  .hero {
    min-height: auto;
  }
  .hero-inner {
    width: min(100% - 32px, var(--max));
    min-height: 74svh;
    padding: 58px 0 36px;
  }
  .hero-shade {
    background: linear-gradient(90deg, rgba(6, 29, 17, 0.96), rgba(6, 61, 33, 0.78));
  }
  .hero-orbit dl,
  .season-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    width: min(100% - 32px, var(--max));
    padding: 64px 0;
  }
  .service-grid,
  .timeline,
  .image-triptych {
    grid-template-columns: 1fr;
  }
  .feature-inner {
    width: min(100% - 32px, var(--max));
    padding: 68px 0;
  }
  .image-triptych a,
  .image-triptych a:first-child {
    min-height: 330px;
  }
  .cta-band {
    display: grid;
    padding: 48px 16px;
  }
  .cta-band .button,
  .actions .button {
    width: 100%;
  }
  .before-after { min-height: 430px; }
  .transformation-card .before-after { min-height: 350px; }
  .site-footer { display: grid; }
  .site-footer nav { justify-content: flex-start; }
  .faq-grid summary {
    min-height: 66px;
    padding-top: 20px;
    padding-bottom: 18px;
  }
  .faq-grid summary::after { top: 20px; }
  .contact-action,
  .service-areas { padding: 20px; }
  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 220;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 8px max(8px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom));
    background: var(--deep);
    box-shadow: 0 -10px 30px rgba(9, 37, 23, 0.18);
  }
  .mobile-contact-bar a,
  .mobile-contact-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border: 0;
    border-radius: 6px;
    background: var(--forest);
    color: var(--white);
    font-size: 0.87rem;
    font-weight: 900;
    text-transform: capitalize;
  }
  .mobile-contact-bar a:last-child {
    background: var(--leaf);
    color: var(--deep);
  }
  .call-dialog form { padding: 24px 20px; }
}
