/* ==========================================================================
   LINH LAN — Waxing Specialist
   Master stylesheet · Warm, quiet, sincere
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&family=Lora:ital,wght@0,400;0,500;1,400&family=Inter:wght@300;400;500&display=swap');

/* -- Tokens --------------------------------------------------------------- */
:root {
  /* palette */
  --mist-rose:   #EBD5D5;
  --mist-rose-2: #E4CBCB;
  --blush:       #CFB9B9;
  --dusty-mauve: #A99494;
  --warm-grey:   #958080;
  --mocha:       #846F6F;
  --walnut:      #675353;
  --cocoa:       #695555;
  --earth:       #624E4E;
  --espresso:    #160D0C;
  --charcoal:    #545454;
  --ivory:       #FBF8F8;
  --lilac:       #BC93B2;

  /* type */
  --f-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-sub:     "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-body:    "Lora", Georgia, serif;
  --f-num:     "Inter", "SF Pro Text", -apple-system, sans-serif;

  /* rhythm */
  --gutter: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 12vw, 160px);
  --max: 1280px;
}

/* -- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

html {
  overflow-x: hidden;
  max-width: 100vw;
}
body {
  background: var(--mist-rose);
  color: var(--espresso);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
  min-width: 0;
}
/* All sections must clip their decorative watermarks — no horizontal scroll */
section { overflow: hidden; }

/* -- Type utilities ------------------------------------------------------- */
.eyebrow {
  font-family: var(--f-sub);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut);
}
.eyebrow .vi {
  display: block;
  margin-top: 6px;
  font-family: var(--f-body);
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--mocha);
  opacity: 0.85;
}

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--espresso);
  margin: 0;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
h2 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 400;
}
h3 {
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.2;
}
p { text-wrap: pretty; }

.serif-tag {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  color: var(--mocha);
}

/* -- Layout --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section {
  padding: var(--section-y) 0;
  position: relative;
}
.section-head {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head p {
  color: var(--walnut);
  font-size: 18px;
  margin: 0;
}

/* -- Mandala watermark ---------------------------------------------------- */
.watermark {
  position: absolute;
  color: var(--walnut);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
section > .wrap { position: relative; z-index: 1; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(235, 213, 213, 0.85);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(103, 83, 83, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
/* When scrolled: slightly denser bg + a soft shadow for lift */
.nav.scrolled {
  background: rgba(235, 213, 213, 0.96);
  box-shadow: 0 6px 24px -12px rgba(22, 13, 12, 0.25);
}
.nav.scrolled .nav-inner { padding-top: 12px; padding-bottom: 12px; }
/* Give in-page anchors a scroll offset so sticky nav doesn't cover them */
html { scroll-padding-top: 84px; }
/* Right cluster keeps lang + CTA + hamburger together */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--walnut);
}
.nav-brand svg,
.nav-brand .brand-mark { width: 32px; height: 32px; object-fit: contain; }
/* Multiply blends the black mark onto Mist Rose without a white halo */
.brand-mark, .hero-mark, .hero-mark-bg, .footer-mark {
  mix-blend-mode: multiply;
}
.nav-brand .wm {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.24em;
  color: var(--espresso);
}
.nav-links {
  display: flex;
  gap: 30px;
  font-family: var(--f-sub);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
}
.nav-links a {
  transition: color 0.3s ease;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--espresso); }
.nav-cta {
  font-family: var(--f-sub);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--espresso);
  padding: 12px 22px;
  border-radius: 999px;
  transition: background 0.3s ease;
}
.nav-cta:hover { background: var(--walnut); }

/* Language switcher — subtle pill duo */
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(103, 83, 83, 0.25);
  border-radius: 999px;
  background: rgba(251, 248, 248, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav-lang-btn {
  font-family: var(--f-sub);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut);
  padding: 7px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
}
.nav-lang-btn:hover {
  color: var(--espresso);
}
.nav-lang-btn.active {
  background: var(--espresso);
  color: var(--ivory);
  cursor: default;
}

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(103, 83, 83, 0.3);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.nav-toggle:hover { border-color: var(--espresso); background: rgba(251, 248, 248, 0.4); }
.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--espresso);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 24px; }
/* Animated X when open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: translateX(-50%) rotate(-45deg); }

/* Mobile menu — appears below the nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(251, 248, 248, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(103, 83, 83, 0.15);
  padding: 12px var(--gutter) 20px;
  gap: 2px;
  animation: mobileMenuIn 0.3s ease;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu.open {
  display: flex;
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.mobile-menu a {
  font-family: var(--f-sub);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  padding: 16px 8px;
  border-bottom: 1px solid rgba(103, 83, 83, 0.1);
  transition: color 0.25s ease, padding-left 0.25s ease, background 0.25s ease;
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--walnut);
  padding-left: 16px;
  background: rgba(207, 185, 185, 0.12);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu-cta {
  margin-top: 12px;
  background: var(--espresso);
  color: var(--ivory) !important;
  text-align: center;
  border-radius: 999px;
  border: 0 !important;
  padding: 16px !important;
  letter-spacing: 0.22em !important;
}
.mobile-menu-cta:hover {
  background: var(--walnut);
  padding-left: 16px !important;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; } /* CTA moves into mobile menu, freeing space */
}
@media (max-width: 700px) {
  .nav-lang-btn { font-size: 10px; padding: 6px 10px; min-width: 30px; letter-spacing: 0.14em; }
  html { scroll-padding-top: 72px; }
}
@media (max-width: 420px) {
  .nav-lang-btn { padding: 5px 8px; font-size: 10px; min-width: 26px; }
  .nav-inner { gap: 8px; padding: 12px var(--gutter); }
  .nav-right { gap: 8px; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px var(--gutter) 60px;
  position: relative;
  overflow: hidden;
}
.hero-mandala {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--walnut);
  opacity: 0.10;
  pointer-events: none;
}
.hero-mandala svg,
.hero-mandala .hero-mark-bg {
  width: min(85vh, 88vw);
  height: min(85vh, 88vw);
  object-fit: contain;
}
.hero-mark {
  width: clamp(84px, 11vw, 130px);
  height: auto;
  margin-bottom: 4px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 34px;
  justify-items: center;
}
.hero-eyebrow {
  font-family: var(--f-sub);
  font-size: 11px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--walnut);
  font-weight: 500;
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(56px, 11vw, 150px);
  font-weight: 300;
  letter-spacing: 0.16em;
  line-height: 0.95;
  color: var(--espresso);
  margin: 0;
}
.hero h1 .amp {
  display: block;
  font-style: italic;
  font-size: 0.42em;
  letter-spacing: 0.05em;
  color: var(--mocha);
  margin-top: 12px;
  font-weight: 300;
}
.hero-tag {
  font-family: var(--f-sub);
  font-size: 12px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--walnut);
  padding-left: 0.6em;
}
.hero-subtag {
  font-family: var(--f-body);
  font-style: italic;
  color: var(--mocha);
  font-size: 15px;
  max-width: 40ch;
  margin: 0;
}
.hero-rule {
  width: 1px;
  height: 60px;
  background: var(--walnut);
  opacity: 0.4;
  margin: 8px 0 -20px;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--walnut);
  z-index: 2;
  opacity: 0.6;
}

/* ==========================================================================
   STORY
   ========================================================================== */
.story {
  background: var(--ivory);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}
.story-image {
  aspect-ratio: 4 / 5;
  background: var(--mist-rose);
  position: relative;
  overflow: hidden;
}
.story-image::after {
  content: "Lily of the Valley";
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--walnut);
  opacity: 0.7;
}
.story-image svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70%;
  height: 70%;
  color: var(--dusty-mauve);
  opacity: 0.45;
}
.story-body h2 { margin-bottom: 28px; }
.story-body p {
  color: var(--walnut);
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.85;
}
.story-body p em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--espresso);
  font-size: 1.05em;
}

.qualities {
  margin-top: 44px;
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(103, 83, 83, 0.18);
  padding-top: 32px;
}
.qualities .q {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}
.qualities .num {
  font-family: var(--f-num);
  font-size: 11px;
  font-weight: 500;
  color: var(--walnut);
  padding-top: 4px;
  letter-spacing: 0.1em;
}
.qualities .txt {
  font-family: var(--f-body);
  color: var(--espresso);
  font-size: 15px;
  line-height: 1.7;
}
.qualities .txt strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
}

/* -- Story: figure caption over the Lily photo -- */
.story-image {
  margin: 0;
}
.story-image .story-fig-caption {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: var(--ivory);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}
.story-image .story-fig-caption .latin {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.story-image .story-fig-caption .vn {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
}
/* Suppress the generic .story-image::after fallback caption (used to say "Lily of the Valley") */
.story-image.has-photo::after { content: none !important; }
/* Photo of the lily should show the flowers, not crop them */
.story-image.has-photo > img { object-position: center 30%; }

/* -- Story: lede paragraph highlighting all three language names -- */
.story-body p.lede {
  font-family: var(--f-display);
  font-style: normal;
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--espresso);
  border-left: 1px solid var(--walnut);
  padding-left: 22px;
  margin: 4px 0 26px;
}
.story-body p.lede em {
  font-style: italic;
  color: var(--walnut);
  font-size: 1em;
}
.story-body p.lede strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  color: var(--espresso);
}

/* ==========================================================================
   HANAKOTOBA — the four meanings of Lily of the Valley
   ========================================================================== */
.hanakotoba {
  margin-top: clamp(90px, 12vw, 140px);
  padding-top: clamp(60px, 8vw, 90px);
  border-top: 1px solid rgba(103, 83, 83, 0.2);
  position: relative;
}
.hana-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(50px, 6vw, 70px);
  display: grid;
  gap: 20px;
  justify-items: center;
}
.hana-eyebrow {
  font-family: var(--f-sub);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--walnut);
}
.hana-eyebrow .vi {
  display: block;
  margin-top: 8px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--mocha);
}
.hana-title {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.1;
  color: var(--espresso);
  font-weight: 400;
  margin: 0;
}

.hana-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(103, 83, 83, 0.18);
  border-bottom: 1px solid rgba(103, 83, 83, 0.18);
}
.hana-card {
  padding: 44px 32px 40px;
  display: grid;
  gap: 18px;
  position: relative;
  border-right: 1px solid rgba(103, 83, 83, 0.18);
  transition: background 0.5s ease;
}
.hana-card:last-child { border-right: 0; }
.hana-card:hover {
  background: rgba(207, 185, 185, 0.15);
}
.hana-num {
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--walnut);
}
.hana-mandala {
  width: 44px;
  height: 44px;
  color: var(--dusty-mauve);
  opacity: 0.9;
}
.hana-mandala svg { width: 100%; height: 100%; }
.hana-name {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--espresso);
  margin: 0;
}
.hana-name .hana-vn {
  display: block;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: var(--mocha);
  margin-top: 6px;
  font-weight: 400;
}
.hana-text {
  font-family: var(--f-body);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--walnut);
  margin: 0;
}
.hana-text em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--espresso);
  font-size: 1.02em;
}

.hana-close {
  max-width: 720px;
  margin: clamp(60px, 7vw, 90px) auto 0;
  padding: 0 20px;
  text-align: center;
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5;
  color: var(--espresso);
  font-weight: 400;
  position: relative;
}
.hana-close .quote-mark {
  display: block;
  font-family: var(--f-display);
  font-size: 72px;
  line-height: 0.4;
  color: var(--dusty-mauve);
  margin-bottom: 22px;
  height: 30px;
}
.hana-close cite {
  display: block;
  margin-top: 22px;
  font-family: var(--f-sub);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--walnut);
}

@media (max-width: 1000px) {
  .hana-grid { grid-template-columns: repeat(2, 1fr); }
  .hana-card:nth-child(2) { border-right: 0; }
  .hana-card:nth-child(1),
  .hana-card:nth-child(2) { border-bottom: 1px solid rgba(103, 83, 83, 0.18); }
}
@media (max-width: 600px) {
  .hana-grid { grid-template-columns: 1fr; }
  .hana-card { border-right: 0; border-bottom: 1px solid rgba(103, 83, 83, 0.18); }
  .hana-card:last-child { border-bottom: 0; }
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  background: var(--mist-rose);
}
.services .watermark {
  top: 40px;
  right: clamp(-120px, -15vw, -40px);
  width: min(480px, 60vw);
  color: var(--walnut);
}
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(103, 83, 83, 0.2);
}
.service {
  border-bottom: 1px solid rgba(103, 83, 83, 0.2);
  padding: 34px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  align-items: baseline;
  transition: padding 0.4s ease;
}
.service:nth-child(odd) { padding-right: 40px; border-right: 1px solid rgba(103, 83, 83, 0.2); }
.service:nth-child(even) { padding-left: 40px; }
.service:hover { padding-left: 20px; }
.service:nth-child(odd):hover { padding-left: 0; padding-right: 20px; }
.service .idx {
  font-family: var(--f-num);
  font-size: 11px;
  color: var(--walnut);
  letter-spacing: 0.1em;
}
.service .name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
}
.service .name .vi {
  display: block;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: var(--mocha);
  margin-top: 4px;
  font-weight: 400;
}
.service .name .desc {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 14px;
  color: var(--walnut);
  margin-top: 10px;
  max-width: 42ch;
  line-height: 1.6;
}
/* Highlighted note for important service caveats (e.g. what's included / excluded) */
.service .name .note {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 13px;
  color: var(--walnut);
  margin-top: 12px;
  padding: 12px 14px;
  max-width: 52ch;
  line-height: 1.65;
  background: rgba(207, 185, 185, 0.22);
  border-left: 2px solid var(--walnut);
  border-radius: 2px;
}
.service .name .note strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-style: italic;
  color: var(--espresso);
  font-size: 14px;
  margin-right: 2px;
}
.service .name .note em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--espresso);
  font-weight: 500;
}
.service .dur {
  font-family: var(--f-num);
  font-size: 12px;
  color: var(--walnut);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (max-width: 800px) {
  .services-list { grid-template-columns: 1fr; }
  .service:nth-child(odd) { padding-right: 0; border-right: none; }
  .service:nth-child(even) { padding-left: 0; }
  .service { grid-template-columns: 40px 1fr; gap: 16px; }
}

/* ==========================================================================
   DIODE LASER
   ========================================================================== */
.laser {
  background: var(--espresso);
  color: var(--ivory);
}
.laser h2 { color: var(--ivory); }
.laser .eyebrow { color: var(--blush); }
.laser .eyebrow .vi { color: var(--dusty-mauve); }
.laser-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}
.laser-body p {
  color: rgba(251, 248, 248, 0.75);
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.85;
  max-width: 52ch;
}
.laser-body p:first-of-type {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ivory);
  line-height: 1.5;
  margin-bottom: 28px;
  max-width: 32ch;
}
.laser-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(251, 248, 248, 0.15);
}

/* Responsible Laser Program promise block */
.laser-promise {
  margin-top: 36px;
  padding: 28px 30px;
  background: rgba(251, 248, 248, 0.04);
  border-left: 2px solid var(--blush);
  border-radius: 2px;
}
.laser-promise .promise-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.laser-promise .promise-eyebrow {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 500;
}
.laser-promise .promise-badge {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ivory);
  padding: 4px 12px;
  border: 1px solid rgba(251, 248, 248, 0.3);
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.laser-promise .promise-body {
  color: rgba(251, 248, 248, 0.82);
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.75;
  max-width: none;
}
.laser-promise .promise-body:last-child { margin-bottom: 0; }
.laser-promise .promise-body strong {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--ivory);
  font-style: italic;
  font-size: 1.05em;
}
.laser-promise .promise-body em {
  color: var(--blush);
  font-style: italic;
}
.laser-promise .promise-body-vi {
  color: var(--dusty-mauve);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}
.laser-promise .promise-body-vi em {
  font-family: var(--f-body);
  font-style: italic;
}
@media (max-width: 500px) {
  .laser-promise { padding: 22px; }
  .laser-promise .promise-badge { font-size: 14px; }
}
.laser-facts .fact .k {
  font-family: var(--f-num);
  font-size: 40px;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.laser-facts .fact .v {
  font-family: var(--f-sub);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blush);
}
.laser-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #2a1e1d 0%, #1a1211 100%);
  position: relative;
  overflow: hidden;
}
.laser-image svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80%;
  height: 80%;
  color: var(--blush);
  opacity: 0.22;
}
.laser-image::after {
  content: "Diode Laser";
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--blush);
  opacity: 0.6;
}

@media (max-width: 900px) {
  .laser-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing {
  background: var(--ivory);
}

/* -- New price tables (Male / Female columns, from linhlanwaxing.com) -- */
.price-table {
  margin-top: clamp(40px, 5vw, 60px);
}
.price-table + .price-table {
  margin-top: clamp(70px, 9vw, 110px);
}
.price-table-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--walnut);
  margin-bottom: 6px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
.price-table-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: var(--espresso);
  margin: 0;
  letter-spacing: 0.02em;
}
.price-table-title .vi {
  display: block;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: var(--mocha);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.price-table-cols {
  display: grid;
  grid-template-columns: 100px 100px;
  gap: 0;
  text-align: right;
}
.price-table-cols .col-label {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut);
  font-weight: 500;
  padding-bottom: 4px;
}
.price-table-cols .col-label em {
  display: block;
  margin-top: 4px;
  font-family: var(--f-display);
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 12px;
  color: var(--mocha);
}

/* Laser table: 4 columns split into two grouped column headers */
.price-table-cols.four-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
  text-align: center;
}
.col-group {
  display: grid;
  gap: 6px;
  padding: 0 4px;
}
.col-group.female-group { border-right: 1px solid rgba(103, 83, 83, 0.2); padding-right: 12px; }
.col-group.male-group { padding-left: 12px; }
.col-group .col-heading {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut);
  font-weight: 500;
}
.col-group .col-heading em {
  display: block;
  margin-top: 4px;
  font-family: var(--f-display);
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 12px;
  color: var(--mocha);
}
.col-group .col-subs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  font-family: var(--f-num);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mocha);
  padding-top: 4px;
}

/* Row list */
.price-rows {
  list-style: none;
  padding: 0;
  margin: 0;
}
.prow {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  align-items: baseline;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px dotted rgba(103, 83, 83, 0.25);
  transition: background 0.3s ease, padding 0.3s ease;
}
.prow:hover {
  background: rgba(207, 185, 185, 0.12);
  padding-left: 8px;
  padding-right: 8px;
}
.prow.highlight {
  background: rgba(207, 185, 185, 0.18);
  padding-left: 12px;
  padding-right: 12px;
  border-bottom-color: rgba(103, 83, 83, 0.4);
}
.prow .pname {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--espresso);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.prow .pname strong {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--espresso);
}
.prow .pname em {
  display: block;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 12px;
  color: var(--mocha);
  margin-top: 3px;
  letter-spacing: 0.01em;
}
.prow .pval {
  font-family: var(--f-num);
  font-size: 15px;
  color: var(--walnut);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.prow .pval strong {
  font-family: var(--f-num);
  font-weight: 500;
  color: var(--espresso);
  font-size: 16px;
}
.prow .pval.female { color: var(--espresso); }
.prow .pval.male { color: var(--walnut); }
.prow .pval.pkg { color: var(--mocha); font-size: 14px; }

/* Laser table: 5 columns (label + F unit/pkg + M unit/pkg) */
.four-col-rows .prow {
  grid-template-columns: 1fr 82px 82px 82px 82px;
}
/* Add visual divider between Female block and Male block on each row */
.four-col-rows .prow .pval:nth-child(3) {
  border-right: 1px solid rgba(103, 83, 83, 0.15);
  padding-right: 12px;
}
.four-col-rows .prow .pval:nth-child(4) {
  padding-left: 8px;
}

.price-note {
  margin-top: 24px;
  font-family: var(--f-body);
  font-style: italic;
  color: var(--walnut);
  font-size: 14px;
  line-height: 1.6;
}
.price-note em { color: var(--mocha); }
.price-note.laser-note {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--mist-rose);
  border-left: 2px solid var(--walnut);
  font-style: normal;
}
.price-note.laser-note p { margin: 0 0 10px; }
.price-note.laser-note p:last-child { margin-bottom: 0; font-style: italic; color: var(--mocha); }
.price-note.laser-note strong {
  font-family: var(--f-display);
  color: var(--espresso);
  font-weight: 500;
}

/* Tablet: stack the header but keep the tabular layout */
@media (max-width: 800px) {
  .price-table-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .price-table-cols { justify-self: end; }
  .prow { gap: 10px; }
  .prow .pname { font-size: 15px; }
  .prow .pval { font-size: 14px; }

  /* Waxing (2-col) — a touch wider to fit values like 3,000k */
  .prow {
    grid-template-columns: 1fr 72px 72px;
  }
  .price-table-cols {
    grid-template-columns: 72px 72px;
  }
}

/* Phone: waxing stays 2-col; laser flips to a stacked card layout */
@media (max-width: 640px) {
  .price-table-title { font-size: 22px; }
  .prow { grid-template-columns: 1fr 66px 66px; gap: 8px; padding: 14px 0; }
  .prow .pname { font-size: 14px; }
  .prow .pname em { font-size: 11px; }
  .prow .pval { font-size: 13px; }
  .price-table-cols { grid-template-columns: 66px 66px; }

  /* LASER: reshape 4-numeric-column table into clean stacked rows.
     Each row becomes a 5-line block: name / F unit / F pkg / M unit / M pkg. */
  .laser-table .price-table-cols.four-col { display: none; }
  .four-col-rows .prow {
    display: grid;
    grid-template-columns: 22px 60px 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 6px;
    padding: 18px 0;
    align-items: baseline;
  }
  .four-col-rows .prow .pname {
    grid-column: 1 / -1;
    padding-bottom: 6px;
    border-bottom: 1px dotted rgba(103, 83, 83, 0.2);
    margin-bottom: 4px;
  }
  /* Cell 2 = F unit → row 2 col 2 */
  /* Cell 3 = F pkg  → row 2 col 3 */
  /* Cell 4 = M unit → row 3 col 2 */
  /* Cell 5 = M pkg  → row 3 col 3 */
  .four-col-rows .prow .pval {
    text-align: left;
    border: 0 !important;
    padding: 0 !important;
    font-size: 14px;
    display: block;
    line-height: 1.4;
  }
  .four-col-rows .prow .pval:nth-child(2) { grid-column: 2; grid-row: 2; }
  .four-col-rows .prow .pval:nth-child(3) { grid-column: 3; grid-row: 2; color: var(--mocha); font-size: 13px; }
  .four-col-rows .prow .pval:nth-child(4) { grid-column: 2; grid-row: 3; }
  .four-col-rows .prow .pval:nth-child(5) { grid-column: 3; grid-row: 3; color: var(--mocha); font-size: 13px; }

  /* F / M gender badges — added as separate ::before that render as own grid cell */
  .four-col-rows .prow::before,
  .four-col-rows .prow::after {
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-family: var(--f-sub);
    font-size: 11px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0;
  }
  .four-col-rows .prow::before {
    content: "F";
    grid-column: 1;
    grid-row: 2;
    background: var(--blush);
    color: var(--espresso);
  }
  .four-col-rows .prow::after {
    content: "M";
    grid-column: 1;
    grid-row: 3;
    background: var(--walnut);
    color: var(--ivory);
  }

  /* Prefix the package prices with "pkg" hint so they don't look like unit prices */
  .four-col-rows .prow .pval:nth-child(3)::before,
  .four-col-rows .prow .pval:nth-child(5)::before {
    content: "pkg ";
    color: var(--mocha);
    font-family: var(--f-sub);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-right: 4px;
    font-weight: 500;
  }

  .four-col-rows .prow.highlight { border-radius: 4px; padding: 20px 10px; }
}

/* Very small phones — squeeze a little more */
@media (max-width: 380px) {
  .prow { grid-template-columns: 1fr 58px 58px; gap: 6px; }
  .price-table-cols { grid-template-columns: 58px 58px; }
  .prow .pname { font-size: 13px; }
  .prow .pval { font-size: 12px; }
  .four-col-rows .prow .pval { font-size: 13px; }
}

/* ==========================================================================
   GLOBAL MOBILE POLISH — center alignment + no-overflow guarantees
   ========================================================================== */
@media (max-width: 700px) {
  :root {
    --gutter: 18px;
    --section-y: clamp(60px, 14vw, 100px);
  }

  /* Sticky nav — a touch tighter on phones */
  .nav-inner { padding: 14px var(--gutter); gap: 14px; }
  .nav-cta { padding: 10px 16px; font-size: 10px; letter-spacing: 0.2em; }
  .nav-brand .wm { font-size: 17px; letter-spacing: 0.2em; }

  /* Hero — reduce heavy vertical padding */
  .hero { min-height: 78vh; padding: 60px var(--gutter) 40px; }
  .hero h1 { font-size: clamp(48px, 15vw, 88px); letter-spacing: 0.14em; }
  .hero-tag { font-size: 11px; letter-spacing: 0.5em; }
  .hero-subtag { font-size: 14px; padding: 0 8px; }

  /* Section heads — always left-aligned but wrap safely */
  .section-head { gap: 14px; margin-bottom: clamp(32px, 8vw, 50px); }
  .section-head p { font-size: 16px; }
  h2 { font-size: clamp(30px, 8vw, 48px); }

  /* Story image should not dominate on mobile */
  .story-image { aspect-ratio: 4 / 4.5; }

  /* Hana cards — a hair more air on phones */
  .hana-title { font-size: clamp(24px, 6vw, 34px); }
  .hana-card { padding: 32px 22px; }

  /* Film — center the video block, stack all copy */
  .film-grid { justify-items: stretch; }
  .film-phone { max-width: 300px; margin: 0 auto; }
  .film-copy { max-width: none; gap: 40px; }
  .film-lede { font-size: 19px; }
  .film-cta { padding: 22px; }
  .film-cta-phone { font-size: 22px; gap: 10px; }
  .film-cta-icon { width: 30px; height: 30px; font-size: 13px; }

  /* Diode Laser section — image loses breathing room on mobile */
  .laser-image { aspect-ratio: 4 / 4.2; }
  .laser-body p:first-of-type { font-size: 18px; }
  .laser-facts { grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 24px; margin-top: 28px; }
  .laser-facts .fact .k { font-size: 32px; }

  /* Therapist — tighter portrait */
  .therapist-portrait { aspect-ratio: 4 / 4.5; }
  .therapist-body blockquote { font-size: 20px; padding-left: 16px; }
  .therapist-body .name { font-size: 18px; }

  /* Reviews stack cleanly */
  .review { padding: 32px 24px 28px; }
  .review p { font-size: 17px; }

  /* Location info block already stacks — just tighten */
  .info-block { padding: 18px 0; gap: 6px; }
  .info-block .v { font-size: 15px; }

  /* FAQ — keep numbered gutter narrower */
  .q-item { grid-template-columns: 30px 1fr; gap: 18px; padding: 22px 0; }
  .q-item .q { font-size: 18px; }
  .q-item .a { font-size: 14px; }

  /* CTA bottom */
  .cta-btn { padding: 16px 28px; font-size: 11px; letter-spacing: 0.24em; }
  .cta h2 { font-size: clamp(30px, 8vw, 44px); }

  /* Footer columns collapse gracefully */
  .footer { padding: 60px var(--gutter) 30px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 20px; padding-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .foot-col h4 { font-size: 9px; }
  .foot-col li { font-size: 13px; }
  .footer-base { flex-direction: column; text-align: center; gap: 10px; font-size: 9px; }

  /* Watermarks tucked further out of view */
  .watermark { opacity: 0.05; }
}

/* Very small phones — stack footer to single column */
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .film-phone { max-width: 260px; }
  .info-messengers { flex-direction: column; align-items: stretch; }
  .msg-chip { justify-content: center; }
}

.pricing .watermark {
  bottom: -100px;
  left: clamp(-140px, -18vw, -40px);
  width: min(460px, 58vw);
  color: var(--walnut);
}
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(40px, 6vw, 80px);
}
.price-col h3 {
  font-family: var(--f-sub);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(103, 83, 83, 0.25);
  margin: 0 0 8px;
}
.price-col h3 .vi {
  font-family: var(--f-display);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--mocha);
  font-weight: 400;
  margin-left: 12px;
  font-size: 13px;
}
.price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px dotted rgba(103, 83, 83, 0.25);
}
.price .n {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--espresso);
}
.price .n small {
  display: block;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 12px;
  color: var(--mocha);
  margin-top: 2px;
  font-weight: 400;
}
.price .v {
  font-family: var(--f-num);
  font-size: 15px;
  color: var(--walnut);
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.price .v .unit {
  font-size: 10px;
  color: var(--mocha);
  letter-spacing: 0.1em;
  margin-left: 4px;
}
.price-note {
  margin-top: 36px;
  font-family: var(--f-body);
  font-style: italic;
  color: var(--walnut);
  font-size: 14px;
}

@media (max-width: 800px) {
  .price-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ==========================================================================
   FILM — Beyond Waxing (embedded intro video + transcribed poem)
   ========================================================================== */
.film {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.film::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(207,185,185,0.35), transparent 60%),
    radial-gradient(circle at 82% 88%, rgba(188,147,178,0.15), transparent 55%);
  pointer-events: none;
}
.film > .wrap { position: relative; z-index: 1; }

.film .section-head h2 {
  margin: 0 auto;
}

.film-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(48px, 6vw, 90px);
  align-items: start;
  margin-top: clamp(40px, 5vw, 60px);
}

/* Left: portrait video in a soft warm frame */
.film-video {
  margin: 0;
  position: sticky;
  top: 100px;
  display: grid;
  justify-items: center;
  gap: 18px;
}
.film-phone {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
  background: var(--espresso);
  box-shadow:
    0 30px 60px -20px rgba(22, 13, 12, 0.35),
    0 12px 24px -12px rgba(22, 13, 12, 0.25);
  border: 1px solid rgba(103, 83, 83, 0.15);
  position: relative;
}
.film-phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--espresso);
}

/* -- YouTube lite embed: thumbnail-first, iframe on click -- */
.yt-lite {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
  transition: filter 0.35s ease;
}
.yt-lite::before {
  /* Vignette so the play button reads on any thumbnail */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
  transition: opacity 0.3s ease;
}
.yt-lite:hover { filter: brightness(1.05); }
.yt-lite:hover .yt-lite-play { transform: translate(-50%, -50%) scale(1.05); }
.yt-lite-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}
.yt-lite-play svg {
  width: 78px;
  height: auto;
  display: block;
}
.yt-lite.yt-lite-activated {
  cursor: default;
}
.yt-lite.yt-lite-activated::before,
.yt-lite.yt-lite-activated .yt-lite-play {
  opacity: 0;
  pointer-events: none;
}
.yt-lite iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
}
.film-video figcaption {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}
.film-cap-brand {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--walnut);
}
.film-cap-meta {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mocha);
}

/* Right: two poem chapters + CTA */
.film-copy {
  display: grid;
  gap: 52px;
  max-width: 620px;
}
.film-chapter {
  display: grid;
  gap: 18px;
}
.film-chapter-head {
  display: grid;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(103, 83, 83, 0.2);
  margin-bottom: 10px;
}
.film-tag {
  font-family: var(--f-sub);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--espresso);
}
.film-tag-vi {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--mocha);
}
.film-lede {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--espresso);
  margin: 0;
  font-weight: 400;
}
.film-body {
  font-family: var(--f-body);
  color: var(--walnut);
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}
.film-body em {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--espresso);
  font-weight: 500;
  font-size: 1.05em;
}
.film-signoff {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--espresso);
  margin: 8px 0 0;
  padding-top: 18px;
  border-top: 1px dotted rgba(103, 83, 83, 0.25);
}

/* CTA under chapters */
.film-cta {
  margin-top: 8px;
  padding: 32px;
  background: var(--mist-rose);
  border-radius: 2px;
  display: grid;
  gap: 12px;
  justify-items: start;
  border-left: 2px solid var(--walnut);
}
.film-cta-eyebrow {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--walnut);
  font-weight: 500;
}
.film-cta-phone {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 36px);
  color: var(--espresso);
  font-weight: 400;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 0.3s ease;
}
.film-cta-phone:hover { color: var(--walnut); }
.film-cta-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--ivory);
  font-size: 15px;
  font-family: var(--f-sub);
}
.film-cta-web {
  font-family: var(--f-sub);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mocha);
  padding-top: 4px;
  transition: color 0.3s ease;
}
.film-cta-web:hover { color: var(--espresso); }

/* -- Messenger chips (WhatsApp / Zalo) -- */
.film-cta-messengers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.film-msg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  font-family: var(--f-sub);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ivory);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 6px 16px -8px rgba(22, 13, 12, 0.35);
}
.film-msg svg { width: 20px; height: 20px; flex-shrink: 0; }
.film-msg.whatsapp { background: #25D366; }
.film-msg.zalo { background: #0068FF; color: transparent; }
.film-msg.zalo svg { color: #0068FF; }
.film-msg.zalo span { color: var(--ivory); }
.film-msg:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 12px 20px -8px rgba(22, 13, 12, 0.4); }

/* Location section messenger chips (softer, brand-matched) */
.info-link {
  color: var(--espresso);
  text-decoration: none;
  border-bottom: 1px dotted rgba(103, 83, 83, 0.4);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.info-link:hover {
  color: var(--walnut);
  border-bottom-color: var(--walnut);
}
.info-messengers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.msg-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 10px;
  border-radius: 999px;
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ivory);
  transition: transform 0.25s ease, filter 0.25s ease;
  box-shadow: 0 4px 12px -6px rgba(22, 13, 12, 0.3);
}
.msg-chip svg { width: 18px; height: 18px; flex-shrink: 0; }
.msg-chip.whatsapp { background: #25D366; }
.msg-chip.zalo { background: #0068FF; }
.msg-chip.zalo svg { color: #0068FF; }
.msg-chip.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.msg-chip.facebook { background: #1877F2; }
.msg-chip:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* -- Footer social row -- */
.foot-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(103, 83, 83, 0.2);
}
.foot-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(103, 83, 83, 0.3);
  border-radius: 999px;
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.foot-social a svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.foot-social a:hover {
  color: var(--espresso);
  border-color: var(--espresso);
  background: rgba(207, 185, 185, 0.15);
}

@media (max-width: 900px) {
  .film-grid { grid-template-columns: 1fr; justify-items: center; }
  .film-video { position: static; }
  .film-copy { max-width: none; }
}

/* ==========================================================================
   THERAPIST
   ========================================================================== */
.therapist {
  background: var(--mist-rose);
}
.therapist-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}
.therapist-portrait {
  aspect-ratio: 4 / 5;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.therapist-portrait::after {
  content: "Portrait · Ms. Sine";
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--walnut);
  opacity: 0.75;
}
.therapist-portrait svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60%;
  height: 60%;
  color: var(--walnut);
  opacity: 0.25;
}
.therapist-body h2 { margin-bottom: 28px; }
.therapist-body .name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--walnut);
  margin-bottom: 24px;
  display: block;
}
.therapist-body blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  color: var(--espresso);
  margin: 0 0 28px;
  padding-left: 22px;
  border-left: 1px solid var(--walnut);
}
.therapist-body p {
  color: var(--walnut);
  margin: 0 0 18px;
  line-height: 1.8;
}
.therapist-body .attribution {
  font-family: var(--f-sub);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-top: 24px;
}

@media (max-width: 900px) {
  .therapist-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  background: var(--ivory);
  padding-bottom: calc(var(--section-y) - 20px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}
.tile {
  background: var(--mist-rose);
  position: relative;
  overflow: hidden;
}
.tile::before {
  content: attr(data-label);
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12px;
  color: var(--walnut);
  opacity: 0.6;
}
.tile.t1 { grid-column: span 5; grid-row: span 3; background: var(--blush); }
.tile.t2 { grid-column: span 4; grid-row: span 2; }
.tile.t3 { grid-column: span 3; grid-row: span 2; background: var(--dusty-mauve); }
.tile.t4 { grid-column: span 4; grid-row: span 2; background: var(--mist-rose-2); }
.tile.t5 { grid-column: span 3; grid-row: span 3; background: var(--blush); }
.tile.t6 { grid-column: span 5; grid-row: span 2; }
.tile.t7 { grid-column: span 4; grid-row: span 2; background: var(--mist-rose-2); }
.tile.t8 { grid-column: span 8; grid-row: span 2; background: var(--blush); }

.tile svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 40%;
  height: 40%;
  color: var(--walnut);
  opacity: 0.18;
}

@media (max-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 120px; }
  .tile.t1, .tile.t2, .tile.t3, .tile.t4, .tile.t5, .tile.t6, .tile.t7, .tile.t8 {
    grid-column: span 4;
    grid-row: span 2;
  }
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews {
  background: var(--mist-rose);
}
.reviews .watermark {
  top: 60px;
  left: clamp(-100px, -14vw, -40px);
  width: min(380px, 55vw);
  color: var(--walnut);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.review {
  background: var(--ivory);
  padding: 44px 36px 36px;
  position: relative;
}
.review .mark {
  font-family: var(--f-display);
  font-size: 60px;
  line-height: 0.5;
  color: var(--dusty-mauve);
  margin-bottom: 18px;
  height: 20px;
}
.review p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--espresso);
  margin: 0 0 24px;
  font-weight: 400;
}
.review .who {
  font-family: var(--f-sub);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--walnut);
  padding-top: 20px;
  border-top: 1px solid rgba(103, 83, 83, 0.2);
}
.review .who .role {
  display: block;
  margin-top: 4px;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--mocha);
}

@media (max-width: 900px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   LOCATION
   ========================================================================== */
.location {
  background: var(--ivory);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 80px);
  align-items: start;
}
.location-map {
  aspect-ratio: 5 / 4;
  background: var(--mist-rose-2);
  position: relative;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(103, 83, 83, 0.15);
  text-decoration: none;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  /* Softly desaturate the map to match the brand's warm/quiet palette */
  filter: saturate(0.75) contrast(0.96) brightness(1.02);
  transition: filter 0.5s ease;
}
.location-map:hover iframe {
  filter: saturate(0.9) contrast(1.0) brightness(1.04);
}
.location-map .map-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ivory);
  color: var(--espresso);
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  font-family: var(--f-sub);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px -8px rgba(22, 13, 12, 0.28);
  pointer-events: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-map:hover .map-overlay {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(22, 13, 12, 0.35);
}
.location-map .map-overlay svg.pin {
  width: 18px;
  height: 18px;
  color: var(--walnut);
  flex-shrink: 0;
}
.location-map .map-cta { white-space: nowrap; }
.location-info h2 { margin-bottom: 32px; }
.info-block {
  padding: 22px 0;
  border-bottom: 1px solid rgba(103, 83, 83, 0.2);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
}
.info-block .k {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--walnut);
  padding-top: 6px;
}
.info-block .k .vi {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--mocha);
  margin-top: 4px;
}
.info-block .v {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--espresso);
  line-height: 1.7;
}
.info-block .v .hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 15px;
  padding: 4px 0;
  border-bottom: 1px dotted rgba(103, 83, 83, 0.2);
}
.info-block .v .hours-row:last-child { border: 0; }
.info-block .v .hours-row .num {
  font-family: var(--f-num);
  color: var(--walnut);
  font-size: 14px;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .info-block { grid-template-columns: 1fr; gap: 8px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background: var(--mist-rose);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.q-item {
  border-bottom: 1px solid rgba(103, 83, 83, 0.2);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 32px;
  align-items: start;
}
.q-item:first-child { border-top: 1px solid rgba(103, 83, 83, 0.2); }
.q-item .idx {
  font-family: var(--f-num);
  font-size: 11px;
  color: var(--walnut);
  padding-top: 6px;
  letter-spacing: 0.1em;
}
.q-item .q {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--espresso);
  line-height: 1.3;
  margin: 0 0 12px;
  font-weight: 400;
}
.q-item .q .vi {
  display: block;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: var(--mocha);
  margin-top: 4px;
}
.q-item .a {
  font-family: var(--f-body);
  color: var(--walnut);
  font-size: 15px;
  line-height: 1.75;
  max-width: 62ch;
  margin: 0;
}

/* ==========================================================================
   FAREWELL — full-bleed brand image before CTA
   ========================================================================== */
.farewell {
  position: relative;
  padding: 0;
  min-height: 82vh;
  max-height: 900px;
  overflow: hidden;
  background: var(--espresso);
}
.farewell > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: saturate(0.85) contrast(1.02) brightness(0.98);
}
.farewell-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: grid;
  place-items: end center;
  padding: 0 var(--gutter) clamp(50px, 8vh, 90px);
  background:
    linear-gradient(180deg, transparent 40%, rgba(22,13,12,0.55) 100%);
}
.farewell-inner {
  text-align: center;
  color: var(--ivory);
  display: grid;
  gap: 14px;
  justify-items: center;
  max-width: 640px;
}
.farewell-eyebrow {
  font-family: var(--f-sub);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}
.farewell-line {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--ivory);
  margin: 0;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55);
  line-height: 1.15;
}
.farewell-line em {
  font-style: italic;
  color: var(--ivory);
}
.farewell-sub {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(251, 248, 248, 0.85);
  margin: 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}

@media (max-width: 700px) {
  .farewell { min-height: 68vh; }
  .farewell > img { object-position: center 35%; }
}

/* ==========================================================================
   CTA STRIP
   ========================================================================== */
.cta {
  background: var(--espresso);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta .hero-mandala { opacity: 0.06; }
.cta-inner {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  display: grid;
  gap: 28px;
  justify-items: center;
}
.cta .eyebrow { color: var(--blush); }
.cta .eyebrow .vi { color: var(--dusty-mauve); }
.cta h2 {
  color: var(--ivory);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  max-width: 18ch;
}
.cta h2 em {
  font-style: italic;
  color: var(--blush);
  font-weight: 300;
}
.cta p {
  color: rgba(251, 248, 248, 0.7);
  max-width: 46ch;
  margin: 0;
}
.cta-btn {
  margin-top: 16px;
  font-family: var(--f-sub);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--ivory);
  padding: 20px 44px;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}
.cta-btn:hover { background: var(--blush); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--mist-rose);
  padding: 80px var(--gutter) 40px;
  color: var(--walnut);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(103, 83, 83, 0.2);
}
.footer-brand svg,
.footer-brand .footer-mark { width: 52px; height: 52px; object-fit: contain; color: var(--walnut); margin-bottom: 16px; }
.footer-brand .wm {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.24em;
  color: var(--espresso);
  margin-bottom: 8px;
}
.footer-brand .tag {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--walnut);
}
.footer-brand .promise {
  margin-top: 24px;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--mocha);
  max-width: 26ch;
  font-size: 15px;
}
.foot-col h4 {
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--espresso);
  font-weight: 500;
  margin: 0 0 20px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.foot-col li {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--walnut);
  line-height: 1.6;
}
.foot-col li a { transition: color 0.3s ease; }
.foot-col li a:hover { color: var(--espresso); }

.footer-base {
  max-width: var(--max);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--f-sub);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mocha);
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-base { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Photo treatment — unified warm, quiet tone across all imagery
   ========================================================================== */
.has-photo { position: relative; overflow: hidden; }
.has-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Preserve sharpness — keep filters gentle so originals stay crisp */
  filter: saturate(0.92) contrast(1.02) brightness(1.01);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 1.2s ease, filter 0.6s ease;
}
.has-photo:hover > img {
  transform: scale(1.02);
}
/* Corner label reads over any image */
.tile.has-photo::before {
  color: var(--ivory);
  opacity: 0.9;
  text-shadow: 0 1px 12px rgba(22, 13, 12, 0.55);
  z-index: 2;
}
/* Story image needs its italic caption legible over a photo */
.story-image.has-photo::after {
  color: var(--ivory);
  opacity: 0.95;
  text-shadow: 0 1px 12px rgba(22, 13, 12, 0.5);
}
/* Laser image label */
.laser-image.has-photo::after {
  color: var(--blush);
  opacity: 0.95;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
/* Therapist portrait label */
.therapist-portrait.has-photo::after {
  color: var(--ivory);
  opacity: 0.95;
  text-shadow: 0 1px 12px rgba(22, 13, 12, 0.55);
}
/* Portrait crop — face is upper-middle */
.therapist-portrait.has-photo > img { object-position: center 20%; }
.story-image.has-photo > img { object-position: center 25%; }

/* ==========================================================================
   QUICK CONTACT — floating WhatsApp + Zalo buttons
   ========================================================================== */
.quick-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  pointer-events: none;
}
.qc-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 20px 0 0;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  box-shadow:
    0 12px 28px -8px rgba(22, 13, 12, 0.35),
    0 4px 12px -4px rgba(22, 13, 12, 0.25);
  transition:
    max-width 0.4s cubic-bezier(.2,.7,.2,1),
    padding 0.4s cubic-bezier(.2,.7,.2,1),
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
  overflow: hidden;
  max-width: 56px;
  will-change: max-width;
}
.qc-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.qc-icon svg { width: 28px; height: 28px; display: block; }
.qc-label {
  font-family: var(--f-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.qc-btn:hover,
.qc-btn:focus-visible {
  max-width: 220px;
  padding-right: 22px;
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 18px 32px -8px rgba(22, 13, 12, 0.4),
    0 6px 14px -4px rgba(22, 13, 12, 0.3);
}
.qc-btn:hover .qc-label,
.qc-btn:focus-visible .qc-label {
  opacity: 1;
  transform: none;
}
.qc-whatsapp { background: #25D366; }
.qc-zalo { background: #0068FF; }
.qc-zalo .qc-icon svg { color: #ffffff; }

/* Subtle pulse ring on WhatsApp — draws the eye on first load, then quiets */
.qc-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: qc-pulse 2.4s ease-out 2;
  pointer-events: none;
}
.qc-btn { position: relative; }
@keyframes qc-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Entrance: fade + slide up after page loads */
.quick-contact { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s; }
.quick-contact.ready { opacity: 1; transform: none; }

/* Compact on very small screens */
@media (max-width: 500px) {
  .quick-contact { right: 14px; bottom: 14px; gap: 10px; }
  .qc-btn { height: 52px; max-width: 52px; }
  .qc-icon { width: 52px; height: 52px; }
  .qc-icon svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .qc-btn, .quick-contact { transition: none; }
  .qc-whatsapp::before { animation: none; }
}

/* ==========================================================================
   Reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
