/* =============================================================
   ENCORE BARTENDING SERVICE — MAIN STYLESHEET
   Design: DESIGN_VARIANCE 8 | MOTION_INTENSITY 6 | VISUAL_DENSITY 4
   ============================================================= */

/* ── 1. Custom Properties ──────────────────────────────────── */
:root {
  --bg:           #09090d;
  --surface:      #101016;
  --surface-2:    #17171f;
  --border:       rgba(255,255,255,0.06);
  --border-gold:  rgba(201,168,108,0.30);
  --gold:         #c9a86c;
  --gold-light:   #e2c48d;
  --gold-dim:     rgba(201,168,108,0.12);
  --text:         #eeece4;
  --muted:        #7e7e90;
  --dimmed:       #3c3c50;
  --radius:       4px;
  --radius-lg:    10px;
  --transition:   cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:        72px;
}

/* ── 2. Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── 3. Typography ──────────────────────────────────────────── */
.display {
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--text);
}
h1, .h1 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}
h2, .h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}
h3, .h3 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}
h4 { font-size: 18px; font-weight: 600; color: var(--text); }
p { color: var(--muted); line-height: 1.75; max-width: 62ch; }
.lead { font-size: clamp(17px, 1.8vw, 20px); color: var(--muted); line-height: 1.65; }

/* ── 4. Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
}
.section { padding-block: clamp(80px, 10vw, 140px); }
.section--sm { padding-block: clamp(50px, 6vw, 80px); }

/* ── 5. Navigation ──────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(9,9,13,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-nav.scrolled {
  background: rgba(9,9,13,0.97);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 60px);
}
.nav-logo {
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  height: 34px;
  width: auto;
  flex-shrink: 0;
}
/* Custom logo from Customizer */
.nav-logo--img { gap: 0; flex-shrink: 0; }
.nav-logo--img .custom-logo-link { display: contents; }
.nav-logo--img img,
.nav-logo--img .custom-logo {
  height: 44px !important;
  width: auto !important;
  max-width: 220px !important;
  max-height: 44px !important;
  display: block;
  object-fit: contain;
}
.footer-grid .nav-logo--img img,
.footer-grid .nav-logo--img .custom-logo {
  height: 38px !important;
  max-height: 38px !important;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.nav-logo-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 7.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.1;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}
.nav-links a {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.05); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 5px;
}
.nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 200px;
  padding: 6px;
  z-index: 300;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  /* opacity/visibility вместо display:none — нет gap'а между ссылкой и меню */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  /* Невидимый «мост» — псевдоэлемент перекрывает gap */
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(8px);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: var(--muted);
  border-radius: var(--radius);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-cta {
  background: var(--gold) !important;
  color: #09090d !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile burger */
.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  cursor: pointer;
  color: var(--text);
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(9,9,13,0.98);
  backdrop-filter: blur(20px);
  z-index: 190;
  overflow-y: auto;
  padding: 32px clamp(20px, 4vw, 60px) 60px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.nav-mobile a:hover { color: var(--text); }
.nav-mobile .nav-cta-mobile {
  margin-top: 24px;
  background: var(--gold);
  color: #09090d !important;
  font-weight: 700;
  padding: 16px 24px !important;
  border-radius: var(--radius);
  text-align: center;
  border: none !important;
  font-size: 16px !important;
}
.nav-mobile .nav-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 20px 0 8px;
  border-bottom: none !important;
}

/* ── 6. Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 90dvh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-content { padding-top: 0px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 40px; max-width: 52ch; }
.hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}
.badge-gold {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  color: var(--gold-light);
}
.badge svg, .badge-icon { width: 14px; height: 14px; }
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-frame {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
}
.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--dimmed);
  font-size: 13px;
  text-align: center;
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,108,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,108,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-stats-row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 60px;
}
.hero-stat {
  background: var(--surface);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-num {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ── 7. Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  min-height: 30dvh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background-size: cover;
  background-position: center top;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: end;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 55ch; }
.page-hero-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 0%, rgba(201,168,108,0.04) 0%, transparent 70%);
  pointer-events: none;
}
/* When page has a Featured Image — dark gradient overlay on top of photo */
.page-hero--photo .page-hero-bg {
  background:
    linear-gradient(to top, rgba(9,9,13,0.93) 0%, rgba(9,9,13,0.6) 50%, rgba(9,9,13,0.3) 100%),
    radial-gradient(ellipse 60% 80% at 80% 0%, rgba(201,168,108,0.08) 0%, transparent 70%);
}

/* ── 8. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--transition);
  letter-spacing: 0.02em;
  border: none;
  text-decoration: none;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--gold);
  color: #09090d;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #09090d;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover {
  background: var(--gold-dim);
  color: var(--gold-light);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
  color: var(--text);
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 17px 40px; font-size: 16px; }
.btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── 9. Section Header ─────────────────────────────────────── */
.section-header {
  margin-bottom: 64px;
}
.section-header--center { text-align: center; }
.section-header--center p { margin-inline: auto; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.section-header h2 { margin-bottom: 16px; }

/* ── 10. Cards ──────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s var(--transition);
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 14.5px; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 20px;
  transition: gap 0.2s;
}
.card-link:hover { gap: 10px; color: var(--gold-light); }

/* ── 11. Grids ──────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-asym { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.grid-asym-rev { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }

/* Bento grid */
.bento { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

/* ── 12. Feature Split ──────────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.feature-split.flip { direction: rtl; }
.feature-split.flip > * { direction: ltr; }
.feature-content { display: flex; flex-direction: column; gap: 20px; }
.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  color: var(--dimmed);
  font-size: 13px;
  position: relative;
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ── 13. Check List ─────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}
.check-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a86c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.cross-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555568' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-color: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.06);
}
.cross-list li { color: var(--dimmed); }

/* ── 14. Package Cards ──────────────────────────────────────── */
.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--transition), border-color 0.3s;
}
.package-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.package-card.featured {
  border-color: var(--border-gold);
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 100%);
}
.package-header {
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--border);
}
.package-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.package-name { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.package-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.package-price sup { font-size: 24px; vertical-align: top; margin-top: 8px; }
.package-price-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.package-body { padding: 24px 28px 28px; }
.package-desc { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.package-body .btn { width: 100%; justify-content: center; margin-top: 24px; }
.package-badge {
  display: inline-block;
  background: var(--gold);
  color: #09090d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

/* ── 15. Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label { font-size: 13.5px; color: var(--muted); font-weight: 500; }

/* ── 16. Testimonials ───────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 14px;
}
.testimonial-stars span {
  color: var(--gold);
  font-size: 15px;
}
.testimonial-text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: grid; place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name { font-size: 13.5px; font-weight: 600; }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* ── 17. FAQ ────────────────────────────────────────────────── */
.faq-group { margin-bottom: 48px; }
.faq-group-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-toggle {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.3s;
  color: var(--muted);
}
.faq-item.open .faq-toggle {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  color: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 70ch;
}
.faq-item.open .faq-answer { display: block; }

/* ── 18. Quote Form ─────────────────────────────────────────── */
.quote-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.quote-content { padding-top: 16px; }
.quote-content h2 { margin-bottom: 16px; }
.quote-content p { max-width: 44ch; }
.quote-contact-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.quote-contact-item a { color: var(--gold); font-weight: 500; }
.contact-icon {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.quote-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; cursor: pointer; }
.form-required { color: var(--gold); font-size: 12px; }
.form-note { font-size: 12.5px; color: var(--muted); }

/* ── 19. Locations Grid ─────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.location-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-align: center;
  display: block;
}
.location-chip:hover {
  color: var(--gold-light);
  border-color: var(--border-gold);
  background: var(--gold-dim);
}

/* ── 20. Photos Grid ────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.photo-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  color: var(--dimmed);
  font-size: 12px;
  text-align: center;
  padding: 20px;
  position: relative;
}
.photo-item:first-child {
  grid-row: span 2;
  aspect-ratio: 3/4;
}
.photo-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ── 21. CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-banner h2 { margin-bottom: 8px; }
.cta-banner p { max-width: 55ch; }
.cta-banner-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; flex-shrink: 0; }
.cta-banner-actions .phone {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.cta-banner-actions .phone a { color: inherit; }
.cta-banner-actions .phone-label { font-size: 11.5px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── 22. Footer ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 38ch;
  margin: 16px 0 24px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--dimmed);
  flex-wrap: wrap;
}
.footer-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11.5px;
  color: var(--gold-light);
  font-weight: 500;
}

/* ── 23. Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--transition), transform 0.75s var(--transition);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }

/* ── 24. Dividers ───────────────────────────────────────────── */
.gold-line {
  width: 56px; height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── 25. Utility ────────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-sm { font-size: 13.5px; }
.fw-700 { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }

/* ── 26. Breadcrumb Nav ────────────────────────────────────── */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb-nav a {
  color: var(--muted);
  transition: color 0.2s;
}
.breadcrumb-nav a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--dimmed); font-size: 11px; }
.breadcrumb-current { color: var(--gold); font-weight: 500; }

/* ── 27. City Search ──────────────────────────────────────── */
.city-search-wrap {
  max-width: 520px;
  margin: 0 auto 48px;
}
.city-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  transition: border-color 0.2s;
}
.city-search:focus-within {
  border-color: var(--border-gold);
}
.city-search svg { color: var(--muted); flex-shrink: 0; }
.city-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
}
.city-search-input::placeholder { color: var(--dimmed); }
.city-search-count {
  font-size: 12px;
  color: var(--dimmed);
  white-space: nowrap;
  font-weight: 500;
}

/* ── 28. City Grid ────────────────────────────────────────── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.city-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.city-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--transition);
}
.city-card:hover {
  border-color: var(--border-gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}
.city-card-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.city-card:hover .city-card-name { color: var(--gold-light); }
.city-card-arrow {
  color: var(--dimmed);
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.city-card:hover .city-card-arrow {
  color: var(--gold);
  transform: translateX(3px);
}
.city-card[style*="display: none"] { display: none !important; }
.city-no-results {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  padding: 40px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

/* ── 29. City Service Grid ────────────────────────────────── */
.city-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.city-service-card {
  display: flex;
  flex-direction: column;
}

/* ── 30. State Services Grid ──────────────────────────────── */
.state-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.state-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.state-service-item:hover {
  border-color: var(--border-gold);
  color: var(--gold-light);
  background: var(--gold-dim);
}
.state-service-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.state-service-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

/* ── 31. City Trust Cards ─────────────────────────────────── */
.city-trust-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.city-trust-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.city-trust-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: var(--gold);
}
.city-trust-card h4 { margin-bottom: 6px; }
.city-trust-card p { font-size: 13.5px; }

/* ── 32. City Sidebar CTA ─────────────────────────────────── */
.city-sidebar-cta {
  background: var(--bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.city-sidebar-cta h3 { margin-bottom: 12px; }
.city-sidebar-cta p { font-size: 14px; margin-bottom: 20px; }
.city-sidebar-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.city-sidebar-contact { text-align: center; }
.city-sidebar-phone {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.city-sidebar-label {
  font-size: 12px;
  color: var(--dimmed);
}

@media (max-width: 1100px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-links .nav-dropdown { display: none; }
  .nav-burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats-row { grid-template-columns: 1fr 1fr; margin-top: 40px; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-meta { align-items: flex-start; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split.flip { direction: ltr; }
  .package-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-asym, .grid-asym-rev { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-banner { grid-template-columns: 1fr; }
  .cta-banner-actions { align-items: flex-start; text-align: left; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-item:first-child { grid-row: span 1; aspect-ratio: 4/3; }
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .city-service-grid { grid-template-columns: 1fr; }
  .state-services-grid { grid-template-columns: 1fr; }
  .city-sidebar-cta { position: static; }
  .city-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
}

@media (max-width: 600px) {
  .hero-stats-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .photo-grid { grid-template-columns: 1fr; }
  .city-grid, .city-grid--compact { grid-template-columns: 1fr; }
  .city-search-count { display: none; }
}
