/* G&G Renovation Services — v2 stylesheet */
:root {
  --black: #0a0a0a;
  --ink: #121110;
  --panel: #17150f;
  --gold: #C9A227;
  --gold-soft: #DDBC55;
  --cream: #F7EDD5;
  --white: #ffffff;
  --text: rgba(255,255,255,0.84);
  --muted: rgba(255,255,255,0.56);
  --line: rgba(201,162,39,0.25);
  --line-soft: rgba(255,255,255,0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --nav-h: 74px;
  --field: #141414;
  --glass: rgba(12,12,12,0.72);
  --nav-bg: rgba(10,10,10,0.9);
  --nav-solid: rgba(10,10,10,0.98);
}

html[data-theme="light"] {
  --black: #F8F3E7;
  --ink: #FFFDF7;
  --panel: #F0E8D3;
  --gold: #9A7B15;
  --gold-soft: #B3922A;
  --cream: #2B2214;
  --white: #1A150C;
  --text: rgba(26,21,12,0.85);
  --muted: rgba(26,21,12,0.6);
  --line: rgba(154,123,21,0.4);
  --line-soft: rgba(26,21,12,0.12);
  --field: #FFFFFF;
  --glass: rgba(255,253,247,0.8);
  --nav-bg: rgba(248,243,231,0.92);
  --nav-solid: rgba(248,243,231,0.99);
}

/* In light mode the photos are often bright — keep a stronger dark overlay so the
   white hero text stays readable, fading to the ivory page bg only at the very bottom */
html[data-theme="light"] .hero::after,
html[data-theme="light"] .page-hero::after {
  background: linear-gradient(180deg, rgba(8,8,8,0.85) 0%, rgba(8,8,8,0.72) 60%, rgba(8,8,8,0.5) 85%, var(--black) 100%);
}

/* Photo-backed sections keep dark styling in both themes */
.hero, .page-hero {
  --cream: #F7EDD5; --white: #ffffff;
  --text: rgba(255,255,255,0.84); --muted: rgba(255,255,255,0.62);
  --gold: #C9A227; --gold-soft: #DDBC55;
  --line: rgba(201,162,39,0.25); --line-soft: rgba(255,255,255,0.08);
  --glass: rgba(12,12,12,0.72);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; position: relative; }
.tight { padding: 64px 0; }

/* ── Typography ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--gold); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.center .eyebrow::after { content: ""; width: 36px; height: 1px; background: var(--gold); }

h1, h2, h3 { font-family: var(--font-display); color: var(--cream); font-weight: 600; line-height: 1.12; }
h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 18px; }
h3 { font-size: 1.4rem; }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 660px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 56px; }

/* ── Buttons ── */
.btn {
  display: inline-block; background: var(--gold); color: #0a0a0a;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 17px 36px; border: 1px solid var(--gold); cursor: pointer;
  font-family: var(--font-body); position: relative; overflow: hidden;
  transition: color 0.3s, background 0.3s, transform 0.3s;
}
.btn:hover { background: var(--gold-soft); border-color: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #0a0a0a; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: transform 0.35s ease;
}
.nav.hidden { transform: translateY(-100%); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 48px; width: 48px; object-fit: contain; }
.nav-brand { color: var(--white); font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; line-height: 1.2; }
.nav-brand span { color: var(--gold); font-family: var(--font-body); font-size: 0.57rem; display: block; font-weight: 500; letter-spacing: 2.4px; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--muted); font-size: 0.74rem; letter-spacing: 1.6px;
  text-transform: uppercase; font-weight: 500; padding: 8px 0; white-space: nowrap;
  position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: #0a0a0a !important; font-weight: 600;
  padding: 11px 22px !important; transition: background 0.25s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-soft); }

/* ── Theme toggle & language link ── */
.theme-btn {
  background: none; border: 1px solid var(--line-soft); border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.25s, background 0.25s; padding: 0;
}
.theme-btn:hover { border-color: var(--gold); background: rgba(201,162,39,0.08); }
.theme-btn svg { width: 16px; height: 16px; }
.theme-btn .tb-sun, .theme-btn .tb-moon { display: none; line-height: 0; }
html:not([data-theme="light"]) .theme-btn .tb-sun { display: inline-flex; }
html[data-theme="light"] .theme-btn .tb-moon { display: inline-flex; }
.lang-link {
  font-size: 0.72rem !important; font-weight: 600 !important; color: var(--gold) !important;
  border: 1px solid var(--line); padding: 8px 12px !important; letter-spacing: 1.5px;
  transition: background 0.25s, color 0.25s;
}
.lang-link:hover { background: var(--gold); color: #0a0a0a !important; }
.lang-link::after { display: none !important; }
.nav-mobile-tools { display: none; align-items: center; gap: 14px; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 24px; position: relative; flex-shrink: 0;
}
.hamburger span {
  display: block; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--gold); transition: transform 0.25s, opacity 0.25s, top 0.25s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.open span:nth-child(1) { top: 11px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999;
  background: var(--nav-solid); border-bottom: 1px solid var(--line);
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 16px 28px; color: var(--text);
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mm-call { background: var(--gold); color: #0a0a0a; font-weight: 600; text-align: center; }

/* ── Hero with Ken Burns ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 90px; overflow: hidden;
}
.hero-bg, .page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, 1%); }
}
.hero::after, .page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,8,0.74) 0%, rgba(8,8,8,0.52) 45%, var(--black) 100%);
}
.hero .container, .page-hero .container { position: relative; z-index: 2; }
.hero-tagline { color: var(--cream); font-family: var(--font-display); font-style: italic; font-size: 1.3rem; margin: 20px 0 14px; }
.hero p.lead { margin-bottom: 42px; }

/* Path cards in hero */
.path-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 880px; margin-top: 10px; }
.path-card {
  background: var(--glass); border: 1px solid var(--line);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 32px 32px 28px; position: relative; overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s;
}
.path-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(16,15,10,0.85); }
.path-card .pc-kicker { color: var(--gold); font-size: 0.66rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; }
.path-card h3 { font-size: 1.7rem; margin: 8px 0 10px; }
.path-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }
.path-card .pc-cta {
  color: var(--gold); font-size: 0.74rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.path-card .pc-cta::after { content: "→"; transition: transform 0.3s; }
.path-card:hover .pc-cta::after { transform: translateX(6px); }
.path-card .pc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.path-card .pc-chips span {
  font-size: 0.68rem; color: var(--cream); border: 1px solid var(--line);
  padding: 4px 12px; letter-spacing: 1px;
}

/* ── Page hero (interior) ── */
.page-hero {
  position: relative; min-height: 520px; display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 90px) 0 70px; overflow: hidden;
}
.page-hero .lead { margin-top: 16px; }

/* Anchor chip bar under hub heroes */
.chip-bar {
  position: relative; z-index: 2; border-top: 1px solid var(--line-soft);
  background: var(--nav-bg); backdrop-filter: blur(10px);
}
.chip-bar .container { display: flex; gap: 8px; overflow-x: auto; padding-top: 14px; padding-bottom: 14px; }
.chip-bar a {
  flex-shrink: 0; font-size: 0.7rem; letter-spacing: 1.8px; text-transform: uppercase;
  font-weight: 500; color: var(--muted); border: 1px solid var(--line-soft);
  padding: 9px 18px; transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.chip-bar a:hover { color: var(--gold); border-color: var(--gold); background: rgba(201,162,39,0.07); }

/* ── Scrolling facts ticker ── */
.ticker-band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--panel); padding: 30px 0; overflow: hidden;
}
.ticker-track {
  display: flex; align-items: center; width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker-band:hover .ticker-track { animation-play-state: paused; }
.tk-item { display: flex; align-items: baseline; gap: 16px; padding: 0 28px; white-space: nowrap; }
.tk-num {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--gold); font-weight: 600; line-height: 1;
}
.tk-label {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem); letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cream); font-weight: 500;
}
.tk-sep { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; row-gap: 18px; }
  .ticker-track > .tk-copy-2 { display: none; }
}

/* ── Before/After drag slider ── */
.ba-slider {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink);
  border: 1px solid var(--line-soft); user-select: none; touch-action: pan-y;
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba-slider .ba-before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px;
  background: var(--gold); transform: translateX(-1px); pointer-events: none;
}
.ba-knob {
  position: absolute; top: 50%; left: var(--pos, 50%); transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
  box-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.ba-knob svg { width: 20px; height: 20px; stroke: #0a0a0a; }
.ba-tag {
  position: absolute; top: 14px; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; padding: 6px 12px; z-index: 2; pointer-events: none;
}
.ba-tag.before { left: 14px; background: rgba(10,10,10,0.82); color: rgba(255,255,255,0.88); }
.ba-tag.after { right: 14px; background: var(--gold); color: #0a0a0a; }
.ba-expand {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(10,10,10,0.75); color: var(--gold); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}
.ba-expand:hover { background: var(--gold); color: #0a0a0a; border-color: var(--gold); }
.ba-expand svg { width: 16px; height: 16px; stroke: currentColor; }
.ba-caption { margin-top: 12px; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); text-align: center; }

/* ── Compact services strip (home) ── */
.svc-strip { border-top: 1px solid var(--line-soft); }
.svc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 8px; border-bottom: 1px solid var(--line-soft);
  transition: background 0.25s, padding 0.25s;
}
.svc-row:hover { background: rgba(201,162,39,0.05); padding-left: 16px; }
.svc-row-name h3 { font-size: 1.35rem; }
.svc-row-name p { color: var(--muted); font-size: 0.86rem; margin-top: 2px; }
.svc-row-links { display: flex; gap: 22px; flex-shrink: 0; flex-wrap: wrap; justify-content: flex-end; }

/* ── Service-area map ── */
#area-map {
  height: 480px; border: 1px solid var(--line); background: var(--ink);
  position: relative; z-index: 1;
}
#area-map .leaflet-popup-content-wrapper, #area-map .leaflet-popup-tip {
  background: #121110; color: #F7EDD5; border: 1px solid rgba(201,162,39,0.4);
}
#area-map .leaflet-tooltip {
  background: #121110; color: #F7EDD5; border: 1px solid rgba(201,162,39,0.4);
  border-radius: 0; padding: 10px 14px; box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
#area-map .leaflet-tooltip-top::before { border-top-color: rgba(201,162,39,0.4); }
#area-map .gg-popup strong { font-family: var(--font-display); font-size: 1.05rem; display: block; }
#area-map .gg-popup span { color: #C9A227; font-size: 0.72rem; letter-spacing: 1.5px; }
.cities-line { text-align: center; margin-top: 20px; font-size: 0.85rem; color: var(--muted); }
.cities-line strong { color: var(--gold); font-weight: 500; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; justify-content: center; }
.area-chip {
  font-size: 0.72rem; color: var(--text); border: 1px solid var(--line-soft);
  padding: 6px 14px; letter-spacing: 0.5px;
}
.area-chip em { font-style: normal; color: var(--gold); margin-left: 4px; }

/* ── Instagram placeholder ── */
.insta-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  max-width: 860px; margin: 32px auto 18px;
}
.insta-tile {
  aspect-ratio: 1/1; border: 1px solid var(--line-soft); background: var(--ink);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.insta-tile svg { width: 30px; height: 30px; }
.insta-tile:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-4px); }

/* ── Icon panel (services without photos yet) ── */
.svc-icon-panel {
  aspect-ratio: 4/3; border: 1px solid var(--line); background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 24px;
}
.svc-icon-panel svg { width: 72px; height: 72px; stroke: var(--gold); stroke-width: 1.2; }
.svc-icon-panel strong { font-family: var(--font-display); color: var(--cream); font-size: 2rem; font-weight: 600; }
.svc-icon-panel span { color: var(--muted); font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; }

/* ── Service sections (hubs) ── */
.svc-section { border-top: 1px solid var(--line-soft); }
.svc-section:first-of-type { border-top: none; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.svc-grid.flip > .svc-media { order: 2; }
.svc-copy h2 { margin-bottom: 14px; }
.svc-copy > p { color: var(--muted); margin-bottom: 26px; }
.scope-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.scope-cols.single { grid-template-columns: 1fr; }
.scope-cols li {
  padding: 7px 0 7px 26px; position: relative; color: var(--text);
  font-size: 0.9rem; border-bottom: 1px solid var(--line-soft);
}
.scope-cols li::before {
  content: "✓"; position: absolute; left: 0; color: var(--gold); font-size: 0.85rem;
}
.scope-cols li.scope-group-title {
  grid-column: 1 / -1; color: var(--gold); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase; margin-top: 18px; padding-left: 0;
}
.scope-cols li.scope-group-title::before { display: none; }
.scope-cols li.scope-group-title:first-child { margin-top: 0; }
.svc-note { margin-top: 20px; font-size: 0.85rem; color: var(--muted); border-left: 2px solid var(--gold); padding-left: 16px; }

/* ── Cards & grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--ink); border: 1px solid var(--line-soft);
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--line); transform: translateY(-5px); }
.service-card { display: flex; flex-direction: column; position: relative; }
.service-card .card-img { aspect-ratio: 16/10; overflow: hidden; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .card-img img { transform: scale(1.07); }
.service-card .card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.card-links { margin-top: 16px; display: flex; gap: 18px; flex-wrap: wrap; }
.card-link { color: var(--gold); font-size: 0.7rem; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; }
.card-link:hover { color: var(--gold-soft); }

.feature { background: var(--ink); border: 1px solid var(--line-soft); padding: 32px 30px; transition: border-color 0.3s, transform 0.3s; }
.feature:hover { border-color: var(--line); transform: translateY(-4px); }
.feature svg { width: 28px; height: 28px; stroke: var(--gold); margin-bottom: 16px; }
.feature h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature p { color: var(--muted); font-size: 0.88rem; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.team-member { text-align: center; }
.team-member img {
  width: 100%; aspect-ratio: 2/3; height: auto; object-fit: cover;
  margin: 0 auto 18px; border: 1px solid var(--line); padding: 8px;
  background: var(--ink); transition: border-color 0.3s, transform 0.3s;
}
.team-member:hover img { border-color: var(--gold); transform: translateY(-4px); }
.team-member h3 { font-size: 1.12rem; }
.team-member p { color: var(--gold); font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

/* ── Areas ── */
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.area-card { position: relative; aspect-ratio: 1/1; overflow: hidden; }
.area-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.area-card:hover img { transform: scale(1.08); }
.area-card .area-label {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 14px; background: linear-gradient(180deg, transparent 40%, rgba(8,8,8,0.9) 100%);
}
.area-label strong { color: var(--cream); font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; line-height: 1.2; }
.area-label span { color: var(--gold); font-size: 0.64rem; letter-spacing: 1.5px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.about-img { border: 1px solid var(--line); padding: 16px; background: var(--ink); }

/* ── CTA band ── */
.cta-band {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--panel); text-align: center; padding: 88px 0;
}
.cta-band .lead { margin: 0 auto 34px; }
.cta-band .btn-row { justify-content: center; }

/* ── Forms ── */
.quote-section { background: var(--panel); border-top: 1px solid var(--line); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 0.66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
input, select, textarea {
  width: 100%; background: var(--field); border: 1px solid var(--line-soft);
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  padding: 14px 16px; transition: border-color 0.25s; border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A227' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 14px; }
.form-note a { color: var(--gold); }

/* ── Contact rows ── */
.ci-row { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.ci-row svg { width: 22px; height: 22px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.ci-row .ci-label { font-size: 0.64rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.ci-row p, .ci-row a { color: var(--text); font-size: 0.98rem; }
.ci-row a:hover { color: var(--gold); }

/* ── Social ── */
.social-links { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; align-items: flex-start; }
.social-link {
  display: inline-flex; align-items: center; gap: 12px;
  transition: transform 0.25s;
}
.social-link:hover { transform: translateX(3px); }
.social-link svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-link .tk-main { fill: var(--white); }
.social-link .sl-label { color: var(--muted); font-size: 0.88rem; transition: color 0.2s; }
.social-link:hover .sl-label { color: var(--gold); }

/* ── Footer ── */
footer { border-top: 1px solid var(--line); background: var(--ink); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; }
.footer-brand strong { font-family: var(--font-display); color: var(--cream); font-size: 1.1rem; line-height: 1.2; display: block; }
.footer-grid p { color: var(--muted); font-size: 0.88rem; }
.footer-grid h4 { color: var(--gold); font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); }
.footer-grid li { padding: 5px 0; }
.footer-grid li a { color: var(--muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-grid li a:hover { color: var(--gold); }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--cream); margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding: 24px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--muted); font-size: 0.78rem;
}
.footer-bottom strong { color: var(--cream); font-weight: 500; }

/* ── Reviews carousel ── */
.rv-carousel { position: relative; max-width: 720px; margin: 28px auto 0; min-height: 240px; }
.rv-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 0.7s ease; margin: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.rv-slide.active { opacity: 1; visibility: visible; position: relative; }
.rv-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 6px; }
.rv-slide blockquote {
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--cream); line-height: 1.5; margin: 0;
}
.rv-slide figcaption strong { display: block; color: var(--text); font-size: 0.95rem; }
.rv-slide figcaption span { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.rv-dots { display: flex; gap: 10px; justify-content: center; margin-top: 22px; }
.rv-dot {
  width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--gold);
  background: transparent; cursor: pointer; padding: 0; transition: background 0.3s;
}
.rv-dot.active { background: var(--gold); }

/* ── Emergency strip ── */
.emergency-strip {
  background: var(--panel); border-bottom: 1px solid var(--line);
  padding: 13px 0; font-size: 0.88rem;
}
.emergency-strip .container { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.emergency-strip svg { width: 19px; height: 19px; stroke: var(--gold); flex-shrink: 0; }
.emergency-strip span { color: var(--muted); }
.emergency-strip a { color: var(--gold); font-weight: 600; }
.emergency-strip a:hover { text-decoration: underline; }

/* ── Sticky mobile call bar ── */
.call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1400;
  background: var(--gold); color: #0a0a0a; text-align: center;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px;
}

/* ── Floating quote button ── */
.float-quote {
  position: fixed; bottom: 26px; right: 26px; z-index: 1500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.35s, transform 0.35s;
}
.float-quote.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fq-btn {
  background: var(--gold); color: #0a0a0a; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px 26px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 6px 24px rgba(201,162,39,0.35);
  transition: background 0.25s, transform 0.25s;
}
.fq-btn:hover { background: var(--gold-soft); transform: translateY(-2px); }
.fq-btn svg { width: 16px; height: 16px; stroke: #0a0a0a; }
.fq-menu {
  display: none; flex-direction: column; background: var(--ink);
  border: 1px solid var(--gold); min-width: 240px;
}
.fq-menu.open { display: flex; }
.fq-menu a {
  padding: 16px 22px; font-size: 0.72rem; letter-spacing: 1.8px; text-transform: uppercase;
  font-weight: 500; color: var(--text); border-bottom: 1px solid var(--line-soft);
  transition: color 0.2s, background 0.2s;
}
.fq-menu a:last-child { border-bottom: none; }
.fq-menu a:hover { color: var(--gold); background: rgba(201,162,39,0.06); }
.fq-menu a span { display: block; color: var(--muted); font-size: 0.66rem; letter-spacing: 0.5px; text-transform: none; margin-top: 2px; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; z-index: 3000; background: rgba(5,5,5,0.94);
  display: none; align-items: center; justify-content: center; flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 78vh; object-fit: contain; border: 1px solid var(--line); }
.lb-caption { color: var(--cream); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 18px; }
.lb-caption em { color: var(--gold); font-style: normal; }
.lb-btn {
  position: absolute; background: none; border: 1px solid var(--line); color: var(--cream);
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.lb-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,39,0.08); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2500; background: rgba(0,0,0,0.78);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--ink); border: 1px solid var(--gold); max-width: 420px; width: 100%;
  padding: 48px 40px; text-align: center; position: relative;
  animation: modalIn 0.35s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.modal img { width: 64px; height: 64px; margin: 0 auto 18px; object-fit: contain; }
.modal h3 { font-size: 1.6rem; margin-bottom: 10px; }
.modal p { color: var(--muted); font-size: 0.95rem; margin-bottom: 26px; }
.modal-close {
  position: absolute; top: 14px; right: 18px; background: none; border: none;
  color: var(--muted); font-size: 1.4rem; cursor: pointer;
}
.modal-close:hover { color: var(--gold); }

/* ── Reveal animations ── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(.2,.65,.3,1), transform 0.8s cubic-bezier(.2,.65,.3,1); transition-delay: var(--d, 0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .hero-bg, .page-hero-bg { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-mobile-tools { display: flex; }
  .hamburger { display: block; }
  .nav-brand span { display: none; }
  .nav-brand { font-size: 0.95rem; }
  .svc-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .svc-row-links { justify-content: flex-start; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  #area-map { height: 380px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .about-grid, .svc-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid.flip > .svc-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .path-cards { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .call-bar { display: block; }
  body { padding-bottom: 52px; }
  .float-quote { bottom: 72px; }
  .hero { padding: calc(var(--nav-h) + 40px) 0 56px; }
  .grid-3, .grid-2, .grid-4, .form-grid, .scope-cols { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .float-quote { bottom: 72px; right: 18px; }
  .fq-btn { padding: 14px 20px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
}
