/* =========================================================
   APPLIX Appliance Repair — Design System
   Palette:
     --ink        #12181A  (near-black gray, primary text)
     --forest     #0E3B2E  (deep green, primary brand)
     --forest-2   #144C3B  (secondary green, gradients)
     --signal     #3FA66C  (bright accent green, CTAs)
     --sage       #EAF2ED  (pale green surface)
     --paper      #FAFAF8  (off-white background)
     --white      #FFFFFF
   Type:
     Display/UI: 'Inter'
     Utility/data: 'IBM Plex Mono' (specs, stats, ticket numbers)
   Signature: "Service Ticket" motif — every service/step is framed
   like a technician's diagnostic ticket (mono code + status dot),
   nodding to the precision/24-7 dispatch nature of the business.
   ========================================================= */

:root {
  --ink: #12181a;
  --ink-soft: #4b5563;
  --forest: #0e3b2e;
  --forest-2: #144c3b;
  --signal: #3fa66c;
  --signal-light: #e7f5ec;
  --sage: #eaf2ed;
  --paper: #fafaf8;
  --white: #ffffff;
  --line: rgba(18, 24, 26, 0.09);
  --line-soft: rgba(255, 255, 255, 0.14);
  --shadow-1: 0 1px 2px rgba(18, 24, 26, 0.06), 0 8px 24px rgba(18, 24, 26, 0.06);
  --shadow-2: 0 20px 60px rgba(14, 59, 46, 0.18);
  --radius-s: 10px;
  --radius-m: 16px;
  --radius-l: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.mono {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.02em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 3px var(--signal-light);
}

h1, h2, h3, h4 { margin: 0; font-weight: 650; letter-spacing: -0.025em; color: var(--ink); }
h1 { font-size: clamp(2.8rem, 6.2vw, 5.6rem); line-height: 0.98; font-weight: 700; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); line-height: 1.05; letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; }
p { color: var(--ink-soft); margin: 0; }

.section { padding: 132px 0; position: relative; }
.section-tight { padding: 80px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 64px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--signal);
  color: #08241a;
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 10px 30px rgba(63,166,108,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(63,166,108,.45); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(18,24,26,.28); }
.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}
.btn-outline:hover { border-color: var(--forest); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(250, 250, 248, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(18,24,26,.05);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; color: var(--white); transition: color .4s ease; }
.nav.scrolled .brand { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  flex: none;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.82);
  transition: color .3s ease; position: relative;
}
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--forest); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px; font-weight: 600; color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.nav.scrolled .nav-phone { color: var(--ink); }
.nav-toggle { display: none; }

/* ---------- Animated hamburger ---------- */
.nav-toggle {
  width: 38px; height: 38px; border: none; background: transparent;
  position: relative; flex: none;
}
.nav-toggle span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s ease, background .3s ease;
}
.nav.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.active span { background: var(--white) !important; }
.nav-toggle.active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- Full-screen mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: linear-gradient(160deg, #0e3b2e 0%, #0a281f 100%);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  padding: 100px 32px 40px;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu-links a {
  color: var(--white); font-size: 1.7rem; font-weight: 650; letter-spacing: -0.02em;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}
.mobile-menu.open .mobile-menu-links a { opacity: 1; transform: translateY(0); }
.mobile-menu-links a:nth-child(1) { transition-delay: .06s; }
.mobile-menu-links a:nth-child(2) { transition-delay: .11s; }
.mobile-menu-links a:nth-child(3) { transition-delay: .16s; }
.mobile-menu-links a:nth-child(4) { transition-delay: .21s; }
.mobile-menu-links a:nth-child(5) { transition-delay: .26s; }
.mobile-menu-links a:nth-child(6) { transition-delay: .31s; }
.mobile-menu-foot {
  margin-top: auto; display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transform: translateY(14px); transition: opacity .5s ease .36s, transform .5s ease .36s;
}
.mobile-menu.open .mobile-menu-foot { opacity: 1; transform: translateY(0); }
.mobile-menu-foot a.phone { color: var(--signal); font-family: "IBM Plex Mono", monospace; font-size: 1.1rem; font-weight: 600; }
body.menu-open { overflow: hidden; }

/* ---------- Mobile sticky action bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: rgba(250,250,248,.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-cta-bar a { flex: 1; text-align: center; padding: 13px 10px; font-size: 14.5px; }
@media (max-width: 760px) {
  .mobile-cta-bar { display: flex; }
  .floaters { bottom: 78px; }
  body { padding-bottom: 64px; }
}

/* Tap feedback for touch devices */
@media (hover: none) {
  .btn:active, .service-card:active, .feature-card:active, .review-card:active { transform: scale(.97); }
}

/* ---------- Hero (full-bleed photo, cinematic) ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a1f18;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transform: scale(1.02); }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(6,20,14,.92) 0%, rgba(8,26,19,.62) 38%, rgba(9,28,20,.22) 62%, rgba(9,28,20,.5) 100%),
    linear-gradient(90deg, rgba(6,20,14,.55) 0%, transparent 45%);
}
.hero-topline {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; justify-content: center; padding-top: 120px;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding-top: 140px; padding-bottom: 74px; width: 100%; }
.hero-content { max-width: 760px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 16px 8px 8px; border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-badge .stars { color: #ffce54; font-size: 13px; letter-spacing: 2px; }
.hero-badge span.count { color: rgba(255,255,255,.72); font-size: 13px; }
.hero-badge .pill { background: var(--signal); color:#08241a; font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 100px; }

.hero h1 { color: var(--white); text-shadow: 0 2px 30px rgba(0,0,0,.25); }
.hero h1 em { font-style: normal; color: var(--signal); }
.hero-sub { color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.4vw, 1.28rem); max-width: 560px; margin-top: 24px; line-height: 1.5; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 30px; }
.hero-tags span { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.88); font-size: 14.5px; font-weight: 500; }
.hero-tags svg { width: 16px; height: 16px; color: var(--signal); flex: none; }
.hero-cta { display: flex; gap: 14px; margin-top: 42px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 44px; margin-top: 64px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.16); max-width: 640px; flex-wrap: wrap;
}
.hero-stats div b { display: block; font-family: "IBM Plex Mono", monospace; font-size: clamp(1.5rem,2.2vw,2rem); color: var(--white); font-weight: 600; }
.hero-stats div span { color: rgba(255,255,255,.6); font-size: 12.5px; }

.hero-scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.55); font-size: 11px; letter-spacing: .12em;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: "IBM Plex Mono", monospace;
}
.hero-scroll-cue .line { width: 1px; height: 30px; background: linear-gradient(180deg, rgba(255,255,255,.7), transparent); animation: scrollcue 2s ease-in-out infinite; }
@keyframes scrollcue { 0%{opacity:0; transform:scaleY(.4);} 40%{opacity:1;transform:scaleY(1);} 100%{opacity:0;transform:scaleY(.4) translateY(10px);} }

@media (max-width: 760px) {
  .hero-stats { gap: 28px; }
  .hero { min-height: 92svh; }
}

/* ---------- Stat bar ---------- */
.statbar { background: var(--ink); }
.statbar .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
.stat b { display: block; color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); font-family: "IBM Plex Mono", monospace; font-weight: 600; }
.stat span { color: rgba(255,255,255,.55); font-size: 13px; letter-spacing: .02em; }

/* ---------- Cards: Why choose ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 34px 30px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); border-color: transparent; }
.feature-icon {
  width: 54px; height: 54px; border-radius: 15px;
  background: linear-gradient(155deg, var(--sage), #dfeee6);
  display: grid; place-items: center; margin-bottom: 22px;
  box-shadow: inset 0 0 0 1px rgba(14,59,46,.06);
}
.feature-icon svg { width: 24px; height: 24px; color: var(--forest); stroke-width: 1.6; }
.feature-card h3 { margin-bottom: 9px; font-size: 1.32rem; }
.feature-card p { font-size: 14.5px; line-height: 1.55; }

/* ---------- Service cards ---------- */
.service-card {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px;
  isolation: isolate;
  border: 1px solid var(--line);
}
.service-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: var(--svc-bg, linear-gradient(155deg, #dcece2, #eef4f0));
  transition: transform .7s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(14,59,46,.82) 0%, rgba(14,59,46,0) 55%);
  opacity: 0; transition: opacity .4s ease;
}
.service-card:hover::before { transform: scale(1.07); }
.service-card:hover::after { opacity: 1; }
.service-card .tag {
  font-family: "IBM Plex Mono", monospace; font-size: 11.5px; color: var(--forest);
  background: rgba(255,255,255,.75); width: fit-content; padding: 5px 10px; border-radius: 100px; margin-bottom: 14px;
  transition: color .4s ease, background .4s ease;
}
.service-card:hover .tag { background: rgba(255,255,255,.16); color: var(--white); }
.service-card h3 { color: var(--ink); transition: color .4s ease; font-size: 1.34rem; letter-spacing: -0.02em; }
.service-card:hover h3 { color: var(--white); }
.service-card .go {
  margin-top: 10px; display: flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600;
  color: var(--forest); opacity: 0; transform: translateY(6px); transition: all .4s ease;
}
.service-card:hover .go { color: var(--white); opacity: 1; transform: translateY(0); }

/* Service cards with a real photo background */
.service-card.photo::before { background-size: cover; background-position: center; }
.service-card.photo::after { opacity: .62; background: linear-gradient(0deg, rgba(10,30,22,.92) 0%, rgba(10,30,22,.15) 65%, rgba(10,30,22,.05) 100%); }
.service-card.photo:hover::after { opacity: .8; }
.service-card.photo .tag { background: rgba(255,255,255,.16); color: var(--white); }
.service-card.photo h3 { color: var(--white); }
.service-card.photo .go { color: var(--white); opacity: 1; transform: translateY(0); }

/* Hero visual with a real photo */
.hero-visual img, .svc-visual img, .gallery-item img, .about-photo img, .detail-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Recent repairs gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; gap: 14px; }
.gallery-item { position: relative; border-radius: var(--radius-m); overflow: hidden; isolation: isolate; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,30,22,.55) 0%, transparent 45%); opacity: 0; transition: opacity .4s ease; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-cap { position: absolute; left: 14px; bottom: 12px; color: #fff; font-size: 13px; font-weight: 600; opacity: 0; transform: translateY(6px); transition: all .4s ease; z-index: 2; }
.gallery-item:hover .gallery-cap { opacity: 1; transform: translateY(0); }

/* About / detail photo frames */
.about-photo, .detail-photo { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); }
.about-photo { height: 460px; }
.detail-photo { height: 320px; margin-bottom: 18px; }

@media (max-width: 820px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Brands ---------- */
.brand-tiers { display: flex; flex-direction: column; gap: 44px; }
.brand-tier-label { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.brand-tier-label span { font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap; }
.brand-tier-label::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.brand-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-m); overflow: hidden; }
.brand-tile {
  background: var(--white); padding: 30px 14px; text-align: center;
  font-family: "IBM Plex Mono", monospace; font-weight: 600; font-size: 13.5px; color: var(--ink-soft);
  transition: color .3s ease, background .3s ease;
}
.brand-tile:hover { color: var(--forest); background: var(--sage); }
.brand-tier-premium .brand-tile { font-size: 14px; letter-spacing: .01em; }

/* ---------- Reviews ---------- */
.review-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: 28px; display: flex; flex-direction: column; gap: 14px; height: 100%;
}
.review-stars { color: #ffb400; font-size: 14px; letter-spacing: 2px; }
.review-card p { color: var(--ink); font-size: 14.5px; }
.review-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--sage); display: grid; place-items: center; font-weight: 700; color: var(--forest); font-size: 13px; }
.review-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.review-loc { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- Areas ---------- */
.area-panel {
  background: var(--forest); border-radius: var(--radius-l); padding: 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; position: relative; overflow: hidden;
}
.area-panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 90% 10%, rgba(63,166,108,.25), transparent 60%);
}
.area-panel h2, .area-panel .eyebrow { color: var(--white); position: relative; }
.area-panel .eyebrow { color: var(--signal); }
.area-panel p.lead { color: rgba(255,255,255,.7); position: relative; margin-top: 14px; }
.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 18px; position: relative; }
.city-grid a { font-size: 14px; color: rgba(255,255,255,.82); display: flex; align-items: center; gap: 8px; transition: color .25s ease; }
.city-grid a:hover { color: var(--signal); }
.city-grid a::before { content: "→"; color: var(--signal); font-size: 12px; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 1.02rem; font-weight: 600; color: var(--ink);
}
.faq-q .plus { width: 22px; height: 22px; border-radius: 50%; background: var(--sage); position: relative; flex: none; transition: transform .35s var(--ease); }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--forest); border-radius: 2px; }
.faq-q .plus::before { width: 10px; height: 2px; top: 10px; left: 6px; }
.faq-q .plus::after { width: 2px; height: 10px; top: 6px; left: 10px; transition: opacity .3s ease; }
.faq-item.open .plus { transform: rotate(180deg); background: var(--forest); }
.faq-item.open .plus::before, .faq-item.open .plus::after { background: var(--white); }
.faq-item.open .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding-bottom: 22px; font-size: 14.5px; max-width: 700px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); border-radius: var(--radius-l);
  padding: 64px; display: flex; justify-content: space-between; align-items: center; gap: 30px;
  position: relative; overflow: hidden;
}
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 100% at 100% 0%, rgba(63,166,108,.25), transparent 60%); }
.cta-band h2, .cta-band p { color: var(--white); position: relative; }
.cta-band p { color: rgba(255,255,255,.65); margin-top: 10px; }
.cta-band .btns { display: flex; gap: 12px; position: relative; flex: none; }

/* ---------- Footer ---------- */
footer { background: var(--forest-2); color: rgba(255,255,255,.75); padding: 72px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.foot-brand .brand { color: var(--white); margin-bottom: 14px; }
.foot-brand p { color: rgba(255,255,255,.6); font-size: 14px; max-width: 280px; }
.foot-col h4 { color: var(--white); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; font-family: "IBM Plex Mono", monospace; }
.foot-col a, .foot-col li { display: block; font-size: 14px; color: rgba(255,255,255,.65); margin-bottom: 11px; list-style: none; }
.foot-col a:hover { color: var(--signal); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: 12px; }
.foot-bottom a:hover { color: var(--white); }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.foot-social a:hover { background: var(--signal); }
.foot-social svg { width: 16px; height: 16px; }

/* ---------- Floating actions ---------- */
.floaters { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(18,24,26,.25);
  transition: transform .3s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab-call { background: var(--signal); color: #08241a; }
.fab-sms { background: var(--white); color: var(--forest); border: 1px solid var(--line); }
.fab svg { width: 22px; height: 22px; }
.fab-top {
  width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--white);
  display: grid; place-items: center; opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: all .3s var(--ease); box-shadow: 0 10px 24px rgba(18,24,26,.25);
}
.fab-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-top svg { width: 18px; height: 18px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; background: var(--forest); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader-mark { width: 72px; height: 72px; display: grid; place-items: center; animation: loaderPulse 1.1s ease-in-out infinite; }
.loader-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 6px 18px rgba(0,0,0,.25)); }
@keyframes loaderPulse { 0%,100%{ transform: scale(1); opacity: 1;} 50%{ transform: scale(.88); opacity: .7;} }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); border-radius: var(--radius-s); padding: 13px 14px;
  font-family: inherit; font-size: 14.5px; background: var(--white); color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--signal); box-shadow: 0 0 0 4px var(--signal-light);
}
.field textarea { resize: vertical; min-height: 110px; }

/* ---------- Success modal (booking confirmation) ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(9,20,15,.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
  padding: 20px;
}
.modal-overlay.show { opacity: 1; pointer-events: auto; }
.modal-card {
  background: var(--white); border-radius: var(--radius-l);
  max-width: 420px; width: 100%; padding: 44px 36px 36px;
  text-align: center; position: relative;
  transform: translateY(18px) scale(.97); transition: transform .4s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.modal-overlay.show .modal-card { transform: translateY(0) scale(1); }
.modal-check {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 22px;
  background: var(--signal-light); display: grid; place-items: center;
}
.modal-check svg { width: 30px; height: 30px; color: var(--signal); }
.modal-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.modal-card p { font-size: 14.5px; line-height: 1.55; }
.modal-eta {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  background: var(--sage); color: var(--forest); font-weight: 700; font-size: 13.5px;
  padding: 9px 16px; border-radius: 100px; font-family: "IBM Plex Mono", monospace;
}
.modal-close {
  margin-top: 26px; width: 100%;
}

/* ---------- Utility ---------- */
.pill-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--sage); color: var(--forest); font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 100px; font-family: "IBM Plex Mono", monospace; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.card-outline { border: 1px solid var(--line); border-radius: var(--radius-l); background: var(--white); }

:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--signal), #7fd39f);
  z-index: 300; transition: width .1s linear;
  box-shadow: 0 0 12px rgba(63,166,108,.6);
}

/* ---------- Hero cursor spotlight ---------- */
.hero-spotlight {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,166,108,.22), transparent 70%);
  pointer-events: none; z-index: 1; transform: translate(-50%,-50%);
  opacity: 0; transition: opacity .4s ease; left: 50%; top: 40%;
  mix-blend-mode: screen;
}
.hero:hover .hero-spotlight { opacity: 1; }
@media (max-width: 900px) { .hero-spotlight { display: none; } }

/* ---------- Film-grain texture over hero for cinematic depth ---------- */
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: .05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Tilt-enabled cards ---------- */
.tilt { transform-style: preserve-3d; will-change: transform; transition: transform .15s ease-out, box-shadow .4s ease; }

/* ---------- Anchor scroll offset for fixed nav ---------- */
#reviews, #areas { scroll-margin-top: 90px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 250; background: rgba(6,16,12,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
  padding: 40px;
}
.lightbox.show { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1000px, 90vw); max-height: 82vh; border-radius: 14px;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
  transform: scale(.96); transition: transform .35s var(--ease);
}
.lightbox.show img { transform: scale(1); }
.lightbox-cap { position: absolute; bottom: 34px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75); font-size: 14px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; color: #fff; transition: background .25s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.gallery-item { cursor: zoom-in; }
@media (max-width: 700px) {
  .lightbox-prev, .lightbox-next { width: 38px; height: 38px; }
  .lightbox { padding: 20px; }
}

/* ---------- Brand marquee (auto-scrolling strip) ---------- */
.brand-marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.brand-marquee-track { display: flex; width: max-content; gap: 56px; animation: marquee 34s linear infinite; }
.brand-marquee:hover .brand-marquee-track { animation-play-state: paused; }
.brand-marquee-track span { font-family: "IBM Plex Mono", monospace; font-weight: 600; font-size: 15px; color: var(--ink-soft); white-space: nowrap; opacity: .65; transition: opacity .3s ease, color .3s ease; }
.brand-marquee-track span:hover { opacity: 1; color: var(--forest); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .brand-marquee-track { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .area-panel { grid-template-columns: 1fr; padding: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .statbar .wrap { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .brand-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-phone span.label { display: none; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 40px 28px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding: 72px 0; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-strip { grid-template-columns: repeat(3, 1fr); }
}
