/* ══════════════════════════════════════════
   HIKARI ÉTOILE — Main Stylesheet
   Palette: dark brown · pastel pink · sage · yellow ochre
══════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────── */
:root {
  --cream:       #FDF5EE;
  --blush:       #F5C8BA;
  --blush-mid:   #EAA898;
  --mauve:       #C87850;
  --mauve-deep:  #A85C38;
  --mauve-dark:  #3B1F0E;
  --sage:        #9AB89A;
  --sage-deep:   #72966E;
  --sage-dark:   #4E7248;
  --gold:        #D4902A;
  --gold-light:  #E8B848;
  --gold-dark:   #9A6810;
  --charcoal:    #2A1408;
  --warm-grey:   #7A5848;
  --white:       #FFFFFF;

  /* new tokens */
  --dark-brown:  #3B1F0E;
  --brown-mid:   #5C3320;
  --ochre:       #D4902A;
  --ochre-light: #E8B848;
  --ochre-dark:  #9A6810;
  --pink-light:  #FDE8E0;
  --sage-light:  #DCF0D8;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Lato', 'Helvetica Neue', Arial, sans-serif;

  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      12px;
  --shadow:      0 4px 24px rgba(59,31,14,.10);
  --shadow-lg:   0 8px 48px rgba(59,31,14,.18);
}

/* ── RESET & BASE ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
select, input, textarea { font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }
strong { font-weight: 700; }

/* ── HELPERS ────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 100px 0;
}

.section--cream    { background: var(--cream); }
.section--blush    { background: var(--blush); }
.section--sage     { background: var(--sage-light); }
.section--mauve    { background: var(--blush); }
.section--disclaimer { background: var(--blush); }

.section-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .5rem;
}

.section-title {
  color: var(--mauve-dark);
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 0 2.5rem;
}
.divider--light { background: linear-gradient(90deg, rgba(255,255,255,.8), rgba(255,255,255,.3)); }

/* ── BUTTONS ────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: .85rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(160,120,48,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(160,120,48,.45);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  background: #25D366;
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  margin-top: 1.5rem;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* ── NAVIGATION ─────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.2rem 0;
}

.site-header.scrolled {
  background: rgba(59,31,14,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(59,31,14,.35);
  padding: .7rem 0;
}
.site-header.scrolled .nav-links a { color: var(--cream); }
.site-header.scrolled .nav-links a:hover { color: var(--ochre-light); }
.site-header.scrolled .nav-links a::after { background: var(--ochre-light); }
.site-header.scrolled .hamburger span { background: var(--cream); }
.site-header.scrolled .nav-logo { mix-blend-mode: screen; }

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navbar logo — mix-blend-mode erases the black background on light surfaces */
.nav-logo {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: opacity var(--transition), transform var(--transition);
}
.logo-link:hover .nav-logo {
  opacity: .85;
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: .5rem 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: .06em;
  transition: var(--transition);
  box-shadow: 0 3px 14px rgba(160,120,48,.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(160,120,48,.4);
}
.nav-cta::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  z-index: 1300;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
  pointer-events: none;
}
.hamburger.open span { background: var(--cream); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #F5E4E0 0%, #EDD8D0 30%, #E4C8C0 60%, #D8B8B0 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,10,15,.45) 0%,
    rgba(30,10,20,.55) 45%,
    rgba(245,235,230,.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 2rem;
}

/* Hero logo — blend away black, let gold/white glow on the blush hero */
.hero-logo {
  width: 200px;
  height: auto;
  margin: 0 auto 1.25rem;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 4px 24px rgba(201,168,76,.35));
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,240,210,.92);
  margin-bottom: .5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 300;
  color: #ffffff;
  line-height: 1;
  margin-bottom: .5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.45), 0 0 60px rgba(0,0,0,.2);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,235,190,.95);
  margin-bottom: 1.5rem;
  letter-spacing: .05em;
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,245,240,.88);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-dot {
  display: block;
  width: 10px; height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── ABOUT ──────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text { font-size: 1.05rem; color: var(--warm-grey); }
.about-text p { margin-bottom: 1.2rem; }
.about-text em { color: var(--mauve-deep); font-style: italic; }
.about-text strong { color: var(--charcoal); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 3px solid var(--gold);
}

.value-icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; margin-top: .1rem; }

.value-card h3 {
  font-size: 1.1rem;
  color: var(--mauve-dark);
  margin-bottom: .25rem;
}
.value-card p { font-size: .9rem; color: var(--warm-grey); margin: 0; }

/* ── TEAM ───────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.team-portrait-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--blush-mid), var(--mauve));
  overflow: hidden;
  flex-shrink: 0;
}

.team-portrait {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform .6s ease;
}
.team-card:hover .team-portrait { transform: scale(1.04); }

.portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.5);
  z-index: 0;
}

.team-bio {
  padding: 2rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-name {
  font-size: 1.75rem;
  color: var(--mauve-dark);
  margin: 0;
}

.team-role {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-dark);
  margin: 0;
}

.team-bio p { color: var(--warm-grey); font-size: .925rem; margin: 0; }

/* keep legacy class names working */
.founder-name {
  font-size: 2rem;
  color: var(--mauve-dark);
  margin-bottom: 1rem;
}

.founder-titles {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.title-badge {
  display: inline-block;
  padding: .3rem .85rem;
  background: rgba(212,144,42,.12);
  border: 1px solid rgba(212,144,42,.4);
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--brown-mid);
}
.title-badge--gold {
  background: rgba(212,144,42,.2);
  border-color: var(--ochre);
  color: var(--ochre-dark);
}

.founder-bio p { color: var(--warm-grey); margin-bottom: 1rem; }

/* expertise block inside team card */
.expertise-block {
  background: #fff7f2;
  border-radius: 10px;
  border: 1.5px solid rgba(184,148,74,0.28);
  padding: 1.4rem 1.5rem 1.2rem;
  margin-top: 1.5rem;
}
.expertise-label {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--mauve-dark);
  margin: 0 0 .9rem 0 !important;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.expertise-label::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 1.1em;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem .75rem;
}
.expertise-list li {
  font-size: .875rem;
  color: var(--warm-grey);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.expertise-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .55rem;
  top: .3rem;
}

/* ── MEMBER REVIEWS (inside team card) ─── */
.member-reviews {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.member-reviews-label {
  font-size: .75rem !important;
  font-weight: 700 !important;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark) !important;
  margin: 0 0 .25rem 0 !important;
}
.member-review-item {
  background: #fff7f2;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: .9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.member-review-stars {
  color: var(--gold);
  font-size: .95rem;
  margin: 0 !important;
  letter-spacing: .08em;
}
.member-review-text {
  font-size: .875rem !important;
  color: var(--warm-grey) !important;
  font-style: italic;
  line-height: 1.65;
  margin: 0 !important;
}
.member-review-author {
  font-size: .8rem !important;
  font-weight: 700 !important;
  color: var(--mauve) !important;
  margin: 0 !important;
}

.founder-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  background: rgba(201,168,178,.1);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mauve-deep);
  line-height: 1.6;
}

/* ── VISION & MISSION ───────────────────── */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.vm-card {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--gold);
}

.vm-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.vm-card h3 {
  font-size: 1.4rem;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.vm-card p { color: var(--charcoal); font-size: .95rem; margin: 0; }

/* ── VISION LIST & MOTTO ────────────────── */
.vm-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.vm-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .55rem;
  font-size: .9rem;
  color: var(--charcoal);
}
.vm-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .6rem;
  top: .25rem;
}

.vm-motto {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--sage-dark);
  line-height: 1.8;
  margin: 0;
}

/* ── SERVICES INTRO ─────────────────────── */
.services-intro {
  font-size: 1.05rem;
  color: var(--warm-grey);
  margin-bottom: .75rem;
}

/* ── SERVICES ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.service-card {
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.service-card--pink {
  background: linear-gradient(145deg, #fdf0f3, #f9e4ea);
  border-top-color: #d4849a;
}
.service-card--pink::before { background: linear-gradient(90deg, #d4849a, #e8a8b8); }
.service-card--pink h3 { color: #9a4d63; }

.service-card--grey {
  background: linear-gradient(145deg, #f4f4f6, #ebebef);
  border-top-color: #b0b4c0;
}
.service-card--grey::before { background: linear-gradient(90deg, #b0b4c0, #c8ccd8); }
.service-card--grey h3 { color: #5a5d6e; }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: .65rem;
  line-height: 1.3;
}

.service-card p { font-size: .875rem; color: var(--warm-grey); margin: 0; }

/* ── TESTIMONIALS ───────────────────────── */
.success-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #c9a84c 100%);
  border-radius: 16px;
  padding: 2.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  box-shadow: 0 6px 28px rgba(184,148,74,0.22);
}
.success-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.success-number {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.success-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  font-style: italic;
}
.success-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
}
.s-badge {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .8rem;
  letter-spacing: .04em;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.testi-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: .8rem;
  border-top: 4px solid var(--gold);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.11);
}
.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: .1em;
}
.testi-text {
  font-size: .925rem;
  color: var(--warm-grey);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  flex: 1;
}
.testi-author {
  font-size: .825rem;
  font-weight: 700;
  color: var(--mauve);
  margin: 0;
  letter-spacing: .02em;
}

/* ── PRICING ────────────────────────────── */
.pricing-note {
  font-size: 1rem;
  color: var(--warm-grey);
  max-width: 580px;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  background: linear-gradient(160deg, #fff8ee 0%, #fef3e2 100%);
  border: 2px solid var(--ochre);
  position: relative;
}

.pricing-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  align-self: flex-start;
  margin-bottom: .25rem;
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--dark-brown);
  line-height: 1;
}
.pricing-per {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--warm-grey);
}

.pricing-sub {
  font-size: .82rem;
  color: var(--warm-grey);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

.pricing-icon {
  font-size: 2rem;
  margin-bottom: .25rem;
}

.pricing-card h3 {
  font-size: 1.25rem;
  color: var(--dark-brown);
  margin: 0;
}

.pricing-card > p {
  font-size: .9rem;
  color: var(--warm-grey);
  margin: 0;
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin: .25rem 0;
  flex: 1;
}
.pricing-includes li {
  position: relative;
  padding-left: 1.4rem;
  font-size: .875rem;
  color: var(--warm-grey);
  margin-bottom: .5rem;
}
.pricing-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .6rem;
  top: .25rem;
}

.pricing-contact {
  font-size: .85rem;
  font-weight: 700;
  color: var(--mauve-deep);
  margin: 0;
  padding-top: .5rem;
  border-top: 1px solid rgba(201,168,178,.3);
}

.pricing-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  max-width: 760px;
}
.pricing-disclaimer span {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .2rem;
}
.pricing-disclaimer p {
  font-size: .875rem;
  color: var(--warm-grey);
  font-style: italic;
  margin: 0;
}

/* ── WHY CHOOSE ─────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-check {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: .15rem;
  width: 24px;
  text-align: center;
}

.why-card h3 {
  font-size: 1rem;
  color: var(--dark-brown);
  margin-bottom: .4rem;
}
.why-card p { font-size: .875rem; color: var(--warm-grey); margin: 0; }

/* ── SESSION ROOM IMAGE ─────────────────── */
.session-room-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
  max-height: 460px;
}

.session-room-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform .8s ease;
}
.session-room-wrap:hover .session-room-img {
  transform: scale(1.03);
}

.session-room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30,10,20,.72) 0%,
    rgba(30,10,20,.25) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 3rem;
}

.session-room-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255,240,210,.95);
  max-width: 540px;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* ── SESSIONS ───────────────────────────── */
.sessions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.session-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
}

.session-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.session-card h3 {
  font-size: 1.5rem;
  color: var(--mauve-dark);
  margin-bottom: 1.25rem;
}

.session-card ul { list-style: none; padding: 0; }
.session-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: .65rem;
  font-size: .925rem;
  color: var(--warm-grey);
}
.session-card li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .65rem;
  top: .15rem;
}

.transport-notice {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: rgba(201,168,178,.15);
  border: 1px solid rgba(201,168,178,.4);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
}
.notice-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.transport-notice p { font-size: .85rem; color: var(--warm-grey); margin: 0; }

/* ── CONTACT ────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }

.contact-item strong { display: block; color: var(--charcoal); margin-bottom: .2rem; font-size: .875rem; letter-spacing: .05em; text-transform: uppercase; }
.contact-item p { color: var(--warm-grey); margin: 0; font-size: .925rem; }
.contact-item a { color: var(--mauve-deep); transition: color var(--transition); }
.contact-item a:hover { color: var(--gold-dark); }
.contact-note { font-size: .8rem; color: var(--mauve); margin-top: .15rem; }

.contact-extra {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

/* ── BOOKING FORM ───────────────────────── */
/* ── BOOKING FLORAL DECORATIONS ─────────── */
.booking-floral {
  position: relative;
  overflow: hidden;
}
.floral-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.floral-tl {
  width: 340px; height: 340px;
  top: -40px; left: -40px;
  opacity: .9;
}
.floral-br {
  width: 340px; height: 340px;
  bottom: -40px; right: -40px;
  opacity: .9;
}
.butterfly-1 {
  width: 90px; height: 68px;
  top: 60px; right: 120px;
  opacity: .85;
  animation: flutter 5s ease-in-out infinite;
}
.butterfly-2 {
  width: 68px; height: 52px;
  bottom: 80px; left: 160px;
  opacity: .75;
  animation: flutter 6.5s ease-in-out infinite reverse;
}
.petals-mid {
  width: 260px; height: 130px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: .8;
}
@keyframes flutter {
  0%,100% { transform: translateY(0) rotate(-3deg) scaleX(1); }
  25%      { transform: translateY(-6px) rotate(2deg) scaleX(.95); }
  50%      { transform: translateY(-10px) rotate(-1deg) scaleX(1.04); }
  75%      { transform: translateY(-4px) rotate(3deg) scaleX(.97); }
}
.booking-floral .container {
  position: relative;
  z-index: 1;
}

.booking-intro {
  font-size: 1.05rem;
  color: var(--warm-grey);
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group--full { margin-bottom: 1.5rem; }

label {
  font-size: .825rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--charcoal);
}
.req { color: var(--mauve-deep); }

input[type=text],
input[type=tel],
input[type=email],
input[type=datetime-local],
select,
textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(201,168,178,.5);
  border-radius: 8px;
  font-size: max(1rem, 16px); /* ≥16px prevents iOS auto-zoom */
  color: var(--charcoal);
  background: #FDFAF8;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a07080' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 110px; }

.form-checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 2rem;
}

.form-checkbox input[type=checkbox] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--gold-dark);
  margin-top: .15rem;
  cursor: pointer;
}

.form-checkbox label {
  font-size: .85rem;
  font-weight: 400;
  color: var(--warm-grey);
  letter-spacing: 0;
  cursor: pointer;
}

.form-actions { text-align: center; }

.btn-submit {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--mauve);
  margin-top: 1rem;
}

/* ── REVIEW SUBMISSION ──────────────────── */
.review-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--warm-grey);
  line-height: 1.75;
}

.review-form-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.review-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.rv-opt {
  font-size: .75rem;
  font-weight: 400;
  color: var(--mauve);
  letter-spacing: 0;
}

/* ── Star Rating ── */
.star-rating {
  display: flex;
  flex-direction: row-reverse;   /* reverse so CSS sibling trick works */
  justify-content: flex-end;
  gap: .25rem;
  margin-top: .35rem;
}

.star-rating input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.star-rating label {
  font-size: 2.4rem;
  color: #ddd;
  cursor: pointer;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1;
  transition: color .15s, transform .15s;
  padding: 0 .1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* fill all stars from selected back (works because of flex-direction: row-reverse) */
.star-rating input[type=radio]:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--ochre);
}

.star-rating label:hover { transform: scale(1.15); }

.star-hint {
  font-size: .78rem;
  color: var(--mauve);
  margin-top: .35rem;
  font-style: italic;
  transition: color .2s;
}

/* ── DISCLAIMER ─────────────────────────── */
.disclaimer-box {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  border-left: 4px solid var(--ochre);
  box-shadow: var(--shadow);
}

.disclaimer-box h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--dark-brown);
  margin-bottom: 1.25rem;
}

.disclaimer-box p {
  font-size: .9rem;
  color: var(--warm-grey);
  margin-bottom: .9rem;
}

.disclaimer-box a { color: var(--brown-mid); text-decoration: underline; }
.disclaimer-box a:hover { color: var(--ochre-dark); }

/* ── FOOTER ─────────────────────────────── */
.site-footer {
  background: var(--dark-brown);
  padding: 4rem 0 2rem;
  text-align: center;
}

/* Footer logo — dark background so use screen to make black vanish & gold glow */
.footer-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: .5rem;
}
.footer-logo-img {
  height: 110px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,.3));
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--blush);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: .825rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-social {
  margin-bottom: 2rem;
}
.footer-social a {
  font-size: .875rem;
  color: #25D366;
  transition: opacity var(--transition);
}
.footer-social a:hover { opacity: .8; }

.footer-copy {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}

/* ── FLOATING WHATSAPP ──────────────────── */
.floating-wa-group {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  z-index: 999;
}
.floating-wa {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  position: relative;
}
.floating-wa--sg {
  background: #128C7E;
  box-shadow: 0 4px 20px rgba(18,140,126,.45);
}
.floating-wa--sg:hover {
  box-shadow: 0 8px 30px rgba(18,140,126,.55);
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,.55);
}
.wa-flag {
  font-size: .65rem;
  line-height: 1;
  position: absolute;
  bottom: 6px;
  right: -2px;
  background: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  font-size: .75rem;
}

/* ── SCROLL ANIMATIONS ──────────────────── */
.reveal, .reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible, .reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered children */
.reveal-up:nth-child(2) { transition-delay: .1s; }
.reveal-up:nth-child(3) { transition-delay: .2s; }
.reveal-up:nth-child(4) { transition-delay: .3s; }
.reveal-up:nth-child(5) { transition-delay: .4s; }
.reveal-up:nth-child(6) { transition-delay: .5s; }
.reveal-up:nth-child(7) { transition-delay: .6s; }
.reveal-up:nth-child(8) { transition-delay: .7s; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* ── Flexible container baseline ───────── */
.container {
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

/* ── Section padding uses clamp ─────────── */
.section {
  padding: clamp(60px, 12vw, 100px) 0;
}

/* ── tablet (≤1024px) ───────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--featured { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid > :last-child { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── mobile (≤768px) ────────────────────── */
@media (max-width: 768px) {

  /* ── MOBILE NAV OVERLAY ── */
  .hamburger { display: flex; }

  .site-header { z-index: 1200; }

  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100dvh;
    background: #3B1F0E;           /* solid dark brown — no transparency */
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding-top: calc(88px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
    padding-left:  env(safe-area-inset-left,  0px);
    padding-right: env(safe-area-inset-right, 0px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* slide-in from right */
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1),
                opacity   0.32s cubic-bezier(0.4,0,0.2,1),
                visibility 0.32s;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }

  .nav-links li {
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .nav-links li:first-child { border-top: 1px solid rgba(255,255,255,.08); }

  .nav-links a {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
    color: var(--cream);
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
    letter-spacing: .08em;
    transition: background var(--transition), color var(--transition);
  }
  .nav-links a:hover,
  .nav-links a:active { color: var(--ochre-light); background: rgba(255,255,255,.05); }
  .nav-links a::after { display: none; }

  .nav-cta {
    margin-top: .5rem;
    min-height: 52px;
    padding: .75rem 2.5rem;
    border-radius: 50px;
    align-self: center;
    width: auto;
  }

  /* ── LAYOUT ── */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }

  .founder-grid { grid-template-columns: 1fr; }
  .founder-portrait-wrap { max-width: 280px; margin: 0 auto; }

  .team-grid { grid-template-columns: 1fr; max-width: 100%; margin: 0; }
  .team-bio {
    padding: clamp(1.2rem, 4vw, 2rem)
             clamp(1rem,  4vw, 2rem)
             clamp(1.5rem,5vw, 2.5rem);
  }
  .team-name { font-size: clamp(1.4rem, 5vw, 1.75rem); }
  .expertise-list { grid-template-columns: 1fr; }

  .vm-grid { grid-template-columns: 1fr; }
  .vm-grid > :last-child { max-width: 100%; }

  .sessions-grid { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .success-banner {
    padding: clamp(1.2rem, 4vw, 1.8rem) clamp(1rem, 4vw, 1.4rem);
  }
  .success-number { font-size: clamp(3rem, 14vw, 5.5rem); }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { grid-column: auto; max-width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form,
  .review-form {
    padding: clamp(1.5rem, 5vw, 2rem)
             clamp(1rem,  4vw, 1.25rem);
    border-radius: 8px;
  }
  .star-rating label { font-size: 2rem; }

  .disclaimer-box {
    padding: clamp(1.5rem, 5vw, 1.75rem)
             clamp(1rem,  4vw, 1.5rem);
  }

  .hero-content { padding: 0 clamp(1rem, 5vw, 2rem); }
  .hero-logo    { width: clamp(120px, 38vw, 200px); }
  .hero-desc    { font-size: clamp(.9rem, 3.5vw, 1.05rem); }

  /* floating WA — respect safe-area */
  .floating-wa-group {
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    right:  calc(1.5rem + env(safe-area-inset-right,  0px));
  }

  .footer-links { gap: 1rem; }
  .footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
}

/* ── small mobile (≤480px) ──────────────── */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-links { gap: .75rem; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .floral-tl, .floral-br { width: 180px; height: 180px; }
  .butterfly-1 { width: 60px; height: 46px; }
  .butterfly-2 { width: 46px; height: 35px; }
  .member-review-item { padding: .75rem .9rem; }
  .pricing-amount { font-size: clamp(2rem, 8vw, 2.8rem); }
}

/* ── very small (≤360px) ────────────────── */
@media (max-width: 360px) {
  .nav-links a { font-size: 1rem; min-height: 52px; }
  .team-bio { padding: 1rem; }
  .booking-form { padding: 1rem .875rem; }
  .btn-primary, .btn-submit {
    padding: .75rem 1.5rem;
    font-size: .82rem;
  }
  .success-number { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .expertise-list li { font-size: .8rem; }
  .section { padding: 50px 0; }
}
