/* ============================================================
   Bright Lights Child Theme — main.css
   ============================================================ */

/* ── Reset Astra defaults on our pages ───────────────────── */
.site-header.ast-primary-header,
#ast-mobile-header,
.ast-primary-header-bar,
.ast-above-header-bar,
.ast-below-header-bar { display: none !important; }

#ast-footer-overlay,
.ast-footer-widget-area,
.ast-footer-copyright { display: none !important; }

.ast-container { max-width: none !important; padding: 0 !important; }
.ast-page-builder-template .entry-content { padding: 0 !important; }
.site-content .ast-container { padding: 0 !important; }

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --gold:      #C4992C;
  --gold-lt:   #D9B554;
  --gold-pale: #EDD98A;
  --gold-dk:   #8C6B18;
  --dark:      #070B10;
  --dark-2:    #0D1420;
  --dark-3:    #16212E;
  --cream:     #FDFAF5;
  --cream-2:   #F5F0E8;
  --text:      #16191F;
  --muted:     #6A7080;
  --white:     #FFFFFF;
  --pad:       112px 24px;
  --w:         1180px;
  --header-h:  88px;
  --logo-h:    72px;
}

/* ── Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.wrap { max-width: var(--w); margin: 0 auto; padding: 0 24px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 18px 38px;
  border-radius: 2px;
  box-shadow: 0 2px 20px rgba(196,153,44,0.28);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(196,153,44,0.45);
  color: var(--white);
}

.btn-ghost {
  color: rgba(255,255,255,0.72);
  padding: 17px 32px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover { border-color: var(--gold-pale); color: var(--gold-pale); }

.btn-outline {
  color: var(--gold-dk);
  padding: 14px 26px;
  border-radius: 2px;
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

/* ── Eyebrow labels ──────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7,11,16,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-wrap {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

/* Custom logo image */
.logo .custom-logo-link,
.logo .logo-mark-link { display: flex; align-items: center; flex-shrink: 0; }
.logo .custom-logo-link img,
.logo .custom-logo { height: var(--logo-h); width: auto; display: block; }

/* Fallback icon */
.logo-mark {
  width: var(--logo-h); height: var(--logo-h);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold); border-radius: 1px;
}

/* Name text beside the logo */
.logo-name-link { text-decoration: none; }
.logo-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 500; color: var(--white);
  line-height: 1; letter-spacing: 0.005em;
}
.logo-text span {
  font-size: 11px; font-weight: 700; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gold); line-height: 1;
  display: block; margin-top: 5px;
}

.site-nav { display: flex; gap: 2px; }
.site-nav a, .site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav > ul { display: flex; gap: 2px; }
.site-nav ul li a, .site-nav a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.62); padding: 8px 14px;
  border-radius: 2px; transition: all 0.16s; display: block;
}
.site-nav ul li a:hover,
.site-nav a:hover,
.site-nav .current-menu-item > a { color: var(--white); }

.header-right { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--white);
}
.header-phone i { color: var(--gold); font-size: 12px; }

.mobile-menu-toggle {
  display: none; background: none; border: none; color: var(--white);
  font-size: 20px; cursor: pointer; padding: 4px 8px;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--dark);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-repeat: no-repeat;
  background-position: center 50%;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.45, 0, 0.55, 1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }

@keyframes kenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}
.hero-slide.active { animation: kenBurns 7s ease-out forwards; }

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(7,11,16,0.96) 0%, rgba(7,11,16,0.82) 42%, rgba(7,11,16,0.45) 70%, rgba(7,11,16,0.2) 100%),
    linear-gradient(to top, rgba(7,11,16,0.65) 0%, transparent 35%);
}

.hero-accent {
  position: absolute; left: 0; top: 12%; bottom: 12%; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold-lt) 70%, transparent);
  opacity: 0.5;
}

.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--w); margin: 0 auto; padding: 60px 24px 80px; }

.hero-label { display: flex; align-items: center; gap: 12px; margin-bottom: 30px; }
.hero-label-line { width: 40px; height: 1px; background: var(--gold); }
.hero-label span { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-lt); }

.hero h1 {
  font-size: clamp(36px, 7.5vw, 104px);
  font-weight: 300; color: var(--white);
  max-width: 680px; line-height: 1.05; letter-spacing: -0.02em;
  word-break: break-word;
}
.hero h1 .line-accent { display: block; font-style: italic; color: var(--gold-pale); font-weight: 300; opacity: 0.92; }
.hero h1 .line-strong {
  display: block; font-weight: 600; color: var(--white);
  text-shadow: 0 2px 32px rgba(0,0,0,0.45);
  letter-spacing: -0.025em;
}

/* Hero entrance — staggered fade-in */
@keyframes blHeroRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-label   { animation: blHeroRise 0.7s ease-out 0.05s both; }
.hero h1      { animation: blHeroRise 0.85s ease-out 0.18s both; }
.hero-rule    { animation: blHeroRise 0.6s ease-out 0.42s both; }
.hero-copy    { animation: blHeroRise 0.7s ease-out 0.52s both; }
.hero-urgency { animation: blHeroRise 0.6s ease-out 0.62s both; }
.hero-ctas    { animation: blHeroRise 0.7s ease-out 0.72s both; }
.hero-micro   { animation: blHeroRise 0.6s ease-out 0.82s both; }
.hero-proof   { animation: blHeroRise 0.7s ease-out 0.92s both; }
@media (prefers-reduced-motion: reduce) {
  .hero-label, .hero h1, .hero-rule, .hero-copy,
  .hero-urgency, .hero-ctas, .hero-micro, .hero-proof { animation: none; }
}

.hero-rule { width: 52px; height: 1px; background: var(--gold); opacity: 0.65; margin: 30px 0; }

.hero-copy {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.58);
  max-width: 430px; line-height: 1.8; margin-bottom: 10px; letter-spacing: 0.01em;
}

.hero-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--gold-lt);
  letter-spacing: 0.06em; margin-bottom: 36px;
}
.hero-urgency .dot {
  width: 6px; height: 6px; background: #22C55E; border-radius: 50%;
  display: inline-block; box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }

.hero-micro { font-size: 11px; color: rgba(255,255,255,0.28); letter-spacing: 0.06em; margin-bottom: 56px; }
.hero-micro i { color: rgba(255,255,255,0.35); margin-right: 4px; }

.hero-proof {
  display: flex; align-items: center; gap: 32px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; gap: 2px; }
.proof-item .num {
  font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300;
  color: var(--gold-pale); line-height: 1; letter-spacing: -0.02em;
}
.proof-item .lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.proof-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar { background: var(--dark-2); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0 24px; }
.trust-bar-inner {
  max-width: var(--w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; height: 56px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px; padding: 0 28px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.48); letter-spacing: 0.03em;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.trust-item:last-child { border-right: none; }
.trust-item i { color: var(--gold); font-size: 13px; }

/* ── SERVICES ────────────────────────────────────────────── */
.services { padding: var(--pad); background: var(--cream-2); }
.services-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px; gap: 24px; flex-wrap: wrap;
}
.services-head h2 { font-size: clamp(34px, 4vw, 52px); font-weight: 300; color: var(--text); max-width: 480px; }
.services-head > p { font-size: 15px; font-weight: 300; color: var(--muted); max-width: 340px; line-height: 1.75; text-align: right; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.svc-card {
  background: var(--white); border: 1px solid #E8E1D5; border-radius: 2px;
  padding: 36px 30px; position: relative; overflow: hidden; transition: all 0.28s ease; cursor: default;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.svc-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.07); transform: translateY(-4px); border-color: rgba(196,153,44,0.22); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--gold); opacity: 0.7; margin-bottom: 18px; text-transform: uppercase; }
.svc-icon { font-size: 20px; color: var(--gold); margin-bottom: 18px; opacity: 0.85; }
.svc-card h3 { font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.svc-card p { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.svc-link { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dk); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.svc-link:hover { gap: 13px; color: var(--gold); }

/* ── WHY US ──────────────────────────────────────────────── */
.why { padding: var(--pad); background: var(--dark-2); position: relative; overflow: hidden; }
.why::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%); opacity: 0.35; }
.why-deco { position: absolute; right: -40px; top: 50%; transform: translateY(-50%); font-family: 'Cormorant Garamond', serif; font-size: 340px; font-weight: 300; color: rgba(255,255,255,0.015); line-height: 1; pointer-events: none; user-select: none; }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.why-content h2 { font-size: clamp(34px, 4vw, 52px); font-weight: 300; color: var(--white); margin-bottom: 20px; }
.why-content p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.85; margin-bottom: 36px; max-width: 440px; }
.motto-block { border-left: 2px solid var(--gold); padding: 20px 24px; }
.motto-block blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 24px; color: var(--gold-pale); line-height: 1.5; margin-bottom: 10px; }
.motto-block cite { font-size: 10px; font-style: normal; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.22); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat { border: 1px solid rgba(255,255,255,0.06); border-radius: 2px; padding: 34px 28px; text-align: center; }
.stat .num { font-family: 'Cormorant Garamond', serif; font-size: 60px; font-weight: 300; color: var(--gold-pale); line-height: 1; letter-spacing: -0.03em; margin-bottom: 10px; }
.stat .lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); line-height: 1.5; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery { padding: var(--pad); background: var(--white); }
.gallery-head { text-align: center; margin-bottom: 52px; }
.gallery-head h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 300; color: var(--text); margin-bottom: 14px; }
.gallery-head p { font-size: 15px; font-weight: 300; color: var(--muted); max-width: 480px; margin: 0 auto; line-height: 1.8; }
.gallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 12px; }
.g-item { border-radius: 2px; overflow: hidden; position: relative; background: var(--dark-3); }
.g-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-item.span-col { grid-column: span 1; grid-row: span 2; }
.g-item.span-row { grid-column: span 2; }
.g-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,11,16,0.72) 0%, transparent 55%); opacity: 0; transition: opacity 0.3s; display: flex; align-items: flex-end; padding: 18px; }
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); display: flex; align-items: center; gap: 7px; }
.g-overlay span i { color: var(--gold); }
.gallery-cta { text-align: center; margin-top: 44px; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews { padding: var(--pad); background: var(--cream-2); }
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 20px; }
.reviews-head h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 300; color: var(--text); }
.rating-badge { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid #E8E1D5; border-radius: 100px; padding: 10px 20px; }
.rating-badge .stars { color: #F59E0B; font-size: 14px; letter-spacing: 1px; }
.rating-badge strong { font-size: 15px; font-weight: 700; color: var(--text); }
.rating-badge span { font-size: 12px; color: var(--muted); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); border: 1px solid #E8E1D5; border-radius: 2px; padding: 30px; }
.review-stars { color: #F59E0B; font-size: 13px; margin-bottom: 16px; }
.review-text { font-size: 15px; font-weight: 300; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 22px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--white); flex-shrink: 0; }
.reviewer strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.reviewer span { font-size: 11px; color: var(--muted); letter-spacing: 0.02em; }

/* ── CTA / CONTACT ───────────────────────────────────────── */
.cta-section { background: var(--dark); padding: var(--pad); position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-image: url('../images/IMG_4167.PNG'); background-size: cover; background-position: center; opacity: 0.12; }
.cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.cta-left h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--white); margin-bottom: 18px; line-height: 1.08; }
.cta-left h2 em { font-style: italic; color: var(--gold-pale); }
.cta-left p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.85; margin-bottom: 36px; max-width: 400px; }
.value-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.value-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.62); line-height: 1.5; }
.value-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-links { display: flex; flex-direction: column; gap: 12px; }
.contact-link { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.18s; }
.contact-link:hover { color: var(--gold-lt); }
.contact-link i { color: var(--gold); font-size: 14px; width: 16px; }

/* Quote form */
.quote-form { background: var(--white); border-radius: 2px; padding: 40px; }
.quote-form h3 { font-size: 26px; font-weight: 400; color: var(--text); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
.fg .req { color: var(--gold); }
.fg input, .fg select, .fg textarea {
  background: #FAFAF8; border: 1px solid #DDD7CC; border-radius: 2px;
  padding: 12px 14px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); transition: border-color 0.18s, box-shadow 0.18s; width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,153,44,0.1);
}
.fg input.input-error, .fg select.input-error, .fg textarea.input-error { border-color: #EF4444; }
.field-error { font-size: 11px; color: #EF4444; margin-top: 2px; }
.fg textarea { resize: vertical; min-height: 90px; }
.form-cta { width: 100%; justify-content: center; padding: 18px; font-size: 13px; margin-top: 4px; }
.form-guarantee { text-align: center; font-size: 11px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-guarantee i { color: #22C55E; }

.form-message { padding: 14px 18px; border-radius: 2px; font-size: 14px; font-weight: 500; margin-bottom: 16px; }
.form-message--success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.form-message--error   { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }

/* ── AREAS ───────────────────────────────────────────────── */
.areas { background: var(--dark-2); padding: 56px 24px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.areas-inner { max-width: var(--w); margin: 0 auto; }
.areas-inner h2 { font-size: 30px; font-weight: 300; color: var(--white); margin-bottom: 6px; }
.areas-inner p { font-size: 14px; color: rgba(255,255,255,0.38); margin-bottom: 28px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.chip { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 100px; padding: 7px 16px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.58); letter-spacing: 0.02em; }
.chip i { color: var(--gold); font-size: 9px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); padding: 64px 24px 0; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-grid { max-width: var(--w); margin: 0 auto; display: grid; grid-template-columns: 1.9fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-logo { gap: 14px; }
.footer-logo-img { height: 64px; width: auto; display: block; }
.footer-logo .logo-text strong { font-size: 24px; }
.footer-logo .logo-text span   { font-size: 10px; letter-spacing: 0.22em; }
.footer-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.8; margin: 16px 0 22px; max-width: 280px; }
.footer-motto { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300; font-size: 18px; color: var(--gold-pale); border-left: 2px solid var(--gold); padding-left: 15px; line-height: 1.55; opacity: 0.82; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.48); display: flex; align-items: center; gap: 8px; transition: color 0.16s; }
.footer-col ul a:hover { color: var(--gold-lt); }
.footer-col ul a i { color: var(--gold); font-size: 10px; }
.footer-bottom { max-width: var(--w); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.05); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold-lt); }
.socials { display: flex; gap: 8px; }
.social { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.4); transition: all 0.18s; }
.social:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── Mobile nav ──────────────────────────────────────────── */
.mobile-menu-toggle { display: none; }

/* Mobile nav drawer */
.site-nav.is-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(7,11,16,0.98);
  backdrop-filter: blur(16px);
  padding: 16px 0 24px;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-nav.is-open ul { flex-direction: column; width: 100%; }
.site-nav.is-open a,
.site-nav.is-open ul li a {
  font-size: 17px; padding: 16px 24px; border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.88);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  :root {
    --pad:       72px 20px;
    --header-h:  78px;
    --logo-h:    60px;
  }

  /* Header */
  .site-nav { display: none; }
  .header-phone { display: none; }
  .mobile-menu-toggle { display: flex; align-items: center; justify-content: center; }
  .logo-text strong { font-size: 26px; }

  /* Hero */
  .hero-content { padding: 48px 20px 64px; }
  .hero-copy { max-width: 100%; font-size: 17px; }
  .hero-ctas { flex-wrap: wrap; gap: 12px; }
  .hero-proof { gap: 22px; }
  .proof-item .num { font-size: 28px; }
  .proof-item .lbl { font-size: 11px; }

  /* Layout stacks */
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .g-item { height: 220px; }
  .g-item.span-col { grid-row: span 1; grid-column: span 2; height: 260px; }
  .g-item.span-row { grid-column: span 2; height: 220px; }

  /* Trust bar — 2-column grid */
  .trust-bar-inner { height: auto; padding: 10px 0; flex-wrap: wrap; gap: 0; justify-content: flex-start; }
  .trust-item { padding: 10px 16px; font-size: 13px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); width: 50%; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.05); }
  .trust-item:last-child, .trust-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

@media (max-width: 640px) {
  :root {
    --pad:       60px 16px;
    --header-h:  74px;
    --logo-h:    54px;
  }

  /* Header */
  .header-wrap { padding: 0 16px; gap: 12px; }
  .logo { gap: 12px; }
  .logo-text strong { font-size: 22px; }
  .logo-text span { font-size: 10px; letter-spacing: 0.22em; }
  .btn.btn-gold { padding: 12px 18px; font-size: 11px; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 36px 16px 48px; }
  .hero-label { margin-bottom: 20px; }
  .hero-label span { font-size: 11px; }
  .hero-rule { margin: 22px 0; }
  .hero-copy { font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
  .hero-urgency { font-size: 13px; margin-bottom: 26px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { justify-content: center; width: 100%; padding: 16px 24px; font-size: 12px; }
  .hero-micro { font-size: 12px; margin-bottom: 32px; }
  .hero-proof { gap: 18px; flex-wrap: wrap; padding-top: 26px; }
  .proof-item .num { font-size: 26px; }
  .proof-item .lbl { font-size: 11px; }
  .proof-sep { display: none; }

  /* Eyebrows uniform */
  .eyebrow { font-size: 11px; }

  /* Trust bar — single column */
  .trust-bar-inner { flex-direction: column; }
  .trust-item { width: 100%; border-right: none !important; font-size: 13px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-head { flex-direction: column; }
  .services-head > p { text-align: left; max-width: 100%; font-size: 16px; }
  .svc-card { padding: 32px 26px; }
  .svc-card h3 { font-size: 22px; }
  .svc-card p { font-size: 15px; }
  .svc-link { font-size: 11px; }

  /* Why */
  .why-content p { font-size: 16px; }
  .motto-block blockquote { font-size: 22px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 24px 16px; }
  .stat .num { font-size: 44px; }
  .stat .lbl { font-size: 11px; }
  .why-deco { display: none; }

  /* Gallery */
  .gallery-head p { font-size: 16px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .g-item, .g-item.span-col, .g-item.span-row {
    height: 220px !important;
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rating-badge { align-self: flex-start; }
  .review-text { font-size: 16px; }

  /* CTA / Form */
  .cta-left p { font-size: 16px; }
  .value-list li { font-size: 15px; }
  .contact-link { font-size: 15px; }
  .quote-form { padding: 28px 20px; }
  .quote-form h3 { font-size: 24px; }
  .form-sub { font-size: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .fg label { font-size: 12px; }
  .fg input, .fg select, .fg textarea { font-size: 15px; padding: 13px 14px; }
  .form-cta { font-size: 13px; }
  .cta-left h2 { font-size: 30px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { font-size: 14px; }
  .footer-col h4 { font-size: 11px; }
  .footer-col ul a { font-size: 14px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom p { font-size: 13px; }

  /* Areas */
  .areas-inner h2 { font-size: 26px; }
  .areas-inner p { font-size: 15px; }
  .area-chips { gap: 7px; }
  .chip { font-size: 13px; padding: 8px 14px; }
}
