/* ============================================================
   Delta Services 247 — HVAC & Appliance Repair
   Aesthetic: heritage-trade editorial · deep navy + brass gold
   Fonts: Playfair Display (display) / Montserrat (structural) / Lato (body)
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
section[id], header[id] { scroll-margin-top: calc(var(--nav-h) + 14px); }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ---------- Tokens ---------- */
:root {
  --navy-900: #0c1320;
  --navy-850: #0f1826;
  --navy-800: #12192b;
  --navy-700: #1b273d;
  --navy-600: #26364f;
  --navy-500: #37496a;

  --gold:        #f0a91b;
  --gold-bright: #ffc247;
  --gold-deep:   #c67f10;
  --gold-soft:   #f7d79a;

  --cream:  #f6f1e8;
  --paper:  #faf7f0;
  --paper-2:#efe7d8;
  --ink:    #141c29;
  --ink-700:#3a4656;
  --ink-500:#6d7889;

  --line:   rgba(20, 28, 41, .13);
  --line-d: rgba(255, 255, 255, .12);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Montserrat", system-ui, -apple-system, sans-serif;
  --body:  "Lato", system-ui, -apple-system, sans-serif;

  --nav-h: 78px;
  --maxw: 1240px;
  --shadow-lg: 0 32px 70px -28px rgba(8, 14, 24, .55);
  --shadow-md: 0 18px 40px -20px rgba(8, 14, 24, .40);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--gold); color: var(--navy-900); padding: .6rem 1.2rem;
  font-family: var(--sans); font-weight: 700; z-index: 200; border-radius: 0 0 8px 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* Grain overlay across the whole page for texture */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 300; pointer-events: none;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Shared type ---------- */
.eyebrow, .section-eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: block; max-width: 100%;
  color: var(--gold-deep);
}
.eyebrow { color: var(--gold); }
.eyebrow__delta, .section-eyebrow > span:first-child { color: var(--gold); font-size: .7em; display: inline-block; margin-right: .5rem; transform: translateY(-1px); }
.section-eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
  max-width: 20ch;
}
.section-title--light { color: var(--cream); }

.stars { color: var(--gold); letter-spacing: .12em; font-size: 1rem; line-height: 1; }
.stars--lg { font-size: 1.5rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 700; font-size: .84rem;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .95rem 1.6rem; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn__arrow { width: 1.05em; height: 1.05em; transition: transform .25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--gold { background: var(--gold); color: var(--navy-900); box-shadow: 0 10px 26px -10px rgba(240, 169, 27, .7); }
.btn--gold:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(240, 169, 27, .8); }

.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn--ghost-gold { background: transparent; color: var(--gold); border: 1.5px solid rgba(240,169,27,.55); }
.btn--ghost-gold:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-2px); }

.btn--lg { padding: 1.1rem 2rem; font-size: .9rem; }
.btn--sm { padding: .7rem 1.15rem; font-size: .76rem; }
.btn--block { display: flex; width: 100%; margin-top: 1.6rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(12, 19, 32, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.nav--scrolled { background: rgba(10, 16, 27, .94); box-shadow: 0 10px 30px -12px rgba(0,0,0,.5); }

.nav__inner {
  max-width: var(--maxw); height: 100%; margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand { flex-shrink: 0; }
.nav__brand img { height: 42px; width: auto; }

.nav__links { display: flex; gap: 1.9rem; margin-left: auto; }
.nav__links a {
  font-family: var(--sans); font-weight: 500; font-size: .82rem;
  letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.82);
  position: relative; padding: .35rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .28s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.nav__links + .nav__actions { margin-left: 1.5rem; }

.nav__phone { display: inline-flex; align-items: center; gap: .5rem; color: #fff; font-family: var(--sans); font-weight: 700; font-size: .9rem; }
.nav__phone-ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(240,169,27,.15); color: var(--gold); }
.nav__phone-ico svg { width: 16px; height: 16px; }
.nav__phone:hover { color: var(--gold); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-right: -8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — hidden by default via display:none (not just [hidden]) */
.mobile-menu {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(10, 16, 27, .98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-d);
  padding: 1.4rem clamp(1.1rem, 4vw, 2.5rem) 2rem;
  flex-direction: column; gap: .2rem;
}
.mobile-menu.is-open { display: flex; animation: menuDrop .32s var(--ease); }
@keyframes menuDrop { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
.mobile-menu a {
  font-family: var(--sans); font-weight: 600; font-size: 1rem; letter-spacing: .04em;
  text-transform: uppercase; color: rgba(255,255,255,.9); padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu__cta { justify-content: center; margin-top: 1.3rem; border-bottom: none !important; color: var(--navy-900) !important; }
.mobile-menu__phone { text-align: center; color: var(--gold) !important; border-bottom: none !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 62%, #0a1019 100%);
  color: #fff;
  min-height: calc(100svh - var(--nav-h));
  margin-top: var(--nav-h);
  display: flex; align-items: center;
  padding: clamp(2rem, 5vh, 3.5rem) 0;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(120% 90% at 78% 30%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 78% 30%, #000 0%, transparent 72%);
}
.hero__glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  top: -14%; right: -8%;
  background: radial-gradient(circle, rgba(240,169,27,.20) 0%, transparent 68%);
  filter: blur(10px);
}

.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}

.hero__title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(2.35rem, 5.4vw, 4.05rem);
  line-height: 1.04; letter-spacing: -.015em;
  margin: 1.25rem 0 1.3rem;
}
.hero__title em { font-style: italic; font-weight: 600; color: var(--gold); }

.hero__lede {
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  color: rgba(255,255,255,.82); max-width: 40ch; line-height: 1.68;
}
.hero__lede strong { color: #fff; }

.hero__cta { display: flex; gap: .9rem; flex-wrap: wrap; margin: 1.9rem 0 1.7rem; }

.hero__copy { min-width: 0; }
.hero__proof { display: flex; align-items: center; gap: .85rem; min-width: 0; }
.hero__proof .stars { font-size: 1.15rem; flex-shrink: 0; }
.hero__proof-txt { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.hero__proof-txt strong { font-family: var(--sans); font-weight: 700; font-size: .92rem; letter-spacing: .02em; }
.hero__proof-txt span { font-size: .82rem; color: rgba(255,255,255,.62); }

/* Hero media */
.hero__media { position: relative; justify-self: center; width: 100%; max-width: 440px; min-width: 0; }
.hero__photo {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.10);
  aspect-ratio: 4 / 5;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::before {
  content: ""; position: absolute; inset: -14px -14px auto auto;
  width: 62%; height: 62%; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  border-top-right-radius: 24px; opacity: .8; z-index: -1;
}
.hero__badge {
  position: absolute; left: -18px; bottom: 34px;
  background: var(--gold); color: var(--navy-900);
  padding: .85rem 1.15rem; border-radius: 12px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; line-height: 1.1;
}
.hero__badge-k { font-family: var(--serif); font-weight: 800; font-size: 1.12rem; font-style: italic; }
.hero__badge-v { font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.hero__chip {
  position: absolute; right: -14px; top: 22px;
  background: rgba(12,19,32,.86); backdrop-filter: blur(6px);
  border: 1px solid var(--line-d); color: #fff;
  padding: .6rem .9rem; border-radius: 10px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .5rem; font-size: .84rem; font-family: var(--sans);
}
.hero__chip strong { color: var(--gold); }
.hero__chip-star { color: var(--gold); }

/* ============================================================
   MARQUEE (gold band)
   ============================================================ */
.marquee {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 45%, var(--gold-bright) 55%, var(--gold-deep));
  overflow: hidden; border-top: 1px solid rgba(0,0,0,.15); border-bottom: 1px solid rgba(0,0,0,.15);
  padding: .85rem 0;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap;
  animation: marquee 38s linear infinite; will-change: transform;
}
.marquee span {
  font-family: var(--sans); font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--navy-900);
}
.marquee__dot { color: rgba(12,19,32,.5) !important; font-size: .7rem !important; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================
   WHY / ABOUT (light)
   ============================================================ */
.why { background: var(--cream); padding: clamp(4rem, 9vh, 7rem) 0; }
.why__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.section-eyebrow { margin-bottom: 1.1rem; }
.why__body { margin-top: 1.4rem; font-size: 1.08rem; color: var(--ink-700); max-width: 52ch; }

.why__delta {
  margin-top: 2rem; padding: 1.5rem 1.6rem 1.5rem 1.8rem;
  background: #fff; border-radius: 14px; border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  font-size: 1rem; color: var(--ink-700); position: relative; box-shadow: var(--shadow-md);
}
.why__delta em { font-family: var(--serif); font-style: italic; color: var(--ink); font-weight: 600; }
.why__delta-mark {
  display: inline-block; font-family: var(--serif); font-weight: 800; font-style: italic;
  color: var(--gold-deep); font-size: 1.5rem; margin-right: .55rem; vertical-align: -2px;
}

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.stat { background: var(--paper); padding: 1.7rem 1.4rem; text-align: center; }
.stat__num {
  display: block; font-family: var(--serif); font-weight: 800; color: var(--navy-700);
  font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1;
}
.stat__label { display: block; margin-top: .6rem; font-family: var(--sans); font-weight: 500; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-500); }

/* ============================================================
   SERVICES (dark)
   ============================================================ */
.services { background: var(--navy-800); color: #fff; padding: clamp(4rem, 9vh, 7rem) 0; position: relative; overflow: hidden; }
.services::before {
  content: "\0394"; position: absolute; right: -3%; top: -8%;
  font-family: var(--serif); font-weight: 900; font-style: italic;
  font-size: 40rem; line-height: 1; color: rgba(255,255,255,.02); pointer-events: none;
}
.services__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }
.services__head { max-width: 60ch; margin-bottom: 3rem; }
.services__head .section-title { max-width: 24ch; margin-top: .3rem; }
.services__note { margin-top: 1.2rem; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.services__note strong { color: var(--gold); }

.services__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); }

.menu__title {
  font-family: var(--sans); font-weight: 700; font-size: 1.05rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: .8rem;
  padding-bottom: 1.1rem; margin-bottom: .4rem; border-bottom: 1px solid var(--line-d);
}
.menu__num { font-family: var(--serif); font-style: italic; font-weight: 700; color: rgba(255,255,255,.4); font-size: 1.2rem; }

.menu__item { padding: 1.15rem 0; border-bottom: 1px solid rgba(255,255,255,.08); display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; column-gap: .8rem; }
.menu__name { font-family: var(--serif); font-weight: 600; font-size: 1.24rem; color: #fff; }
.menu__lead { border-bottom: 1px dotted rgba(255,255,255,.28); transform: translateY(-.35em); align-self: stretch; }
.menu__price { font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.menu__desc { grid-column: 1 / -1; margin-top: .35rem; color: rgba(255,255,255,.62); font-size: .96rem; max-width: 52ch; }

.brands { margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-d); }
.brands__label { font-family: var(--sans); font-weight: 600; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: .9rem; }
.brands__list { display: flex; flex-wrap: wrap; gap: .5rem; }
.brands__list li {
  font-family: var(--sans); font-weight: 600; font-size: .8rem; color: rgba(255,255,255,.85);
  padding: .4rem .8rem; border: 1px solid var(--line-d); border-radius: 999px; background: rgba(255,255,255,.03);
}

/* ============================================================
   WORK / GALLERY (light)
   ============================================================ */
.work { background: var(--paper); padding: clamp(4rem, 9vh, 7rem) 0; }
.work__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }
.work__head { max-width: 55ch; margin-bottom: 2.6rem; }
.work__head .section-title { margin-top: .3rem; }
.work__note { margin-top: 1rem; color: var(--ink-500); font-size: 1rem; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 1rem; }
.gallery__item { position: relative; overflow: hidden; border-radius: 14px; box-shadow: var(--shadow-md); grid-row: span 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.1rem .9rem; color: #fff; font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .02em;
  background: linear-gradient(to top, rgba(8,13,22,.86), transparent);
  transform: translateY(6px); opacity: 0; transition: opacity .35s ease, transform .35s var(--ease);
}
.gallery__item:hover figcaption, .gallery__item:focus-within figcaption { opacity: 1; transform: none; }

/* ============================================================
   REVIEWS (dark)
   ============================================================ */
.reviews { background: linear-gradient(180deg, var(--navy-850), var(--navy-900)); color: #fff; padding: clamp(4rem, 9vh, 7rem) 0; }
.reviews__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }
.reviews__head { text-align: center; max-width: 34ch; margin: 0 auto 2.8rem; }
.reviews__head .section-eyebrow { justify-content: center; }
.reviews__head .section-title { margin: .4rem auto 0; }

.reviews__feature {
  max-width: 820px; margin: 0 auto 2.6rem; text-align: center;
  padding: 2.4rem clamp(1.4rem, 4vw, 3rem);
  background: rgba(255,255,255,.035); border: 1px solid var(--line-d); border-radius: 18px;
  position: relative;
}
.reviews__feature::before {
  content: "\201C"; position: absolute; top: -.35em; left: .4em;
  font-family: var(--serif); font-size: 6rem; color: var(--gold); opacity: .28; line-height: 1;
}
.reviews__feature p { font-family: var(--serif); font-size: clamp(1.25rem, 2.4vw, 1.72rem); line-height: 1.45; margin: 1rem 0 1.4rem; color: #fff; font-style: italic; }
.reviews__feature .stars--lg { display: inline-block; }

.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.review { background: rgba(255,255,255,.04); border: 1px solid var(--line-d); border-radius: 14px; padding: 1.7rem 1.6rem; display: flex; flex-direction: column; }
.review p { margin: .85rem 0 1.3rem; color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.6; }
cite { margin-top: auto; font-style: normal; display: flex; flex-direction: column; }
.reviews__name { font-family: var(--sans); font-weight: 700; font-size: .92rem; color: #fff; }
.reviews__place { font-size: .82rem; color: var(--gold); font-family: var(--sans); letter-spacing: .03em; }

.reviews__cta { text-align: center; margin-top: 2.6rem; }

/* ============================================================
   SERVICE AREA (light)
   ============================================================ */
.area { background: var(--cream); padding: clamp(4rem, 9vh, 7rem) 0; }
.area__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.area__body { margin: 1.4rem 0 1.9rem; color: var(--ink-700); font-size: 1.06rem; max-width: 42ch; }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chips li {
  font-family: var(--sans); font-weight: 600; font-size: .84rem; color: var(--navy-700);
  padding: .55rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 999px;
  transition: transform .2s var(--ease), border-color .2s ease, color .2s ease;
}
.chips li:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold-deep); }
.area__counties { margin-top: 1.6rem; font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-500); }

/* ============================================================
   VISIT / CONTACT (dark)
   ============================================================ */
.visit { background: var(--navy-800); color: #fff; padding: clamp(4rem, 9vh, 7rem) 0; }
.visit__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); }
.visit__head { text-align: center; margin-bottom: 3rem; }
.visit__head .section-eyebrow { justify-content: center; }
.visit__head .section-title { margin: .4rem auto 0; }

.visit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.info-card { background: rgba(255,255,255,.04); border: 1px solid var(--line-d); border-radius: 16px; padding: 2rem 1.8rem; position: relative; overflow: hidden; }
.info-card__title { font-family: var(--sans); font-weight: 600; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.info-card__big { font-family: var(--serif); font-weight: 700; font-size: 1.85rem; color: #fff; display: inline-block; }
.info-card__big:hover { color: var(--gold); }
.info-card__sub { margin: .8rem 0; color: rgba(255,255,255,.62); font-size: .94rem; }
.info-card__link { color: var(--gold); font-family: var(--sans); font-weight: 600; font-size: .92rem; }
.info-card__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.info-card__addr { font-family: var(--serif); font-size: 1.3rem; color: #fff; line-height: 1.4; margin-bottom: .9rem; }

.hours { display: flex; flex-direction: column; gap: .7rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .7rem; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .96rem; }
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: rgba(255,255,255,.7); }
.hours li span:last-child { font-family: var(--sans); font-weight: 600; }
.hours__emerg span:last-child { color: var(--gold); }

.seal { position: absolute; right: -22px; bottom: -22px; width: 120px; height: 120px; border-radius: 50%; border: 1px dashed rgba(240,169,27,.4); display: grid; place-items: center; text-align: center; }
.seal__delta { position: absolute; font-size: 6rem; color: rgba(240,169,27,.07); }
.seal__txt { font-family: var(--sans); font-weight: 700; font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); line-height: 1.4; position: relative; padding-right: 18px; padding-bottom: 18px; }

/* ============================================================
   FINAL CTA (gold)
   ============================================================ */
.final {
  background: radial-gradient(120% 140% at 20% 0%, var(--gold-bright) 0%, var(--gold) 40%, var(--gold-deep) 100%);
  color: var(--navy-900); padding: clamp(4rem, 10vh, 7rem) 0; position: relative; overflow: hidden;
}
.final::before {
  content: "\0394"; position: absolute; left: -2%; bottom: -30%;
  font-family: var(--serif); font-weight: 900; font-style: italic; font-size: 40rem; line-height: 1;
  color: rgba(12,19,32,.05); pointer-events: none;
}
.final__inner { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); text-align: center; }
.final__eyebrow { color: var(--navy-800) !important; justify-content: center; }
.final__eyebrow span { color: var(--navy-900) !important; }
.final__title { font-family: var(--serif); font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -.015em; margin: 1rem auto 2rem; max-width: 18ch; }
.final__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final .btn--ghost { border-color: rgba(12,19,32,.35); color: var(--navy-900); }
.final .btn--ghost:hover { border-color: var(--navy-900); background: var(--navy-900); color: var(--gold); }
.final .btn--gold { background: var(--navy-900); color: var(--gold); box-shadow: 0 14px 30px -12px rgba(12,19,32,.5); }
.final .btn--gold:hover { background: var(--navy-800); color: var(--gold-bright); }

/* ============================================================
   FOOTER (darkest)
   ============================================================ */
.footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: clamp(3.5rem, 7vh, 5rem) 0 0; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem); display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer__brand img { height: 46px; width: auto; margin-bottom: 1.1rem; }
.footer__tag { font-size: .95rem; max-width: 34ch; margin-bottom: 1rem; line-height: 1.6; }
.footer__col h4 { font-family: var(--sans); font-weight: 600; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer__col a:hover { color: var(--gold); }
.footer__col li { font-size: .95rem; }
.footer__contact .btn { margin-top: 1.3rem; }

.footer__bar { max-width: var(--maxw); margin: 3rem auto 0; padding: 1.6rem clamp(1.1rem, 4vw, 2.5rem); border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__bar p { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer__area { font-size: .78rem !important; }

/* ============================================================
   FAB (mobile call)
   ============================================================ */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; display: none;
  width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--navy-900);
  place-items: center; box-shadow: 0 12px 28px -8px rgba(240,169,27,.7);
  animation: fabpulse 2.6s ease-in-out infinite;
}
.fab svg { width: 24px; height: 24px; }
@keyframes fabpulse { 0%, 100% { box-shadow: 0 12px 28px -8px rgba(240,169,27,.7); } 50% { box-shadow: 0 12px 28px -8px rgba(240,169,27,.7), 0 0 0 10px rgba(240,169,27,.14); } }

/* ============================================================
   REVEAL (progressive enhancement — only hides when JS on)
   ============================================================ */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
/* orchestrated hero load */
html.js .hero .eyebrow { transition-delay: .08s; }
html.js .hero__title { transition-delay: .18s; }
html.js .hero__lede { transition-delay: .30s; }
html.js .hero__cta { transition-delay: .42s; }
html.js .hero__proof { transition-delay: .54s; }
html.js .hero__media { transition-delay: .32s; }
/* grid stagger */
html.js .reviews__grid .review:nth-child(2), html.js .visit__grid .info-card:nth-child(2) { transition-delay: .1s; }
html.js .reviews__grid .review:nth-child(3), html.js .visit__grid .info-card:nth-child(3) { transition-delay: .2s; }
html.js .reviews__grid .review:nth-child(4) { transition-delay: .12s; }
html.js .reviews__grid .review:nth-child(5) { transition-delay: .22s; }
html.js .reviews__grid .review:nth-child(6) { transition-delay: .32s; }
html.js .stat:nth-child(2) { transition-delay: .08s; }
html.js .stat:nth-child(3) { transition-delay: .16s; }
html.js .stat:nth-child(4) { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 66px; }
  .nav__toggle { display: flex; }
  .nav__phone-txt { display: none; }
  .nav__cta { display: none; }
  .nav__actions { gap: .6rem; }

  .hero { align-items: flex-start; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 2.4rem; padding-top: clamp(1.5rem, 5vh, 2.5rem); }
  .hero__media { order: 2; max-width: 360px; margin-top: .5rem; }
  .hero__title { font-size: clamp(2.3rem, 8.5vw, 3.2rem); }

  .why__inner, .area__inner { grid-template-columns: 1fr; }
  .services__cols { grid-template-columns: 1fr; gap: 2.6rem; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .visit__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .fab { display: grid; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__badge { left: 0; padding: .7rem .95rem; }
  .hero__chip { right: 0; }
  .reviews__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; }
  .menu__item { grid-template-columns: 1fr auto; }
  .menu__lead { display: none; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 1; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee__track { animation: none; transform: none; }
  .fab { animation: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
