/* ============================================================
   Essence Beauty — essencebeauty.in · Maison Edition
   Palette: porcelain #FDFCF9 · ivory #F7F2E9 · champagne #B98D4F
            gold-deep #8F6A36 · gold-pale #E5D3B3 · espresso #221A12
   Type: Italiana (display) · Cormorant Garamond (accent) · Jost (body)
   ============================================================ */

:root {
  --black: #0A0A0A;
  --porcelain: #FDFCF9;
  --ivory: #F7F2E9;
  --champagne: #B98D4F;
  --gold-deep: #8F6A36;
  --gold-pale: #E5D3B3;
  --espresso: #221A12;
  --cocoa: #4E4438;
  --white: #FFFFFF;
  --hairline: rgba(143, 106, 54, 0.22);
  --display: 'Italiana', serif;
  --logo: 'Cinzel', serif;
  --accent: 'Cormorant Garamond', serif;
  --body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.02rem;
  color: var(--espresso);
  background: var(--porcelain);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { width: min(1160px, 88%); margin: 0 auto; }
a { color: inherit; }

::selection { background: var(--gold-pale); color: var(--espresso); }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(.16,.6,.18,1), transform 1.1s cubic-bezier(.16,.6,.18,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .15s; }
.reveal-d2 { transition-delay: .3s; }
.reveal-d3 { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- utility type ---------- */
.smallcaps {
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold-deep);
}

/* ---------- announcement bar ---------- */
.topbar {
  background: var(--espresso);
  color: var(--gold-pale);
  text-align: center;
  padding: 9px 14px;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 252, 249, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark {
  font-family: var(--logo);
  font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 1.35rem;
  line-height: 1;
}
.brand-text {
  font-family: var(--logo);
  font-weight: 600;
  color: var(--espresso);
  font-size: 1.12rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-text em { font-style: normal; color: var(--gold-deep); }

.site-nav { display: flex; align-items: center; gap: 38px; }
.site-nav a {
  text-decoration: none;
  color: var(--cocoa);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  transition: color .3s;
}
.site-nav a::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width .35s ease, left .35s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--espresso); }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; left: 0; }
.site-nav a:focus-visible { outline: 1px solid var(--gold-deep); outline-offset: 4px; }
.nav-call {
  border: 1px solid var(--espresso) !important;
  padding: 11px 26px !important;
  color: var(--espresso) !important;
}
.nav-call::after { display: none; }
.nav-call:hover { background: var(--espresso); color: var(--porcelain) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 26px; height: 1px; background: var(--espresso);
  margin: 7px 0; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 150px);
  display: flex; align-items: center;
  text-align: center;
  background-color: var(--porcelain);
  background-image:
    linear-gradient(rgba(253, 252, 249, 0.85) 0%, rgba(253, 252, 249, 0.55) 40%, rgba(253, 252, 249, 0.18) 72%, rgba(253, 252, 249, 0.06) 100%),
    url('/assets/img/hero-tools.webp');
  background-size: cover;
  background-position: center bottom;
  overflow: hidden;
  padding: 30px 0 min(34vh, 330px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero-copy { text-align: left; }
.hero-visual { position: relative; }
.hero-visual .arch-frame { max-width: 400px; }
.hero-visual::before {
  content: '';
  position: absolute;
  top: 6%; right: 4%;
  width: 78%; aspect-ratio: 3 / 4.1;
  border: 1px solid var(--hairline);
  border-radius: 999px 999px 0 0;
  z-index: 0;
}
.hero-side {
  position: absolute;
  top: 50%;
  font-size: 0.62rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--cocoa);
  white-space: nowrap;
  opacity: 0.75;
}
.hero-side.left  { left: 34px;  transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl; }
.hero-side.right { right: 34px; transform: translateY(-50%); writing-mode: vertical-rl; }

.hero-inner { width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 20px;
  margin-bottom: 40px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 60px; height: 1px; background: var(--champagne); opacity: .6;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  white-space: nowrap;
  line-height: 1.02;
  letter-spacing: 0.03em;
  color: var(--espresso);
}
.hero h1 .script {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.01em;
}
.hero-line {
  max-width: 480px;
  margin: 38px auto 54px;
  color: var(--espresso);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero-ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px;
  transform: translateX(-50%);
  font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--cocoa);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: .7;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 42px;
  background: linear-gradient(var(--champagne), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body); font-weight: 400;
  font-size: 0.74rem; letter-spacing: 0.32em; text-transform: uppercase;
  text-decoration: none;
  padding: 17px 44px;
  transition: background .3s, color .3s, border-color .3s;
}
.btn:focus-visible { outline: 1px solid var(--gold-deep); outline-offset: 4px; }
.btn-gold { background: var(--espresso); color: var(--porcelain); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-ghost {
  border: 1px solid var(--champagne);
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--espresso); color: var(--espresso); }

/* ---------- ribbon ---------- */
.ribbon {
  background: var(--espresso);
  color: var(--gold-pale);
  overflow: hidden;
  padding: 17px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(229,211,179,.15);
}
.ribbon-track { display: inline-block; animation: ribbon-scroll 46s linear infinite; }
.ribbon span {
  font-family: var(--body);
  font-weight: 400;
  color: #FFFFFF;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 34px;
}
.ribbon .dot { color: var(--champagne); margin: 0 2px; letter-spacing: 0; font-size: .7rem; vertical-align: 2px; }
@keyframes ribbon-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 130px 0; }
.center { text-align: center; }
.eyebrow { margin-bottom: 22px; }
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.6vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.section-title .script {
  font-family: var(--accent); font-style: italic; font-weight: 500;
  color: var(--gold-deep); letter-spacing: 0;
}
.lede { color: var(--cocoa); font-size: 1.02rem; }

/* ---------- philosophy ---------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.arch-frame {
  position: relative;
  aspect-ratio: 3 / 4.1;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 999px 999px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 55% at 50% 25%, rgba(253,252,249,0.75), transparent 75%),
    linear-gradient(168deg, var(--ivory) 0%, var(--gold-pale) 100%);
  display: flex; align-items: center; justify-content: center;
}
.arch-frame { z-index: 1; }
.arch-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  z-index: 0;
}
.arch-frame::before {
  content: '';
  position: absolute; inset: 18px;
  border-radius: 999px 999px 0 0;
  z-index: 2;
  pointer-events: none;
}
.arch-frame.is-photo::before { border: 1px solid rgba(253, 252, 249, 0.65); }
.arch-frame.is-mono::before  { border: 1px solid var(--hairline); }
.arch-frame::after {
  font-family: var(--body);
  font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase;
  z-index: 1;
}
.arch-frame.is-photo::after {
  content: 'EST. VAISHALI';
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 60px 0 26px;
  text-align: center;
  background: linear-gradient(transparent, rgba(34, 26, 18, 0.38));
  color: var(--porcelain);
}
.arch-frame.is-mono::after {
  content: 'EST. VAISHALI';
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--gold-deep); opacity: .8;
}
.arch-monogram {
  font-family: var(--display);
  font-size: clamp(6.5rem, 13vw, 10rem);
  color: rgba(143, 106, 54, 0.42);
  line-height: 1;
}
.philosophy-copy .section-title { margin-bottom: 30px; }
.philosophy-copy p { color: var(--cocoa); margin-bottom: 20px; max-width: 54ch; }
.salon-points { list-style: none; margin-top: 26px; }
.salon-points li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 10px 0;
  color: var(--espresso);
  font-size: 0.99rem;
}
.salon-points .pt {
  color: var(--gold-deep);
  font-family: var(--accent); font-style: italic;
  flex-shrink: 0;
}

/* ---------- ethics (editorial rows) ---------- */
.ethics { background: var(--ivory); }
.ethics-head { margin-bottom: 80px; }
.ethic-row {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr;
  gap: clamp(20px, 4vw, 60px);
  align-items: baseline;
  padding: 42px 0;
  border-top: 1px solid var(--hairline);
  transition: padding-left .4s ease;
}
.ethic-row:last-child { border-bottom: 1px solid var(--hairline); }
.ethic-row:hover { padding-left: 14px; }
.ethic-no {
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--champagne);
  letter-spacing: 0.1em;
}
.ethic-row h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  letter-spacing: 0.06em;
}
.ethic-row p { color: var(--cocoa); font-size: 0.98rem; max-width: 46ch; }

/* ---------- brands ---------- */
.brands { padding: 64px 0; background: var(--espresso); }
.brands-label { text-align: center; margin-bottom: 34px; color: var(--gold-pale); }
.brands-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 22px 56px;
}
.brands-row .brand-word {
  position: relative;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.55);
  cursor: default;
  padding-bottom: 8px;
  transition: color .35s ease;
}
.brands-row .brand-word::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width .35s ease, left .35s ease;
}
.brands-row .brand-word:hover { color: var(--gold-pale); }
.brands-row .brand-word:hover::after { width: 100%; left: 0; }

/* ---------- services index ---------- */
.services-index .index-head { margin-bottom: 70px; }
.index-list { list-style: none; counter-reset: svc; }
.index-list li { border-top: 1px solid var(--hairline); }
.index-list li:last-child { border-bottom: 1px solid var(--hairline); }
.index-list a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 30px 6px;
  text-decoration: none;
  transition: background .35s, padding-left .35s;
}
.index-list a:hover { background: var(--ivory); padding-left: 22px; }
.index-no {
  font-family: var(--accent); font-style: italic;
  color: var(--champagne);
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.index-body { display: flex; flex-direction: column; gap: 4px; }
.index-note {
  color: var(--cocoa);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}
.index-name {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(1.05rem, 2.6vw, 1.55rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
}
.index-arrow {
  font-family: var(--accent); font-style: italic;
  color: var(--gold-deep);
  font-size: 1.05rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .35s, transform .35s;
}
.index-list a:hover .index-arrow { opacity: 1; transform: none; }
.index-cta { text-align: center; margin-top: 64px; }

/* ---------- bridal ---------- */
.bridal {
  background:
    radial-gradient(ellipse 55% 65% at 80% 20%, rgba(229,211,179,0.14), transparent 70%),
    var(--espresso);
  color: var(--porcelain);
  text-align: center;
  padding: 150px 0;
}
.bridal .smallcaps { color: var(--gold-pale); }
.bridal .section-title { color: var(--porcelain); margin: 26px 0; }
.bridal .section-title .script { color: var(--gold-pale); }
.bridal .lede { color: rgba(253, 252, 249, 0.66); max-width: 520px; margin: 0 auto 52px; }
.bridal .btn-ghost, .svc-bridal .btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--gold-pale);
  color: #FFFFFF;
}
.bridal .btn-ghost:hover, .svc-bridal .btn-ghost:hover {
  background: var(--gold-pale);
  color: var(--espresso);
  border-color: var(--gold-pale);
}
.bridal-frame {
  max-width: 780px; margin: 0 auto;
  border: 1px solid rgba(229,211,179,.3);
  padding: clamp(50px, 7vw, 90px) clamp(24px, 6vw, 80px);
  position: relative;
}
.bridal-frame::before {
  content: '✦';
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--espresso);
  color: var(--champagne);
  padding: 0 18px;
  font-size: 1rem;
}

/* ---------- visit ---------- */
.visit { background: var(--ivory); }
.visit-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  margin-top: 64px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(34,26,18,0.08);
}
.visit-info { padding: clamp(36px, 5vw, 60px); }
.visit-block { padding: 22px 0; border-bottom: 1px solid var(--hairline); }
.visit-block:first-child { padding-top: 0; }
.visit-block:last-of-type { border-bottom: none; }
.visit-block h3 {
  font-family: var(--body); font-weight: 500;
  font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.visit-block p { color: var(--espresso); font-size: 1rem; }
.visit-block a { color: var(--espresso); text-decoration: none; border-bottom: 1px solid var(--champagne); padding-bottom: 1px; transition: color .3s; }
.visit-block a:hover { color: var(--gold-deep); }
.visit-cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.visit-map { min-height: 420px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(0.85); }

/* ---------- footer ---------- */
.site-footer { background: var(--espresso); color: rgba(253,252,249,0.68); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 76px 0 44px;
}
.footer-brand {
  font-family: var(--logo);
  font-weight: 500;
  color: var(--porcelain);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  display: flex; align-items: center; gap: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.footer-brand .brand-mark { width: 36px; height: 36px; font-size: 1.05rem; color: var(--gold-pale); border-color: var(--gold-deep); }
.footer-tag { font-size: 0.72rem; color: var(--gold-pale); letter-spacing: 0.32em; text-transform: uppercase; }
.footer-head {
  font-family: var(--body);
  color: var(--gold-pale);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 400;
  margin-bottom: 16px;
}
.site-footer p { font-size: 0.94rem; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 0.94rem; }
.site-footer a { color: rgba(253,252,249,0.85); text-decoration: none; transition: color .3s; }
.site-footer a:hover { color: var(--gold-pale); }
.footer-base {
  border-top: 1px solid rgba(143,106,54,0.3);
  padding: 20px 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(253,252,249,0.35);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.dev-credit span { color: rgba(253,252,249,0.55); }

/* ---------- whatsapp fab ---------- */
.whatsapp-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform .3s;
}
.whatsapp-fab:hover { transform: scale(1.07); }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 55% 60% at 72% 6%, rgba(229,211,179,0.35), transparent 70%),
    var(--porcelain);
  text-align: center;
  padding: 96px 0 84px;
  border-bottom: 1px solid var(--hairline);
}
.page-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.4rem, 7vw, 4rem);
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.page-hero p { color: var(--cocoa); margin-top: 16px; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-side { display: none; }
  .ethic-row { grid-template-columns: 70px 1fr; }
  .ethic-row p { grid-column: 2; }
}
@media (max-width: 860px) {
  .philosophy-grid { grid-template-columns: 1fr; }
  .visit-wrap { grid-template-columns: 1fr; }
  .visit-map { min-height: 320px; }
  .arch-frame { max-width: 300px; }
  .section { padding: 90px 0; }
}
@media (max-width: 760px) {
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--porcelain);
    flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--hairline);
    display: none;
    box-shadow: 0 22px 36px rgba(34,26,18,0.08);
  }
  .site-nav.open { display: flex; }
  /* compact mobile header */
  .topbar { font-size: 0.58rem; letter-spacing: 0.24em; padding: 7px 10px; }
  .tb-loc { display: none; }
  .header-inner { padding: 11px 0; }
  .brand { gap: 9px; }
  .brand-mark { width: 32px; height: 32px; font-size: 1.05rem; }
  .brand-text { font-size: 0.95rem; letter-spacing: 0.1em; }
  .nav-toggle { padding: 6px; }
  .nav-toggle span { margin: 6px 0; }
  .site-nav a { width: 100%; text-align: center; padding: 17px 0; border-bottom: 1px solid rgba(143,106,54,0.1); }
  .site-nav a::after { display: none; }
  .nav-call { border: none !important; margin: 8px 0 18px; }
  .nav-toggle { display: block; }
  .hero {
    min-height: auto;
    padding: 44px 0 34vw; /* bottom padding tracks viewport width so tools band stays clear of text */
    background-position: center bottom;
  }
  .hero h1 { font-size: clamp(1.35rem, 6vw, 1.9rem); white-space: nowrap; }
  .hero-ctas .btn { padding: 11px 24px; font-size: 0.68rem; letter-spacing: 0.24em; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-eyebrow::before, .hero-eyebrow::after { display: none; }
  .hero-line { font-size: 0.92rem; max-width: 320px; margin: 20px auto 28px; }
  .hero-ctas { justify-content: center; gap: 10px; }
  .hero-visual { margin-top: 46px; }
  .hero-visual .arch-frame { max-width: 300px; }
  .hero-visual::before { display: none; }
  .hero-scroll { display: none; }
  .index-list a { grid-template-columns: 56px 1fr; }
  .index-arrow { display: none; }
  .bridal { padding: 100px 0; }
  /* mobile footer */
  .footer-grid { padding: 36px 0 20px; gap: 20px; text-align: center; }
  .footer-links { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 8px 22px; }
  .footer-tag { font-size: 0.64rem; }
  .footer-brand { justify-content: center; font-size: 1.05rem; }
  .footer-head { margin-bottom: 10px; }
  .site-footer p { font-size: 0.9rem; }
  .footer-base { flex-direction: column; text-align: center; gap: 4px; padding: 16px 0; font-size: 0.72rem; }
  .brands-row { gap: 16px 36px; }
  .brands-row span { font-size: 1rem; }
}

/* ============================================================
   Services page
   ============================================================ */
.svc-pills {
  position: sticky; top: 75px; z-index: 40;
  background: rgba(253, 252, 249, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
}
.svc-pills-row {
  display: flex; gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.svc-pills-row::-webkit-scrollbar { display: none; }
.svc-pill {
  flex-shrink: 0;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cocoa);
  border: 1px solid var(--hairline);
  border-radius: 40px;
  padding: 8px 20px;
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.svc-pill:hover { color: var(--espresso); border-color: var(--champagne); }

.svc-section { padding: 64px 0 8px; scroll-margin-top: 150px; }
.svc-section-head { margin-bottom: 34px; }
.svc-section-head .section-title { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  align-items: start;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 30px 30px 24px;
}
.svc-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.svc-card .svc-note {
  color: var(--cocoa);
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.svc-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 8px 0;
  font-size: 0.97rem;
}
.svc-row .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(78, 68, 56, 0.45);
  transform: translateY(-4px);
  min-width: 20px;
}
.svc-row .price { font-weight: 500; white-space: nowrap; color: var(--espresso); }

/* two-price header + rows (facials) */
.svc-cols {
  display: flex; align-items: baseline; gap: 10px;
  padding: 4px 0 10px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
}
.svc-cols .spacer { flex: 1; }
.svc-cols .col { width: 74px; text-align: right; }
.svc-row .price2 { width: 74px; text-align: right; font-weight: 500; white-space: nowrap; color: var(--espresso); }

/* bridal card */
.svc-bridal {
  background: var(--espresso);
  color: var(--porcelain);
  border-radius: 4px;
  text-align: center;
  padding: clamp(46px, 6vw, 76px) clamp(24px, 5vw, 60px);
  margin-top: 56px;
}
.svc-bridal .smallcaps { color: var(--gold-pale); }
.svc-bridal h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  margin: 18px 0 14px;
}
.svc-bridal h2 .script { font-family: var(--accent); font-style: italic; color: var(--gold-pale); }
.svc-bridal p { color: rgba(253, 252, 249, 0.7); max-width: 520px; margin: 0 auto 34px; }

.svc-disclaimer {
  text-align: center;
  color: var(--cocoa);
  font-size: 0.85rem;
  padding: 44px 0 0;
}
@media (max-width: 760px) {
  .svc-pills { top: 55px; }
  .svc-section { scroll-margin-top: 120px; }
}


/* ---------- homepage service tabs ---------- */
.htab-bar {
  display: flex; gap: 10px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin: 52px 0 40px;
  padding-bottom: 4px;
}
.htab-bar::-webkit-scrollbar { display: none; }
.htab-btn {
  flex-shrink: 0;
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cocoa);
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 40px;
  padding: 11px 24px;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.htab-btn:hover { color: var(--espresso); border-color: var(--champagne); }
.htab-btn.active { background: var(--espresso); color: var(--porcelain); border-color: var(--espresso); }
.htab-btn:focus-visible { outline: 1px solid var(--gold-deep); outline-offset: 3px; }
.htab-panel { display: none; }
.htab-panel.active { display: block; animation: htab-in .45s ease; }
@keyframes htab-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 760px) {
  .htab-bar { justify-content: flex-start; }
}


/* ---------- scrollable bar arrows ---------- */
.scrollbar-nav { position: relative; padding-top: 46px; }
.bar-arrows-corner {
  position: absolute; top: 0; right: 0;
  display: flex; gap: 8px;
  z-index: 5;
}
.bar-arrow {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--porcelain);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(34,26,18,0.1);
  transition: opacity .25s, border-color .25s;
}
.bar-arrow:hover { border-color: var(--champagne); }
.bar-arrow:focus-visible { outline: 1px solid var(--gold-deep); outline-offset: 2px; }
.bar-arrow[hidden] { visibility: hidden; }
.scrollbar-nav .fade-right {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 46px;
  background: linear-gradient(to right, transparent, var(--porcelain));
  pointer-events: none;
  transition: opacity .25s;
}
.scrollbar-nav .fade-right.off { opacity: 0; }

/* mobile service tables */
@media (max-width: 760px) {
  .svc-grid { gap: 14px; }
  .svc-card { padding: 20px 16px 14px; }
  .svc-card h3 { font-size: 1.12rem; }
  .svc-card .svc-note { font-size: 0.8rem; margin-bottom: 12px; }
  .svc-row { font-size: 0.9rem; padding: 7px 0; gap: 8px; }
  .svc-row .price { font-size: 0.9rem; }
  .svc-cols { font-size: 0.58rem; letter-spacing: 0.18em; }
  .svc-cols .col, .svc-row .price2 { width: 58px; }
  .svc-row .price2 { font-size: 0.9rem; }
  .svc-section { padding: 44px 0 4px; }
  .svc-section-head { margin-bottom: 22px; }
  .svc-bridal { padding: 36px 20px; margin-top: 36px; }
  .svc-disclaimer { padding-top: 30px; font-size: 0.78rem; }
  .htab-bar { margin: 34px 0 26px; }
}


/* tap feedback */
@media (hover: none) {
  .btn:hover, .nav-call:hover, .site-nav a:hover, .svc-pill:hover,
  .htab-btn:hover, .bar-arrow:hover, .brands-row .brand-word:hover,
  .visit-block a:hover, .site-footer a:hover { transition: none; }
}
.btn:active { transform: scale(0.97); }
.htab-btn:active, .svc-pill:active, .bar-arrow:active { transform: scale(0.94); }
.whatsapp-fab:active { transform: scale(0.94); }
a:active { opacity: 0.75; }
button { -webkit-tap-highlight-color: transparent; }


/* about hero — natural image ratio, text overlaid, entire image visible */
.about-hero {
  position: relative;
  border-bottom: 1px solid var(--hairline);
}
.about-hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  text-align: center;
  background: linear-gradient(rgba(253, 252, 249, 0.78), rgba(253, 252, 249, 0.45) 55%, rgba(253, 252, 249, 0.25));
}
.about-hero-overlay .wrap { width: 100%; }
.about-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.3rem, 4.6vw, 4rem);
  letter-spacing: 0.05em;
  margin-top: clamp(4px, 1.4vw, 20px);
}
.about-hero p.sub {
  color: var(--espresso);
  margin: clamp(4px, 1.2vw, 16px) auto 0;
  font-size: clamp(0.68rem, 1.7vw, 1.02rem);
  max-width: 34em;
}
.about-hero .smallcaps { font-size: clamp(0.5rem, 1.1vw, 0.72rem); letter-spacing: 0.4em; }
.founder-sign {
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold-deep);
  margin-top: 16px;
}


/* about hero mobile crop — show left side of image at comfortable height */
@media (max-width: 760px) {
  .about-hero-img {
    height: 360px;
    object-fit: cover;
    object-position: left center;
  }
  .about-hero h1 { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
  .about-hero p.sub { font-size: 0.88rem; max-width: 300px; }
  .about-hero .smallcaps { font-size: 0.6rem; }
}


/* hide about-page arch image on mobile */
@media (max-width: 760px) {
  .about-arch { display: none; }
}


/* ribbon mobile */
@media (max-width: 760px) {
  .ribbon { padding: 9px 0; }
  .ribbon span { font-size: 0.66rem; letter-spacing: 0.24em; margin: 0 20px; }
  .ribbon .dot { font-size: 0.55rem; }
}


/* contact page */
.contact-hero { position: relative; border-bottom: 1px solid var(--hairline); }
.contact-hero-img {
  display: block; width: 100%; height: auto;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  text-align: center;
  background: linear-gradient(rgba(253, 252, 249, 0.78), rgba(253, 252, 249, 0.45) 55%, rgba(253, 252, 249, 0.25));
}
.contact-hero-overlay .wrap { width: 100%; }
.contact-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.3rem, 4.6vw, 4rem);
  letter-spacing: 0.05em;
  margin-top: clamp(4px, 1.4vw, 20px);
}
.contact-hero p.sub {
  color: var(--espresso);
  margin: clamp(4px, 1.2vw, 16px) auto 0;
  font-size: clamp(0.68rem, 1.7vw, 1.02rem);
  max-width: 34em;
}
.contact-hero .smallcaps { font-size: clamp(0.5rem, 1.1vw, 0.72rem); letter-spacing: 0.4em; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 56px;
}
.contact-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 40px 30px 34px;
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(43,33,24,0.09); }
.contact-card .cc-glyph {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.contact-card h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.3rem; letter-spacing: 0.08em;
  margin-bottom: 8px;
  color: var(--espresso);
}
.contact-card p { color: var(--cocoa); font-size: 0.95rem; }
.contact-card .cc-action {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 2px;
}
.contact-map {
  margin-top: 56px;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(34,26,18,0.08);
}
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(0.85); }
@media (max-width: 760px) {
  .contact-hero-img { height: 340px; object-fit: cover; object-position: left center; }
  .contact-hero h1 { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
  .contact-hero p.sub { font-size: 0.88rem; max-width: 300px; }
  .contact-hero .smallcaps { font-size: 0.6rem; }
  .contact-cards { margin-top: 36px; gap: 14px; }
  .contact-card { padding: 28px 20px 24px; }
  .contact-map { margin-top: 36px; }
  .contact-map iframe { height: 300px; }
}


/* faq */
.faq { background: var(--porcelain); }
.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item {
  border-top: 1px solid var(--hairline);
}
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--espresso);
  transition: color .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary .faq-toggle {
  font-family: var(--accent); font-style: italic;
  color: var(--champagne);
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item[open] summary { color: var(--gold-deep); }
.faq-item[open] summary .faq-toggle { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 4px 24px;
  color: var(--cocoa);
  font-size: 0.97rem;
  max-width: 60ch;
}
.faq-item .faq-answer a { color: var(--espresso); border-bottom: 1px solid var(--champagne); text-decoration: none; }
.faq-item .faq-answer a:hover { color: var(--gold-deep); }
@media (max-width: 760px) {
  .faq-list { margin-top: 34px; }
  .faq-item summary { padding: 17px 2px; font-size: 0.94rem; }
  .faq-item .faq-answer { font-size: 0.9rem; padding-bottom: 18px; }
}


/* services hero */
.services-hero { position: relative; border-bottom: 1px solid var(--hairline); }
.services-hero-img {
  display: block; width: 100%; height: auto;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
}
.services-hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  text-align: center;
  background: linear-gradient(rgba(253, 252, 249, 0.78), rgba(253, 252, 249, 0.45) 55%, rgba(253, 252, 249, 0.25));
}
.services-hero-overlay .wrap { width: 100%; }
.services-hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.3rem, 4.6vw, 4rem);
  letter-spacing: 0.05em;
  margin-top: clamp(4px, 1.4vw, 20px);
}
.services-hero p.sub {
  color: var(--espresso);
  margin: clamp(4px, 1.2vw, 16px) auto 0;
  font-size: clamp(0.68rem, 1.7vw, 1.02rem);
  max-width: 34em;
}
.services-hero .smallcaps { font-size: clamp(0.5rem, 1.1vw, 0.72rem); letter-spacing: 0.4em; }
@media (max-width: 760px) {
  .services-hero-img { height: 340px; object-fit: cover; object-position: left center; }
  .services-hero h1 { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
  .services-hero p.sub { font-size: 0.88rem; max-width: 300px; }
  .services-hero .smallcaps { font-size: 0.6rem; }
}


/* dark section buttons mobile */
@media (max-width: 760px) {
  .bridal .btn, .svc-bridal .btn {
    padding: 11px 24px;
    font-size: 0.66rem;
    letter-spacing: 0.22em;
  }
}


/* disclaimer */
.legal-wrap { max-width: 780px; margin: 0 auto; }
.legal-block { padding: 34px 0; border-bottom: 1px solid var(--hairline); }
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
  font-family: var(--display); font-weight: 400;
  font-size: 1.4rem; letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.legal-block h2 .ln { font-family: var(--accent); font-style: italic; color: var(--champagne); font-size: 1rem; margin-right: 12px; }
.legal-block p { color: var(--cocoa); font-size: 0.97rem; margin-bottom: 12px; }
.legal-block ul { margin: 0 0 12px 20px; color: var(--cocoa); font-size: 0.97rem; }
.legal-block li { margin-bottom: 8px; }
.legal-updated { text-align: center; color: var(--cocoa); font-size: 0.82rem; padding-top: 30px; }
@media (max-width: 760px) {
  .legal-block { padding: 24px 0; }
  .legal-block h2 { font-size: 1.2rem; }
  .legal-block p, .legal-block ul { font-size: 0.9rem; }
}
