@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital,wght@0,400;1,400&family=IBM+Plex+Sans:wght@400;500;600&family=JetBrains+Mono:wght@500&display=swap');

/* ─── Custom Properties ─────────────────────────────────────────── */
:root {
  --primary:       #4E6F31;
  --primary-dark:  #3a5224;
  --accent:        #482F35;
  --canvas:        #F7F4EE;
  --surface:       #EDE8DF;
  --ink:           #1C1714;
  --muted:         #6B6157;
  --border:        rgba(28,23,20,0.12);
  --border-green:  rgba(78,111,49,0.25);
  --branch-color:  #4E6F31;

  --font-display:  'DM Serif Display', Georgia, serif;
  --font-body:     'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;

  --radius:        4px;
  --branch-w:      28px;
  --branch-left:   28px;
  --content-pad:   72px;
  --max-w:         1120px;

  --section-py:    clamp(48px, 6vh, 80px);
}

/* ─── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Anchors inside headings */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ─── Typography ────────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.0; }
p { line-height: 1.7; }

a { color: var(--ink); transition: color 150ms; text-decoration: none; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

ul { list-style: none; }

/* ─── Global smooth scroll ──────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* ─── Layout Utilities ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-left: calc(clamp(20px, 5vw, 48px) + var(--content-pad));
}

/* ─── Branch Spine ──────────────────────────────────────────────── */
.branch-spine {
  position: fixed;
  left: var(--branch-left);
  top: 0;
  bottom: 0;
  width: var(--branch-w);
  z-index: 500;
  pointer-events: none;
}

.branch-spine > svg {
  width: var(--branch-w);
  height: 100%;
  display: block;
}

.leaf-group {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.leaf-group.leaf-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 639px) {
  .branch-spine { display: none; }
  .container { padding-left: clamp(20px, 5vw, 48px); }
  :root { --content-pad: 0px; }
}

/* ─── Utility Bar ───────────────────────────────────────────────── */
.util-bar {
  background: var(--primary);
  color: var(--canvas);
  position: sticky;
  top: 0;
  z-index: 900;
}

.util-bar-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-left: calc(clamp(20px, 5vw, 48px) + var(--content-pad));
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.util-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.util-bar-left a {
  color: var(--canvas);
  display: flex;
  align-items: center;
  gap: 6px;
}

.util-bar-left a:hover { color: #fff; text-decoration: none; }

.util-bar-left svg { width: 14px; height: 14px; flex-shrink: 0; }

.util-sep { opacity: 0.35; }

.util-bar-badge {
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 2px 8px;
  letter-spacing: 0.06em;
}

/* ─── Navigation ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 42px;
  z-index: 800;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-left: calc(clamp(20px, 5vw, 48px) + var(--content-pad));
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-wordmark:hover { text-decoration: none; color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

#navLinks a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}

#navLinks a:hover { color: var(--primary); text-decoration: none; }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--canvas) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--primary-dark);
  color: #fff !important;
  text-decoration: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--ink);
}

.nav-toggle svg { width: 24px; height: 24px; }

/* ─── Marquee Strip ─────────────────────────────────────────────── */
.marquee-section {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
  max-height: 56px !important;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  will-change: transform;
}

.marquee-section:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.2vw, 14px) !important;
  line-height: 1.2 !important;
  color: var(--muted);
}

.marquee-item span::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 12px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--canvas);
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms, transform 150ms;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--canvas);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  padding: 14px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms, color 200ms;
  white-space: nowrap;
}

.btn-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-phone:hover {
  background: var(--primary);
  color: var(--canvas);
  text-decoration: none;
}

/* ─── Trust Chips ───────────────────────────────────────────────── */
.trust-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--canvas);
  white-space: nowrap;
}

/* ─── Section Eyebrow ───────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 40px;
}

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 52fr 48fr;
  min-height: 92vh;
  background: var(--canvas);
  overflow: hidden;
}

.hero-left {
  grid-column: 1;
  padding: var(--section-py) clamp(20px, 4vw, 56px) var(--section-py) calc(var(--branch-left) + var(--branch-w) + 16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-right: 1px solid var(--primary);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(56px, 8.5vw, 118px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 24px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-right {
  grid-column: 2;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  max-height: none;
}

.hero-right-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--canvas));
  z-index: 1;
  pointer-events: none;
}

/* ─── Services ──────────────────────────────────────────────────── */
.services {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}

.services .section-eyebrow,
.services .section-title {
  padding-left: calc(var(--branch-left) + var(--branch-w) + 16px);
  padding-right: clamp(20px, 5vw, 48px);
  max-width: var(--max-w);
  margin-inline: auto;
}

@media (max-width: 639px) {
  .services .section-eyebrow,
  .services .section-title {
    padding-left: clamp(20px, 5vw, 48px);
  }
}

.service-list {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-left: calc(var(--branch-left) + var(--branch-w) + 16px);
}

@media (max-width: 639px) {
  .service-list { padding-left: clamp(20px, 5vw, 48px); }
}

.service-row {
  border-bottom: 1px solid var(--border);
}

.service-row a {
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  transition: background 200ms;
}

.service-row a:hover { background: transparent; text-decoration: none; }
.service-row a:hover .service-name { color: var(--primary); }
.service-row a:hover .service-arrow svg { transform: translateX(4px); }

.service-index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--muted);
  line-height: 1;
  text-align: right;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--ink);
  line-height: 1.05;
  transition: color 200ms;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.service-arrow svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 200ms ease-out;
  display: block;
}

/* ─── About ─────────────────────────────────────────────────────── */
.about {
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}

.about-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-left: calc(var(--branch-left) + var(--branch-w) + 16px);
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 639px) {
  .about-grid { padding-left: clamp(20px, 5vw, 48px); }
}

.about-photo-col {
  grid-column: 1;
}

.about-photo-wrap {
  position: relative;
  height: clamp(280px, 40vw, 420px);
  border-left: 4px solid var(--primary);
  overflow: hidden;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  max-height: none;
}

.about-copy-col {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-owner-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 20px;
}

.about-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ─── Reviews (hidden — 0 reviews) ─────────────────────────────── */
.reviews {
  display: none;
}

/* ─── Contact ───────────────────────────────────────────────────── */
.contact {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: var(--section-py) clamp(20px, 5vw, 48px);
  padding-left: calc(var(--branch-left) + var(--branch-w) + 16px);
}

@media (max-width: 639px) {
  .contact-inner { padding-left: clamp(20px, 5vw, 48px); }
}

.contact-inner > .section-eyebrow { margin-bottom: 8px; }

.contact-inner > h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--ink);
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-form {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info {
  grid-column: 2;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 100%;
  transition: border-color 200ms;
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}

.form-field textarea {
  min-height: 120px;
}

.form-submit {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--canvas);
  border: none;
  border-radius: var(--radius);
  padding: 14px 28px;
  cursor: pointer;
  width: 100%;
  transition: background 200ms;
}

.form-submit:hover { background: var(--accent); }

.contact-phone-link {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 28px;
  line-height: 1.1;
  transition: color 150ms;
}

.contact-phone-link:hover { color: var(--primary); text-decoration: none; }

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.contact-data-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.contact-data-key {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.contact-data-val {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
}

.contact-data-val a {
  color: var(--primary);
}

.contact-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-top: 20px;
  line-height: 1.6;
}

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--accent);
  color: var(--canvas);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 48px clamp(20px, 5vw, 48px);
  padding-left: calc(var(--branch-left) + var(--branch-w) + 16px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

@media (max-width: 639px) {
  .footer-inner { padding-left: clamp(20px, 5vw, 48px); }
}

.footer-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--canvas);
  text-decoration: none;
  grid-column: 1;
}

.footer-wordmark:hover { color: #fff; text-decoration: none; }

.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  grid-column: 2;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.65);
  text-decoration: none;
  transition: color 150ms;
}

.footer-nav a:hover { color: var(--canvas); text-decoration: none; }

.footer-right {
  grid-column: 3;
  text-align: right;
}

.footer-location {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,244,238,0.55);
  line-height: 1.8;
}

.footer-copy {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 20px clamp(20px, 5vw, 48px);
  padding-left: calc(var(--branch-left) + var(--branch-w) + 16px);
  border-top: 1px solid rgba(247,244,238,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 639px) {
  .footer-copy { padding-left: clamp(20px, 5vw, 48px); }
}

.footer-copy-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(247,244,238,0.4);
}

.footer-copy-text a {
  color: rgba(247,244,238,0.55);
}

.footer-copy-text a:hover { color: var(--canvas); text-decoration: none; }

.footer-branch-motif {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 160px;
  opacity: 0.12;
  pointer-events: none;
}

.footer-branch-motif svg {
  width: 160px;
  height: auto;
}

/* ─── Mobile Call Pill ──────────────────────────────────────────── */
.mobile-call-pill {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  align-items: center;
  gap: 8px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: background 200ms;
}

.mobile-call-pill svg { width: 16px; height: 16px; flex-shrink: 0; }
.mobile-call-pill:hover { background: var(--primary-dark); text-decoration: none; color: #fff; }

/* ─── Animation Utilities ───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger .fade-up:nth-child(1) { transition-delay: 0ms; }
.stagger .fade-up:nth-child(2) { transition-delay: 60ms; }
.stagger .fade-up:nth-child(3) { transition-delay: 120ms; }
.stagger .fade-up:nth-child(4) { transition-delay: 180ms; }
.stagger .fade-up:nth-child(5) { transition-delay: 240ms; }
.stagger .fade-up:nth-child(6) { transition-delay: 300ms; }
.stagger .fade-up:nth-child(7) { transition-delay: 360ms; }

/* ─── FAQ Accordion ─────────────────────────────────────────────── */
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; transition: transform 200ms; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ─── Review Cards (hidden but styled) ─────────────────────────── */
.review-card { padding: 28px; border-radius: 12px; background: var(--surface); }
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .mobile-call-pill { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    grid-column: 1;
    padding: 48px clamp(20px, 5vw, 40px) 40px;
    border-right: none;
    border-bottom: 1px solid var(--primary);
  }

  .hero-right {
    grid-column: 1;
    min-height: 320px;
  }

  .hero-title {
    font-size: clamp(44px, 12vw, 80px);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-col { grid-column: 1; }
  .about-copy-col  { grid-column: 1; }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form  { grid-column: 1; }
  .contact-info  { grid-column: 1; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer-wordmark { grid-column: 1; }
  .footer-nav { grid-column: 1; justify-content: center; flex-wrap: wrap; }
  .footer-right { grid-column: 1; text-align: center; }

  .footer-copy {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }

  #navLinks.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--border);
    padding: 16px clamp(20px, 5vw, 48px);
    gap: 16px;
    z-index: 900;
  }
}

@media (max-width: 640px) {
  .hero-trust-chips { gap: 8px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .service-row a {
    grid-template-columns: 40px 1fr 24px;
    gap: 12px;
  }

  .service-name { font-size: clamp(18px, 5vw, 24px); }
  .service-index { font-size: 16px; }

  .footer-inner { padding-inline: 20px; }
  .footer-nav { gap: 16px; }
}

@media (min-width: 900px) {
  .mobile-call-pill { display: none !important; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.contact-data-key { grid-column: 1 / -1; }
.contact-data-val { grid-column: 1 / -1; }
/* validator patch: never hide a wrapper that contains a heading */
.reviews { display: block !important; }
