/* ============================================================
   Shree Beauty Care — clean white & elegant
   White canvas · soft rose + gold · gradient only as accents
   (echoes the logo's white card + colourful gradient frame)
   ============================================================ */
:root {
  --paper:   #ffffff;
  --cream:   #fbf5f1;   /* warm off-white sections */
  --cream-2: #f6ece5;
  --ink:     #2a2227;
  --muted:   #6f636a;
  --soft:    #978a90;
  --rose:    #cf6388;
  --rose-dk: #b0476b;
  --gold:    #b08641;
  --line:    #ece0da;
  --line-2:  #f0e3e6;
  --wa:      #25d366;

  --grad: linear-gradient(100deg, #f0a23c 0%, #e0218a 38%, #9b3cf0 70%, #2bb3e0 100%);

  --maxw: 1140px;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }

/* ---- shared bits ---- */
.eyebrow {
  font-family: var(--sans); text-transform: uppercase; font-weight: 500;
  letter-spacing: .26em; font-size: .7rem; color: var(--rose-dk);
}
.eyebrow.center { text-align: center; }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.btn-grad, .btn-line, .btn-dark, .btn-light {
  display: inline-block; font-family: var(--sans); font-weight: 500;
  letter-spacing: .04em; font-size: .9rem; padding: 15px 32px;
  border-radius: 50px; transition: all .25s ease; cursor: pointer;
}
.btn-grad, .btn-dark, .btn-light {
  color: #fff; background: var(--grad); background-size: 140% 140%;
  box-shadow: 0 10px 26px -10px rgba(224,33,138,.5);
}
.btn-grad:hover, .btn-dark:hover, .btn-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(155,60,240,.55); background-position: 100% 0; }
.btn-line { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn-line:hover { border-color: var(--rose); color: var(--rose-dk); }

.block-head { margin-bottom: 56px; }
.block-head.center { text-align: center; }
.block-head h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-top: 12px; font-weight: 300; }
.block-head h2 em { color: var(--rose-dk); }
.block-head .eyebrow { display: inline-block; margin-bottom: 8px; }
.block-note { margin-top: 14px; color: var(--muted); font-size: .95rem; }

/* gold flourish under centered headings */
.block-head.center h2::after {
  content: ""; display: block; width: 54px; height: 1px; margin: 22px auto 0;
  background: var(--grad);
}

/* ============ SIGNATURE GRADIENT FRAME (logo motif) ============ */
.frame {
  position: relative; padding: 5px; border-radius: 8px;
  background: var(--grad);
  box-shadow: 0 30px 60px -34px rgba(155,60,240,.4);
  max-width: 360px; width: 100%; margin: 0 auto;
}
.frame-inner {
  position: relative; background: var(--paper); border-radius: 4px;
  aspect-ratio: 4 / 5; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; text-align: center;
  padding: 30px;
}
.frame-inner::before {
  content: ""; position: absolute; inset: 12px; border-radius: 3px;
  border: 1.5px solid transparent;
  background: var(--grad) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .55;
}
.lotus-big { width: 46%; max-width: 150px; }

/* hero shows the real logo image */
.hero-logo { max-width: 430px; width: 100%; margin: 0 auto; }
.hero-logo img {
  display: block; width: 100%; height: auto; border-radius: 12px;
  box-shadow: 0 34px 70px -30px rgba(140,40,95,.45);
  animation: floaty 6.5s ease-in-out infinite;
}

/* hero service-photo collage (offset grid, edges fade transparently into the page) */
.hero-collage {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 430px; margin: 0 auto; padding: 18px 4px;
  animation: floaty 7s ease-in-out infinite;
  -webkit-mask-image: radial-gradient(135% 118% at 50% 44%, #000 60%, transparent 100%);
  mask-image: radial-gradient(135% 118% at 50% 44%, #000 60%, transparent 100%);
}
.hero-collage figure {
  margin: 0; border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 50px -26px rgba(120,40,90,.5);
}
.hero-collage figure img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.hero-collage figure:hover img { transform: scale(1.07); }
.hero-collage figure:nth-child(2),
.hero-collage figure:nth-child(4) { transform: translateY(34px); }
.frame-name { font-family: var(--serif); font-size: 1.5rem; margin-top: 14px; color: var(--ink); }
.frame-tag { font-family: var(--sans); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.lotus-mark { width: 44px; height: 44px; flex-shrink: 0; object-fit: contain; }
.logo-words { font-family: var(--serif); font-size: 1.4rem; letter-spacing: .01em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-words strong {
  font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo .logo-words strong { font-variation-settings: "wght" 700; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s, opacity .3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.pill {
  font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500;
  color: #fff; background: var(--grad); padding: 12px 22px; border-radius: 50px;
  box-shadow: 0 8px 22px -10px rgba(224,33,138,.6); transition: transform .2s;
}
.pill:hover { transform: translateY(-2px); }

/* ============ HERO ============ */
.hero { padding: 86px 0 78px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 16% 10%, rgba(240,162,60,.22), transparent 60%),
    radial-gradient(46% 56% at 88% 16%, rgba(224,33,138,.20), transparent 62%),
    radial-gradient(52% 56% at 78% 88%, rgba(43,179,224,.18), transparent 62%),
    radial-gradient(46% 52% at 10% 90%, rgba(155,60,240,.18), transparent 62%);
  filter: blur(12px) saturate(118%);
  animation: heroGlow 18s ease-in-out infinite alternate;
}
.hero > .wrap { position: relative; z-index: 1; }
@keyframes heroGlow {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-2.5%,-2%,0) scale(1.07); }
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.4vw, 4.2rem); font-weight: 300; margin: 22px 0 24px; }
.hero h1 em { font-style: italic; color: var(--rose-dk); }
.hero-lead { max-width: 440px; font-size: 1.1rem; color: var(--muted); }
.hero-cta { display: flex; gap: 16px; margin: 34px 0 48px; flex-wrap: wrap; }
.hero-facts { display: flex; gap: 44px; border-top: 1px solid var(--line); padding-top: 26px; }
.hero-facts dt { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.hero-facts dd { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--soft); margin-top: 4px; }

/* ============ SERVICE STRIP ============ */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); }
.strip-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 20px; padding: 22px 32px; }
.strip-row span { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink); }
.strip-row i { font-style: normal; font-size: .7rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============ MANIFESTO ============ */
.manifesto { padding: 100px 0; text-align: center; }
.manifesto-text {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.4;
  max-width: 860px; margin: 22px auto 0; color: var(--ink);
}
.manifesto-text em { color: var(--rose-dk); }

/* ============ SERVICES ============ */
.services { padding: 30px 0 100px; }
.srv { display: grid; grid-template-columns: 110px 1fr; gap: 36px; padding: 44px 0; border-top: 1px solid var(--line); }
.srv:last-child { border-bottom: 1px solid var(--line); }
.srv-no { font-family: var(--serif); font-style: italic; font-size: 2.3rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.srv-body { max-width: 720px; }
.srv-body h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px; font-weight: 400; }
.srv-body p { color: var(--muted); }
.srv-meta { margin-top: 16px !important; font-family: var(--sans); font-weight: 500; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--gold) !important; }

/* ============ PRICE MENU ============ */
.menu { background: var(--cream); padding: 100px 0; }
.menu-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; }
.menu-group { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 30px 32px;
  box-shadow: 0 18px 40px -32px rgba(80,40,55,.35); }
.menu-feature { grid-column: 1 / -1; border-color: var(--rose); }
.menu-group h3 { font-size: 1.4rem; font-weight: 400; padding-bottom: 14px; margin-bottom: 12px; color: var(--ink);
  border-bottom: 1px solid var(--line-2); }
.menu-group h3::first-letter { color: var(--rose-dk); }
.menu-group ul { list-style: none; }
.menu-group li { display: flex; align-items: baseline; gap: 8px; padding: 8px 0; font-size: .98rem; color: var(--ink); }
.menu-group li span { flex-shrink: 0; }
.menu-group li span em { color: var(--soft); font-size: .85em; }
.menu-group li i { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); min-width: 16px; }
.menu-group li b { font-weight: 500; font-family: var(--serif); font-size: 1.08rem; color: var(--rose-dk); flex-shrink: 0; }
.menu-foot { margin-top: 14px; font-size: .8rem; font-style: italic; color: var(--gold); }
.menu-cta { text-align: center; margin-top: 50px; }
.menu-cta p { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 22px; color: var(--ink); }
.menu-cta p strong { font-weight: 600; }

/* ============ STEPS ============ */
.steps { padding: 100px 0; }
.step-list { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; }
.step-list li { position: relative; padding-top: 26px; border-top: 1px solid var(--ink); }
.step-list li::after { content: ""; position: absolute; top: -1px; left: 0; width: 46px; height: 1px; background: var(--grad); }
.step-no { font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--rose-dk); }
.step-list h3 { font-size: 1.45rem; font-weight: 400; margin: 10px 0 10px; }
.step-list p { color: var(--muted); font-size: .96rem; }

/* ============ STORY ============ */
.story { background: var(--cream); padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 64px; align-items: center; }
.frame-rose { background: var(--grad); }
.story h2 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 300; margin: 12px 0 22px; }
.story h2 em { color: var(--rose-dk); }
.story-copy p { color: var(--muted); margin-bottom: 16px; }
.story-copy p strong { color: var(--ink); font-weight: 500; }
.story-points { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.story-points li { position: relative; padding-left: 28px; color: var(--ink); font-size: .98rem; }
.story-points li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* ============ QUOTES ============ */
.quotes { padding: 100px 0; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote-grid figure { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 36px 32px;
  transition: transform .25s, box-shadow .25s; }
.quote-grid figure:hover { transform: translateY(-5px); box-shadow: 0 24px 46px -28px rgba(80,40,55,.35); }
.quote-grid blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; font-style: italic; color: var(--ink); }
.quote-grid blockquote::before { content: "“"; font-family: var(--serif); font-size: 2.6rem; display: block; line-height: .5; margin-bottom: 10px; color: var(--rose); }
.quote-grid figcaption { margin-top: 22px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }

/* ============ FAQ ============ */
.faq { background: var(--cream); padding: 100px 0; }
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: start; }
.block-head.left { margin-bottom: 0; }
.block-head.left h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 300; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 22px 0; color: var(--ink);
  font-family: var(--serif); font-size: 1.22rem;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-family: var(--sans); font-size: 1.5rem; color: var(--rose); transition: transform .25s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0 24px; color: var(--muted); max-width: 620px; }
.faq-list a { color: var(--rose-dk); border-bottom: 1px solid var(--rose); }

/* ============ CTA ============ */
.cta { padding: 110px 0; background: var(--paper); }
.cta-inner {
  position: relative; max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--cream); border-radius: 14px; padding: 70px 40px;
  border: 1px solid var(--line);
}
.cta-inner::before {
  content: ""; position: absolute; inset: 0; border-radius: 14px; padding: 2px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.cta h2 { font-size: clamp(2rem, 4.6vw, 3rem); font-weight: 300; margin: 14px 0 16px; }
.cta h2 em { color: var(--rose-dk); }
.cta-inner > p { color: var(--muted); max-width: 460px; margin: 0 auto; }
.cta .btn-grad { margin: 28px 0 20px; font-size: 1rem; padding: 16px 40px; }
.cta-meta { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold) !important; }

/* ============ FOOTER ============ */
.foot { background: var(--cream-2); color: var(--ink); padding: 66px 0 28px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid var(--line); }
.foot-brand .logo-words { font-size: 1.55rem; }
.foot-brand p { color: var(--muted); margin-top: 14px; max-width: 320px; font-size: .92rem; }
.foot-col h4 { font-family: var(--sans); font-weight: 500; font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.foot-col a, .foot-col span { display: block; color: var(--muted); font-size: .92rem; margin-bottom: 12px; transition: color .2s; }
.foot-col a:hover { color: var(--rose-dk); }
.foot-base { display: flex; justify-content: space-between; padding-top: 24px; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); }

/* ============ FIRST-ORDER PROMO ============ */
.promo {
  position: fixed; left: 22px; bottom: 24px; z-index: 95;
  width: 300px; max-width: calc(100vw - 44px);
  background: #fff; border-radius: 20px; padding: 20px 20px 18px;
  box-shadow: 0 26px 60px -18px rgba(120,40,90,.5);
  transform: translateY(40px); opacity: 0;
  animation: promoIn .7s cubic-bezier(.2,.7,.2,1) 1.3s forwards;
}
.promo::before {
  content: ""; position: absolute; inset: 0; border-radius: 20px; padding: 2px;
  background: var(--grad); pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.promo-close {
  position: absolute; top: 8px; right: 11px; border: 0; background: transparent;
  font-size: 1.5rem; line-height: 1; color: var(--soft); cursor: pointer; z-index: 2;
}
.promo-close:hover { color: var(--ink); }
.promo-burst {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: .92rem;
  letter-spacing: .05em; color: #fff; padding: 7px 15px; border-radius: 50px;
  background: var(--grad); box-shadow: 0 8px 20px -6px rgba(224,33,138,.6);
  position: relative; overflow: hidden; animation: promoPulse 2.4s ease-in-out infinite;
}
.promo-burst::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.65), transparent);
  transform: skewX(-20deg); animation: promoShine 3.4s ease-in-out infinite;
}
.promo-body { margin-top: 13px; }
.promo-body strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: 5px; }
.promo-body span { display: block; font-size: .9rem; color: var(--muted); margin-bottom: 15px; }
.promo-body span b { color: var(--rose-dk); font-weight: 600; }
.promo-btn {
  display: block; text-align: center; font-family: var(--sans); font-weight: 600;
  font-size: .9rem; padding: 12px; border-radius: 50px; color: #fff; background: var(--grad);
  box-shadow: 0 10px 24px -8px rgba(155,60,240,.55); transition: transform .2s;
}
.promo-btn:hover { transform: translateY(-2px); }
@keyframes promoIn { to { transform: none; opacity: 1; } }
@keyframes promoPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
@keyframes promoShine { 0% { left: -130%; } 60%,100% { left: 160%; } }
@media (max-width: 560px) { .promo { left: 12px; right: 12px; width: auto; bottom: 92px; } }

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 100;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.4);
  transition: transform .2s ease; animation: pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 10px 28px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 10px 28px rgba(37,211,102,.35), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 28px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes breathe { 0%,100% { transform: scale(1); opacity: .75; } 50% { transform: scale(1.1); opacity: 1; } }
@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* hero entrance — staggered */
.hero-copy > * { opacity: 0; animation: fadeUp .85s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-copy .eyebrow   { animation-delay: .15s; }
.hero-copy h1         { animation-delay: .30s; }
.hero-copy .hero-lead { animation-delay: .48s; }
.hero-copy .hero-cta  { animation-delay: .64s; }
.hero-copy .hero-facts{ animation-delay: .80s; }
.hero-art { opacity: 0; animation: fadeIn 1.1s ease .35s forwards; position: relative; }

/* soft breathing glow behind the framed card */
.hero-art::before {
  content: ""; position: absolute; inset: -6%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(224,33,138,.18), rgba(43,179,224,.12) 45%, transparent 70%);
  filter: blur(34px); animation: breathe 7s ease-in-out infinite;
}

/* the framed card floats gently + the gradient border shimmers */
.frame {
  background: var(--grad); background-size: 200% 200%;
  animation: floaty 6.5s ease-in-out infinite, shimmer 9s linear infinite;
}

/* lotus draws itself in */
.lotus-big path { stroke-dasharray: 320; stroke-dashoffset: 320; animation: draw 2.4s ease .5s forwards; }
.lotus-big path:nth-child(2) { animation-delay: .65s; }
.lotus-big path:nth-child(3) { animation-delay: .8s; }
.lotus-big path:nth-child(4) { animation-delay: .95s; }
.lotus-big path:nth-child(5) { animation-delay: 1.1s; }
.lotus-big path:nth-child(6) { animation-delay: 1.3s; }
.lotus-mark:hover path { animation: draw 1.4s ease forwards; }

/* nav: animated gradient underline */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--grad); transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* gradient buttons: shine sweep on hover */
.btn-grad, .btn-dark, .btn-light { position: relative; overflow: hidden; }
.btn-grad::after, .btn-dark::after, .btn-light::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .65s ease;
}
.btn-grad:hover::after, .btn-dark:hover::after, .btn-light:hover::after { left: 150%; }

/* service strip: slow drift of the sparkles */
.strip-row i { animation: spin 9s linear infinite; display: inline-block; }

/* heading flourish grows in on reveal */
.block-head.center h2::after { width: 0; transition: width .9s ease .2s; }
.block-head.center.in h2::after { width: 54px; }

/* card hover lift already present; add gentle lotus mark spin affordance */
.logo:hover .lotus-mark { animation: floaty 2.4s ease-in-out infinite; }

/* WhatsApp icon subtle float on top of pulse */
.wa-float svg { animation: floaty 3.2s ease-in-out infinite; }

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-art { order: -1; }
  .frame { max-width: 300px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 28px; }
  .quote-grid { grid-template-columns: 1fr; }
  .step-list { grid-template-columns: 1fr; gap: 26px; }
  .menu-cols { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 22px; }
  .hero-facts { gap: 22px; flex-wrap: wrap; }
  .srv { grid-template-columns: 1fr; gap: 8px; }
  .srv-no { font-size: 1.8rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-base { flex-direction: column; gap: 8px; }
  .pill { display: none; }
  .menu, .faq, .story, .quotes, .steps, .manifesto, .cta { padding: 64px 0; }
  .cta-inner { padding: 48px 26px; }
}
/* ============================================================
   MULTI-PAGE COMPONENTS
   ============================================================ */

/* photo page-hero (banner with image) */
.phero { position: relative; min-height: 46vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.phero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40,20,30,.32), rgba(40,20,30,.5)); }
.phero-inner { position: relative; z-index: 2; color: #fff; padding: 90px 24px; max-width: 760px; }
.phero .eyebrow { color: #ffd9e6; }
.phero h1 { color: #fff; font-weight: 300; font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 12px 0 14px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.phero h1 em { color: #ffd9b0; }
.phero p { color: #f4e9ee; max-width: 560px; margin: 0 auto; font-size: 1.08rem; }
.phero .hero-cta { justify-content: center; margin-top: 28px; }

/* breadcrumb */
.crumb { padding: 20px 0; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--soft); }
.crumb a { color: var(--rose-dk); }

/* treatment cards with photos */
.tcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tcard { display: block; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  box-shadow: 0 18px 44px -34px rgba(80,40,55,.4); transition: transform .25s, box-shadow .25s; }
.tcard:hover { transform: translateY(-6px); box-shadow: 0 28px 54px -30px rgba(155,60,240,.45); }
.tcard-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tcard:hover .tcard-img img { transform: scale(1.06); }
.tcard-img img.contain { object-fit: contain; background: var(--cream-2); }
.tcard:hover .tcard-img img.contain { transform: none; }
.tcard-body { padding: 22px 22px 26px; }
.tcard-body h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 6px; }
.tcard-body p { color: var(--muted); font-size: .92rem; }
.tcard-body .from { display: inline-block; margin-top: 12px; font-family: var(--sans); font-weight: 500; font-size: .78rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.tcard-arrow { color: var(--rose-dk); }

/* split image + text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.flip .split-media { order: 2; }
.split-media img { width: 100%; border-radius: 12px; box-shadow: 0 28px 60px -34px rgba(80,40,55,.45); display: block; aspect-ratio: 4/3; object-fit: cover; }
.split-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 300; margin: 10px 0 18px; }
.split-copy h2 em { color: var(--rose-dk); }
.split-copy p { color: var(--muted); margin-bottom: 14px; }
.split-copy p strong { color: var(--ink); font-weight: 500; }
.checklist { list-style: none; margin: 18px 0 24px; display: grid; gap: 10px; }
.checklist li { position: relative; padding-left: 28px; color: var(--ink); font-size: .98rem; }
.checklist li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

/* inline price table */
.ptable { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 28px 30px; box-shadow: 0 18px 44px -36px rgba(80,40,55,.4); }
.ptable h3 { font-size: 1.3rem; font-weight: 400; padding-bottom: 12px; margin-bottom: 8px; border-bottom: 1px solid var(--line-2); }
.ptable ul { list-style: none; }
.ptable li { display: flex; align-items: baseline; gap: 8px; padding: 8px 0; }
.ptable li i { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); }
.ptable li b { font-family: var(--serif); font-weight: 500; color: var(--rose-dk); }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; transition: transform .35s, filter .35s; }
.gallery img:hover { transform: scale(1.04); filter: saturate(1.1); }
.gallery .tall { grid-row: span 2; aspect-ratio: 1 / 2; }

/* credentials / qualifications */
.creds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cred { text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: 40px 28px; box-shadow: 0 18px 44px -34px rgba(80,40,55,.4); transition: transform .25s, box-shadow .25s; }
.cred:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(155,60,240,.4); }
.cred-badge { width: 76px; height: 76px; margin: 0 auto 20px; display: grid; place-items: center; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--line-2); }
.cred-badge svg { width: 40px; height: 40px; }
.cred .lvl { display: block; font-family: var(--sans); font-weight: 500; font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.cred h3 { font-size: 1.3rem; font-weight: 400; margin-bottom: 8px; }
.cred p { color: var(--muted); font-size: .92rem; }
@media (max-width: 760px) { .creds { grid-template-columns: 1fr; } }

/* Lycon brand mark */
.lycon-mark { display: block; width: 100%; max-width: 380px; margin: 6px auto 22px; border-radius: 16px;
  background: #fff; box-shadow: 0 18px 44px -32px rgba(80,40,55,.4); }

/* tea tree creme wax — action photo with product tub inset */
.creamwax-figure { position: relative; display: block; }
.split-media img.creamwax-badge {
  position: absolute; bottom: -18px; left: -18px; width: 120px; height: auto;
  aspect-ratio: auto; object-fit: contain; border-radius: 12px; background: #fff;
  padding: 6px; border: 1px solid var(--line); box-shadow: 0 16px 34px -12px rgba(80,40,55,.45);
}
@media (max-width: 560px) { .split-media img.creamwax-badge { width: 92px; left: 8px; bottom: -14px; } }

/* full-width Lycon banner hero */
.lycon-hero { background: #fff; line-height: 0; border-bottom: 1px solid var(--line); }
.lycon-hero img { width: 100%; height: auto; display: block; }
.banner-intro { padding: 50px 0 8px; text-align: center; }
.banner-intro .banner-h { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 300; margin: 10px 0 14px; }
.banner-intro .banner-h em { color: var(--rose-dk); }
.banner-intro .banner-sub { max-width: 560px; margin: 0 auto 26px; color: var(--muted); }

/* before & after result image (shown in full, not cropped) */
.split-media .ba { text-align: center; }
.split-media .ba img { width: 100%; max-width: 360px; height: auto; aspect-ratio: auto; object-fit: contain;
  border-radius: 14px; margin: 0 auto; display: block; box-shadow: 0 24px 50px -30px rgba(80,40,55,.45); }
.split-media .ba figcaption { margin-top: 14px; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }

/* generic page section helpers */
.section-pad { padding: 90px 0; }
.section-pad.cream { background: var(--cream); }
.narrow { max-width: 760px; margin: 0 auto; }
.center { text-align: center; }
.lead-p { font-size: 1.15rem; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
  .hero-copy > *, .hero-art { opacity: 1 !important; }
  .lotus-big path { stroke-dashoffset: 0 !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto; }
}

/* ---- multi-page responsive ---- */
@media (max-width: 1040px) {
  .tcards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .35s ease; padding: 0 32px;
  }
  .nav.open .nav-links { max-height: 70vh; padding: 12px 32px 22px; }
  .nav-links a { width: 100%; padding: 13px 0; font-size: .82rem; border-bottom: 1px solid var(--line-2); }
  .nav-links a::after { display: none; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.flip .split-media { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tcards { grid-template-columns: 1fr; }
  .phero-inner { padding: 64px 22px; }
  .section-pad { padding: 56px 0; }
}
