/* ==========================================================================
   Golden Grove Landscape - shared stylesheet for service x city pages
   (services/SLUG/index.html)

   This is a deliberate subset of the design tokens, typography, nav,
   footer, and component CSS that lives inline in the homepage's
   index.html <style> block. Values below are copied verbatim from
   index.html so the two are visually identical. It is a SEPARATE file
   (not a shared include) so nothing here can ever touch or risk the
   homepage's journey/scroll-scrub engine, which HANDOFF.md says not to
   refactor without re-verifying. If the homepage's tokens ever change,
   update both places.

   Not reused here on purpose: the scroll-scrubbed video journey, the
   before/after slider, and the reviews band (service/city pages carry
   no review quotes, per content rules).
   ========================================================================== */

:root {
  --bg: #000000;
  --surface: rgba(12, 12, 10, 0.78);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f3efe6;
  --muted: #a49e8f;
  --gold: #e2a44e;
  --gold-bright: #f2c078;
  --gold-deep: #8a5f22;
  --sage: #96a487;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Archivo", -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-text: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #171003; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }
.faq summary:focus-visible,
.drawer a:focus-visible { outline-offset: -3px; }

img, video { display: block; max-width: 100%; }

.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

/* ---------- Nav (identical to homepage) ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--text);
}
.brand-logo { display: block; height: auto; filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.4)); }
.brand-name {
  font-family: var(--serif); font-weight: 500; font-size: 19px; letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; transition: color 0.3s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; min-height: 44px;
  color: var(--text) !important; border: 1px solid var(--line-strong);
  padding: 9px 18px; border-radius: 99px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s !important;
}
.nav-cta:hover { border-color: var(--gold); background: rgba(226, 164, 78, 0.08); transform: scale(1.05); }
@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links { gap: 12px; }
}

.menu-btn {
  display: none; width: 44px; height: 44px;
  border-radius: 10px; border: 1px solid var(--line-strong);
  background: transparent; color: var(--text);
  place-items: center; cursor: pointer;
}
@media (max-width: 860px) { .menu-btn { display: grid; } }
.drawer {
  position: absolute; top: 100%; left: 0; right: 0;
  display: flex; flex-direction: column;
  background: rgba(0, 0, 0, 0.92);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(-10px); visibility: hidden; pointer-events: none;
  transition: opacity 0.35s var(--ease-text), transform 0.35s var(--ease-text), visibility 0s 0.35s;
}
.drawer.open {
  opacity: 1; transform: none; visibility: visible; pointer-events: auto;
  transition: opacity 0.35s var(--ease-text), transform 0.35s var(--ease-text);
}
.drawer a {
  font-family: var(--serif); font-size: 19px; color: var(--text); text-decoration: none;
  padding: 16px 24px; border-top: 1px solid var(--line);
}
.drawer a:hover { color: var(--gold-bright); }
@media (min-width: 861px) { .drawer { display: none; } }
@media (max-width: 480px) {
  .brand-logo { width: 36px; }
  .brand-name { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .nav-inner { padding: 14px 0; }
}

/* ---------- Type roles (identical to homepage) ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}
.kicker::before { content: ""; width: 34px; height: 1px; background: var(--gold); }

.display-impact {
  font-family: var(--sans);
  font-stretch: 66%;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.015em;
}
.body-copy { color: rgba(243, 239, 230, 0.65); max-width: 34ch; }
.sec-head h2.display-impact {
  font-family: var(--sans); font-weight: 900; text-transform: uppercase;
  line-height: 0.95; letter-spacing: -0.015em;
}

/* ---------- Text motion grammar (identical to homepage) ---------- */
.rv {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.55s var(--ease-text), transform 0.55s var(--ease-text);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.live .rv { opacity: 1; transform: none; }
.wd {
  display: inline-block; opacity: 0; transform: translateY(35px);
  transition: opacity 0.45s var(--ease-text), transform 0.45s var(--ease-text);
  transition-delay: calc(var(--w, 0) * 150ms);
}
.live .wd { opacity: 1; transform: none; }

.a-wipe {
  opacity: 0; clip-path: inset(105% 0 -8% 0);
  transition: clip-path 0.85s var(--ease), opacity 0.55s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.live .a-wipe { opacity: 1; clip-path: inset(-8% 0 -8% 0); }

.a-wipe-x {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.live .a-wipe-x { clip-path: inset(0 -3% 0 0); }

.a-blur {
  opacity: 0; filter: blur(12px); transform: translateY(12px);
  transition: opacity 0.6s var(--ease-text), filter 0.7s var(--ease-text), transform 0.6s var(--ease-text);
  transition-delay: calc(var(--i, 0) * 110ms);
}
.live .a-blur { opacity: 1; filter: none; transform: none; }

.a-track { opacity: 0; letter-spacing: 0.5em;
  transition: opacity 0.6s var(--ease), letter-spacing 0.75s var(--ease); }
.live .a-track { opacity: 1; letter-spacing: 0.2em; }

.a-pop {
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.5s var(--ease), transform 0.55s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.live .a-pop { opacity: 1; transform: none; }

.rule-row { border-top: 1px solid rgba(243, 239, 230, 0.14); }

/* ---------- Buttons (identical to homepage) ---------- */
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 15px; letter-spacing: 0.02em;
  text-decoration: none; border-radius: 99px; padding: 16px 30px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, border-color 0.35s;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, #c88a35);
  color: #1c1204;
  box-shadow: 0 6px 30px rgba(226, 164, 78, 0.25);
}
.btn-gold:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 10px 44px rgba(226, 164, 78, 0.4); }
.btn-ghost {
  color: var(--text); border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px) scale(1.05); }
.btn-xl { padding: 20px 42px; font-size: 17px; }

/* ---------- Static hero (no scroll-scrub journey on these pages) ----------
   Adapted from the homepage's .p-hero: same gradient/mask treatment over a
   still image instead of the scroll-scrubbed video, so the page opens with
   the same visual language without needing the journey engine or video
   assets on every service/city page. */
.page-hero {
  position: relative; min-height: 82svh; display: flex; align-items: flex-end;
  overflow: hidden; isolation: isolate;
}
.page-hero .hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 78%, transparent 100%);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 32%, transparent 55%),
    radial-gradient(120% 90% at 50% 30%, transparent 40%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.38) 28%, rgba(0, 0, 0, 0.14) 52%, rgba(0, 0, 0, 0.6) 100%);
}
.page-hero .wrap { padding-bottom: 11vh; }
.page-hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  margin: 20px 0 22px;
  text-shadow: 0 2px 34px rgba(0, 0, 0, 0.55), 0 1px 6px rgba(0, 0, 0, 0.35);
}
.page-hero h1 .accent { color: var(--gold); }
.page-hero h1 .block-line { display: block; }
.page-hero p.sub {
  max-width: 58ch; color: rgba(243, 239, 230, 0.78); font-size: clamp(16px, 1.4vw, 19px); margin-bottom: 30px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.6);
}

/* ---------- Section head (identical to homepage) ---------- */
.sec-head { max-width: 700px; margin-bottom: 40px; }
.sec-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 3.9vw, 48px); line-height: 1.08; letter-spacing: -0.01em;
  margin: 16px 0 12px; text-wrap: balance;
}
.sec-head h2 em { font-style: italic; color: var(--gold-bright); }
.sec-head p { color: #cfc9bb; font-size: 16px; max-width: 62ch; }
.sec-head p.body-copy { max-width: 62ch; }

section.content-block { padding: 72px 0; border-top: 1px solid var(--line); }
section.content-block.first { border-top: none; }
.content-block .prose { max-width: 68ch; color: rgba(243, 239, 230, 0.78); font-size: 16.5px; }
.content-block .prose p + p { margin-top: 16px; }

/* ---------- Cards / grid (identical to homepage) ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card {
  position: relative; border: 1px solid var(--line); border-radius: 16px;
  padding: 24px 22px 22px; background: var(--surface);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: transform 0.45s var(--ease), border-color 0.45s;
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); border-color: rgba(226, 164, 78, 0.45); }
.card .icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; margin-bottom: 16px;
  border: 1px solid var(--line-strong); color: var(--gold);
  background: rgba(226, 164, 78, 0.06);
}
.card .icon svg { width: 20px; height: 20px; }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 18.5px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }
@media (max-width: 860px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- Process steps (identical to homepage) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step {
  border-top: 1px solid var(--line-strong); padding: 22px 6px 0;
  transition: border-color 0.5s;
}
.step:hover { border-top-color: var(--gold); }
.step .num {
  font-size: 44px; line-height: 1; color: var(--gold); display: block; margin-bottom: 14px;
}
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 20px; margin-bottom: 8px; }
.step p { color: #bdb7a8; font-size: 14.5px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; gap: 12px; } }

/* ---------- Chips (identical to homepage) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 11px; padding-top: 8px; }
.chip {
  font-size: 14.5px; font-weight: 600; color: #e6e0d2;
  border: 1px solid var(--line-strong); border-radius: 99px; padding: 11px 22px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: border-color 0.35s, color 0.35s, transform 0.35s var(--ease);
}
a.chip { text-decoration: none; display: inline-block; }
.chip:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px) scale(1.04); }

/* ---------- Interlink block ---------- */
.link-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.link-group h3 { font-family: var(--serif); font-weight: 500; font-size: 17px; margin-bottom: 12px; color: var(--text); }
@media (max-width: 860px) { .link-groups { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .link-groups { grid-template-columns: 1fr; } }

/* ---------- Trust bar (identical to homepage) ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 0;
  padding: 22px 0; color: var(--muted);
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.trust-inner span { display: inline-flex; align-items: center; gap: 10px; }
.trust-inner span + span::before {
  content: "\25C6"; font-size: 6px; color: var(--gold); margin: 0 22px; align-self: center;
}
.trust-inner svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ---------- FAQs (identical to homepage) ---------- */
.faq-zone { padding: 90px 0 110px; }
.faq-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(30px, 4vw, 44px); margin: 16px 0 36px;
}
.faq-title em { font-style: italic; color: var(--gold-bright); }
.faq summary {
  display: flex; align-items: baseline; gap: 22px;
  padding: 24px 4px; cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .fnum { font-size: 20px; color: var(--gold); }
.faq .fq { flex: 1; font-family: var(--serif); font-size: clamp(18px, 2vw, 22px); }
.faq .chev { font-size: 26px; font-weight: 200; color: var(--muted); transition: transform 0.3s var(--ease-text); }
.faq[open] .chev { transform: rotate(45deg); }
.faq p { color: rgba(243, 239, 230, 0.65); max-width: 62ch; padding: 0 4px 26px 62px; }
.faq p a { color: var(--gold-bright); text-decoration: none; }
.faq p a:hover { text-decoration: underline; }

/* ---------- Marquee (identical to homepage) ---------- */
.marquee {
  overflow: hidden; padding: 34px 0; white-space: nowrap;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: inline-block; animation: slide 46s linear infinite; }
.marquee span {
  font-family: var(--serif); font-size: clamp(20px, 2.6vw, 30px); font-weight: 300;
  color: rgba(243, 239, 230, 0.28); letter-spacing: 0.06em;
}
.marquee b { color: var(--gold); font-weight: 400; margin: 0 26px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Footer (identical to homepage) ---------- */
footer { border-top: 1px solid var(--line); padding: 46px 0 54px; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot .brand-name { font-size: 17px; }
.fb-link {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 14px; width: 44px; height: 44px; box-sizing: border-box;
  border: 1px solid var(--line-strong); border-radius: 50%; color: var(--muted);
  transition: color 0.3s, border-color 0.3s;
}
.fb-link:hover { color: var(--gold-bright); border-color: var(--gold); }
.fb-link svg { width: 18px; height: 18px; }
.foot-meta { color: var(--muted); font-size: 13.5px; text-align: right; line-height: 1.9; }
.foot-meta a { color: var(--text); text-decoration: none; }
.foot-meta a:hover { color: var(--gold-bright); }
@media (max-width: 640px) { .foot { flex-direction: column; align-items: flex-start; } .foot-meta { text-align: left; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .wd { transform: none; transition: opacity 0.3s ease; }
  .a-wipe, .a-wipe-x { clip-path: none !important; }
  .a-blur { filter: none !important; }
  .a-track { letter-spacing: 0.2em !important; }
  .a-pop { transform: none !important; }
  .marquee-track { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
