/* ==========================================================================
   Gibson Land Management — Shared Site Styles
   Brand colors derived directly from the logo:
     Forest green  #1c3b2e  (GIBSON wordmark)
     Lawn green    #6a9932  (LAND MANAGEMENT)
   ========================================================================== */

:root {
  /* Brand greens */
  --forest-900: #11261c;
  --forest-800: #1c3b2e;   /* brand dark green */
  --forest-700: #264a39;
  --forest-600: #356048;
  --leaf-700:   #547f28;
  --leaf:       #6a9932;   /* brand green */
  --leaf-400:   #8cbb4e;
  --leaf-200:   #cfe3a8;

  /* Earth / soil accents */
  --soil:       #6b4f33;
  --tan:        #c7a36a;
  --tan-soft:   #e7dcc6;

  /* Neutrals */
  --paper:      #fbfaf6;
  --bone:       #f3efe5;
  --bone-2:     #eae3d4;
  --ink:        #1d241c;
  --body:       #3f4a3e;
  --muted:      #67715f;
  --line:       rgba(28,59,46,0.14);
  --line-soft:  rgba(28,59,46,0.08);

  --white:      #ffffff;

  /* Effects */
  --shadow-sm:  0 2px 8px -2px rgba(17,38,28,0.18);
  --shadow-md:  0 14px 34px -16px rgba(17,38,28,0.34);
  --shadow-lg:  0 30px 60px -28px rgba(17,38,28,0.45);
  --radius:     14px;
  --radius-sm:  9px;
  --radius-lg:  22px;

  --maxw: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);

  --font-head: 'Archivo', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.62;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: var(--forest-700); text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* ----------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.6rem, 5vw, 4rem) 0; }
.section--bone { background: var(--bone); }
.section--forest { background: var(--forest-800); color: #dfe7da; }
.section--forest h1, .section--forest h2, .section--forest h3 { color: #fff; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.7rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) {
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------- Type helpers */
.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--leaf-700);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--leaf);
  display: inline-block;
}
.section--forest .eyebrow { color: var(--leaf-400); }
.section--forest .eyebrow::before { background: var(--leaf-400); }

h1.display { font-size: clamp(2.3rem, 5.6vw, 4rem); }
h2.title   { font-size: clamp(1.9rem, 4vw, 3rem); }
h3.subtitle{ font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--muted); max-width: 64ch; }
.section--forest .lead { color: #c4d2bd; }
.measure { max-width: 66ch; }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }
.stack > * + * { margin-top: 1.1rem; }

/* ----------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.92rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform .16s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer; line-height: 1;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--leaf { background: var(--leaf); color: #11261c; box-shadow: 0 10px 22px -10px rgba(106,153,50,0.8); }
.btn--leaf:hover { background: var(--leaf-400); transform: translateY(-2px); }
.btn--forest { background: var(--forest-800); color: #fff; }
.btn--forest:hover { background: var(--forest-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--forest-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--forest-700); background: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--forest-800); }
.btn--light:hover { background: var(--bone); transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ----------------------------------------------------------------- Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,246,0.86);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(251,250,246,0.96); }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  height: 72px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0.3rem; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  color: var(--forest-800); padding: 0.55rem 0.7rem; border-radius: 8px;
  position: relative; white-space: nowrap; transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { background: var(--bone); }
.nav-links a[aria-current="page"] { color: var(--leaf-700); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.32rem;
  height: 2px; background: var(--leaf); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 0.9rem; flex-shrink: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700; color: var(--forest-800);
  font-size: 1.02rem; white-space: nowrap;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--leaf-700); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; padding: 11px;
}
.nav-toggle span { display: block; height: 2px; background: var(--forest-800); border-radius: 2px; transition: .25s; }
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.1rem;
    box-shadow: var(--shadow-md);
    max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .3s ease, visibility .3s;
  }
  .nav-links.is-open { max-height: 80vh; visibility: visible; }
  .nav-links a { padding: 0.85rem 0.6rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-phone .nav-phone-label { display: none; }
}

/* ----------------------------------------------------------------- Hero */
.hero { position: relative; overflow: hidden; background: var(--forest-900); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(13,28,20,0.92) 0%, rgba(13,28,20,0.7) 42%, rgba(13,28,20,0.32) 100%),
    linear-gradient(0deg, rgba(13,28,20,0.7) 0%, rgba(13,28,20,0) 50%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
  min-height: clamp(440px, 72vh, 680px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-content { max-width: 720px; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5.6vw, 4.2rem); }
.hero h1 .accent { color: var(--leaf-400); }
.hero p.lead { color: #d4ddca; margin-top: 1.3rem; }
.hero .btn-row { margin-top: 2rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.6rem; margin-top: 2.2rem;
  color: #c4d2bd; font-size: 0.95rem; font-weight: 600;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--leaf-400); }

/* Page hero (interior pages) */
.page-hero { position: relative; background: var(--forest-800); overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content:""; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(17,38,28,0.92), rgba(17,38,28,0.62)); }
.page-hero-inner { position: relative; z-index: 2; padding: clamp(2.6rem, 6vw, 4.6rem) 0; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 4.8vw, 3.4rem); max-width: 18ch; }
.page-hero p { color: #cdd9c4; margin-top: 1rem; max-width: 58ch; font-size: 1.1rem; }
.crumbs { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1.1rem; font-size: 0.85rem; color: #a9bba0; font-family: var(--font-head); font-weight: 600; }
.crumbs a { color: #cdd9c4; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--leaf-400); }

/* ----------------------------------------------------------------- Cards */
.card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card-media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--bone); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.4rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card-body h3 { font-size: 1.3rem; }
.card-body p { color: var(--muted); font-size: 0.98rem; }
.card-link {
  margin-top: auto; font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  color: var(--leaf-700); display: inline-flex; align-items: center; gap: 0.4rem;
}
.card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* Service card with icon header */
.svc-card { padding: 1.7rem 1.6rem 1.8rem; background:#fff; border:1px solid var(--line-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); display:flex; flex-direction:column; gap:0.7rem;
  transition: transform .2s ease, box-shadow .2s ease; border-top: 4px solid var(--leaf); }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-ico { width: 54px; height: 54px; border-radius: 12px; background: var(--forest-800);
  display: grid; place-items: center; margin-bottom: 0.4rem; }
.svc-ico svg { width: 28px; height: 28px; stroke: var(--leaf-400); fill: none; stroke-width: 1.9; }
.svc-card h3 { font-size: 1.28rem; }
.svc-card p { color: var(--muted); font-size: 0.97rem; }
.svc-card .card-link { margin-top: 0.4rem; }

/* ----------------------------------------------------------------- Feature / split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
}

/* ----------------------------------------------------------------- Trust strip / stats */
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
@media (max-width: 820px){ .trust-grid{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 480px){ .trust-grid{ grid-template-columns: 1fr;} }
.trust-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.trust-item .t-ico { width: 46px; height: 46px; flex-shrink: 0; border-radius: 11px;
  background: rgba(106,153,50,0.14); display: grid; place-items: center; }
.trust-item .t-ico svg { width: 24px; height: 24px; stroke: var(--leaf-700); fill: none; stroke-width: 1.9; }
.section--forest .trust-item .t-ico { background: rgba(140,187,78,0.18); }
.section--forest .trust-item .t-ico svg { stroke: var(--leaf-400); }
.trust-item h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.trust-item p { font-size: 0.92rem; color: var(--muted); }
.section--forest .trust-item p { color: #b9c8b0; }

/* ----------------------------------------------------------------- Checklist */
.checklist { display: grid; gap: 0.7rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--body); }
.checklist svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; color: var(--leaf-700); }
.section--forest .checklist li { color: #d4ddca; }
.section--forest .checklist svg { color: var(--leaf-400); }
.checklist--cols { grid-template-columns: repeat(2,1fr); gap: 0.7rem 1.8rem; }
@media (max-width:600px){ .checklist--cols{ grid-template-columns:1fr; } }

/* ----------------------------------------------------------------- Gallery */
.gallery { columns: 3; column-gap: 1.1rem; }
@media (max-width: 880px){ .gallery{ columns: 2; } }
@media (max-width: 520px){ .gallery{ columns: 1; } }
.gallery figure { break-inside: avoid; margin-bottom: 1.1rem; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative; background:#fff; }
.gallery img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1rem 0.8rem;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem; color: #fff;
  background: linear-gradient(0deg, rgba(13,28,20,0.85), rgba(13,28,20,0)); 
  opacity: 0; transform: translateY(6px); transition: .25s;
}
.gallery figure:hover figcaption { opacity: 1; transform: none; }

/* Before / after */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 760px){ .ba-grid{ grid-template-columns: 1fr; } }
.ba-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background:#fff; }
.ba-card img { width: 100%; aspect-ratio: 2/1; object-fit: cover; }
.ba-card figcaption { padding: 1rem 1.2rem; font-size: 0.95rem; color: var(--muted); }
.ba-card figcaption strong { color: var(--forest-800); font-family: var(--font-head); }

/* ----------------------------------------------------------------- FAQ */
.faq { max-width: 800px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.25rem 2.6rem 1.25rem 0; position: relative;
  font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0.3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--leaf-700); font-weight: 400; line-height: 1; transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { color: var(--leaf-700); }
.faq p { padding: 0 0 1.3rem; color: var(--muted); max-width: 70ch; }

/* ----------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--forest-800);
  border-radius: var(--radius-lg); padding: clamp(2.4rem, 5vw, 3.6rem); }
.cta-band::before { content:""; position:absolute; right:-90px; top:-90px; width:300px; height:300px;
  border-radius:50%; background: radial-gradient(circle, rgba(106,153,50,0.28), transparent 70%); }
.cta-band-inner { position: relative; z-index: 2; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); max-width: 20ch; }
.cta-band p { color: #c4d2bd; margin-top: 0.6rem; }

/* Big phone CTA */
.phone-cta { text-align: center; }
.phone-cta .phone-big {
  display: inline-flex; align-items: center; gap: 0.8rem; margin: 0.8rem 0;
  font-family: var(--font-head); font-weight: 800; color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.8rem); line-height: 1; letter-spacing: -0.02em;
}
.phone-cta .phone-big svg { width: 0.7em; height: 0.7em; color: var(--leaf-400); }
.phone-cta .phone-big:hover { color: var(--leaf-200); }

/* ----------------------------------------------------------------- Forms */
.form-card { background:#fff; border:1px solid var(--line-soft); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: clamp(1.6rem, 3vw, 2.4rem); }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--forest-800); }
.field label .req { color: var(--leaf-700); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 0.8rem 0.95rem; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(106,153,50,0.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
@media (max-width: 540px){ .field-row{ grid-template-columns: 1fr; } }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }

/* ----------------------------------------------------------------- Misc */
.pill { display: inline-flex; align-items: center; gap: 0.4rem; background: var(--bone);
  border: 1px solid var(--line-soft); color: var(--forest-800); font-family: var(--font-head);
  font-weight: 600; font-size: 0.9rem; padding: 0.4rem 0.85rem; border-radius: 999px; }
.area-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem; }
@media (max-width: 700px){ .area-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 440px){ .area-grid{ grid-template-columns: 1fr; } }
.area-chip { display: flex; align-items: center; gap: 0.6rem; padding: 0.95rem 1.1rem;
  background:#fff; border:1px solid var(--line-soft); border-radius: 11px;
  font-family: var(--font-head); font-weight: 700; color: var(--forest-800); box-shadow: var(--shadow-sm); }
.area-chip svg { width: 19px; height: 19px; color: var(--leaf-700); flex-shrink: 0; }

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 19px; height: 19px; fill: #e8a93b; }
.review { background:#fff; border:1px solid var(--line-soft); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
.review p { color: var(--ink); }
.review .who { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft); }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--forest-700); color:#fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; flex-shrink:0; }
.review .who b { font-family: var(--font-head); display:block; color: var(--ink); }
.review .who span { font-size: 0.82rem; color: var(--muted); }

.todo-note { background: #fff7e6; border: 1px dashed #d9a441; color: #7a5a16;
  border-radius: 10px; padding: 0.5rem 0.8rem; font-size: 0.82rem; display: inline-block; }

/* ----------------------------------------------------------------- Footer */
.site-footer { background: var(--forest-900); color: #aebfa5; padding: clamp(3rem,6vw,4.5rem) 0 1.8rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 880px){ .footer-top{ grid-template-columns: 1fr 1fr; gap: 2rem 1.4rem; } }
@media (max-width: 480px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; color: #95a98c; max-width: 34ch; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; font-family: var(--font-head); }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { color: #aebfa5; font-size: 0.94rem; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.94rem; margin-bottom: 0.6rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--leaf-400); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.84rem; color: #8295799; }
.footer-bottom a { color: #aebfa5; }

/* ----------------------------------------------------------------- Reveal anim (subtle) */
/* Gated on scripting:enabled so content is always visible if JS is off or
   the browser is older (media query simply fails -> no hiding). */
@media (prefers-reduced-motion: no-preference) and (scripting: enabled) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* skip link */
.skip { position: absolute; left: -999px; top: 0; background: var(--forest-800); color: #fff;
  padding: 0.6rem 1rem; z-index: 200; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }
