/* ============================================================
   EUROSTYLE LANDSCAPE — site.css  (v2)
   White + charcoal + electric-lime · Space Grotesk / Inter ·
   bold modern grotesk · ghost-word + flat-shape backgrounds ·
   clean full-bleed video (no wash) · carousels + lightbox.
   ============================================================ */

/* ---------------- Tokens ---------------- */
:root{
  --white:    #fbfbf9;   /* base canvas */
  --white-2:  #f1f3ec;   /* alt section */
  --white-3:  #e9ecdf;   /* deepest light surface */
  --ink:      #1a1d1b;   /* charcoal — text, dark surfaces */
  --ink-2:    #232723;   /* charcoal step */
  --body:     #535953;   /* muted body text */
  --faint:    #868c85;   /* meta / helper */
  --hair:     #e2e4dc;   /* hairline */
  --hair-2:   #d2d5c9;   /* stronger hairline */
  --lime:     #9bce2e;   /* accent — deeper green-lime (calmer than neon on white) */
  --lime-2:   #89bb24;   /* darker lime (hover) */
  --lime-ink: #4c6600;   /* lime pressed into text on white (rare, big/bold only) */

  --nav-h: 74px;
  --maxw: 1360px;
  --pad: clamp(18px, 4vw, 52px);
  --sec-y: clamp(76px, 9vw, 130px);
  --radius: 18px;
  --shadow: 0 2px 6px rgba(26,29,27,.05), 0 26px 54px -30px rgba(26,29,27,.32);
  --shadow-lg: 0 4px 12px rgba(26,29,27,.09), 0 40px 80px -34px rgba(26,29,27,.42);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ---------------- Reset / base ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html { scroll-behavior: auto; } }
body{
  margin: 0; font-family: var(--font-sans); font-size: 17px; line-height: 1.6;
  color: var(--body); background: var(--white);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { margin: 0; color: var(--ink); font-family: var(--font-display); font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible{ outline: 3px solid var(--ink); outline-offset: 2px; border-radius: 4px; }

.skip-link{ position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 999px; transition: top .2s var(--ease); }
.skip-link:focus{ top: 12px; }

/* ---------------- Layout helpers ---------------- */
.container{ width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section{ position: relative; padding-block: var(--sec-y); overflow: hidden; }
.section--alt{ background: var(--white-2); }
:where(section[id], #quote, #contact){ scroll-margin-top: calc(var(--nav-h) + 16px); }

.eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink); margin: 0 0 22px;
}
.eyebrow::before{ content: ""; width: 26px; height: 4px; border-radius: 2px; background: var(--lime); }
.eyebrow--ondark{ color: #fff; }

.h2{
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.05rem, 4.4vw, 3.35rem); line-height: 1.04; letter-spacing: -.02em; color: var(--ink);
}
.h2--ondark{ color: #fff; }
.lead{ font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--body); max-width: 54ch; }

/* lime highlight marker (charcoal text on lime) + lime underline */
.mark{ background: var(--lime); color: var(--ink); padding: 0 .12em; border-radius: 4px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.uline{ position: relative; white-space: nowrap; }
.uline::after{ content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .16em;
  background: var(--lime); border-radius: 3px; z-index: -1; }

.sec-head{ max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); position: relative; z-index: 2; }
.sec-head--split{ display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: flex-end; justify-content: space-between; max-width: none; }
.sec-head--split .lead{ max-width: 40ch; }

/* ---------------- Buttons ---------------- */
.btn{
  --bg: var(--lime); --fg: var(--ink); --bd: var(--lime);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px; border-radius: 999px;
  font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  background: var(--bg); color: var(--fg); border: 2px solid var(--bd);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover{ background: var(--lime-2); border-color: var(--lime-2); transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn--dark{ --bg: var(--ink); --fg: #fff; --bd: var(--ink); }
.btn--dark:hover{ background: #000; border-color: #000; }
.btn--ghost{ --bg: transparent; --fg: var(--ink); --bd: var(--hair-2); }
.btn--ghost:hover{ background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--onvideo{ --bg: rgba(255,255,255,.12); --fg: #fff; --bd: rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.btn--onvideo:hover{ --bg: #fff; --fg: var(--ink); --bd: #fff; }

.arrow-link{
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase;
  color: var(--ink); transition: gap .2s var(--ease); position: relative;
}
.arrow-link .arr{ display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime); color: var(--ink); font-size: 13px; transition: transform .2s var(--ease); }
.arrow-link:hover{ gap: 13px; }
.arrow-link:hover .arr{ transform: translateX(2px); }
.arrow-link--ondark{ color: #fff; }

/* ---------------- Reveal ---------------- */
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in{ opacity: 1; transform: none; }
.reveal.d1{ transition-delay: .07s; } .reveal.d2{ transition-delay: .14s; } .reveal.d3{ transition-delay: .21s; }
html:not(.js) .reveal{ opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---------------- Section decoration (ghost words + flat shapes) ---------------- */
.deco{ position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.ghost{
  position: absolute; font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(7rem, 24vw, 22rem); line-height: .8; letter-spacing: -.04em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 2px rgba(26,29,27,.06); user-select: none;
}
.ghost--fill{ -webkit-text-stroke: 0; color: rgba(26,29,27,.035); }
.ghost--lime{ -webkit-text-stroke: 2px rgba(120,168,20,.16); }
.ghost--ondark{ -webkit-text-stroke: 2px rgba(255,255,255,.05); }
.shape{ position: absolute; }
.shape--ring{ border: 3px solid var(--lime); border-radius: 50%; }
.shape--ring-ink{ border: 2px solid rgba(26,29,27,.12); border-radius: 50%; }
.shape--dot{ background: var(--lime); border-radius: 50%; }
.shape--sq{ border: 2px solid rgba(26,29,27,.14); }
.shape--plus{ color: var(--lime); font-family: var(--font-display); font-weight: 700; line-height: 1; }
.shape--arc{ border: 3px solid var(--lime); border-radius: 50%; clip-path: polygon(50% 50%, 100% 0, 100% 100%); }

/* ============================================================
   BRAND (sits in hero, glides into nav)
   ============================================================ */
#brand{
  position: fixed; top: 0; left: 50%; z-index: 60; display: inline-flex; align-items: center; gap: 12px;
  height: var(--nav-h); transform-origin: top center;
  transition: top .55s var(--ease), left .55s var(--ease), transform .55s var(--ease);
}
html:not(.past-hero) #brand{ top: clamp(80px, 13vh, 128px); left: 50%; transform: translateX(-50%) scale(1.32); }
html.past-hero #brand{ top: 0; left: var(--pad); transform: translateX(0) scale(1); }
.brand-emblem{ width: 42px; height: 42px; flex: none; border-radius: 11px; display: block; }
.brand-words{ display: flex; flex-direction: column; line-height: 1; gap: 4px; }
.brand-name{ font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -.02em; color: var(--ink); transition: color .4s var(--ease); }
.brand-sub{ font-family: var(--font-display); font-size: 9.5px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--faint); transition: color .4s var(--ease); }
/* over the hero video the wordmark is white */
html:not(.past-hero) #brand .brand-name{ color: #fff; }
html:not(.past-hero) #brand .brand-sub{ color: rgba(255,255,255,.82); }
html:not(.past-hero) #brand{ filter: drop-shadow(0 2px 12px rgba(0,0,0,.35)); }

/* ============================================================
   NAV
   ============================================================ */
.nav{ position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h); display: flex; align-items: center;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.nav-inner{ width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: flex-end; gap: 30px; }
.nav-links{ display: flex; align-items: center; gap: 30px; }
.nav-link{ font-family: var(--font-display); font-size: 15px; font-weight: 500; color: #fff; letter-spacing: -.01em; position: relative; padding: 4px 0; transition: color .2s var(--ease); }
html:not(.past-hero) .nav-link{ text-shadow: 0 1px 12px rgba(0,0,0,.45); }
html.past-hero .nav-link{ color: var(--ink); text-shadow: none; }
.nav-link::after{ content: ""; position: absolute; left: 0; right: 100%; bottom: -3px; height: 3px; border-radius: 2px; background: var(--lime); transition: right .25s var(--ease); }
.nav-link:hover::after{ right: 0; }
.nav-phone{ font-variant-numeric: tabular-nums; }
.nav-cta{ margin-left: 4px; padding: 11px 22px; }
.nav--solid{ background: rgba(251,251,249,.92); -webkit-backdrop-filter: saturate(140%) blur(10px); backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--hair); box-shadow: 0 10px 30px -26px rgba(26,29,27,.6); }

.menu-btn{ display: none; width: 46px; height: 46px; border: 2px solid rgba(255,255,255,.5); border-radius: 12px; background: rgba(0,0,0,.14); position: relative; }
html.past-hero .menu-btn{ border-color: var(--hair-2); background: rgba(255,255,255,.5); }
.menu-btn .bar{ position: absolute; left: 12px; right: 12px; height: 2px; background: #fff; transition: transform .28s var(--ease), opacity .2s var(--ease); border-radius: 2px; }
html.past-hero .menu-btn .bar{ background: var(--ink); }
.menu-btn .bar:nth-child(1){ top: 16px; } .menu-btn .bar:nth-child(2){ top: 22px; } .menu-btn .bar:nth-child(3){ top: 28px; }
.nav--open .menu-btn .bar{ background: var(--ink); }
.nav--open .menu-btn .bar:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav--open .menu-btn .bar:nth-child(2){ opacity: 0; }
.nav--open .menu-btn .bar:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-menu{ position: fixed; inset: 0; z-index: 45; background: var(--white); display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 90px var(--pad) 40px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
.mobile-menu.open{ opacity: 1; visibility: visible; transform: none; }
.mobile-menu a{ font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 9vw, 2.8rem); letter-spacing: -.02em; color: var(--ink); padding: 10px 0; border-bottom: 1px solid var(--hair); }
.mobile-menu a.small{ font-size: 1rem; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--ink); border: 0; padding-top: 22px; }
.mobile-menu a.small.lime{ color: var(--ink); }

/* ============================================================
   HERO  (clean full-bleed video, no wash)
   ============================================================ */
.hero{ position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + clamp(64px, 13vh, 130px)); padding-bottom: clamp(40px, 7vh, 76px);
  overflow: hidden; background: var(--ink); }
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; transform: scale(1.06); }
.hero-video{ z-index: 1; opacity: 0; transition: opacity .8s var(--ease); }
.hero-video.ready{ opacity: 1; }
.hero.no-motion .hero-video{ display: none; }
/* clean video — no wash/overlay; legibility comes from localized text-shadow only */

.hero-inner{ position: relative; z-index: 4; width: 100%; }
.hero-grid{ display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 80px); align-items: center; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.hero-copy{ max-width: 660px; }
.hero-eyebrow{ color: #fff; }
.hero-eyebrow::before{ background: var(--lime); }
.hero-title{ font-family: var(--font-display); font-weight: 700; font-size: clamp(2.7rem, 6.4vw, 5.4rem); line-height: 1.02; letter-spacing: -.03em; color: #fff; margin: 0 0 24px; text-shadow: 0 1px 3px rgba(0,0,0,.42), 0 3px 34px rgba(0,0,0,.5); }
.hero-title .uline::after{ height: .14em; bottom: .02em; }
.hero-sub{ font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: #fff; max-width: 46ch; margin: 0 0 32px; text-shadow: 0 1px 2px rgba(0,0,0,.5), 0 2px 22px rgba(0,0,0,.55); }
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-rating{ display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; padding: 9px 16px 9px 12px;
  background: rgba(255,255,255,.94); border-radius: 999px; box-shadow: var(--shadow); }
.hero-rating .g-ic{ width: 24px; height: 24px; flex: none; }
.hero-rating .stars{ color: #f5a623; letter-spacing: 1px; font-size: 13px; }
.hero-rating b{ color: var(--ink); font-weight: 700; }
.hero-rating span{ font-size: 13.5px; color: var(--body); }

/* Quote card */
.quote-card{ background: #fff; border-radius: var(--radius); padding: clamp(22px, 2.2vw, 30px); box-shadow: var(--shadow-lg); }
.quote-card h2{ font-family: var(--font-display); font-weight: 700; font-size: 1.55rem; letter-spacing: -.02em; color: var(--ink); margin: 0 0 4px; }
.quote-card .q-sub{ font-size: 14.5px; color: var(--body); margin: 0 0 18px; }
.q-field{ margin-bottom: 12px; }
.q-field label{ display: block; font-family: var(--font-display); font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.q-input{ width: 100%; font: inherit; font-size: 15px; color: var(--ink); background: var(--white); border: 1.5px solid var(--hair-2); border-radius: 12px; padding: 12px 14px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.q-input::placeholder{ color: #a2a89f; }
.q-input:focus{ outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(182,240,60,.4); }
select.q-input{ appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1d1b' stroke-width='2.4'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.q-field.two{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.q-field.two > div{ margin: 0; }
.q-input.err{ border-color: #c0553f; box-shadow: 0 0 0 3px rgba(192,85,63,.14); }
.q-submit{ width: 100%; margin-top: 6px; }
.q-note{ font-size: 12px; color: var(--faint); text-align: center; margin-top: 12px; }
.q-status{ font-size: 13px; color: var(--ink); font-weight: 500; margin-top: 10px; }
.q-status a{ text-decoration: underline; }

/* ---------------- Credentials strip ---------------- */
.creds{ border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: var(--white); }
.creds-inner{ display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 44px; padding-block: 20px; }
.cred{ display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
.cred svg{ width: 20px; height: 20px; color: var(--ink); flex: none; }
.cred .ic{ display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--lime); flex: none; }
.cred .ic svg{ width: 15px; height: 15px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; z-index: 2; }
.svc{ position: relative; display: flex; flex-direction: column; padding: 32px 30px 28px; background: #fff;
  border: 1.5px solid var(--hair); border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.svc:hover{ transform: translateY(-6px); border-color: var(--ink); box-shadow: var(--shadow); }
.svc-num{ font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: .1em; color: var(--ink); margin-bottom: 20px;
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--lime); }
.svc h3{ font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; line-height: 1.1; color: var(--ink); margin-bottom: 12px; }
.svc p{ font-size: 15px; color: var(--body); margin-bottom: 24px; }
.svc .arrow-link{ margin-top: auto; }
.svc--feature{ background: var(--ink); border-color: var(--ink); }
.svc--feature .svc-num{ background: var(--lime); color: var(--ink); }
.svc--feature h3{ color: #fff; }
.svc--feature p{ color: #b9c0b7; }
.svc--feature .arrow-link{ color: #fff; }
.svc--feature:hover{ box-shadow: 0 30px 60px -30px rgba(26,29,27,.6); }

/* ============================================================
   SCENIC BAND (clean full-bleed image, floating card)
   ============================================================ */
.scenic{ position: relative; }
.scenic-img{ width: 100%; height: clamp(440px, 64vh, 680px); object-fit: cover; object-position: 50% 58%; }
.scenic-card{ position: absolute; left: clamp(18px, 5vw, 90px); bottom: clamp(28px, 6vw, 64px); max-width: 500px;
  background: #fff; border-radius: var(--radius); padding: 32px 34px; box-shadow: var(--shadow-lg); }
.scenic-card .k{ font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.scenic-card .k::before{ content: ""; width: 26px; height: 4px; border-radius: 2px; background: var(--lime); }
.scenic-card p{ font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.18; letter-spacing: -.02em; color: var(--ink); margin: 0 0 16px; }
.scenic-card .attrib{ font-size: 13.5px; font-weight: 600; color: var(--body); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid{ display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 76px); align-items: center; position: relative; z-index: 2; }
.about-figure{ position: relative; }
.about-figure img{ width: 100%; height: clamp(440px, 58vh, 640px); object-fit: cover; border-radius: var(--radius); }
.about-figure .badge-float{ position: absolute; right: -16px; bottom: 24px; }
.about-body h2{ margin-bottom: 22px; }
.about-body p{ font-size: 1.06rem; color: var(--body); margin-bottom: 18px; max-width: 54ch; }
.about-values{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px 28px; margin: 28px 0 32px; }
.about-value{ display: flex; gap: 13px; align-items: flex-start; }
.about-value .tick{ display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: var(--lime); flex: none; margin-top: 1px; }
.about-value .tick svg{ width: 15px; height: 15px; color: var(--ink); }
.about-value b{ display: block; font-family: var(--font-display); color: var(--ink); font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }
.about-value span{ font-size: 14px; color: var(--body); }

/* Google badge */
.gbadge{ display: inline-flex; align-items: center; gap: 16px; background: #fff; border: 1.5px solid var(--hair); border-radius: 16px; padding: 14px 20px; box-shadow: var(--shadow-lg); }
.gbadge .g-logo{ width: 38px; height: 38px; flex: none; }
.gbadge .divider{ width: 1px; height: 40px; background: var(--hair); }
.gbadge .g-rows{ display: flex; flex-direction: column; gap: 3px; }
.gbadge .g-top{ display: flex; align-items: center; gap: 8px; }
.gbadge .stars{ color: #f5a623; letter-spacing: 1px; font-size: 15px; }
.gbadge .num{ font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 17px; }
.gbadge .g-sub{ font-size: 13px; color: var(--body); font-weight: 500; }

/* ============================================================
   CAROUSEL (shared: gallery + reviews)
   ============================================================ */
.carousel-head{ display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; position: relative; z-index: 2; }
.carousel-nav{ display: flex; gap: 10px; flex: none; }
.cbtn{ width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--hair-2); background: #fff; color: var(--ink);
  display: grid; place-items: center; transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease); }
.cbtn:hover{ background: var(--lime); border-color: var(--lime); }
.cbtn:active{ transform: scale(.94); }
.cbtn svg{ width: 20px; height: 20px; }
.cbtn[disabled]{ opacity: .35; cursor: default; }
.cbtn[disabled]:hover{ background: #fff; border-color: var(--hair-2); }
.carousel{ position: relative; z-index: 2; }
.track{ display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding-bottom: 6px; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); -ms-overflow-style: none; scrollbar-width: none; }
.track::-webkit-scrollbar{ display: none; }

/* Gallery tiles */
.gtile{ flex: 0 0 clamp(280px, 42vw, 460px); scroll-snap-align: start; position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; border: 0; padding: 0; background: var(--white-2); cursor: pointer; display: block; }
.gtile img{ width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gtile:hover img{ transform: scale(1.06); }
.gtile .cap{ position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 22px 18px; text-align: left;
  background: linear-gradient(0deg, rgba(20,24,20,.82), rgba(20,24,20,0)); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 9px; }
.gtile .cap .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--lime); flex: none; }
.gtile .zoom{ position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink);
  display: grid; place-items: center; opacity: 0; transform: scale(.85); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.gtile:hover .zoom, .gtile:focus-visible .zoom{ opacity: 1; transform: scale(1); }
.gtile .zoom svg{ width: 18px; height: 18px; }

/* Review cards */
.rtile{ flex: 0 0 clamp(300px, 38vw, 440px); scroll-snap-align: start; display: flex; flex-direction: column;
  background: #fff; border: 1.5px solid var(--hair); border-radius: var(--radius); padding: 30px 30px; }
.rtile .stars{ color: #f5a623; font-size: 16px; letter-spacing: 1px; margin-bottom: 16px; }
.rtile blockquote{ margin: 0 0 22px; font-size: 16px; line-height: 1.6; color: #2c322d; flex: 1; }
.rtile .who{ display: flex; align-items: center; gap: 13px; }
.rtile .avatar{ width: 44px; height: 44px; border-radius: 12px; flex: none; background: var(--lime); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.rtile .who b{ display: block; font-family: var(--font-display); color: var(--ink); font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.rtile .who span{ font-size: 12.5px; color: var(--body); font-weight: 500; }

.reviews-top{ display: flex; flex-wrap: wrap; gap: 24px 44px; align-items: center; }
.rating-lockup{ display: flex; align-items: center; gap: 16px; padding: 14px 22px; background: var(--ink); border-radius: 16px; }
.rating-lockup .big{ font-family: var(--font-display); font-weight: 700; font-size: 2.8rem; line-height: 1; color: #fff; }
.rating-lockup .r-side .stars{ color: #f5a623; font-size: 16px; letter-spacing: 2px; }
.rating-lockup .r-side .r-cap{ font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 4px; }
.rating-lockup .g-logo{ width: 30px; height: 30px; }

/* ---------------- Lightbox (gallery modal) ---------------- */
.lightbox{ position: fixed; inset: 0; z-index: 120; display: none; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 48px);
  background: rgba(12,15,12,.86); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); opacity: 0; transition: opacity .3s var(--ease); }
.lightbox.open{ display: flex; opacity: 1; }
.lb-stage{ position: relative; max-width: 1200px; width: 100%; }
.lb-figure{ margin: 0; }
.lb-figure img{ width: 100%; max-height: 82vh; object-fit: contain; border-radius: 12px; background: #000; }
.lb-cap{ margin-top: 14px; text-align: center; color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.lb-cap .count{ color: rgba(255,255,255,.6); font-weight: 500; margin-left: 10px; }
.lb-btn{ position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.92); color: var(--ink); display: grid; place-items: center; }
.lb-btn:hover{ background: var(--lime); }
.lb-prev{ left: -8px; } .lb-next{ right: -8px; }
.lb-btn svg{ width: 24px; height: 24px; }
.lb-close{ position: fixed; top: 20px; right: 22px; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; display: grid; place-items: center; }
.lb-close:hover{ background: #fff; color: var(--ink); }
.lb-close svg{ width: 24px; height: 24px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap{ max-width: 900px; margin: 0 auto; border-top: 1px solid var(--hair); position: relative; z-index: 2; }
.faq{ border-bottom: 1px solid var(--hair); }
.faq summary{ list-style: none; cursor: pointer; padding: 26px 46px 26px 4px; position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: -.02em; color: var(--ink); transition: color .2s var(--ease); }
.faq summary::-webkit-details-marker{ display: none; }
.faq summary:hover{ color: var(--ink); }
.faq summary::after{ content: ""; position: absolute; right: 4px; top: 50%; width: 30px; height: 30px; margin-top: -15px; border-radius: 8px; background: var(--lime)
  url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1d1b' stroke-width='2.6' stroke-linecap='round'><path d='M12 5v14M5 12h14'/></svg>") center/16px no-repeat; transition: transform .3s var(--ease); }
.faq[open] summary::after{ transform: rotate(135deg); }
.faq-body{ padding: 0 46px 26px 4px; font-size: 15.5px; color: var(--body); max-width: 70ch; }
.faq-body a{ color: var(--ink); text-decoration: underline; }

/* ============================================================
   CTA BAND (clean bg video, content on solid card)
   ============================================================ */
.cta-band{ position: relative; overflow: hidden; min-height: clamp(440px, 64vh, 620px); display: flex; align-items: center; justify-content: center; background: var(--ink); }
.cta-band video, .cta-band img.cta-poster{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band video{ opacity: 0; transition: opacity .8s var(--ease); }
.cta-band video.ready{ opacity: 1; }
.cta-card{ position: relative; z-index: 2; text-align: center; background: #fff; border-radius: 24px;
  padding: clamp(38px, 5vw, 60px) clamp(28px, 5vw, 64px); max-width: 660px; margin-inline: var(--pad); box-shadow: var(--shadow-lg); }
.cta-card .eyebrow{ justify-content: center; }
.cta-card h2{ margin-bottom: 14px; }
.cta-card p{ font-size: 1.08rem; color: var(--body); max-width: 44ch; margin: 0 auto 28px; }
.cta-card .hero-ctas{ justify-content: center; }

/* ============================================================
   FOOTER (charcoal — gradient + noise per house dark-section rule)
   ============================================================ */
.footer{ position: relative; color: #c2c8c1; background: linear-gradient(176deg, #232723 0%, var(--ink) 100%); overflow: hidden; }
.footer .noise-overlay{ position: absolute; inset: 0; opacity: .035; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>"); }
.footer .ghost{ bottom: -3rem; left: 50%; transform: translateX(-50%); -webkit-text-stroke: 2px rgba(255,255,255,.045); }
.footer-inner{ position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 8vw, 96px) var(--pad) 40px; }
.footer-grid{ display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .f-name{ font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; color: #fff; }
.footer-brand .f-name .dot{ color: var(--lime); }
.footer-brand .f-sub{ font-family: var(--font-display); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--lime); margin-top: 4px; }
.footer-brand p{ margin-top: 18px; font-size: 14.5px; color: #9aa199; max-width: 34ch; }
.footer h4{ font-family: var(--font-display); color: #fff; font-weight: 600; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer li{ margin-bottom: 11px; }
.footer a, .footer li span{ font-size: 14.5px; color: #a9b0a8; transition: color .2s var(--ease); }
.footer a:hover{ color: var(--lime); }
.footer-bottom{ position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 22px var(--pad); border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: 12.5px; color: #838a82; }

/* ============================================================
   MOBILE STICKY CTAs
   ============================================================ */
.sticky-cta{ position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: none; gap: 12px;
  padding: 14px var(--pad) calc(14px + env(safe-area-inset-bottom, 0px)); pointer-events: none; opacity: 0; transform: translateY(18px);
  transition: opacity .3s var(--ease), transform .3s var(--ease); }
.sticky-cta.show{ opacity: 1; transform: none; }
.sticky-cta a{ pointer-events: auto; flex: 1; text-align: center; justify-content: center; box-shadow: 0 8px 24px -4px rgba(26,29,27,.5), 0 0 0 1px rgba(255,255,255,.3); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px){
  .hero-grid{ grid-template-columns: 1fr; gap: 30px; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-figure{ order: 2; }
  .about-figure img{ height: clamp(320px, 50vh, 460px); }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 860px){
  .nav-links{ display: none; }
  .menu-btn{ display: block; }
  /* Mobile hero: video-forward, action visible immediately */
  .hero{ min-height: 100svh; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
         padding-top: calc(var(--nav-h) + 112px); padding-bottom: 40px; }
  html:not(.past-hero) #brand{ top: calc(var(--nav-h) + 16px); transform: translateX(-50%) scale(1.14); }
  .hero-media video, .hero-media img{ object-position: 50% 46%; transform: scale(1.12); }
  .hero-inner{ flex: 1; display: flex; }
  .hero-grid{ display: flex; flex-direction: column; flex: 1; gap: 0; }
  .hero .hero-eyebrow{ display: none; }
  .hero-copy{ flex: 1; display: flex; flex-direction: column; justify-content: flex-end; max-width: none; }
  .hero-title{ font-size: clamp(2.4rem, 10.5vw, 3.5rem); margin-bottom: 16px; }
  .hero-sub{ font-size: 1.02rem; margin-bottom: 22px; }
  .hero-rating{ margin-top: 20px; }
  .quote-card{ margin-top: 26px; }
  .sticky-cta{ display: flex; }
}
@media (max-width: 600px){
  body{ font-size: 16px; }
  .services-grid{ grid-template-columns: 1fr; }
  .about-values{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }
  .scenic-card{ left: var(--pad); right: var(--pad); bottom: 18px; max-width: none; padding: 24px 24px; }
  .hero-ctas .btn{ flex: 1; }
  .about-figure .badge-float{ right: 0; left: 0; display: flex; justify-content: center; }
  .carousel-head{ flex-direction: column; align-items: flex-start; }
  .lb-prev{ left: 4px; } .lb-next{ right: 4px; }
}
@media (max-width: 430px){
  html:not(.past-hero) #brand{ transform: translateX(-50%) scale(1.02); top: calc(var(--nav-h) + 12px); }
  .hero{ padding-top: calc(var(--nav-h) + 96px); }
}
