/* ============================================================
   Brow Naturals — Luxury Warm Nude Design System (PHP build)
   ============================================================ */

:root {
  --espresso: oklch(0.20 0.018 40);
  --cocoa: oklch(0.44 0.045 55);
  --rose-gold: oklch(0.74 0.075 70);
  --rose-gold-soft: oklch(0.83 0.055 65);
  --cream: oklch(0.955 0.018 75);
  --ivory: oklch(0.985 0.008 80);
  --sand: oklch(0.90 0.025 75);
  --border: oklch(0.88 0.02 70);
  --whatsapp: #25d366;
  --gradient-gold: linear-gradient(135deg, oklch(0.85 0.08 75), oklch(0.70 0.09 55));
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% 30%, oklch(0.97 0.02 75 / 0.6), transparent 70%);
  --shadow-luxury: 0 30px 80px -30px oklch(0.30 0.05 40 / 0.25), 0 8px 24px -12px oklch(0.30 0.05 40 / 0.12);
  --shadow-soft: 0 10px 40px -12px oklch(0.30 0.05 40 / 0.15);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1400px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--espresso);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.015em; line-height: 1.05; }
::selection { background: var(--rose-gold); color: var(--espresso); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.eyebrow {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--cocoa);
}
.gold-rule { display: inline-block; width: 2.5rem; height: 1px; background: var(--gradient-gold); vertical-align: middle; }
.text-gold { background: var(--gradient-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
em.italic { font-style: italic; font-weight: 400; }
.section { padding: 96px 0; }
@media (min-width: 1024px) { .section { padding: 160px 0; } }
.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-espresso { background: var(--espresso); color: var(--cream); }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 14px 28px; font-size: 14px; font-weight: 500;
  letter-spacing: 0.03em; cursor: pointer; border: 1px solid transparent;
  transition: all 0.4s var(--ease); text-align: center;
}
.btn-sm { padding: 10px 20px; font-size: 12px; letter-spacing: 0.08em; }
.btn-dark { background: var(--espresso); color: var(--cream); box-shadow: var(--shadow-soft); }
.btn-dark:hover { background: oklch(0.28 0.03 45); }
.btn-wa { background: var(--whatsapp); color: #fff; }
.btn-wa:hover { filter: brightness(0.95); }
.btn-outline { border-color: var(--espresso); color: var(--espresso); }
.btn-outline:hover { background: var(--espresso); color: var(--cream); }
.btn-cream { background: var(--cream); color: var(--espresso); }

/* ── Header / nav ────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 24px 0;
  transition: all 0.5s var(--ease); background: transparent;
}
.site-header.scrolled, .site-header.menu-open {
  padding: 12px 0; background: oklch(0.955 0.018 75 / 0.85);
  backdrop-filter: blur(16px); border-bottom: 1px solid oklch(0.20 0.018 40 / 0.1);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand-logo { height: 80px; width: auto; object-fit: contain; transition: height 0.5s var(--ease); }
.site-header.scrolled .brand-logo { height: 56px; }
@media (max-width: 640px) { .brand-logo { height: 60px; } .site-header.scrolled .brand-logo { height: 48px; } }

.nav-desktop { display: none; align-items: center; gap: 34px; }
@media (min-width: 900px) { .nav-desktop { display: flex; } }
.nav-link {
  position: relative; font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: oklch(0.20 0.018 40 / 0.8); transition: color 0.3s; display: inline-flex; align-items: center; gap: 4px;
}
.nav-link:hover { color: var(--espresso); }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--rose-gold); transition: width 0.5s var(--ease);
}
.nav-link:hover::after { width: 100%; }

.nav-dropdown { position: relative; }
.nav-dropdown .chevron { transition: transform 0.3s; }
.nav-dropdown.open .chevron { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute; left: 0; top: 100%; padding-top: 16px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s var(--ease);
}
.nav-dropdown.open .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-panel > div {
  width: 560px; background: oklch(0.955 0.018 75 / 0.97); backdrop-filter: blur(16px);
  border: 1px solid oklch(0.20 0.018 40 / 0.1); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-luxury);
}
.dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dropdown-list { list-style: none; padding: 0; margin: 12px 0 0; }
.dropdown-list a { display: block; padding: 6px 8px; border-radius: 8px; font-size: 14px; color: oklch(0.20 0.018 40 / 0.8); transition: all 0.2s; }
.dropdown-list a:hover { background: oklch(0.74 0.075 70 / 0.12); color: var(--espresso); }
.dropdown-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid oklch(0.20 0.018 40 / 0.1); margin-top: 20px; padding-top: 16px; }
.dropdown-viewall { font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-gold); }
.dropdown-viewall:hover { color: var(--espresso); }
.dropdown-finder { font-size: 12px; color: var(--cocoa); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-book { display: none; }
@media (min-width: 640px) { .nav-book { display: inline-flex; } }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 999px; border: 1px solid oklch(0.20 0.018 40 / 0.15); background: transparent; color: var(--espresso); cursor: pointer;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

.nav-mobile { background: var(--cream); border-bottom: 1px solid var(--border); padding: 8px 0 24px; }
.nav-mobile .container { display: flex; flex-direction: column; gap: 2px; }
.mobile-link, .mobile-services-toggle {
  font-family: var(--font-display); font-size: 26px; color: var(--espresso);
  padding: 12px 16px; border-radius: 12px; background: none; border: none; text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.mobile-link:hover, .mobile-services-toggle:hover { background: oklch(0.20 0.018 40 / 0.05); }
.mobile-services-toggle .chevron { transition: transform 0.3s; }
.mobile-services-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.mobile-services-panel { padding: 0 8px 8px 16px; }
.mobile-subhead { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cocoa); padding: 8px 16px 2px; }
.mobile-sublink { display: block; padding: 8px 16px; font-size: 16px; color: oklch(0.20 0.018 40 / 0.8); border-radius: 8px; }
.mobile-sublink-all { color: var(--rose-gold); font-weight: 500; }
.mobile-book { margin-top: 12px; }

/* ── Hero ────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; overflow: hidden; background: var(--cream); padding-top: 120px; }
.hero-aura { position: absolute; inset: 0; pointer-events: none; background: var(--gradient-hero); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 96px; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 7fr 5fr; gap: 32px; align-items: center; } }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; }
.hero h1 { margin-top: 32px; font-size: clamp(3.5rem, 13vw, 9rem); color: var(--espresso); line-height: 0.92; }
.hero h1 .text-gold { display: block; }
.hero-lead { margin-top: 40px; max-width: 32rem; font-size: 15px; line-height: 1.7; color: var(--cocoa); }
.hero-cta { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-tel { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--espresso); }
.hero-tel .ic { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid oklch(0.20 0.018 40 / 0.2); }
.hero-rating { margin-top: 56px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 32px; }

.rating-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--cocoa); font-family: var(--font-sans); }
.rating-badge .stars, .stars { color: var(--rose-gold); letter-spacing: 2px; }

/* ── Slider ──────────────────────────────────────────── */
.slider { position: relative; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-luxury); }
/* Slides stay absolute so `inset:0` gives them the definite height the
   .aspect-* ratio sets on .slider — otherwise img{height:100%} can't resolve
   and object-fit:cover never engages, letterboxing non-4:5 sources. */
.slider .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s var(--ease); }
.slider .slide.active { opacity: 1; }
.slider .slide img { width: 100%; height: 100%; object-fit: cover; }
.slider-veil { position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.20 0.018 40 / 0.45), transparent 55%); pointer-events: none; }
.slider-cap { position: absolute; left: 20px; bottom: 20px; font-family: var(--font-display); font-size: 20px; color: var(--cream); }
.slider-dots { position: absolute; right: 20px; bottom: 20px; display: flex; gap: 6px; }
.slider-dots button { height: 6px; width: 6px; border-radius: 999px; border: none; background: oklch(1 0 0 / 0.5); cursor: pointer; transition: all 0.3s; }
.slider-dots button.active { width: 24px; background: var(--cream); }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 999px; border: none; background: oklch(0.955 0.018 75 / 0.85); color: var(--espresso); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.slider-nav.prev { left: 12px; } .slider-nav.next { right: 12px; }
.aspect-45 { aspect-ratio: 4/5; }
.aspect-43 { aspect-ratio: 4/3; }
.aspect-square { aspect-ratio: 1; }

/* ── Section heading blocks ──────────────────────────── */
.sec-head { max-width: 46rem; }
.sec-head h2 { margin-top: 24px; font-size: clamp(2.5rem, 5vw, 3.75rem); color: var(--espresso); }
.sec-head p { margin-top: 24px; font-size: 15px; line-height: 1.7; color: var(--cocoa); }
.sec-flex { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
@media (min-width: 768px) { .sec-flex { flex-direction: row; justify-content: space-between; align-items: flex-end; } }

/* ── Cards / grids ───────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; } @media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { grid-template-columns: 1fr; } @media (min-width: 640px) { .grid-3 { grid-template-columns: 1fr 1fr; } } @media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-4 { grid-template-columns: 1fr; } @media (min-width: 640px) { .grid-4 { grid-template-columns: 1fr 1fr; } } @media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: var(--ivory); border: 1px solid oklch(0.20 0.018 40 / 0.08); border-radius: 24px; padding: 28px; transition: box-shadow 0.5s var(--ease); height: 100%; }
.card:hover { box-shadow: var(--shadow-luxury); }
.card h3 { font-size: 24px; color: var(--espresso); }

.cat-card { position: relative; display: flex; flex-direction: column; overflow: hidden; border-radius: 24px; border: 1px solid oklch(0.20 0.018 40 / 0.08); background: var(--ivory); height: 100%; transition: box-shadow 0.5s var(--ease); }
.cat-card:hover { box-shadow: var(--shadow-luxury); }
.cat-card .img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat-card:hover img { transform: scale(1.08); }
.cat-card .veil { position: absolute; inset: 0; background: linear-gradient(to top, oklch(0.20 0.018 40 / 0.4), transparent 60%); }
.cat-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.cat-card .explore { margin-top: auto; padding-top: 16px; font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-gold); }

/* Service list card */
.svc-card { display: flex; flex-direction: column; height: 100%; }
.svc-card .top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.svc-card .summary { margin-top: 12px; flex: 1; font-size: 14px; line-height: 1.6; color: var(--cocoa); }
.svc-chips { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 12px; color: var(--cocoa); }
.svc-chips span { display: inline-flex; align-items: center; gap: 6px; }
.svc-foot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid oklch(0.20 0.018 40 / 0.08); padding-top: 20px; }
.svc-foot .price { font-size: 14px; }
.svc-foot .more { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose-gold); }

.chip-pill { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; border: 1px solid oklch(0.20 0.018 40 / 0.12); background: var(--ivory); padding: 8px 16px; font-size: 12px; font-weight: 500; color: var(--espresso); }
.chip-pill .ic { color: var(--rose-gold); }

/* ── Marquee ─────────────────────────────────────────── */
.marquee { overflow: hidden; border-top: 1px solid oklch(0.20 0.018 40 / 0.1); border-bottom: 1px solid oklch(0.20 0.018 40 / 0.1); background: var(--ivory); padding: 24px 0; }
.marquee-track { display: flex; width: max-content; white-space: nowrap; animation: marquee 40s linear infinite; }
.marquee-track span { margin: 0 32px; display: inline-flex; align-items: center; gap: 32px; font-family: var(--font-display); font-size: 24px; color: oklch(0.20 0.018 40 / 0.7); }
.marquee-track .dot { color: var(--rose-gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Before / after slider ───────────────────────────── */
.ba { position: relative; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-luxury); user-select: none; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after { z-index: 1; }
.ba .before-wrap { position: absolute; inset: 0; z-index: 2; overflow: hidden; }
.ba .before-wrap img { position: absolute; inset: 0; }
.ba .label { position: absolute; top: 12px; z-index: 4; background: oklch(0.20 0.018 40 / 0.7); color: var(--cream); font-size: 11px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.ba .label.left { left: 12px; } .ba .label.right { right: 12px; }
.ba .divider { position: absolute; top: 0; bottom: 0; z-index: 3; width: 2px; background: oklch(1 0 0 / 0.9); box-shadow: 0 0 10px rgba(0,0,0,0.25); }
.ba .grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); height: 44px; width: 44px; border-radius: 999px; background: var(--cream); border: 1px solid oklch(0.20 0.018 40 / 0.1); box-shadow: var(--shadow-luxury); display: flex; align-items: center; justify-content: center; color: var(--espresso); }
.ba input[type="range"] { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }

/* ── Masonry gallery + lightbox ──────────────────────── */
.chip-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-filter button { border-radius: 999px; border: 1px solid oklch(0.20 0.018 40 / 0.15); background: transparent; color: var(--espresso); padding: 8px 20px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: var(--font-sans); }
.chip-filter button:hover { border-color: var(--rose-gold); }
.chip-filter button.active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.masonry { columns: 1; column-gap: 16px; }
@media (min-width: 640px) { .masonry { columns: 2; } }
@media (min-width: 1024px) { .masonry { columns: 3; } }
.masonry > button { display: block; width: 100%; break-inside: avoid; margin-bottom: 16px; overflow: hidden; border-radius: 16px; border: 1px solid oklch(0.20 0.018 40 / 0.08); box-shadow: var(--shadow-soft); position: relative; cursor: pointer; padding: 0; background: none; }
.masonry img { width: 100%; height: auto; transition: transform 0.7s var(--ease); }
.masonry > button:hover img { transform: scale(1.05); }
.masonry .cap { position: absolute; inset: auto 0 0 0; padding: 16px; background: linear-gradient(to top, oklch(0.20 0.018 40 / 0.7), transparent); color: var(--cream); font-family: var(--font-display); font-size: 18px; opacity: 0; transition: opacity 0.5s; text-align: left; }
.masonry > button:hover .cap { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 60; background: oklch(0.20 0.018 40 / 0.95); backdrop-filter: blur(8px); display: none; flex-direction: column; }
.lightbox.open { display: flex; }
.lightbox-bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; color: var(--cream); }
.lightbox-bar button { background: none; border: 1px solid oklch(1 0 0 / 0.2); color: var(--cream); width: 40px; height: 40px; border-radius: 999px; cursor: pointer; }
.lightbox-stage { flex: 1; display: flex; align-items: center; justify-content: center; padding: 0 16px 24px; position: relative; }
.lightbox-stage img { max-height: 78vh; max-width: 90vw; width: auto; object-fit: contain; border-radius: 16px; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 999px; border: 1px solid oklch(1 0 0 / 0.2); background: none; color: var(--cream); cursor: pointer; }
.lightbox-nav.prev { left: 12px; } .lightbox-nav.next { right: 12px; }

/* ── Editorial split (atelier) ───────────────────────── */
.split { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 96px; } }
.split-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-luxury); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* stat list */
.stat-list { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border-top: 1px solid oklch(0.20 0.018 40 / 0.1); padding-top: 32px; }
.stat-list dt { font-family: var(--font-display); font-size: 30px; color: var(--espresso); }
.stat-list dd { margin: 4px 0 0; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--cocoa); }

/* ── Why-us pillars (dark) ───────────────────────────── */
.pillars { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 64px; }
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { border: 1px solid oklch(1 0 0 / 0.1); background: oklch(1 0 0 / 0.03); border-radius: 24px; padding: 32px; height: 100%; transition: all 0.6s var(--ease); }
.pillar:hover { border-color: oklch(0.74 0.075 70 / 0.4); background: oklch(1 0 0 / 0.06); }
.pillar .ic { color: var(--rose-gold); }
.pillar h3 { color: var(--cream); font-size: 24px; margin-top: 24px; }
.pillar p { color: oklch(1 0 0 / 0.7); font-size: 14px; line-height: 1.6; margin-top: 12px; }

/* ── Steps / timeline ────────────────────────────────── */
.steps { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step-num { font-family: var(--font-display); font-size: 40px; color: var(--rose-gold); }
.step h3 { font-size: 20px; margin-top: 16px; color: var(--espresso); }
.step p { font-size: 14px; line-height: 1.6; color: var(--cocoa); margin-top: 12px; }

.timeline { position: relative; border-left: 1px solid oklch(0.20 0.018 40 / 0.15); padding-left: 32px; list-style: none; margin: 0; }
.timeline li { position: relative; padding-bottom: 32px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline .marker { position: absolute; left: -42px; display: flex; height: 24px; width: 24px; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid oklch(0.20 0.018 40 / 0.15); background: var(--ivory); font-size: 10px; font-weight: 600; color: var(--rose-gold); }
.timeline .range { font-family: var(--font-display); font-size: 20px; color: var(--espresso); }
.timeline .note { font-size: 14px; line-height: 1.6; color: var(--cocoa); margin-top: 4px; }

/* who's it for */
.forlist { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.forlist li { display: flex; gap: 12px; font-size: 14px; line-height: 1.6; color: var(--cocoa); }
.forlist .ic { flex: none; margin-top: 2px; }

/* ── FAQ accordion ───────────────────────────────────── */
.faq-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid oklch(0.20 0.018 40 / 0.1); border-bottom: 1px solid oklch(0.20 0.018 40 / 0.1); }
.faq-list li { border-bottom: 1px solid oklch(0.20 0.018 40 / 0.1); }
.faq-list li:last-child { border-bottom: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; padding: 24px 0; background: none; border: none; text-align: left; cursor: pointer; }
.faq-q .qt { font-family: var(--font-display); font-size: 24px; color: var(--espresso); }
.faq-q .icon { flex: none; display: flex; height: 36px; width: 36px; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid oklch(0.20 0.018 40 / 0.2); transition: all 0.3s; }
.faq-q[aria-expanded="true"] .icon { background: var(--espresso); color: var(--cream); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { max-width: 42rem; padding-bottom: 32px; font-size: 14px; line-height: 1.7; color: var(--cocoa); }

/* ── Quiz ────────────────────────────────────────────── */
.quiz { border: 1px solid oklch(0.20 0.018 40 / 0.1); background: var(--ivory); border-radius: 24px; padding: 24px; box-shadow: var(--shadow-soft); }
@media (min-width: 640px) { .quiz { padding: 40px; } }
.quiz-progress { display: flex; gap: 6px; margin-top: 16px; }
.quiz-progress span { height: 4px; flex: 1; border-radius: 999px; background: oklch(0.20 0.018 40 / 0.1); transition: background 0.3s; }
.quiz-progress span.done { background: var(--rose-gold); }
.quiz-body { margin-top: 24px; min-height: 240px; }
.quiz-body h3 { font-size: 28px; color: var(--espresso); margin-top: 8px; }
.quiz-opts { margin-top: 24px; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .quiz-opts { grid-template-columns: 1fr 1fr; } }
.quiz-opt { border-radius: 16px; border: 1px solid oklch(0.20 0.018 40 / 0.12); background: var(--cream); padding: 16px 20px; text-align: left; font-size: 14px; font-weight: 500; color: var(--espresso); cursor: pointer; transition: all 0.3s; font-family: var(--font-sans); }
.quiz-opt:hover { border-color: var(--rose-gold); background: oklch(0.74 0.075 70 / 0.1); }
.quiz-result-card { border-radius: 16px; border: 1px solid oklch(0.20 0.018 40 / 0.1); background: var(--cream); padding: 20px; margin-top: 12px; }
.quiz-back { margin-top: 24px; background: none; border: none; color: var(--cocoa); font-size: 12px; font-weight: 500; cursor: pointer; }

/* ── Chat widget ─────────────────────────────────────── */
.chat-launcher { position: fixed; bottom: 20px; right: 20px; z-index: 50; display: inline-flex; align-items: center; gap: 8px; background: var(--espresso); color: var(--cream); border: none; padding: 12px 20px 12px 16px; border-radius: 999px; box-shadow: var(--shadow-luxury); cursor: pointer; font-family: var(--font-sans); font-size: 14px; font-weight: 500; }
.chat-launcher svg { color: var(--rose-gold-soft); }
.chat-launcher.hide { display: none; }
.chat-panel { position: fixed; inset: auto 16px 16px 16px; z-index: 50; display: flex; flex-direction: column; height: 560px; max-height: 75dvh; background: var(--cream); border: 1px solid oklch(0.20 0.018 40 / 0.1); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-luxury); }
/* Author `display:flex` above beats the UA's [hidden]{display:none}, so restate
   it here — without this the panel is always open. Needs the explicit height
   too, or .chat-messages{flex:1} collapses to zero in an auto-height column. */
.chat-panel[hidden] { display: none; }
@media (min-width: 640px) { .chat-panel { left: auto; right: 20px; width: 380px; } }
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px; background: var(--ivory); border-bottom: 1px solid oklch(0.20 0.018 40 / 0.1); }
.chat-head-id { display: flex; align-items: center; gap: 12px; }
.chat-avatar { display: flex; height: 36px; width: 36px; align-items: center; justify-content: center; border-radius: 999px; background: var(--espresso); color: var(--rose-gold-soft); }
.chat-title { font-family: var(--font-display); font-size: 18px; color: var(--espresso); }
.chat-sub { font-size: 11px; color: var(--cocoa); }
.chat-close { background: none; border: none; color: var(--cocoa); cursor: pointer; font-size: 16px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 85%; border-radius: 16px; padding: 10px 16px; font-size: 14px; line-height: 1.6; white-space: pre-line; }
.msg.bot { align-self: flex-start; background: var(--ivory); color: var(--espresso); border-top-left-radius: 4px; }
.msg.user { align-self: flex-end; background: var(--espresso); color: var(--cream); border-top-right-radius: 4px; }
.msg-actions { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.msg-actions a { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; padding: 6px 12px; font-size: 12px; font-weight: 500; }
.msg-actions a.wa { background: var(--whatsapp); color: #fff; }
.msg-actions a.link { background: var(--espresso); color: var(--cream); }
.msg-actions a.call { border: 1px solid oklch(0.20 0.018 40 / 0.2); color: var(--espresso); }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; }
.chat-chips button { border-radius: 999px; border: 1px solid oklch(0.20 0.018 40 / 0.15); background: var(--ivory); padding: 6px 12px; font-size: 12px; font-weight: 500; color: var(--espresso); cursor: pointer; font-family: var(--font-sans); }
.chat-chips button:hover { border-color: var(--rose-gold); }
.chat-input { display: flex; align-items: center; gap: 8px; border-top: 1px solid oklch(0.20 0.018 40 / 0.1); background: var(--ivory); padding: 12px; }
.chat-input input { flex: 1; min-width: 0; border-radius: 999px; border: 1px solid oklch(0.20 0.018 40 / 0.15); background: var(--cream); padding: 10px 16px; font-size: 14px; font-family: var(--font-sans); outline: none; }
.chat-input input:focus { border-color: var(--rose-gold); }
.chat-input button { flex: none; width: 40px; height: 40px; border-radius: 999px; background: var(--espresso); color: var(--cream); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.chat-foot { background: var(--ivory); padding: 0 16px 12px; text-align: center; font-size: 10px; color: oklch(0.44 0.045 55 / 0.7); }

/* ── Floating actions / sticky bar ───────────────────── */
.floating-actions { position: fixed; bottom: 88px; right: 20px; z-index: 40; display: flex; flex-direction: column; gap: 12px; }
.fab { display: flex; height: 56px; width: 56px; align-items: center; justify-content: center; border-radius: 999px; box-shadow: var(--shadow-luxury); transition: transform 0.2s; }
.fab:hover { transform: scale(1.05); }
.fab-wa { background: var(--whatsapp); color: #fff; }
.fab-call { background: var(--cream); color: var(--espresso); border: 1px solid oklch(0.20 0.018 40 / 0.15); box-shadow: var(--shadow-soft); }
@media (min-width: 768px) { .floating-actions { bottom: 88px; } }

.sticky-bar { position: fixed; inset: auto 0 0 0; z-index: 40; background: oklch(0.955 0.018 75 / 0.96); backdrop-filter: blur(16px); border-top: 1px solid oklch(0.20 0.018 40 / 0.1); padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 12px; }
@media (min-width: 768px) { .sticky-bar { display: none; } }
.sticky-bar .info { flex: 1; min-width: 0; }
.sticky-bar .info .n { font-family: var(--font-display); font-size: 18px; color: var(--espresso); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-bar .info .s { font-size: 11px; color: var(--cocoa); }

/* ── Page header ─────────────────────────────────────── */
.page-head { position: relative; overflow: hidden; background: var(--cream); padding: 144px 0 64px; }
@media (min-width: 1024px) { .page-head { padding: 176px 0 96px; } }
.page-head .aura { position: absolute; inset: 0; background: var(--gradient-hero); pointer-events: none; }
.crumbs { font-size: 12px; color: var(--cocoa); margin-bottom: 32px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.crumbs a:hover { color: var(--espresso); }
.crumbs .sep { color: oklch(0.44 0.045 55 / 0.6); }
.page-head h1 { margin-top: 24px; font-size: clamp(3rem, 7vw, 4.5rem); color: var(--espresso); max-width: 60rem; }
.page-head .intro { margin-top: 24px; max-width: 42rem; font-size: 15px; line-height: 1.7; color: var(--cocoa); }

/* ── Forms ───────────────────────────────────────────── */
.field { display: block; }
.field label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cocoa); }
.field .opt { text-transform: none; color: oklch(0.44 0.045 55 / 0.6); letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%; margin-top: 8px; border-radius: 12px; border: 1px solid oklch(0.20 0.018 40 / 0.15);
  background: var(--cream); padding: 12px 16px; font-size: 14px; color: var(--espresso);
  font-family: var(--font-sans); outline: none; transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose-gold); }
.field .err { margin-top: 6px; font-size: 12px; color: oklch(0.55 0.18 27); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: oklch(0.55 0.18 27); }
.form-space > * + * { margin-top: 20px; }
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Submit button: duplicate-submit guard */
.btn:disabled { opacity: 0.65; cursor: not-allowed; }

/* In-place confirmation that replaces the form on success */
.form-success { text-align: center; padding: 24px 8px; }
.form-success-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 999px;
  background: oklch(0.74 0.075 70 / 0.15); color: var(--rose-gold);
  animation: pop 0.5s var(--ease) both;
}
@keyframes pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { margin-top: 20px; font-size: 26px; color: var(--espresso); }
.form-success p { margin-top: 12px; font-size: 14px; line-height: 1.7; color: var(--cocoa); }
.form-success-ref { font-size: 12px !important; letter-spacing: 0.05em; }
.form-success-ref strong { color: var(--espresso); }

/* WhatsApp hand-off shown after a successful submission */
.form-success-wa { margin-top: 24px; padding-top: 24px; border-top: 1px solid oklch(0.20 0.018 40 / 0.1); }
.form-success-wa .btn { animation: pop 0.5s var(--ease) both; }
.form-success-wa-note { margin-top: 12px !important; font-size: 12px !important; color: var(--cocoa); }


/* ── Map ─────────────────────────────────────────────── */
.map-frame { border: 1px solid oklch(0.20 0.018 40 / 0.1); border-radius: 24px; overflow: hidden; }
.map-frame iframe { width: 100%; height: 288px; border: 0; display: block; }

/* legal prose */
.prose { max-width: 48rem; }
.prose > div + div, .prose > p + p, .prose > div, .prose > p { margin-top: 32px; }
.prose h2 { font-family: var(--font-display); font-size: 24px; color: var(--espresso); }
.prose p { font-size: 14px; line-height: 1.7; color: var(--cocoa); }
.prose a { color: var(--espresso); text-decoration: underline; text-underline-offset: 4px; }

/* ── Client review videos (Happy Clients) ────────────── */
/* Portrait review clips. Fixed-width, centred tracks that wrap to fit any
   screen — cards never stretch on wide monitors and the last row stays centred.
   Card width scales gently with the viewport between 220px and 280px. */
.video-grid { margin-top: 48px; display: grid; gap: 44px 28px; justify-content: center; grid-template-columns: repeat(auto-fill, clamp(220px, 24vw, 280px)); }
@media (max-width: 300px) { .video-grid { grid-template-columns: minmax(0, 1fr); } }
.video-card { margin: 0; min-width: 0; display: flex; flex-direction: column; }
.video-meta { margin-top: 18px; }
.video-quote { font-family: var(--font-display); font-size: 17px; line-height: 1.55; color: var(--espresso); }
.video-attrib { margin-top: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cocoa); }
.video-empty { margin-top: 40px; font-size: 14px; line-height: 1.7; color: var(--cocoa); }
.video-empty a { color: var(--espresso); text-decoration: underline; text-underline-offset: 4px; }

/* Custom media player */
.vplayer { position: relative; overflow: hidden; border-radius: 24px; background: var(--espresso); border: 1px solid oklch(0.20 0.018 40 / 0.08); isolation: isolate; box-shadow: 0 18px 40px -24px oklch(0.20 0.018 40 / 0.45); transition: box-shadow 0.5s var(--ease), transform 0.5s var(--ease); }
.video-card:hover .vplayer { box-shadow: 0 26px 60px -26px oklch(0.20 0.018 40 / 0.6); transform: translateY(-4px); }
.vplayer.is-portrait { aspect-ratio: 9 / 16; }
.vplayer.is-landscape { aspect-ratio: 16 / 9; }
.vplayer:focus-visible { outline: 2px solid var(--rose-gold); outline-offset: 3px; }
.vplayer video { width: 100%; height: 100%; object-fit: cover; display: block; background: var(--espresso); }
.vplayer.is-ready video { cursor: pointer; }
.vplayer::after { content: ""; position: absolute; inset: auto 0 0; height: 45%; z-index: 1; pointer-events: none; background: linear-gradient(to top, oklch(0.20 0.018 40 / 0.75), transparent); opacity: 0; transition: opacity 0.35s var(--ease); }
.vplayer.is-ready::after { opacity: 1; }
.vplayer.is-idle::after { opacity: 0; }

/* Centre play / replay button */
.vp-big { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; display: none; align-items: center; justify-content: center; height: 68px; width: 68px; padding-left: 4px; border: 1px solid oklch(1 0 0 / 0.35); border-radius: 999px; background: oklch(0.20 0.018 40 / 0.45); backdrop-filter: blur(8px); color: var(--cream); cursor: pointer; transition: transform 0.35s var(--ease), background 0.3s, opacity 0.3s var(--ease); }
.vplayer.is-ready .vp-big { display: flex; }
.vp-big:hover { transform: translate(-50%, -50%) scale(1.08); background: oklch(0.20 0.018 40 / 0.65); }
.vp-big .ic-replay { display: none; }
.vplayer.is-playing .vp-big { opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(0.85); }
.vplayer.is-ended .vp-big { padding-left: 0; }
.vplayer.is-ended .vp-big .ic-play { display: none; }
.vplayer.is-ended .vp-big .ic-replay { display: block; }

/* Buffering spinner */
.vp-spinner { position: absolute; top: 50%; left: 50%; margin: -16px 0 0 -16px; z-index: 3; height: 32px; width: 32px; display: none; border: 2px solid oklch(1 0 0 / 0.25); border-top-color: var(--cream); border-radius: 999px; animation: vp-spin 0.8s linear infinite; }
.vplayer.is-loading .vp-spinner { display: block; }
.vplayer.is-loading .vp-big { opacity: 0; }
@keyframes vp-spin { to { transform: rotate(360deg); } }

/* Control bar */
.vp-controls { position: absolute; inset: auto 0 0; z-index: 3; display: none; align-items: center; gap: 10px; padding: 12px 14px; color: var(--cream); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.vplayer.is-ready .vp-controls { display: flex; }
.vplayer.is-idle .vp-controls { opacity: 0; transform: translateY(8px); pointer-events: none; }
.vp-btn { flex: none; display: flex; align-items: center; justify-content: center; height: 32px; width: 32px; border: 0; border-radius: 999px; background: transparent; color: var(--cream); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.vp-btn:hover { background: oklch(1 0 0 / 0.18); transform: translateY(-1px); }
.vp-btn:focus-visible { outline: 2px solid var(--rose-gold); outline-offset: 2px; }
.vp-btn .ic-pause, .vp-btn .ic-mute { display: none; }
.vplayer.is-playing .vp-btn .ic-play { display: none; }
.vplayer.is-playing .vp-btn .ic-pause { display: block; }
.vplayer.is-muted .vp-btn .ic-vol { display: none; }
.vplayer.is-muted .vp-btn .ic-mute { display: block; }

/* Scrubber — a styled range input over painted buffered/played bars */
.vp-track { position: relative; flex: 1 1 auto; height: 4px; min-width: 0; border-radius: 999px; background: oklch(1 0 0 / 0.25); }
.vp-buffered, .vp-played { position: absolute; inset: 0 auto 0 0; border-radius: 999px; width: 0; }
.vp-buffered { background: oklch(1 0 0 / 0.3); }
.vp-played { background: var(--rose-gold); }
.vp-track input[type="range"] { position: absolute; inset: -9px 0; width: 100%; height: 22px; margin: 0; padding: 0; background: transparent; -webkit-appearance: none; appearance: none; cursor: pointer; }
.vp-track input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; height: 12px; width: 12px; border-radius: 999px; border: 0; background: var(--cream); box-shadow: 0 1px 4px oklch(0.20 0.018 40 / 0.5); opacity: 0; transition: opacity 0.2s; }
.vp-track input[type="range"]::-moz-range-thumb { height: 12px; width: 12px; border-radius: 999px; border: 0; background: var(--cream); box-shadow: 0 1px 4px oklch(0.20 0.018 40 / 0.5); opacity: 0; transition: opacity 0.2s; }
.vplayer:hover .vp-track input[type="range"]::-webkit-slider-thumb { opacity: 1; }
.vplayer:hover .vp-track input[type="range"]::-moz-range-thumb { opacity: 1; }
.vp-track input[type="range"]:focus-visible::-webkit-slider-thumb { opacity: 1; box-shadow: 0 0 0 3px var(--rose-gold); }
.vp-track input[type="range"]:focus-visible::-moz-range-thumb { opacity: 1; box-shadow: 0 0 0 3px var(--rose-gold); }

.vp-time { flex: none; font-size: 11px; font-variant-numeric: tabular-nums; letter-spacing: 0.04em; color: oklch(1 0 0 / 0.85); }
@media (max-width: 400px) { .vp-time { display: none; } }

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

/* ── Footer ──────────────────────────────────────────── */
.ig-strip { border-top: 1px solid oklch(0.20 0.018 40 / 0.1); background: var(--ivory); padding: 56px 0; }
.ig-strip-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.ig-follow { font-family: var(--font-display); font-size: 24px; color: var(--espresso); }
.ig-follow:hover { color: var(--rose-gold); }
.ig-sub { font-size: 12px; color: var(--cocoa); }
.ig-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .ig-grid { grid-template-columns: repeat(5, 1fr); } }
.ig-tile { aspect-ratio: 1; overflow: hidden; border-radius: 16px; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.ig-tile:hover img { transform: scale(1.1); }

.site-footer { position: relative; background: var(--cream); }
/* Hairline rose-gold accent along the top edge for a considered, premium finish. */
.site-footer::before { content: ""; display: block; height: 2px; background: linear-gradient(90deg, transparent, oklch(0.74 0.075 70 / 0.6), transparent); }

/* padding-block only — the horizontal padding must stay inherited from .container
   (a `padding` shorthand here would zero it and push content to the edge). */
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px 40px; padding-block: 64px 52px; }
@media (min-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 56px 48px; padding-block: 88px 64px; } }
@media (min-width: 1120px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.5fr; } }

/* On the 3-col desktop step the brand block spans the full first row for balance. */
@media (min-width: 900px) and (max-width: 1119px) {
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .footer-brand .footer-desc { max-width: 32rem; }
}

/* ── Brand column ── */
.footer-brand { min-width: 0; }
.footer-logo-link { display: inline-block; }
.footer-logo { height: 72px; width: auto; max-width: 100%; }
.footer-desc { margin-top: 22px; max-width: 30rem; font-size: 14px; line-height: 1.7; color: var(--cocoa); }
.footer-rating { margin-top: 22px; display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--espresso); }
.footer-socials { margin-top: 26px; display: flex; gap: 10px; }
.social-btn { display: inline-flex; height: 46px; width: 46px; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid oklch(0.20 0.018 40 / 0.15); color: var(--espresso);
  background: var(--ivory); transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s, color 0.25s; }
.social-btn:hover { transform: translateY(-3px); border-color: var(--rose-gold); color: var(--rose-gold); }
.social-btn:focus-visible { outline: 2px solid var(--rose-gold); outline-offset: 3px; }
.social-wa { background: var(--whatsapp); color: #fff; border-color: transparent; }
.social-wa:hover { background: var(--whatsapp); color: #fff; opacity: 0.9; }
.footer-cta { margin-top: 30px; }
@media (max-width: 559px) { .footer-cta { width: 100%; } }

/* ── Column heads ── */
.footer-head { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 22px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--espresso); }
.footer-head::before { content: ""; width: 18px; height: 1px; background: var(--rose-gold); flex: none; }

/* ── Link lists ── */
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.footer-links a { display: inline-block; font-size: 14px; color: oklch(0.20 0.018 40 / 0.78);
  transition: color 0.2s, transform 0.2s var(--ease); }
.footer-links a:hover { color: var(--rose-gold); transform: translateX(4px); }
.footer-links a:focus-visible { outline: 2px solid var(--rose-gold); outline-offset: 3px; border-radius: 3px; }

/* ── Visit column ── */
.footer-visit { min-width: 0; }
.footer-address { font-style: normal; font-size: 14px; line-height: 1.7; color: var(--espresso); margin: 0; }
.footer-hours { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 8px;
  max-width: 20rem; font-size: 13.5px; }
.footer-hours li { display: grid; grid-template-columns: minmax(0, auto) 1fr; gap: 16px; align-items: baseline; }
.footer-hours .fh-days { color: var(--cocoa); white-space: nowrap; }
.footer-hours .fh-time { text-align: right; color: var(--espresso); font-variant-numeric: tabular-nums; }
.footer-contact { margin-top: 22px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: var(--espresso); }
.footer-phone svg { color: var(--rose-gold); }
.footer-phone:hover { color: var(--rose-gold); }
.footer-directions { font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--cocoa); }
.footer-directions:hover { color: var(--espresso); }
.footer-phone:focus-visible, .footer-directions:focus-visible { outline: 2px solid var(--rose-gold); outline-offset: 3px; border-radius: 3px; }

/* ── Bottom bar ── */
.footer-bottom-wrap { border-top: 1px solid oklch(0.20 0.018 40 / 0.1); background: var(--ivory); }
.footer-bottom { display: flex; flex-direction: column; gap: 14px; padding-block: 24px; font-size: 12px; color: var(--cocoa); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-copy { margin: 0; line-height: 1.6; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.footer-legal a { color: var(--cocoa); transition: color 0.2s; }
.footer-legal a:hover { color: var(--espresso); }
.footer-legal a:focus-visible, .designer:focus-visible { outline: 2px solid var(--rose-gold); outline-offset: 3px; border-radius: 3px; }
.footer-locale { letter-spacing: 0.08em; }
.designer { color: var(--espresso); font-weight: 500; }
.designer:hover { color: var(--rose-gold); }

/* pending verification (dev only, hidden on shared hosting where it's not needed) */
.pending { display: none; }

/* ── Reduced motion ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .marquee-track { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
