/* ============================================================
   APH Landscape & Hardscape Solutions — revamp site
   Palette elevated from their real brand (maroon/green crew
   uniforms) + the NoVA brick colonials they work on:
   deep evergreen · burnished terracotta/clay · warm cream.
   ============================================================ */

:root {
  /* Greens */
  --ink:        #14201a;   /* near-black evergreen — body text */
  --evergreen:  #22402f;   /* primary brand green */
  --evergreen-2:#2c5240;
  --moss:       #6d8a6b;
  --moss-soft:  #a9bda3;

  /* Warm accent — clay/terracotta (brick + brand warmth) */
  --clay:       #bd5d3a;
  --clay-deep:  #a34a2c;
  --burgundy:   #6e2a33;   /* nods to their maroon shirts */

  /* Neutrals */
  --cream:      #f6f1e6;
  --cream-2:    #efe7d6;
  --sand:       #e2d8c3;
  --stone:      #cabfa8;
  --white:      #fffdf9;

  /* Utility */
  --gold:       #c9922b;
  --line:       rgba(20,32,26,.12);
  --shadow-sm:  0 2px 10px rgba(20,32,26,.06);
  --shadow-md:  0 14px 40px -14px rgba(20,32,26,.28);
  --shadow-lg:  0 30px 70px -24px rgba(20,32,26,.42);

  --nav-h: 74px;
  --maxw: 1180px;
  --r:    18px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: currentColor;
  opacity: .8;
}
.eyebrow.center { justify-content: center; }

section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 118px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .01em;
  padding: .92em 1.5em;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn-primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 10px 24px -10px rgba(163,74,44,.7);
}
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(163,74,44,.8); }
.btn-ghost {
  background: transparent;
  color: var(--evergreen);
  border-color: rgba(34,64,47,.35);
}
.btn-ghost:hover { background: var(--evergreen); color: var(--white); border-color: var(--evergreen); transform: translateY(-2px); }
.btn-light {
  background: var(--cream);
  color: var(--evergreen);
}
.btn-light:hover { background: var(--white); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246,241,230,.5);
}
.btn-outline-light:hover { background: rgba(246,241,230,.14); border-color: var(--cream); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav.scrolled {
  background: rgba(246,241,230,.86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px -18px rgba(20,32,26,.5);
}

.brand { display: flex; align-items: center; gap: .72rem; color: var(--cream); }
.nav.scrolled .brand { color: var(--evergreen); }
.brand .emblem {
  width: 42px; height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--clay);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .96rem;
  letter-spacing: .02em;
  box-shadow: var(--shadow-sm);
}
.brand .brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand .brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; letter-spacing: -.01em; }
.brand .brand-sub {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; opacity: .72;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--cream);
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: .01em;
  position: relative;
  opacity: .92;
  transition: opacity .2s ease;
}
.nav.scrolled .nav-links a { color: var(--evergreen); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1.5px; background: var(--clay);
  transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 600; font-size: .93rem; color: var(--cream);
}
.nav.scrolled .nav-phone { color: var(--evergreen); }
.nav-phone svg { width: 1em; height: 1em; opacity: .8; }
.nav .btn { padding: .68em 1.15em; font-size: .9rem; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: none; background: transparent; cursor: pointer;
  padding: 10px; border-radius: 10px;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--cream); margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.nav.scrolled .hamburger span { background: var(--evergreen); }
.nav.menu-open .hamburger span { background: var(--evergreen); }
.nav.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.nav.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: rgba(246,241,230,.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 1.4rem clamp(20px,5vw,48px) 2rem;
  flex-direction: column;
  gap: .3rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--evergreen);
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 1rem; }
.mobile-menu .mm-phone { border: none; color: var(--clay-deep); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  color: var(--cream);
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,32,26,.55) 0%, rgba(20,32,26,.28) 32%, rgba(20,32,26,.42) 66%, rgba(20,32,26,.86) 100%),
    linear-gradient(96deg, rgba(20,32,26,.78) 0%, rgba(20,32,26,.32) 52%, rgba(20,32,26,0) 78%);
}
.hero .wrap { width: 100%; padding-top: clamp(24px, 6vh, 60px); padding-bottom: clamp(28px, 6vh, 64px); }
.hero-inner { max-width: 720px; }
.hero .eyebrow { color: #eec9a5; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.15rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.28);
}
.hero h1 em { font-style: italic; color: #f0c9a3; }
.hero-sub {
  font-size: clamp(1.02rem, 1.9vw, 1.24rem);
  max-width: 40ch;
  color: rgba(246,241,230,.94);
  margin-bottom: 1.9rem;
  line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.9rem; }
.hero-proof {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .55rem 1.2rem;
}
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 1.05em; height: 1.05em; }
.hero-proof .proof-txt {
  font-size: .92rem; color: rgba(246,241,230,.9); font-weight: 500;
}
.hero-proof .proof-txt strong { color: var(--white); font-weight: 700; }
.proof-divider { width: 1px; height: 16px; background: rgba(246,241,230,.35); }

.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  color: rgba(246,241,230,.7); font-size: .72rem; letter-spacing: .18em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  z-index: 1;
}
.scroll-hint .dot { width: 22px; height: 34px; border: 1.5px solid rgba(246,241,230,.5); border-radius: 12px; position: relative; }
.scroll-hint .dot::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; border-radius: 3px; background: rgba(246,241,230,.8); transform: translateX(-50%); animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0%,100% { opacity: 0; transform: translate(-50%, 0); } 50% { opacity: 1; transform: translate(-50%, 8px); } }
@media (prefers-reduced-motion: reduce) { .scroll-hint .dot::after { animation: none; } }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--evergreen);
  color: var(--cream);
}
.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: clamp(26px, 4vw, 40px);
}
.trust-item { display: flex; flex-direction: column; gap: .15rem; text-align: center; padding-inline: .5rem; }
.trust-item .t-num { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 500; color: #f0c9a3; }
.trust-item .t-lbl { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(246,241,230,.8); font-weight: 500; }
.trust-item + .trust-item { border-left: 1px solid rgba(246,241,230,.16); }

/* ---------- Section heads ---------- */
.sec-head { max-width: 640px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  color: var(--evergreen);
  margin-bottom: .9rem;
}
.sec-head h2 em { font-style: italic; color: var(--clay-deep); }
.sec-head p { font-size: 1.06rem; color: rgba(20,32,26,.72); margin: 0; }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 2.2vw, 2.1rem);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--clay), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(34,64,47,.08);
  color: var(--evergreen);
  margin-bottom: .35rem;
}
.svc-ico svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.32rem; color: var(--evergreen); font-weight: 600; }
.svc-card p { margin: 0; font-size: .96rem; color: rgba(20,32,26,.7); }
.svc-note {
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  text-align: center;
  font-size: 1rem;
  color: rgba(20,32,26,.7);
}
.svc-note strong { color: var(--evergreen); font-weight: 700; }

/* ---------- Approach / owner ---------- */
.approach { background: var(--cream-2); overflow: hidden; }
.approach .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.approach-media { position: relative; }
.approach-media img {
  width: 100%; height: 100%; max-height: 560px; object-fit: cover;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
}
.approach-media .badge {
  position: absolute; bottom: -20px; right: -14px;
  background: var(--white); border-radius: 16px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .8rem;
  max-width: 240px;
}
.approach-media .badge .b-mark { width: 42px; height: 42px; border-radius: 11px; background: var(--evergreen); color: #f0c9a3; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; flex: none; }
.approach-media .badge .b-txt { font-size: .82rem; line-height: 1.3; color: var(--ink); }
.approach-media .badge .b-txt strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--evergreen); }
.approach-body h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--evergreen); margin-bottom: 1.1rem; }
.approach-body h2 em { font-style: italic; color: var(--clay-deep); }
.approach-body p { color: rgba(20,32,26,.76); font-size: 1.05rem; margin: 0 0 1.1rem; }
.approach-body .signature { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--evergreen); margin-top: 1.4rem; }
.approach-body .signature span { display: block; font-family: var(--font-body); font-style: normal; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--moss); margin-top: .2rem; }
.check-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .7rem; }
.check-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1rem; color: var(--ink); }
.check-list svg { width: 22px; height: 22px; flex: none; color: var(--clay); margin-top: 1px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: clamp(10px, 1.2vw, 16px);
}
.gal-item {
  overflow: hidden; border-radius: 14px; position: relative;
  box-shadow: var(--shadow-sm);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,32,26,.35)); opacity: 0; transition: opacity .3s ease; }
.gal-item:hover::after { opacity: 1; }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-big { grid-column: span 2; grid-row: span 2; }

/* ---------- Stats band ---------- */
.statband {
  background: var(--evergreen);
  color: var(--cream);
  background-image: radial-gradient(circle at 15% 20%, rgba(240,201,163,.08), transparent 45%), radial-gradient(circle at 85% 80%, rgba(189,93,58,.12), transparent 50%);
}
.statband .wrap { text-align: center; }
.statband .eyebrow { color: #eec9a5; justify-content: center; }
.statband h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); color: var(--white); max-width: 20ch; margin-inline: auto; }
.statband h2 em { font-style: italic; color: #f0c9a3; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream-2); }
.rev-grid { columns: 3; column-gap: clamp(14px, 1.6vw, 22px); }
.rev-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem 1.6rem 1.5rem;
  margin-bottom: clamp(14px, 1.6vw, 22px);
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
}
.rev-card .stars { color: var(--gold); margin-bottom: .8rem; }
.rev-card p { margin: 0 0 1.1rem; font-size: 1rem; color: rgba(20,32,26,.82); line-height: 1.6; }
.rev-who { display: flex; align-items: center; gap: .75rem; }
.rev-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  font-weight: 700; font-size: .95rem; color: var(--white);
  font-family: var(--font-display);
}
.rev-meta strong { display: block; font-size: .95rem; color: var(--ink); font-weight: 600; }
.rev-meta span { font-size: .8rem; color: var(--moss); }
.rev-foot { text-align: center; margin-top: clamp(2rem,3vw,2.8rem); font-size: .96rem; color: rgba(20,32,26,.66); }
.rev-foot a { color: var(--clay-deep); font-weight: 600; border-bottom: 1.5px solid rgba(189,93,58,.35); }
.rev-foot a:hover { border-bottom-color: var(--clay-deep); }

/* ---------- Visit ---------- */
.visit { background: var(--cream); }
.visit .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.visit-info h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--evergreen); margin-bottom: 1.4rem; }
.visit-info h2 em { font-style: italic; color: var(--clay-deep); }
.info-rows { display: grid; gap: 1.15rem; margin-bottom: 1.8rem; }
.info-row { display: flex; gap: .95rem; align-items: flex-start; }
.info-row .ir-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(34,64,47,.08); color: var(--evergreen); display: grid; place-items: center; flex: none; }
.info-row .ir-ico svg { width: 22px; height: 22px; }
.info-row .ir-lbl { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); font-weight: 600; margin-bottom: .1rem; }
.info-row .ir-val { font-size: 1.08rem; color: var(--ink); font-weight: 500; }
.info-row .ir-val a:hover { color: var(--clay-deep); }
.info-row .ir-val .sub { font-size: .9rem; color: rgba(20,32,26,.6); font-weight: 400; }
.visit-cta { display: flex; flex-wrap: wrap; gap: .8rem; }

.visit-card {
  background: var(--evergreen);
  border-radius: var(--r);
  padding: clamp(2rem, 3.5vw, 3rem);
  color: var(--cream);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.visit-card::after { content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(189,93,58,.35), transparent 70%); }
.visit-card .vc-seal {
  width: 108px; height: 108px; border-radius: 50%;
  border: 2px solid rgba(240,201,163,.5);
  display: grid; place-items: center; text-align: center;
  margin-bottom: 1.6rem; position: relative; z-index: 1;
}
.visit-card .vc-seal span { font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: #f0c9a3; line-height: 1.35; font-weight: 600; }
.visit-card .vc-seal .yr { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); display: block; letter-spacing: 0; }
.visit-card h3 { font-size: 1.7rem; color: var(--white); margin-bottom: .8rem; position: relative; z-index: 1; }
.visit-card p { color: rgba(246,241,230,.85); margin: 0 0 1.3rem; position: relative; z-index: 1; }
.area-tags { display: flex; flex-wrap: wrap; gap: .5rem; position: relative; z-index: 1; }
.area-tags span { font-size: .82rem; padding: .35em .85em; border-radius: 100px; background: rgba(246,241,230,.1); border: 1px solid rgba(246,241,230,.18); }

/* ---------- Final CTA ---------- */
.final {
  background: var(--clay);
  color: var(--white);
  text-align: center;
  background-image: linear-gradient(135deg, var(--clay-deep), var(--clay) 55%, #cf7048);
}
.final h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); color: var(--white); margin-bottom: 1rem; max-width: 18ch; margin-inline: auto; }
.final h2 em { font-style: italic; }
.final p { font-size: 1.12rem; color: rgba(255,253,249,.9); max-width: 46ch; margin: 0 auto 2rem; }
.final-cta { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; }
.final .btn-light { color: var(--clay-deep); }
.final .phone-big { display: block; margin-top: 1.6rem; font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--white); font-weight: 500; }
.final .phone-big:hover { color: #ffe9d6; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(246,241,230,.72); padding-block: clamp(48px, 6vw, 72px) 2rem; }
.footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer .brand { color: var(--cream); margin-bottom: 1.1rem; }
.footer-about p { font-size: .95rem; max-width: 34ch; line-height: 1.6; margin: 0 0 1.2rem; }
.footer-about .bilingual { font-size: .85rem; color: var(--moss-soft); }
.footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--moss-soft); margin-bottom: 1.1rem; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer ul a, .footer ul li { font-size: .95rem; color: rgba(246,241,230,.72); transition: color .2s ease; }
.footer ul a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(246,241,230,.12);
  margin-top: clamp(2.4rem, 4vw, 3.4rem); padding-top: 1.6rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .84rem; color: rgba(246,241,230,.5);
}
.footer-bottom a { color: rgba(246,241,230,.7); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .nav-links, .nav-actions .nav-phone, .nav-actions .btn { display: none; }
  .hamburger { display: block; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .approach .wrap { grid-template-columns: 1fr; }
  .approach-media { order: -1; max-width: 560px; }
  .visit .wrap { grid-template-columns: 1fr; }
  .rev-grid { columns: 2; }
  .footer .wrap { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --nav-h: 64px; }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .trust-item { padding: 1rem .5rem; }
  .trust-item + .trust-item { border-left: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid rgba(246,241,230,.16); }
  .trust-item:nth-child(2), .trust-item:nth-child(4) { border-left: 1px solid rgba(246,241,230,.16); }
  .svc-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gal-big { grid-column: span 2; grid-row: span 1; }
  .rev-grid { columns: 1; }
  .footer .wrap { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1 1 auto; }
  .hero-proof { gap: .4rem .9rem; }
  .proof-divider { display: none; }
}

@media (max-width: 400px) {
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gal-big, .gal-wide { grid-column: span 1; }
}
