/* ====================================================
   THE KAY LASHES — site styles
   ==================================================== */

:root {
  --cream-50: #FBF6ED;
  --cream-100: #F6EFE1;
  --cream-200: #EFE4CE;
  --cream-300: #E4D3B4;
  --sand: #D9C5A2;

  --brown-900: #3D2614;
  --brown-800: #4E3220;
  --brown-700: #6B4423;
  --brown-600: #7E5530;
  --brown-500: #A07449;
  --brown-300: #C6A581;

  --coral-700: #C4733A;
  --coral-600: #DE8B4B;
  --coral-500: #ED9A56;
  --coral-400: #F0AC72;
  --coral-200: #F8D2B1;
  --coral-100: #FBE6D2;

  --ink: var(--brown-900);
  --ink-soft: var(--brown-700);
  --ink-muted: #8a7460;
  --line: rgba(110,68,35,0.15);
  --line-soft: rgba(110,68,35,0.08);

  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;

  --shadow-card: 0 1px 2px rgba(61,38,20,0.04), 0 8px 28px -8px rgba(61,38,20,0.12);
  --shadow-soft: 0 1px 2px rgba(61,38,20,0.03), 0 16px 40px -16px rgba(61,38,20,0.14);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 880px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 640px) { .wrap, .wrap-sm { padding: 0 18px; } }

/* ---------- typography ---------- */
.serif { font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
.script { font-family: 'Allura', cursive; font-weight: 400; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-700);
}
h1, h2, h3, h4 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; }
h1 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(40px, 6.5vw, 84px); font-variation-settings: "opsz" 144; }
h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(30px, 4.2vw, 54px); line-height: 1.05; }
h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: clamp(20px, 2vw, 26px); line-height: 1.2; }
p { margin: 0; text-wrap: pretty; }

/* ---------- nav ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,237,0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  display: flex; align-items: center;
  height: 56px;
}
.brand-logo {
  height: 56px; width: auto;
  display: block;
  object-fit: contain;
}
.brand .dot { color: var(--coral-500); margin: 0 2px; }
.brand .script { color: var(--coral-600); font-size: 26px; line-height: 0.5; margin-left: 2px; transform: translateY(2px); }
.navlinks { display: flex; gap: 24px; }
.navlinks a { font-size: 14px; color: var(--brown-800); transition: color 0.15s ease; position: relative; }
.navlinks a:hover { color: var(--coral-600); }
.navlinks a.active { color: var(--coral-700); }
.navlinks a.active::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--coral-500);
  border-radius: 999px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.mobile-menu-toggle {
  display: none;
  background: none; border: 1px solid var(--line);
  width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center;
  color: var(--brown-800);
}

@media (max-width: 980px) {
  .navlinks { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .nav-cta .desktop-only { display: none; }
}

/* mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed; inset: 72px 0 0 0;
  background: var(--cream-50);
  z-index: 49;
  padding: 32px 24px;
  overflow-y: auto;
}
.mobile-drawer.open { display: block; }
.mobile-drawer a {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--brown-900);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-drawer a.active { color: var(--coral-600); }
.mobile-drawer .wa {
  margin-top: 28px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-wa {
  background: var(--whatsapp); color: white;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 6px 18px -6px rgba(37,211,102,0.45);
}
.btn-wa:hover { background: #1ebf5b; transform: translateY(-1px); }
.btn-ink { background: var(--brown-900); color: var(--cream-50); }
.btn-ink:hover { background: var(--brown-800); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--brown-800); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brown-700); background: rgba(110,68,35,0.04); }
.btn-coral { background: var(--coral-500); color: white; }
.btn-coral:hover { background: var(--coral-600); transform: translateY(-1px); }
.btn svg { width: 16px; height: 16px; }
.btn-lg { padding: 14px 24px; font-size: 15px; }

/* ---------- ticker ---------- */
.ticker {
  background: var(--brown-900); color: var(--cream-100);
  padding: 16px 0; overflow: hidden; white-space: nowrap;
}
.ticker-track {
  display: inline-flex; gap: 48px;
  animation: scroll 40s linear infinite;
  padding-right: 48px;
}
.ticker-item {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-style: italic; font-weight: 300;
  display: inline-flex; align-items: center; gap: 48px;
}
.ticker-item::after { content: '✦'; color: var(--coral-500); font-style: normal; margin-left: 48px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- section base ---------- */
section { padding: 96px 0; position: relative; }
@media (max-width: 768px) { section { padding: 72px 0; } }
.section-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; margin-bottom: 48px; flex-wrap: wrap;
}
.section-head .lead { max-width: 540px; }
.section-head h2 { margin-top: 12px; max-width: 720px; }
.section-head p.sub { color: var(--ink-soft); margin-top: 14px; max-width: 540px; }
.section-pad-sm { padding: 64px 0; }

/* ---------- page hero (per-page small header) ---------- */
.page-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line-soft);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 90% 0%, rgba(237,154,86,0.16), transparent 65%);
  pointer-events: none;
}
.breadcrumb {
  font-size: 12.5px; color: var(--ink-muted);
  letter-spacing: 0.06em; margin-bottom: 18px;
  display: flex; gap: 8px; flex-wrap: wrap;
  position: relative;
}
.breadcrumb a:hover { color: var(--coral-700); }
.breadcrumb .sep { color: var(--coral-500); }
.page-hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  position: relative;
  max-width: 920px;
}
.page-hero .lede {
  margin-top: 22px;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 18px;
  position: relative;
}
.page-hero .meta {
  display: flex; gap: 14px 28px; flex-wrap: wrap;
  margin-top: 32px; font-size: 13.5px; color: var(--ink-soft);
  position: relative;
}
.page-hero .meta span { display: inline-flex; align-items: center; gap: 8px; }
.page-hero .meta .dotmk { width: 6px; height: 6px; border-radius: 50%; background: var(--coral-500); }
.page-hero .cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 28px; position: relative;
}

/* ---------- HOMEPAGE hero ---------- */
.hero { padding: 56px 0 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(237,154,86,0.18), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(237,154,86,0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px;
  align-items: center; position: relative;
}
.hero h1 .accent { color: var(--coral-600); font-style: italic; }
.hero h1 .swash { font-family: 'Allura', cursive; color: var(--coral-600); font-style: normal; }
.hero-sub { margin-top: 20px; font-size: 18px; color: var(--ink-soft); max-width: 540px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--ink-soft);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dotmk { width: 6px; height: 6px; border-radius: 50%; background: var(--coral-500); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero-visual { position: relative; aspect-ratio: 4/5; }
.hero-visual .clip {
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--cream-200);
}
.hero-visual image-slot {
  width: 100%; height: 100%;
  --is-bg: linear-gradient(135deg, #E8C9A8, #C99B70);
  --is-fg: rgba(255,255,255,0.78);
}
.hero-badge {
  position: absolute; bottom: 24px; left: -28px;
  background: var(--cream-50);
  padding: 14px 18px 14px 22px; border-radius: 999px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line-soft);
}
.hero-badge .stars { color: var(--coral-500); font-size: 14px; letter-spacing: 2px; }
.hero-badge .num { font-family: 'Fraunces', serif; font-size: 20px; color: var(--brown-900); }
.hero-badge .lbl { font-size: 12px; color: var(--ink-muted); }
.hero-tag {
  position: absolute; top: 24px; right: 24px;
  background: var(--brown-900); color: var(--cream-50);
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 880px) {
  .hero { padding: 36px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { aspect-ratio: 4/4.5; }
  .hero-badge { left: 16px; bottom: 16px; }
  .hero-tag { right: 24px; }
}

/* ---------- services grid (homepage) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  min-height: 420px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.service-card .visual {
  height: 200px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--cream-200);
}
.service-card .visual image-slot { width: 100%; height: 100%; }
.service-card h3 { color: var(--brown-900); }
.service-card p { color: var(--ink-soft); font-size: 15px; margin-top: 10px; }
.service-card .foot {
  margin-top: auto; padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px dashed var(--line);
}
.service-card .price-from { font-family: 'Fraunces', serif; font-size: 22px; color: var(--brown-900); }
.service-card .price-from small {
  font-family: 'Inter', sans-serif; color: var(--ink-muted);
  font-size: 12px; font-weight: 400; display: block; letter-spacing: 0.05em;
}
.service-card a.more {
  font-size: 13px; color: var(--coral-700);
  border-bottom: 1px solid currentColor; padding-bottom: 1px;
}

/* ---------- styles grid ---------- */
.styles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .styles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .styles-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.style-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-100);
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.style-card image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.style-card .label {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(251,246,237,0.92);
  backdrop-filter: blur(6px);
  padding: 10px 14px;
  border-radius: 12px;
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap;
  gap: 2px 8px;
}
.style-card .label .name { font-family: 'Fraunces', serif; font-size: 16px; color: var(--brown-900); }
.style-card .label .vibe { font-size: 11px; color: var(--ink-muted); white-space: nowrap; }

.spectrum {
  display: flex; align-items: center; gap: 14px;
  margin-top: 56px; padding: 20px 24px;
  background: var(--cream-50);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.spectrum-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }
.spectrum-bar {
  flex: 1; min-width: 160px;
  height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--cream-300), var(--coral-500), var(--brown-700));
  position: relative;
}
.spectrum-stops {
  display: flex; justify-content: space-between;
  flex: 1; min-width: 160px;
  margin-top: 2px;
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--ink-soft); font-size: 14px;
}

/* ---------- menu (price) ---------- */
.menu { background: var(--brown-900); color: var(--cream-100); }
.menu .eyebrow { color: var(--coral-400); }
.menu h2 { color: var(--cream-50); }
.menu .sub { color: rgba(251,246,237,0.7); }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 64px 80px; }
@media (max-width: 880px) { .menu-grid { grid-template-columns: 1fr; gap: 48px; } }
.menu-col h3 {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  color: var(--coral-400);
  font-size: 20px; margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(237,154,86,0.25);
  display: flex; justify-content: space-between; align-items: baseline;
}
.menu-col h3 .tag { font-style: normal; color: rgba(251,246,237,0.5); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-family: 'Inter', sans-serif; }
.menu-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 14px 0; border-bottom: 1px dashed rgba(251,246,237,0.12); }
.menu-row:last-child { border-bottom: none; }
.menu-row .name { font-family: 'Fraunces', serif; font-size: 17px; color: var(--cream-50); }
.menu-row .desc { font-size: 13px; color: rgba(251,246,237,0.6); margin-top: 3px; }
.menu-row .price { font-family: 'Fraunces', serif; font-size: 18px; color: var(--coral-400); white-space: nowrap; align-self: start; padding-top: 2px; }
.menu-row .price small { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(251,246,237,0.5); font-weight: 400; display: block; text-align: right; }
.menu-note {
  margin-top: 48px; padding: 20px 24px;
  background: rgba(237,154,86,0.08);
  border: 1px solid rgba(237,154,86,0.18);
  border-radius: var(--radius);
  font-size: 13.5px; color: rgba(251,246,237,0.75);
  display: flex; gap: 14px; align-items: flex-start;
}
.menu-note strong { color: var(--coral-400); }

/* ---------- gallery mosaic ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 120px; gap: 14px; }
.gtile { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--cream-200); }
.gtile image-slot { width: 100%; height: 100%; }
.gtile .ribbon {
  position: absolute; top: 12px; left: 12px;
  background: rgba(251,246,237,0.92);
  padding: 5px 10px; border-radius: 999px;
  font-size: 11px; color: var(--brown-800);
  letter-spacing: 0.04em; font-weight: 500;
}
.g1 { grid-column: span 5; grid-row: span 3; }
.g2 { grid-column: span 4; grid-row: span 2; }
.g3 { grid-column: span 3; grid-row: span 2; }
.g4 { grid-column: span 4; grid-row: span 2; }
.g5 { grid-column: span 3; grid-row: span 3; }
.g6 { grid-column: span 4; grid-row: span 3; }
.g7 { grid-column: span 5; grid-row: span 2; }

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g1, .g2, .g3, .g4, .g5, .g6, .g7 { grid-column: span 1; grid-row: span 1; }
  .g1, .g6 { grid-column: span 2; grid-row: span 2; }
}

/* ---------- proof/why us ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 880px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .proof-grid { grid-template-columns: 1fr; } }

.proof-card { padding: 28px 24px; background: var(--cream-50); border-radius: var(--radius-lg); border: 1px solid var(--line-soft); }
.proof-card .ico {
  width: 44px; height: 44px;
  background: var(--coral-100);
  border-radius: 12px; color: var(--coral-700);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.proof-card .ico svg { width: 22px; height: 22px; }
.proof-card h4 { font-family: 'Fraunces', serif; font-size: 19px; color: var(--brown-900); margin-bottom: 8px; }
.proof-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- reviews ---------- */
.gscore {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; background: var(--cream-100);
  border-radius: 16px; border: 1px solid var(--line-soft);
}
.gscore .glogo { font-family: 'Fraunces', serif; font-size: 22px; }
.gscore .glogo span:nth-child(1) { color: #4285F4; }
.gscore .glogo span:nth-child(2) { color: #DB4437; }
.gscore .glogo span:nth-child(3) { color: #F4B400; }
.gscore .glogo span:nth-child(4) { color: #4285F4; }
.gscore .glogo span:nth-child(5) { color: #0F9D58; }
.gscore .glogo span:nth-child(6) { color: #DB4437; }
.gscore .num { font-family: 'Fraunces', serif; font-size: 30px; color: var(--brown-900); line-height: 1; }
.gscore .stars { color: var(--coral-500); letter-spacing: 2px; }
.gscore .lbl { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  padding: 26px; background: var(--cream-50);
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
}
.review-card .stars { color: var(--coral-500); letter-spacing: 3px; margin-bottom: 14px; font-size: 14px; }
.review-card p { font-size: 15px; color: var(--ink-soft); }
.review-card .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.review-card .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-200), var(--coral-500));
  color: white; display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 15px;
}
.review-card .who .meta { font-size: 12.5px; color: var(--ink-muted); }
.review-card .who .meta strong { color: var(--brown-800); font-weight: 600; display: block; font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 64px; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

details.q {
  background: var(--cream-50);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0; margin-bottom: 12px;
  transition: box-shadow 0.2s ease;
}
details.q[open] { box-shadow: var(--shadow-card); }
details.q summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: 'Fraunces', serif; font-size: 18px;
  color: var(--brown-900);
}
details.q summary::-webkit-details-marker { display: none; }
details.q summary::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-weight: 300; font-size: 24px;
  color: var(--coral-600);
  transition: transform 0.2s ease;
}
details.q[open] summary::after { transform: rotate(45deg); }
details.q .a { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; max-width: 64ch; }

/* ---------- location ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .location-grid { grid-template-columns: 1fr; } }

.map-card {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3.2;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  background: var(--cream-100);
  position: relative;
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }

.loc-info dl { display: grid; grid-template-columns: 130px 1fr; gap: 16px 24px; margin: 24px 0 32px; }
.loc-info dt { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); padding-top: 2px; }
.loc-info dd { margin: 0; color: var(--brown-900); font-size: 15.5px; }
.loc-info dd.address { font-family: 'Fraunces', serif; font-size: 19px; }
@media (max-width: 640px) {
  .loc-info dl { grid-template-columns: 1fr; gap: 4px 0; }
  .loc-info dt { padding-top: 12px; }
  .loc-info dl > dt:first-child { padding-top: 0; }
}

/* ---------- booking strip ---------- */
.booking {
  padding: 80px 0;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(237,154,86,0.15), transparent 70%),
    var(--cream-50);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.booking-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.booking h2 { margin-bottom: 16px; }
.booking p { color: var(--ink-soft); margin-bottom: 28px; }
.booking .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* clear the floating mobile FAB so it doesn't cover the booking CTAs */
@media (max-width: 880px) { .booking { padding-bottom: 116px; } }

.msg-preview {
  margin: 36px auto 0; max-width: 420px;
  background: var(--cream-50); border: 1px solid var(--line);
  border-radius: 18px; padding: 18px; text-align: left;
  box-shadow: var(--shadow-card);
}
.msg-preview .head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 12px;
}
.msg-preview .head .wa-ico { width: 32px; height: 32px; background: var(--whatsapp); border-radius: 50%; display: grid; place-items: center; }
.msg-preview .head .who { font-size: 14px; font-weight: 600; color: var(--brown-900); }
.msg-preview .head .sub { font-size: 11px; color: var(--ink-muted); }
.msg-preview .bubble {
  background: var(--coral-100);
  padding: 12px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: 13.5px; color: var(--brown-800); line-height: 1.5;
}

/* ---------- footer ---------- */
footer { background: var(--brown-900); color: var(--cream-100); padding: 64px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(251,246,237,0.12);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
footer h5 {
  font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--coral-400);
  margin: 0 0 18px; font-weight: 500;
}
footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
footer a { color: rgba(251,246,237,0.78); font-size: 14px; }
footer a:hover { color: var(--coral-400); }
.foot-brand .tag { font-family: 'Fraunces', serif; font-size: 26px; letter-spacing: 0.05em; color: var(--cream-50); display: inline-flex; }
.foot-brand .tag .script { color: var(--coral-400); font-size: 30px; }
.foot-logo {
  height: 112px; width: auto;
  display: block;
  background: var(--cream-50);
  padding: 2px 10px;
  border-radius: 14px;
}
.foot-brand p { margin-top: 16px; color: rgba(251,246,237,0.65); font-size: 14px; max-width: 340px; }
.legal {
  margin-top: 28px; display: flex; justify-content: space-between;
  color: rgba(251,246,237,0.5); font-size: 12px;
  flex-wrap: wrap; gap: 12px;
}

.mobile-fab { display: none; position: fixed; right: 18px; bottom: 18px; z-index: 60; }
.mobile-fab .btn-wa { box-shadow: 0 6px 24px rgba(37,211,102,0.4); padding: 14px 22px; }
@media (max-width: 880px) { .mobile-fab { display: block; } }
/* hide the floating Book button while the mobile nav drawer is open */
#mdrawer.open ~ .mobile-fab { display: none !important; }

:focus-visible { outline: 2px solid var(--coral-600); outline-offset: 3px; border-radius: 4px; }

/* ====================================================
   PAGE-SPECIFIC HELPERS
   ==================================================== */

/* generic split layout used on service pages */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse > :first-child { order: 0; }
}
.split-img {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-200);
  box-shadow: var(--shadow-card);
}
.split-img image-slot { width: 100%; height: 100%; }

/* step list */
.steps { counter-reset: stp; display: grid; gap: 18px; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 22px 24px;
  background: var(--cream-50);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.step::before {
  counter-increment: stp;
  content: counter(stp, decimal-leading-zero);
  font-family: 'Fraunces', serif; font-size: 26px;
  color: var(--coral-600);
  align-self: start; line-height: 1;
}
.step h4 { font-family: 'Fraunces', serif; font-size: 18px; color: var(--brown-900); margin-bottom: 6px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

/* feature grid w/ bullets */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 768px) { .feat-grid { grid-template-columns: 1fr; } }
.feat {
  padding: 22px; background: var(--cream-50);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
}
.feat .num {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 14px;
  color: var(--coral-700);
  letter-spacing: 0.06em; margin-bottom: 8px;
  text-transform: uppercase;
}
.feat h4 { font-family: 'Fraunces', serif; font-size: 18px; color: var(--brown-900); margin-bottom: 8px; }
.feat p { font-size: 14.5px; color: var(--ink-soft); }

/* compare table (lift vs extension) */
.compare {
  width: 100%; border-collapse: collapse;
  background: var(--cream-50);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.compare th, .compare td {
  text-align: left; padding: 16px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
}
.compare th {
  background: var(--cream-100);
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--brown-900);
  font-size: 16px;
}
.compare td:first-child {
  font-weight: 500; color: var(--brown-900); width: 38%;
}
.compare tr:last-child td { border-bottom: none; }
.compare td .pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px; font-weight: 500;
  background: var(--cream-100); color: var(--brown-800);
}

/* lookup chooser pill row */
.chooser {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.chooser button, .chooser a {
  padding: 10px 16px;
  background: var(--cream-100);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 13.5px; color: var(--brown-800);
  font-weight: 500; cursor: pointer;
  transition: all 0.15s ease;
}
.chooser button.active, .chooser a.active {
  background: var(--brown-900); color: var(--cream-50);
  border-color: var(--brown-900);
}
.chooser button:hover:not(.active), .chooser a:hover:not(.active) { border-color: var(--brown-700); }

/* style detail card on /styles */
.style-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line-soft);
}
.style-detail:last-child { border-bottom: none; }
.style-detail:nth-child(even) > :first-child { order: 2; }
@media (max-width: 880px) {
  .style-detail { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .style-detail:nth-child(even) > :first-child { order: 0; }
}
.style-detail-img {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-200);
}
@media (max-width: 880px) { .style-detail-img { aspect-ratio: 16/9; } }
.style-detail-img image-slot { width: 100%; height: 100%; }
.style-detail .vibe-tag {
  display: inline-block;
  font-family: 'Fraunces', serif; font-style: italic;
  color: var(--coral-700); font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.style-detail h3 { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 14px; }
.style-detail .meta-pills {
  display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 0;
}
.style-detail .meta-pills span {
  background: var(--cream-100); border: 1px solid var(--line-soft);
  padding: 6px 12px; border-radius: 999px;
  font-size: 12.5px; color: var(--brown-800);
}

/* aftercare card list */
.care-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 768px) { .care-grid { grid-template-columns: 1fr; } }
.care-card {
  padding: 24px; background: var(--cream-50);
  border-left: 3px solid var(--coral-500);
  border-radius: 4px var(--radius) var(--radius) 4px;
}
.care-card .when {
  font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--coral-700); margin-bottom: 8px;
}
.care-card h4 { font-family: 'Fraunces', serif; font-size: 18px; color: var(--brown-900); margin-bottom: 8px; }
.care-card ul { margin: 8px 0 0; padding-left: 18px; color: var(--ink-soft); font-size: 14.5px; }
.care-card ul li { margin-bottom: 4px; }
.care-card.warn { border-left-color: var(--brown-700); }

/* simple list */
.bullet-list { padding-left: 0; list-style: none; display: grid; gap: 10px; }
.bullet-list li {
  position: relative; padding-left: 28px;
  color: var(--ink-soft); font-size: 15px;
}
.bullet-list li::before {
  content: '✦'; position: absolute; left: 0; top: 0;
  color: var(--coral-500);
}
