/* ==========================================================================
   Keratin Plus Salon — Design System
   Palette derived from the salon's own Instagram logo (espresso + gold)
   ========================================================================== */

:root {
  /* Colors */
  --espresso-900: #1E120B;
  --espresso-800: #2A1810;
  --espresso-700: #3E2416;
  --gold-400: #D8BD82;
  --gold-500: #B9924C;
  --gold-600: #9C7A3B;
  --burgundy-600: #6E2436;
  --burgundy-700: #591C2B;
  --ivory-50: #FBF7F1;
  --ivory-100: #F3E9DC;
  --white: #FFFFFF;
  --ink: #2B1B14;
  --ink-muted: #6B5B4E;
  --border-soft: #E7DACB;
  --success: #3F6B4A;

  /* Type: single clean sans system (simple, professional — no decorative serif) */
  --font-serif: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (mobile-first, 4/8pt rhythm) */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-soft: 0 4px 24px rgba(42, 24, 16, 0.08);
  --shadow-med: 0 12px 40px rgba(42, 24, 16, 0.14);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 220ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory-50);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; margin: 0 0 var(--space-3); color: var(--espresso-800); }
p { margin: 0 0 var(--space-3); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 var(--space-4); }
section { padding: var(--space-8) 0; }
.section-alt { background: var(--ivory-100); }

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}

/* ---------- Typography scale ---------- */
h1 { font-size: clamp(2.25rem, 6vw, 3.75rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 3vw, 1.75rem); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-block;
  margin-bottom: var(--space-2);
}
.section-head { max-width: 640px; margin: 0 auto var(--space-6); text-align: center; }
.section-head p { color: var(--ink-muted); font-size: 1.05rem; }
.lede { font-size: 1.15rem; color: var(--ink-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out), background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
  min-height: 44px;
  touch-action: manipulation;
}
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }
.btn-primary {
  background: var(--gold-500);
  color: var(--espresso-900);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: var(--shadow-med); }
.btn-outline {
  background: transparent;
  border-color: rgba(251, 247, 241, 0.5);
  color: inherit;
}
.btn-outline:hover { background: rgba(251, 247, 241, 0.12); border-color: var(--gold-400); }
.btn-dark {
  background: var(--espresso-800);
  color: var(--ivory-50);
}
.btn-dark:hover { background: var(--espresso-700); transform: translateY(-2px); box-shadow: var(--shadow-med); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { width: 42px; height: 42px; border-radius: 50%; }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--espresso-800);
  line-height: 1.1;
  white-space: nowrap;
}
.brand-name span { display: block; font-family: var(--font-sans); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-600); font-weight: 600; white-space: nowrap; }
.site-header .container { flex-wrap: nowrap; }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 1.35rem; white-space: nowrap; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease-out);
}
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--gold-600); }
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.mobile-menu a[aria-current="page"] { color: var(--gold-600); font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-cta {
  display: none;
  white-space: nowrap;
  padding: 0.85rem 1.35rem;
  font-size: 0.9rem;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  color: var(--espresso-800);
}
.nav-toggle svg { width: 26px; height: 26px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--ivory-50);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--space-2) var(--space-4) var(--space-4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: var(--space-2) 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a:last-child { border-bottom: none; }

@media (min-width: 1260px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- Hero (full-bleed photo, dark-to-transparent scrim) ---------- */
.hero {
  position: relative;
  color: var(--ivory-50);
  overflow: hidden;
  background: var(--espresso-900);
  padding: 0;
}
.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 22%;
  display: block;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 18, 11, 0.1) 0%, rgba(30, 18, 11, 0.92) 94%);
}
.hero .container {
  position: relative;
  padding: var(--space-6) 0 var(--space-8);
  background: var(--espresso-900);
}
.hero-copy { max-width: 620px; }
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251, 247, 241, 0.1);
  border: 1px solid rgba(216, 189, 130, 0.35);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: var(--space-4);
}
.hero-rating .stars { color: var(--gold-400); letter-spacing: 1px; }
.hero h1 { color: var(--white); }
.hero h1 em {
  font-style: normal;
  color: var(--gold-400);
}
.hero .lede { color: rgba(251, 247, 241, 0.82); max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(251, 247, 241, 0.15);
}
.hero-trust div { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: rgba(251, 247, 241, 0.75); }
.hero-trust svg { width: 20px; height: 20px; color: var(--gold-400); flex-shrink: 0; }

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.placeholder-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(251, 247, 241, 0.55);
  background:
    linear-gradient(160deg, rgba(216,189,130,0.18), transparent 55%),
    linear-gradient(300deg, var(--espresso-700), var(--espresso-900));
}
.placeholder-photo.light {
  color: rgba(43, 27, 20, 0.45);
  background:
    linear-gradient(160deg, rgba(185,146,76,0.16), transparent 55%),
    linear-gradient(300deg, var(--ivory-100), var(--white));
  border: 1px dashed var(--border-soft);
}
.placeholder-photo span { max-width: 20ch; }

@media (min-width: 900px) {
  .hero { min-height: 620px; display: flex; align-items: center; }
  .hero-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    z-index: 0;
  }
  .hero-scrim {
    background: linear-gradient(
      100deg,
      var(--espresso-900) 0%,
      rgba(30, 18, 11, 0.93) 32%,
      rgba(30, 18, 11, 0.55) 54%,
      rgba(30, 18, 11, 0.08) 76%
    );
  }
  .hero .container {
    position: relative;
    z-index: 1;
    background: none;
    padding: var(--space-8) 0;
    width: 100%;
  }
}

/* ---------- About ---------- */
.about .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  min-width: 0;
}
.about-media { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-quote {
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--white);
  border-left: 3px solid var(--gold-500);
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--espresso-800);
  box-shadow: var(--shadow-soft);
}
.about-points { margin-top: var(--space-5); display: grid; gap: var(--space-3); }
.about-points li { display: flex; gap: 0.75rem; align-items: flex-start; }
.about-points svg { width: 22px; height: 22px; color: var(--burgundy-600); flex-shrink: 0; margin-top: 2px; }

@media (min-width: 900px) {
  .about .container { grid-template-columns: 0.85fr 1.15fr; }
  .about.reverse .container { direction: rtl; }
  .about.reverse .container > * { direction: ltr; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
}
.service-icon svg { width: 26px; height: 26px; color: var(--espresso-900); }
.service-card h3 { margin-bottom: var(--space-2); }
.service-card p { color: var(--ink-muted); font-size: 0.96rem; margin-bottom: 0; }

.quote-note {
  margin-top: var(--space-6);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--ink-muted);
}
.quote-note strong { color: var(--espresso-800); }
.quote-note svg { width: 28px; height: 28px; color: var(--gold-500); }

/* ---------- Transformations (Instagram embeds) ---------- */
.transformations-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
@media (min-width: 700px) { .transformations-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-embed-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}
.ig-embed-wrap iframe { width: 100%; border: none; }
.ig-fallback {
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4);
  text-align: center;
  color: var(--ink-muted);
  background: var(--ivory-100);
}
.ig-fallback svg { width: 40px; height: 40px; color: var(--burgundy-600); }
.follow-ig {
  text-align: center;
  margin-top: var(--space-5);
}
.follow-ig a { color: var(--burgundy-600); font-weight: 600; }
.follow-ig a:hover { text-decoration: underline; }

/* ---------- Interactive photo trail (progressive enhancement) ---------- */
.trail-showcase {
  position: relative;
  height: 320px;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(120% 140% at 20% 0%, var(--espresso-700) 0%, var(--espresso-900) 65%);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
}
.trail-showcase-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-4);
  pointer-events: none;
}
.trail-showcase-copy h3 { color: var(--white); margin-bottom: 0.35rem; }
.trail-showcase-copy p { color: rgba(251, 247, 241, 0.65); font-size: 0.9rem; margin: 0; }
.trail-showcase-copy .hint-touch { display: none; }
@media (hover: none) and (pointer: coarse) {
  .trail-showcase-copy .hint-mouse { display: none; }
  .trail-showcase-copy .hint-touch { display: block; }
}
.trail-tile {
  position: absolute;
  top: 0;
  left: 0;
  width: 84px;
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
  background: var(--espresso-700);
}
/* PLACEHOLDER: stock salon photos (Unsplash) — see assets/images/trail/.
   REPLACE with real client photo thumbnails once available. */
.trail-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .trail-showcase { height: 240px; }
  .trail-tile { width: 64px; height: 64px; border-radius: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .trail-showcase-copy p { display: none; }
}

/* ---------- Before / After gallery ---------- */
.gallery-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-item .placeholder-photo { font-size: 0.85rem; padding: var(--space-3); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-tag {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  background: rgba(30, 18, 11, 0.72);
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--espresso-800);
  color: var(--ivory-50);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
}
.testimonial-card .stars { color: var(--gold-400); letter-spacing: 2px; font-size: 1rem; }
.testimonial-card p { color: rgba(251, 247, 241, 0.9); font-size: 1rem; margin: 0; flex: 1; }
.testimonial-name { font-weight: 600; color: var(--gold-400); font-size: 0.9rem; }
.testimonial-source { font-size: 0.78rem; color: rgba(251, 247, 241, 0.55); }

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  color: var(--ink-muted);
  font-size: 0.95rem;
}
.google-badge strong { color: var(--espresso-800); font-size: 1.1rem; }
.google-badge .stars { color: var(--gold-600); }

/* ---------- Hours / Location ---------- */
.hours-wrap {
  display: grid;
  gap: var(--space-5);
}
@media (min-width: 900px) { .hours-wrap { grid-template-columns: 1fr 1fr; } }
.hours-card, .map-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.hours-card { padding: var(--space-5); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: var(--space-3); }
.hours-table td { padding: 0.6rem 0; border-bottom: 1px solid var(--border-soft); font-size: 0.98rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.closed td:last-child { color: var(--burgundy-600); }
.hours-table tr.today { background: var(--ivory-100); }
.hours-table tr.today td { font-weight: 700; }
.map-card iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.contact-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }

.info-row { display: flex; gap: 0.75rem; align-items: flex-start; margin-top: var(--space-2); }
.info-row svg { width: 20px; height: 20px; color: var(--burgundy-600); flex-shrink: 0; margin-top: 2px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--espresso-900);
  color: rgba(251, 247, 241, 0.75);
  padding: var(--space-7) 0 var(--space-6);
}
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  padding-bottom: var(--space-6);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid rgba(251, 247, 241, 0.12);
}
.footer-cta h3 { color: var(--white); margin-bottom: 0; }
.footer-cta p { color: rgba(251, 247, 241, 0.7); max-width: 46ch; margin: 0; }
.footer-cta .hero-ctas { margin-top: var(--space-2); justify-content: center; }
.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(251, 247, 241, 0.7);
  margin-top: var(--space-2);
}
.footer-rating .stars { color: var(--gold-400); letter-spacing: 1px; }
.footer-rating strong { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.footer-grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-list a[aria-current="page"] { color: var(--gold-400); }
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: var(--space-3); }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-serif); font-size: 1.3rem; color: var(--white); }
.site-footer h4 { color: var(--gold-400); font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--space-3); }
.footer-list li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer-list a:hover { color: var(--gold-400); }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(251, 247, 241, 0.25);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: var(--space-2);
}
.footer-social:hover { border-color: var(--gold-400); color: var(--gold-400); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(251, 247, 241, 0.12);
  font-size: 0.82rem;
  text-align: center;
  color: rgba(251, 247, 241, 0.5);
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  padding-bottom: max(var(--space-2), env(safe-area-inset-bottom));
  background: rgba(30, 18, 11, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(216, 189, 130, 0.25);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.2);
}
.sticky-call a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  min-height: 44px;
}
.sticky-call svg { width: 18px; height: 18px; }
.sticky-call .call { background: var(--gold-500); color: var(--espresso-900); }
.sticky-call .sticky-secondary { background: transparent; border: 1.5px solid rgba(251,247,241,0.35); color: var(--ivory-50); }

body { padding-bottom: 76px; }
@media (min-width: 900px) {
  .sticky-call { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Utility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--espresso-900);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.divider-gold {
  width: 64px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 999px;
  margin: 0 auto var(--space-4);
}

/* Content is fully visible by default (no JS / reduced-motion / slow-script safe).
   JS opts elements into the fade-in only after it has successfully attached. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Multi-page components
   ========================================================================== */

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(251, 247, 241, 0.6);
  margin-bottom: var(--space-3);
}
.breadcrumb a { color: rgba(251, 247, 241, 0.85); }
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { margin: 0 0.4em; }

/* ---------- Page hero (compact banner for sub-pages) ---------- */
.page-hero {
  position: relative;
  background: radial-gradient(120% 160% at 18% 0%, var(--espresso-700) 0%, var(--espresso-900) 62%);
  color: var(--ivory-50);
  padding: var(--space-6) 0 var(--space-7);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(185, 146, 76, 0.24), transparent 45%);
  pointer-events: none;
}
.page-hero .container { position: relative; max-width: 760px; }
.page-hero h1 { color: var(--white); margin-bottom: var(--space-2); }
.page-hero p { color: rgba(251, 247, 241, 0.78); font-size: 1.05rem; max-width: 56ch; margin: 0; }
.page-hero .eyebrow { color: var(--gold-400); }

/* ---------- Homepage teaser cards (link out to dedicated pages) ---------- */
.teaser-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .teaser-grid { grid-template-columns: repeat(3, 1fr); } }
.teaser-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.teaser-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
.teaser-card h3 { margin-bottom: var(--space-2); }
.teaser-card p { color: var(--ink-muted); font-size: 0.96rem; flex: 1; }
.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-3);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--burgundy-600);
}
.teaser-link svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease-out); }
.teaser-card:hover .teaser-link svg { transform: translateX(4px); }

/* ---------- Specialties list (About page) ---------- */
.specialties-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
  margin-top: var(--space-5);
}
@media (min-width: 640px) { .specialties-grid { grid-template-columns: repeat(2, 1fr); } }
.specialty-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
}
.specialty-item svg { width: 22px; height: 22px; color: var(--gold-600); flex-shrink: 0; margin-top: 2px; }
.specialty-item h4 { margin: 0 0 0.15rem; font-family: var(--font-sans); font-size: 0.98rem; font-weight: 600; color: var(--espresso-800); }
.specialty-item p { margin: 0; font-size: 0.88rem; color: var(--ink-muted); }

/* ---------- Process steps (Services page) ---------- */
.process-steps {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 700px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  position: relative;
  padding: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--espresso-900);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--space-3);
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; color: var(--ink-muted); margin: 0; }

/* ---------- FAQ accordion (native <details>) ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--space-3) var(--space-4);
  font-weight: 600;
  color: var(--espresso-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold-600);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease-out);
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 var(--space-4) var(--space-4);
  color: var(--ink-muted);
  margin: 0;
}

/* ---------- Gallery filter tabs ---------- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: var(--space-5);
}
.filter-tab {
  background: var(--white);
  border: 1px solid var(--border-soft);
  color: var(--ink-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.filter-tab:hover { border-color: var(--gold-500); }
.filter-tab[aria-pressed="true"] {
  background: var(--espresso-800);
  border-color: var(--espresso-800);
  color: var(--ivory-50);
}
.gallery-item[hidden] { display: none; }

/* ---------- Review themes (Reviews page) ---------- */
.review-themes {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-7);
}
@media (min-width: 700px) { .review-themes { grid-template-columns: repeat(3, 1fr); } }
.review-theme {
  text-align: center;
  padding: var(--space-4);
}
.review-theme .service-icon { margin: 0 auto var(--space-3); }
.review-theme h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.review-theme p { font-size: 0.92rem; color: var(--ink-muted); margin: 0; }

/* ---------- First-visit list (Visit page) ---------- */
.visit-info-list {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}
.visit-info-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
}
.visit-info-item svg { width: 22px; height: 22px; color: var(--burgundy-600); flex-shrink: 0; margin-top: 2px; }
.visit-info-item p { margin: 0; font-size: 0.92rem; color: var(--ink-muted); }
.visit-info-item strong { color: var(--espresso-800); }

/* ---------- CTA band (reused across sub-pages) ---------- */
.cta-band {
  background: var(--espresso-800);
  color: var(--ivory-50);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(251, 247, 241, 0.75); max-width: 52ch; margin: 0 auto var(--space-4); }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Booking form (book.html) ---------- */
.booking-wrap {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 900px) { .booking-wrap { grid-template-columns: 1.2fr 0.8fr; } }

.booking-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: var(--space-5);
}
@media (min-width: 640px) { .booking-card { padding: var(--space-6); } }

.form-row { margin-bottom: var(--space-4); }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--espresso-800);
  margin-bottom: 0.4rem;
}
.form-row .required { color: var(--burgundy-600); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--ivory-50);
  color: var(--ink);
  min-height: 48px;
  transition: border-color var(--dur) var(--ease-out);
}
.form-row textarea { min-height: 96px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.form-row .field-error {
  display: none;
  color: var(--burgundy-600);
  font-size: 0.82rem;
  margin-top: 0.35rem;
}
.form-row.has-error input,
.form-row.has-error select {
  border-color: var(--burgundy-600);
}
.form-row.has-error .field-error { display: block; }

.form-note {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: var(--ivory-100);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: var(--space-4);
}
.form-note svg { width: 20px; height: 20px; color: var(--gold-600); flex-shrink: 0; margin-top: 1px; }

.whatsapp-fallback {
  display: none;
  margin-top: var(--space-3);
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-muted);
}
.whatsapp-fallback.show { display: block; }
.whatsapp-fallback a { color: var(--burgundy-600); font-weight: 600; }

.booking-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.booking-aside-card {
  background: var(--ivory-100);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.booking-aside-card h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--space-2);
}
.booking-aside-card p { font-size: 0.92rem; color: var(--ink-muted); margin: 0 0 0.5rem; }
.booking-aside-card p:last-child { margin-bottom: 0; }
.price-highlight {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--espresso-800);
}

/* ---------- Services showcase: alternating photo/text zigzag ---------- */
/* Reference: checkerboard photo/text tile layout (web-page-design-preview-1292332.jpg),
   adapted to a full-width alternating zigzag for 6 services instead of a fixed 4-col grid. */
.showcase-grid {
  display: grid;
  gap: var(--space-3);
}
.showcase-pair {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) {
  .showcase-pair { grid-template-columns: 1fr 1fr; }
  .showcase-grid .showcase-pair:nth-child(even) { direction: rtl; }
  .showcase-grid .showcase-pair:nth-child(even) > * { direction: ltr; }
}
.showcase-photo { position: relative; aspect-ratio: 1 / 1; }
.showcase-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-text {
  padding: var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px) { .showcase-text { padding: var(--space-6); } }
.showcase-text .eyebrow { margin-bottom: var(--space-2); }
.showcase-text h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.showcase-text p { color: var(--ink-muted); font-size: 0.95rem; margin-bottom: var(--space-3); }
.showcase-book-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--burgundy-600);
  align-self: flex-start;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.showcase-book-link svg { width: 16px; height: 16px; }
.showcase-book-link:hover { text-decoration: underline; }

/* ---------- WhatsApp quick-book modal ---------- */
.wa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 18, 11, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
  padding: var(--space-4);
}
.wa-modal-overlay.open { display: flex; }
.wa-modal {
  background: var(--ivory-50);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-5);
  position: relative;
  box-shadow: var(--shadow-med);
}
@media (min-width: 640px) { .wa-modal { padding: var(--space-6); } }
.wa-modal-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ivory-100);
  border: none;
  color: var(--ink);
  cursor: pointer;
}
.wa-modal-close svg { width: 18px; height: 18px; }
.wa-modal h3 { padding-right: 2.5rem; margin-bottom: 0.3rem; }
.wa-modal .service-context {
  display: inline-block;
  color: var(--gold-600);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

/* ---------- Trust stats bar (homepage) ---------- */
.stats-bar-section { padding: var(--space-6) 0; border-bottom: 1px solid var(--border-soft); }
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  text-align: center;
}
@media (min-width: 700px) { .stats-bar { grid-template-columns: repeat(4, 1fr); } }
.stat-item .stat-number {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--espresso-800);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ---------- Benefit strip (compact icon+label row, reused on home/services) ---------- */
.benefit-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}
@media (min-width: 700px) { .benefit-strip { grid-template-columns: repeat(3, 1fr); } }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
}
.benefit-item svg { width: 26px; height: 26px; color: var(--gold-600); flex-shrink: 0; }
.benefit-item h4 { font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700; margin: 0 0 0.15rem; color: var(--espresso-800); }
.benefit-item p { font-size: 0.85rem; color: var(--ink-muted); margin: 0; }
