/* Great Goats Landscaping — single stylesheet. Mobile-first, no dependencies.
   "Modern Luxe" system: warm cream canvas, deep forest green as a refined accent,
   brass/gold as the luxe pop, elegant Fraunces serif headings on a clean sans body.
   Goal: high-end editorial feel, fast paint, zero layout shift, strong readability. */

/* Self-hosted display serif (latin subset, variable weight) — no external requests. */
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Deep forest green — now a refined ACCENT, not the dominant color */
  --green-900: #142a1e;      /* darkest — footer, dark bands */
  --green-800: #1c3d2e;      /* deep forest — dark sections */
  --green-700: #235138;      /* rich green */
  --green-600: #2f6b49;      /* accessible green for links/secondary actions on cream */
  --green-500: #4f8a63;
  --green-400: #8fae8a;      /* soft sage accent */

  /* Brass / gold — the luxe pop accent (CTAs, eyebrows, fine details) */
  --brass-700: #8a6a32;      /* accessible brass for text on cream */
  --brass: #b08d4f;          /* primary accent */
  --brass-400: #c9aa6e;
  --brass-100: #f1e7d3;      /* soft brass tint */

  /* Warm neutrals — the cream canvas that lets everything breathe */
  --cream: #faf7f1;          /* page background */
  --cream-2: #f3ecdf;        /* alternating section / tint background */
  --ink: #20251f;            /* near-black body text */
  --heading: #1a2e22;        /* near-black with a green undertone */
  --muted: #6c6457;          /* warm gray */
  --line: #e7dfce;           /* warm hairline border */
  --white: #ffffff;

  /* aliases kept so existing component rules pick up the warm palette */
  --tint: var(--cream-2);
  --tint-line: #e2d7bf;

  --radius: 14px;
  --shadow: 0 16px 44px rgba(48, 36, 12, 0.10);
  --shadow-sm: 0 3px 14px rgba(48, 36, 12, 0.07);
  --maxw: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.7;
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--heading);
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 600;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; line-height: 1.2; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.2rem; line-height: 1.6; color: var(--muted); max-width: 60ch; }
.note { font-size: .9rem; color: var(--muted); background: var(--cream-2); padding: .75rem 1rem; border-radius: 8px; border-left: 3px solid var(--brass); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(3rem, 6.5vw, 5.75rem) 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--brass-700);
  margin: 0 0 .65rem;
}

.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 100; border-radius: 8px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.5rem; border-radius: 9px; font-weight: 700; font-size: .98rem; letter-spacing: .01em; text-decoration: none; transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease; border: 1.5px solid transparent; line-height: 1.2; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.1rem; font-size: 1.06rem; }

/* Primary CTA — the brass "jewel". Dark text on gold reads expensive. */
.btn-primary { background: var(--brass); color: #241d0c; box-shadow: 0 8px 22px rgba(176, 141, 79, .34); }
.btn-primary:hover { background: #9d7c3f; color: #fff; box-shadow: 0 12px 30px rgba(176, 141, 79, .46); }

/* Secondary — refined green outline */
.btn-ghost { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-ghost:hover { background: var(--green-700); color: #fff; border-color: var(--green-700); }

/* Premium filled CTA — used on the home hub cards (Design & Build / Maintenance) */
.btn-hub {
  gap: .55rem;
  padding: .9rem 1.7rem;
  font-size: 1.02rem;
  color: #fff;
  border: none;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
  box-shadow: 0 8px 22px rgba(20, 42, 30, .22);
}
.btn-hub:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
  box-shadow: 0 14px 30px rgba(20, 42, 30, .30);
  transform: translateY(-2px);
}
.btn-hub .btn-arrow { transition: transform .18s ease; }
.btn-hub:hover .btn-arrow { transform: translateX(4px); }

/* Hub cards: even height + button anchored to the bottom */
.hub-card { display: flex; flex-direction: column; }
.hub-card .card-links { flex: 1 1 auto; }
.hub-card .btn-hub { align-self: flex-start; margin-top: 1.1rem; }

/* ---------- Header (warm white, brand logo, single CTA) ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(252, 250, 244, .9); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 78px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 56px; width: auto; }
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 1.3rem; margin: 0; padding: 0; }
.main-nav a { color: var(--green-800); font-weight: 600; font-size: .97rem; padding: .25rem 0; white-space: nowrap; }
.main-nav a:hover { color: var(--brass-700); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--brass-700); border-bottom: 2px solid var(--brass); }
.nav-toggle { display: none; font-size: 1.7rem; background: none; border: none; cursor: pointer; color: var(--green-800); line-height: 1; }
.header-phone { color: var(--green-800); font-weight: 800; white-space: nowrap; flex: 0 0 auto; }
.header-phone:hover { color: var(--brass-700); text-decoration: none; }
.header-cta { white-space: nowrap; flex: 0 0 auto; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(150deg, var(--green-800), var(--green-900)); color: #fff; padding: clamp(3.25rem, 8vw, 7rem) 0; position: relative; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--brass); }
.hero h1 { color: #fff; max-width: 18ch; }
.hero .eyebrow { color: var(--brass-400); }
.hero-sub { font-size: 1.22rem; max-width: 56ch; color: #e4ddcf; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.65); }
.hero .btn-ghost:hover { background: #fff; color: var(--green-900); border-color: #fff; }
/* Full-bleed photo hero (home) */
.hero--photo { background-color: var(--green-900); padding: clamp(4rem, 9vw, 8rem) 0; }
.hero--photo h1, .hero--photo .hero-sub { text-shadow: 0 2px 16px rgba(0,0,0,.42); }
/* Hero social-proof rating line */
.hero-rating { margin: 1.4rem 0 0; font-size: 1rem; color: #efe9da; }
.hero-rating .stars { color: var(--brass-400); font-size: 1.15rem; vertical-align: -1px; }
.hero-rating strong { color: #fff; }
.hero-rating a { color: #efe9da; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(255,255,255,.4); }
.hero-rating a:hover { color: #fff; text-decoration-color: var(--brass-400); }

/* ---------- Pricing teaser (homepage) ---------- */
.price-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 1.9rem; }
.price-card { display: flex; flex-direction: column; gap: .3rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.6rem 1.5rem; box-shadow: var(--shadow-sm); color: inherit; text-decoration: none; transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brass); text-decoration: none; }
.price-card-label { font-family: var(--serif); font-size: 1.2rem; color: var(--heading); }
.price-card-amount { font-family: var(--serif); font-size: 2.3rem; font-weight: 600; color: var(--brass-700); line-height: 1.1; }
.price-card-unit { font-size: .92rem; color: var(--muted); }
.price-card-cta { margin-top: .8rem; font-weight: 800; font-size: .92rem; letter-spacing: .02em; color: var(--green-700); }
.price-card:hover .price-card-cta { color: var(--brass-700); }

/* ---------- Sticky mobile call/quote bar ---------- */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: .6rem;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(252, 250, 244, .96);
    backdrop-filter: saturate(140%) blur(8px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(48, 36, 12, .12);
  }
  .mobile-cta a { display: inline-flex; align-items: center; justify-content: center; gap: .35rem; padding: .85rem 1rem; border-radius: 9px; font-weight: 700; font-size: 1rem; text-decoration: none; }
  .mobile-cta-call { background: var(--green-800); color: #fff; }
  .mobile-cta-quote { background: var(--brass); color: #241d0c; box-shadow: 0 4px 14px rgba(176,141,79,.35); }
  /* keep fixed bar from covering page-bottom content */
  body { padding-bottom: 72px; }
}

/* Answer box — the AI-quotable summary */
.answer-box { background: var(--brass-100); border-left: 5px solid var(--brass); padding: 1.1rem 1.3rem; border-radius: 8px; margin: 0 0 1.5rem; }
.answer-box p { margin: 0; font-size: 1.08rem; }

/* Breadcrumbs */
.breadcrumbs { padding-top: 1rem; }
.breadcrumbs ul { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0; font-size: .9rem; color: var(--muted); }
.breadcrumbs li + li::before { content: "›"; margin-right: .4rem; color: var(--muted); }

/* Cards / grids */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); transition: transform .16s ease, box-shadow .2s ease; }
.card h3 { margin-top: 0; }
.card .btn { margin-top: .5rem; }
.card-links { font-size: .9rem; color: var(--muted); }
.card-links a { color: var(--green-700); }
.alt-bg { background: var(--cream-2); }

/* Silo "up" link on service pages */
.silo-up { margin-top: 2rem; font-weight: 600; }

/* About — owner photo */
.owner-photo { float: right; width: 320px; max-width: 42%; border-radius: var(--radius); margin: 0 0 1rem 1.5rem; box-shadow: var(--shadow); }
@media (max-width: 600px) { .owner-photo { float: none; width: 100%; max-width: 100%; margin: 0 0 1.25rem; } }

/* About — team photo */
.team-figure { margin: 1.5rem 0; }
.team-figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.team-figure figcaption { margin-top: .65rem; font-size: .92rem; color: var(--muted); font-style: italic; }

/* About page — full site width, centered reading column, full-width team showcase */
.about .about__text { max-width: 62rem; margin-inline: auto; }
.about .team-figure { margin: 2.5rem auto; }
.about .team-figure figcaption { text-align: center; }

/* Prose (blog + service body) */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.25rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .4rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .96rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: .65rem .85rem; text-align: left; }
.prose th { background: var(--cream-2); font-family: var(--serif); font-weight: 600; }
.prose blockquote { border-left: 4px solid var(--brass); margin: 1.5rem 0; padding: .65rem 1.2rem; color: var(--ink); background: var(--brass-100); border-radius: 0 8px 8px 0; font-family: var(--serif); font-style: italic; font-size: 1.15rem; }
.prose code { background: var(--cream-2); padding: .1rem .35rem; border-radius: 4px; font-size: .9em; }
.key-takeaways { background: var(--cream-2); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 1.5rem 0; border-left: 5px solid var(--brass); }
.key-takeaways h2 { margin-top: 0; font-size: 1.3rem; }

/* FAQ */
.faq-item { border: 1px solid var(--line); border-radius: 10px; margin-bottom: .75rem; background: var(--white); }
.faq-item summary { cursor: pointer; font-weight: 700; padding: 1rem 1.25rem; list-style: none; color: var(--heading); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; font-weight: 400; color: var(--brass); }
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 1.25rem 1.25rem; }

/* CTA band */
.cta-band { background: var(--green-900); color: #fff; text-align: center; position: relative; }
.cta-band::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--brass); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e2dccd; max-width: 50ch; margin: 0 auto 1.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.7); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--green-900); border-color: #fff; }

/* Trust strip */
.trust { display: flex; flex-wrap: wrap; gap: 1.5rem 2.75rem; justify-content: center; text-align: center; }
.trust .stat { min-width: 140px; }
.trust .stat b { display: block; font-family: var(--serif); font-weight: 600; font-size: 2.4rem; color: var(--brass-700); line-height: 1.1; }
.trust .stat span { color: var(--muted); font-size: .95rem; }

/* Forms */
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: .3rem; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: #fff; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--brass); border-color: var(--brass); }
.form-field textarea { min-height: 130px; }

/* Footer */
.site-footer { background: var(--green-900); color: #c2cabb; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding: 3.5rem 22px 1.75rem; }
.site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer h3 a { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .4rem; }
.site-footer a { color: #c2cabb; }
.site-footer a:hover { color: var(--brass-400); }
.brand-footer { display: flex; align-items: center; gap: .6rem; color: #fff; font-family: var(--serif); font-size: 1.25rem; font-weight: 600; }
.footer-mark { width: 40px; height: 40px; }
.nap a { color: #fff; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1rem 22px; font-size: .85rem; }

/* ---------- Customer reviews ---------- */
.reviews-agg { font-size: 1.1rem; color: var(--ink); margin: -.25rem 0 1.5rem; }
.reviews-agg strong { color: var(--green-700); }
.stars { color: #c9a227; letter-spacing: .06em; white-space: nowrap; }
.reviews-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.review-card { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: .85rem; }
.review-card .stars { font-size: 1.1rem; }
.review-card blockquote { margin: 0; font-family: var(--serif); font-size: 1.12rem; line-height: 1.55; color: var(--ink); }
.review-card blockquote::before { content: "\201C"; }
.review-card blockquote::after { content: "\201D"; }
.review-card figcaption { margin-top: auto; font-weight: 700; color: var(--heading); }
.review-card figcaption span { font-weight: 400; color: var(--muted); }

/* ---------- Service tiles (hub pages) — image-forward, conversion-focused ---------- */
.svc-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); margin-top: 1.9rem; }
.svc-tile { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: inherit; text-decoration: none; transition: transform .16s ease, box-shadow .2s ease; }
.svc-tile:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(48, 36, 12, .18); text-decoration: none; }
.svc-tile-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.svc-tile-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.svc-tile:hover .svc-tile-media img { transform: scale(1.06); }
.svc-tile-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,42,30,.85) 0%, rgba(20,42,30,.22) 45%, transparent 72%); }
.svc-tile-title { position: absolute; left: 1.15rem; right: 1.15rem; bottom: .85rem; margin: 0; z-index: 1; color: #fff; font-size: 1.4rem; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.svc-tile-media--plain { display: flex; background: linear-gradient(135deg, var(--green-700), var(--green-900)); }
.svc-tile-media--plain::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(201,170,110,.30), transparent 60%); }
.svc-tile-body { padding: 1.2rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.svc-tile-body p { margin: 0; color: var(--muted); font-size: .97rem; }
.svc-tile-cta { margin-top: auto; color: var(--brass-700); font-weight: 800; font-size: .95rem; letter-spacing: .02em; }
.svc-tile:hover .svc-tile-cta { color: var(--brass); }

/* ---------- Portfolio gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
.gallery-filters button { font: inherit; font-weight: 700; font-size: .92rem; cursor: pointer; padding: .5rem 1.1rem; border-radius: 999px; border: 1.5px solid var(--green-700); background: transparent; color: var(--green-700); transition: background .15s ease, color .15s ease, border-color .15s ease; }
.gallery-filters button:hover { background: var(--cream-2); }
.gallery-filters button[aria-pressed="true"] { background: var(--green-800); color: #fff; border-color: var(--green-800); }

.gallery { column-count: 3; column-gap: 1rem; margin-top: .5rem; }
@media (max-width: 860px) { .gallery { column-count: 2; } }
@media (max-width: 480px) { .gallery { column-count: 1; } }
.gallery .shot { display: block; break-inside: avoid; margin: 0 0 1rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; background: var(--cream-2); cursor: zoom-in; }
.gallery .shot img { width: 100%; height: auto; display: block; transition: transform .3s ease; }
.gallery .shot:hover img { transform: scale(1.05); }
.gallery .shot::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(48,36,12,.07); border-radius: var(--radius); pointer-events: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; background: rgba(14, 22, 16, .93); padding: clamp(1rem, 4vw, 3rem); }
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.lightbox img { max-width: 100%; max-height: 82vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.lightbox figcaption { color: #eee7d8; font-size: .98rem; text-align: center; max-width: 70ch; }
.lb-btn { position: absolute; background: rgba(255,255,255,.12); color: #fff; border: none; cursor: pointer; border-radius: 50%; width: 48px; height: 48px; font-size: 1.8rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.lb-btn:hover { background: rgba(255,255,255,.28); }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 520px) { .lb-prev { left: .35rem; } .lb-next { right: .35rem; } .lb-btn { width: 42px; height: 42px; } }
@media (prefers-reduced-motion: reduce) { .gallery .shot img, .svc-tile-media img, .card, .svc-tile, .btn { transition: none; } }

/* Mobile / tablet — collapse to hamburger before the nav gets cramped */
@media (max-width: 1024px) {
  .header-inner { gap: .75rem; }
  .nav-toggle { display: block; order: 3; }
  .header-phone { margin-left: auto; order: 2; }
  .main-nav { margin-left: 0; order: 4; width: 100%; }
  .main-nav ul { position: absolute; left: 0; right: 0; top: 78px; background: var(--cream); flex-direction: column; align-items: stretch; gap: 0; padding: 0; border-bottom: 4px solid var(--brass); box-shadow: var(--shadow); max-height: 0; overflow: hidden; transition: max-height .25s ease; }
  .main-nav ul.open { max-height: 480px; }
  .main-nav li { border-top: 1px solid var(--line); }
  .main-nav a { display: block; padding: .9rem 22px; }
  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand-logo { height: 48px; }
  .header-phone { font-size: .95rem; }
}
