/* ================================
   AADHAVAN — Global Styles
   ================================ */

:root {
  /* Lilac + Orange aesthetic palette */
  --bg-ivory: #FDFAFD;          /* very light lilac-tinted cream */
  --bg-blush: #F6EEF8;          /* soft lilac wash for sections */
  --accent-rose-gold: #9B6FB8;  /* deeper lilac (used for borders/decor) */
  --accent-terracotta: #FF9A4D; /* warm orange for CTAs */
  --accent-sage: #D7C5E8;       /* pale lilac for available states */
  --accent-olive: #7A57A0;      /* rich lilac for subtle labels */
  --text-walnut: #3A2A4A;       /* deep plum-walnut for headings */
  --text-taupe: #5D4A6B;        /* muted lavender-taupe body */
  --text-muted: #9889A6;        /* soft lilac-grey */
  --surface-white: #FFFFFF;
  --border-peach: #E6D9EE;      /* lilac border */
  --error-dusty-rose: #C47A7A;
  --success-fern: #7A9E7E;
  --gold-highlight: #FFA500;
  --lilac: #C8A2C8;
  --orange: #FFA500;
  --grad-main: linear-gradient(135deg, #C8A2C8 0%, #FFA500 100%);
  --grad-soft: linear-gradient(135deg, rgba(200,162,200,0.15), rgba(255,165,0,0.12));

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Jost', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg-ivory);
  color: var(--text-walnut);
  font-family: var(--ff-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

/* Linen texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image:
    repeating-linear-gradient(45deg, #7A57A0 0 1px, transparent 1px 3px),
    repeating-linear-gradient(-45deg, #7A57A0 0 1px, transparent 1px 4px);
  background-size: 4px 4px, 5px 5px;
}

/* ========== TYPOGRAPHY ========== */
.eyebrow {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--text-muted);
}

.section-heading {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 40px;
  color: var(--text-walnut);
  line-height: 1.15;
}

.section-heading.italic {
  font-style: italic;
  font-weight: 400;
}

.section-subhead {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-taupe);
  line-height: 1.6;
}

p { font-size: 17px; line-height: 1.7; color: var(--text-taupe); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 16px 36px;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  background: transparent;
}

.btn-primary {
  background: var(--grad-main);
  color: #fff;
  background-size: 200% 200%;
  background-position: 0% 50%;
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200,162,200,0.45);
}
.btn-primary:active { transform: translateY(0) scale(0.97); }

.btn-outline {
  border-color: var(--accent-rose-gold);
  color: var(--accent-rose-gold);
}
.btn-outline:hover {
  background: rgba(200,162,200,0.12);
  transform: translateY(-2px);
}

/* ========== DIVIDER ========== */
.hr-gold {
  width: 60px;
  height: 1px;
  background: var(--accent-rose-gold);
  border: 0;
  display: block;
}

.ornament {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-rose-gold);
}
.ornament::before, .ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: currentColor;
}
.ornament .diamond {
  width: 6px; height: 6px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ========== LAYOUT ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

section { position: relative; z-index: 2; }

.page { display: none; }
.page.active { display: block; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: rgba(253,248,243,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 48px;
  transition: height 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.navbar.compact {
  height: 56px;
  border-bottom-color: rgba(230,217,238,0.6);
}
.nav-left { display: flex; align-items: center; gap: 12px; }
.monogram {
  width: 28px; height: 28px;
  border: 1px solid var(--accent-rose-gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent-rose-gold);
  font-family: var(--ff-serif);
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  position: relative;
}
.monogram::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-rose-gold);
}
.wordmark {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.35em;
  color: var(--accent-rose-gold);
  text-transform: uppercase;
}
.nav-right {
  margin-left: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-link {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-taupe);
  cursor: pointer;
  transition: color 0.2s var(--ease-out);
  position: relative;
  padding: 8px 0;
  background: none; border: 0;
}
.nav-link:hover { color: var(--accent-rose-gold); }
.nav-link.active {
  color: var(--accent-terracotta);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent-terracotta);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}
.hero-mandala {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  opacity: 0.28;
  color: #6B3F8F;
  animation: rotate 120s linear infinite;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 40%, rgba(200,162,200,0.25) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 60%, rgba(255,165,0,0.15) 0%, transparent 55%);
  pointer-events: none;
}
@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-content {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.hero-line-1 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 40px;
  color: var(--text-walnut);
  line-height: 1.1;
}
.hero-line-2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  font-size: 68px;
  color: var(--text-walnut);
  line-height: 1.1;
  margin-top: 8px;
}
.hero-divider {
  margin: 28px auto;
}
.hero p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 18px;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 36px;
}

/* Hero load animation */
.hero-eyebrow, .hero-line-1, .hero-line-2, .hero-paragraph, .hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out) forwards;
}
.hero-eyebrow { animation-delay: 0.5s; }
.hero-line-1 { animation-delay: 0.7s; }
.hero-line-2 { animation-delay: 0.9s; }
.hero-divider {
  width: 0;
  animation: growLine 0.5s var(--ease-out) 1.1s forwards;
}
.hero-paragraph { animation-delay: 1.3s; }
.hero-buttons { animation-delay: 1.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes growLine {
  to { width: 60px; }
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}
.section.blush { background: var(--bg-blush); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .ornament { margin-bottom: 24px; }

/* Fade-up observer class */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== COUNTERS ========== */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.counter {
  text-align: center;
  border-right: 1px solid var(--border-peach);
  padding: 16px 0;
}
.counter:last-child { border-right: 0; }
.counter-num {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 56px;
  color: var(--accent-rose-gold);
  line-height: 1;
}
.counter-num .plus { font-size: 36px; }
.counter-label {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-taupe);
  margin-top: 12px;
}

/* ========== SERVICE CARDS ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface-white);
  border: 1px solid var(--border-peach);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(62,39,35,0.08);
}
.service-card .icon {
  color: var(--accent-rose-gold);
  margin: 0 auto;
}
.service-card h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-walnut);
  margin-top: 20px;
}
.service-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
}
.service-card::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-rose-gold);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease-out);
}
.service-card:hover::after { width: 100%; }

/* ========== FEATURED EVENT ========== */
.featured-header .eyebrow {
  color: var(--accent-olive);
  letter-spacing: 0.5em;
}
.photo-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 24px;
  scrollbar-color: var(--accent-rose-gold) transparent;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}
.photo-strip::-webkit-scrollbar { height: 4px; }
.photo-strip::-webkit-scrollbar-track { background: var(--border-peach); }
.photo-strip::-webkit-scrollbar-thumb { background: var(--accent-rose-gold); border-radius: 2px; }

.strip-photo {
  flex: 0 0 380px;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transition: transform 0.4s var(--ease-out);
}
.strip-photo:hover { transform: scale(1.02); }

.featured-narrative {
  max-width: 600px;
  margin-top: 32px;
}
.featured-narrative p {
  font-size: 16px;
  line-height: 1.7;
}
.arrow-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--accent-terracotta);
  text-decoration: none;
  position: relative;
  letter-spacing: 0.05em;
}
.arrow-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease-out);
}
.arrow-link:hover::after { width: 100%; }

/* ========== LOOKBOOK ========== */
.lookbook-grid {
  display: grid;
  grid-template-columns: 340px 400px 340px;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.lookbook-photo {
  border-radius: 4px;
  border: 1px solid var(--border-peach);
  overflow: hidden;
  position: relative;
}
.lookbook-photo.portrait { height: 480px; }
.lookbook-photo.square { height: 400px; transform: translateY(-40px); }
.lookbook-photo.portrait.right { transform: translateY(0); }

.lookbook-photo .caption {
  position: absolute;
  bottom: -28px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.lookbook-photo:hover .caption { opacity: 1; }

.center-link {
  text-align: center;
  margin-top: 80px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: opacity 0.4s var(--ease-out);
}
.testimonial-card {
  background: var(--surface-white);
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(62,39,35,0.05);
  border-left: 3px solid var(--accent-rose-gold);
  position: relative;
}
.testimonial-card .quote-mark {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--ff-serif);
  font-size: 48px;
  color: var(--accent-rose-gold);
  opacity: 0.15;
  line-height: 1;
}
.stars {
  display: flex; gap: 2px;
  margin-bottom: 16px;
}
.star {
  width: 14px; height: 14px;
  color: var(--gold-highlight);
}
.testimonial-card blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-walnut);
  line-height: 1.7;
}
.testimonial-card .client {
  margin-top: 20px;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-taupe);
}
.testimonial-card .event-meta {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.slider-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-peach);
  background: transparent;
  color: var(--text-taupe);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease-out);
}
.slider-arrow:hover {
  border-color: var(--accent-rose-gold);
  color: var(--accent-rose-gold);
}
.slider-dots {
  display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-peach);
  cursor: pointer;
  transition: background 0.2s var(--ease-out);
  border: 0;
}
.dot.active { background: var(--accent-terracotta); }

/* ========== CALENDAR TEASER ========== */
.cal-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cal-teaser-text h2 {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--text-walnut);
  line-height: 1.3;
}

/* ========== CALENDAR ========== */
.calendar {
  background: var(--surface-white);
  border: 1px solid var(--border-peach);
  border-radius: 8px;
  padding: 24px;
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.cal-head h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-walnut);
}
.cal-nav {
  display: flex; gap: 8px;
}
.cal-nav button {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-peach);
  background: transparent;
  color: var(--text-taupe);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  display: inline-flex; align-items: center; justify-content: center;
}
.cal-nav button:hover {
  border-color: var(--accent-rose-gold);
  color: var(--accent-rose-gold);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  padding: 8px 0;
}
.cal-day {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 14px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  border: 1.5px solid transparent;
}
.cal-day.empty { pointer-events: none; }
.cal-day.available {
  color: var(--accent-olive);
  background: rgba(168,181,162,0.12);
}
.cal-day.available:hover {
  background: rgba(168,181,162,0.28);
}
.cal-day.booked {
  color: var(--error-dusty-rose);
  opacity: 0.7;
  text-decoration: line-through;
  cursor: not-allowed;
}
.cal-day.past {
  color: var(--text-muted);
  opacity: 0.4;
  pointer-events: none;
}
.cal-day.today {
  color: var(--gold-highlight);
  border-color: var(--gold-highlight);
}
.cal-day.selected {
  background: var(--accent-terracotta);
  color: #fff;
}

/* Larger calendar for Book Now page */
.calendar.large {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}
.calendar.large .cal-head h3 { font-size: 28px; }
.calendar.large .cal-day { font-size: 16px; }
.calendar.large .cal-dow { font-size: 11px; padding: 12px 0; }
.calendar.large .cal-grid { gap: 6px; }

/* ========== FOOTER ========== */
.ig-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.ig-strip .ig-tile {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.ig-strip .ig-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,245,238,0.5);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.ig-strip .ig-tile:hover::after { opacity: 1; }

footer {
  background: var(--text-walnut);
  color: #E6D9EE;
  padding: 80px 0 32px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: -120px; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--text-walnut));
  pointer-events: none;
}
.footer-top { text-align: center; margin-bottom: 60px; }
.footer-top .monogram {
  width: 48px; height: 48px;
  border-color: var(--accent-rose-gold);
  font-size: 22px;
  margin: 0 auto 12px;
}
.footer-top .wordmark {
  font-size: 20px;
  color: var(--accent-rose-gold);
}
.footer-top .tagline {
  font-family: var(--ff-sans);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: #C8B8D6;
  margin-top: 12px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--accent-rose-gold);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col a, .footer-col .footer-line {
  display: block;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 14px;
  color: #E6D9EE;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s var(--ease-out);
}
.footer-col a:hover { color: var(--accent-rose-gold); }
.wa-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin: 8px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(200,162,200,0.25);
  padding-top: 24px;
  text-align: center;
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 12px;
  color: #A898B8;
}

/* ========== GALLERY ========== */
.gallery-hero {
  height: 45vh;
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-blush), var(--bg-ivory));
  padding-top: 72px;
}
.gallery-hero h1 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 44px;
  color: var(--text-walnut);
}

.filter-bar {
  position: sticky;
  top: 56px;
  z-index: 900;
  background: rgba(253,248,243,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-peach);
  padding: 16px 32px;
}
.filter-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--border-peach);
  background: transparent;
  color: var(--text-taupe);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}
.pill:hover {
  border-color: var(--accent-rose-gold);
  color: var(--accent-rose-gold);
}
.pill.active {
  background: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
  color: #fff;
}

.editorial-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 60px 0;
}
.eblock {
  display: grid;
  gap: 16px;
}
.eblock.a {
  grid-template-areas: "big big" "p1 p2";
  grid-template-columns: 1fr 1fr;
}
.eblock.a .big { grid-area: big; height: 400px; }
.eblock.a .p1 { grid-area: p1; height: 480px; }
.eblock.a .p2 { grid-area: p2; height: 480px; }
.eblock.b {
  grid-template-areas: "sq1 sq2" "big big";
  grid-template-columns: 1fr 1fr;
}
.eblock.b .sq1, .eblock.b .sq2 { aspect-ratio: 1; }
.eblock.b .big { grid-area: big; height: 400px; }
.eblock.c {
  grid-template-columns: 2fr 3fr;
}
.eblock.c > * { height: 540px; }
.eph {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
}
.eph:hover { transform: scale(1.02); }
.eph-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 44px;
  background: rgba(62,39,35,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease-out);
}
.eph:hover .eph-caption { transform: translateY(0); }
.eph-caption .name {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #fff;
}
.eph-caption .tag {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rose-gold);
  background: rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Placeholder photo — striped lilac wash */
.ph-placeholder {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(200,162,200,0.14) 0 12px,
      rgba(255,165,0,0.08) 12px 24px
    ),
    linear-gradient(135deg, #F3D4F3, #E8C4E8);
  display: flex; align-items: center; justify-content: center;
}
.ph-placeholder span {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: rgba(62,39,35,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  background: rgba(253,248,243,0.6);
  border-radius: 2px;
}

/* Lilac-orange photo placeholders */
.ph-warm-1 { background: linear-gradient(135deg, #F5C69A, #FFA500 60%, #C8A2C8); }
.ph-warm-2 { background: linear-gradient(135deg, #E8C4E8, #C8A2C8 70%); }
.ph-warm-3 { background: linear-gradient(135deg, #FFD8B0, #FFA500); }
.ph-warm-4 { background: linear-gradient(160deg, #C8A2C8, #9B6FB8); }
.ph-warm-5 { background: linear-gradient(135deg, #F3D4F3, #C8A2C8 60%, #FFA500); }
.ph-warm-6 { background: linear-gradient(135deg, #FFF0E0, #F3D4F3 50%, #C8A2C8); }
.ph-warm-7 { background: linear-gradient(135deg, #9B6FB8, #3A2A4A); }
.ph-warm-8 { background: linear-gradient(135deg, #D7C5E8, #7A57A0); }
.ph-warm-9 { background: linear-gradient(135deg, #FFB870, #C8A2C8); }
.ph-warm-10 { background: linear-gradient(135deg, #FDFAFD, #C8A2C8 50%, #FFA500); }

.photo-inner {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 24px;
}
.photo-inner .scrim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.12), transparent 60%);
}
.photo-inner .mock-label {
  position: relative;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 10px;
  color: rgba(253,248,243,0.85);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(62,39,35,0.35);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(62,39,35,0.92);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
  animation: fadeIn 0.3s var(--ease-out);
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 100%; max-height: 100%;
  border-radius: 4px;
  animation: lightboxIn 0.3s var(--ease-out);
}
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.lb-close, .lb-arrow {
  position: absolute;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: color 0.2s var(--ease-out);
}
.lb-close { top: 24px; right: 24px; width: 40px; height: 40px; }
.lb-arrow { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lb-arrow.prev { left: 24px; }
.lb-arrow.next { right: 24px; }
.lb-close:hover, .lb-arrow:hover { color: #fff; }
.lb-caption {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* ========== BOOK NOW ========== */
.bn-header { padding: 120px 0 40px; text-align: center; }
.bn-header h1 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 42px;
  color: var(--text-walnut);
}
.legend {
  display: flex; justify-content: center; gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.legend-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-sans); font-weight: 300; font-size: 12px;
  color: var(--text-taupe);
  letter-spacing: 0.05em;
}
.legend-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.legend-dot.avail { background: var(--accent-sage); }
.legend-dot.booked { background: var(--error-dusty-rose); }
.legend-dot.past { background: var(--text-muted); }
.legend-dot.today { background: var(--gold-highlight); }

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(253,248,243,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s var(--ease-out);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--surface-white);
  width: 520px; max-width: 100%;
  max-height: 85vh; overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(62,39,35,0.12);
  padding: 48px 40px;
  position: relative;
  animation: modalIn 0.35s var(--ease-out);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: transparent; border: 0;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s var(--ease-out);
}
.modal-close:hover { color: var(--text-walnut); }
.modal .eyebrow { color: var(--accent-olive); letter-spacing: 0.3em; }
.modal h2 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--text-walnut);
  margin-top: 8px;
}
.modal .date-chip {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent-terracotta);
  font-style: italic;
  font-family: var(--ff-serif);
  font-weight: 400;
}

/* Form fields — floating label */
.field {
  position: relative;
  margin-top: 20px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-peach);
  padding: 20px 0 8px;
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-walnut);
  outline: none;
}
.field textarea { resize: vertical; min-height: 90px; }
.field label {
  position: absolute;
  top: 20px; left: 0;
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label,
.field.filled label {
  top: 0;
  font-size: 11px;
  color: var(--accent-rose-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field .underline {
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent-rose-gold);
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}
.field input:focus ~ .underline,
.field textarea:focus ~ .underline {
  width: 100%; left: 0;
}
.field .sub-hint {
  font-style: italic;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.contact-toggles {
  display: flex; gap: 8px; margin-top: 8px;
}
.contact-toggles .pill { flex: 1; text-align: center; padding: 10px 0; }

.submit-full {
  width: 100%;
  margin-top: 32px;
  padding: 16px;
}

/* Thank you */
.thank-you {
  text-align: center;
  padding: 20px 0;
}
.check-circle {
  width: 60px; height: 60px;
  margin: 0 auto 24px;
}
.check-circle svg { width: 100%; height: 100%; }
.check-circle .circle {
  fill: none; stroke: var(--success-fern); stroke-width: 2;
  stroke-dasharray: 170; stroke-dashoffset: 170;
  animation: drawCircle 0.5s var(--ease-out) forwards;
}
.check-circle .check {
  fill: none; stroke: var(--success-fern); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: drawCircle 0.3s var(--ease-out) 0.5s forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }

/* ========== ABOUT ========== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story-photo-wrap {
  position: relative;
  padding-right: 16px;
  padding-bottom: 16px;
}
.story-photo-wrap::before {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  background: var(--accent-rose-gold);
  opacity: 0.15;
  border-radius: 6px;
}
.story-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 6px;
  border: 1px solid var(--border-peach);
  overflow: hidden;
  z-index: 1;
}
.story-text .eyebrow { color: var(--accent-olive); }
.story-text h2 {
  font-family: var(--ff-serif); font-weight: 600;
  font-size: 36px; color: var(--text-walnut);
  margin-top: 8px;
}
.story-text hr { margin: 20px 0; }
.story-text p + p { margin-top: 16px; }
.story-text p { font-size: 16px; line-height: 1.8; }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.pillar {
  text-align: center;
  max-width: 240px;
  margin: 0 auto;
}
.pillar .icon { color: var(--accent-rose-gold); margin: 0 auto; }
.pillar h3 {
  font-family: var(--ff-serif); font-weight: 600;
  font-size: 20px; color: var(--text-walnut);
  margin-top: 16px;
}
.pillar p {
  font-size: 14px; line-height: 1.6; margin-top: 8px;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 60px;
  align-items: start;
}
.contact-item {
  display: flex; gap: 16px;
  margin-top: 24px;
  align-items: flex-start;
}
.contact-item .c-icon {
  color: var(--accent-rose-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item .c-body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--text-taupe);
}
.contact-item .c-body .sub {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}
.contact-form-card {
  background: var(--surface-white);
  box-shadow: 0 8px 40px rgba(62,39,35,0.06);
  border-radius: 8px;
  padding: 40px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .services-grid, .pillars { grid-template-columns: repeat(2, 1fr); }
  .testimonial-track { grid-template-columns: 1fr; }
  .cal-teaser, .story-grid, .contact-grid, .footer-cols {
    grid-template-columns: 1fr; gap: 40px;
  }
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-photo.square { transform: none; }
  .hero-line-2 { font-size: 48px; }
  .eblock.a, .eblock.b, .eblock.c { grid-template-columns: 1fr; grid-template-areas: none; }
  .eblock.a .big, .eblock.a .p1, .eblock.a .p2,
  .eblock.b .big, .eblock.c > * { height: 320px; grid-area: auto; }
  .eblock.b .sq1, .eblock.b .sq2 { aspect-ratio: 16/10; }
}
@media (max-width: 767px) {
  .counters { grid-template-columns: 1fr 1fr; gap: 40px; }
  .counter { border-right: 0; }
  .services-grid, .pillars { grid-template-columns: 1fr; }
  .nav-right { display: none; }
  .hero-line-1 { font-size: 32px; }
  .hero-line-2 { font-size: 42px; }
  .ig-strip { grid-template-columns: repeat(3, 1fr); }
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .modal { padding: 32px 24px; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--accent-rose-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .fade-up { opacity: 1; transform: none; }
}


/* ============== BOOK NOW — Service Picker ============== */
.service-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}
.service-option {
  position: relative;
  background: var(--surface-white);
  border: 1px solid var(--border-peach);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.25s;
  font-family: inherit;
}
.service-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-option:hover {
  transform: translateY(-8px);
  border-color: var(--accent-rose-gold);
  box-shadow: 0 24px 60px -20px rgba(155, 111, 184, 0.3);
}
.service-option:hover::before { opacity: 1; }
.service-option > * { position: relative; z-index: 1; }
.so-icon {
  display: inline-flex;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--grad-soft);
  align-items: center;
  justify-content: center;
  color: var(--accent-olive);
  margin-bottom: 24px;
}
.service-option h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--text-walnut);
  margin-bottom: 14px;
}
.service-option p {
  font-size: 15px;
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto 24px;
}
.so-cta {
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s;
}

@media (max-width: 767px) {
  .service-picker { grid-template-columns: 1fr; gap: 20px; }
  .service-option { padding: 36px 24px; }
}

/* ============== HOME — Feedback Section ============== */
.feedback-card {
  background: var(--surface-white);
  border: 1px solid var(--border-peach);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 14px 40px -20px rgba(58, 42, 74, 0.12);
}

/* Testimonials empty state */
.feedback-empty {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  background: var(--surface-white);
  border: 1px solid var(--border-peach);
  border-radius: 20px;
  box-shadow: 0 14px 40px -20px rgba(58, 42, 74, 0.12);
  position: relative;
  overflow: hidden;
}
.feedback-empty::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-soft);
  opacity: 0.5;
  pointer-events: none;
}
.feedback-empty > * { position: relative; z-index: 1; }
.feedback-empty-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-soft);
  color: var(--accent-rose-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(200,162,200,0.35);
}
.feedback-empty h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--text-walnut);
  margin-bottom: 12px;
}
.feedback-empty p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-taupe);
  max-width: 480px;
  margin: 0 auto 28px;
}
@media (max-width: 767px) {
  .feedback-empty { padding: 40px 24px; }
  .feedback-empty h3 { font-size: 22px; }
}
.submit-full {
  width: 100%;
  margin-top: 32px;
  justify-content: center;
}
@media (max-width: 767px) {
  .feedback-card { padding: 32px 24px; }
}

/* Star rating button hover */
.feedback-card button[type="button"] svg { transition: transform 0.2s; }
.feedback-card button[type="button"]:hover svg { transform: scale(1.15); }

/* ============== ABOUT — Story Grid ============== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}
.story-photo-wrap {
  position: sticky;
  top: 120px;
}
.story-photo {
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(58, 42, 74, 0.35);
}
.story-text .eyebrow { color: var(--accent-olive); margin-bottom: 12px; }
.story-text h2 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 44px;
  color: var(--text-walnut);
  line-height: 1.1;
  margin-bottom: 4px;
}
.story-text .hr-gold { margin: 24px 0 28px; max-width: 80px; }
.story-text p { margin-bottom: 20px; font-size: 16px; }

.about-me-box {
  background: var(--bg-blush);
  border-left: 3px solid var(--accent-terracotta);
  padding: 36px 40px;
  border-radius: 4px;
  max-width: 640px;
  margin: 20px auto 0;
}
.about-me-box .eyebrow { margin-bottom: 10px; }
.about-me-box h3 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--text-walnut);
  margin-bottom: 18px;
}
.about-me-box ul { list-style: none; padding: 0; }
.about-me-box ul li {
  font-size: 15px;
  color: var(--text-taupe);
  padding: 8px 0 8px 24px;
  position: relative;
}
.about-me-box ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-terracotta);
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-photo-wrap { position: static; }
  .story-text h2 { font-size: 32px; }
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-peach);
}
.c-icon {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-blush);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-olive);
}
.c-body {
  font-size: 16px;
  color: var(--text-walnut);
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.4;
}
.c-body .sub {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-form-card {
  background: var(--surface-white);
  border: 1px solid var(--border-peach);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: 0 14px 40px -20px rgba(58, 42, 74, 0.12);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-form-card { padding: 32px 24px; }
}

/* ============== BOOK NOW header ============== */
.bn-header {
  padding: 140px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-blush) 0%, var(--bg-ivory) 100%);
}
.bn-header h1 {
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: 52px;
  color: var(--text-walnut);
  line-height: 1.1;
}
.bn-header p { margin: 16px auto 0; color: var(--text-taupe); }
.legend {
  display: inline-flex;
  gap: 28px;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--surface-white);
  border: 1px solid var(--border-peach);
  border-radius: 100px;
  box-shadow: 0 6px 20px -10px rgba(58, 42, 74, 0.15);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-taupe);
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.legend-dot.avail { background: var(--accent-sage); border: 1px solid var(--accent-rose-gold); }
.legend-dot.booked { background: var(--border-peach); }
.legend-dot.past { background: #f0f0f0; opacity: 0.5; }
.legend-dot.today { background: var(--accent-terracotta); }

@media (max-width: 767px) {
  .bn-header h1 { font-size: 34px; }
  .legend { flex-wrap: wrap; gap: 14px 20px; padding: 12px 20px; justify-content: center; }
}

/* ============== ABOUT pillars hover polish ============== */
.pillars .pillar .icon {
  transition: transform 0.35s var(--ease-out), color 0.3s;
}
.pillars .pillar:hover .icon { transform: translateY(-4px) scale(1.08); color: var(--accent-terracotta); }

/* ============== Misc polish ============== */
.arrow-link { color: var(--accent-olive); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.arrow-link:hover { color: var(--accent-terracotta); }

.date-chip {
  display: inline-block;
  margin-top: 10px;
  font-style: italic;
  color: var(--accent-olive);
  font-family: var(--ff-serif);
  font-weight: 500;
}


/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at top, #F6EEF8 0%, var(--bg-ivory) 60%);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 30% 20%, rgba(200,162,200,0.35), transparent 60%),
    radial-gradient(ellipse 500px 400px at 70% 80%, rgba(255,165,0,0.20), transparent 60%);
  pointer-events: none;
}
.hero-mandala {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: rotateSlow 120s linear infinite;
}
@keyframes rotateSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  will-change: transform;
}
.hero-eyebrow {
  color: var(--accent-olive);
  margin-bottom: 28px;
}
.hero-line-1 {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 52px;
  line-height: 1.1;
  color: var(--text-walnut);
  letter-spacing: -0.01em;
}
.hero-line-2 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 700;
  font-size: 84px;
  line-height: 1.05;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.hero-divider { margin: 36px auto 28px; }
.hero-paragraph {
  max-width: 560px;
  margin: 0 auto 44px;
  font-size: 18px;
  color: var(--text-taupe);
}
.hero-buttons {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero { min-height: 85vh; padding: 120px 20px 80px; }
  .hero-line-1 { font-size: 32px; }
  .hero-line-2 { font-size: 46px; }
  .hero-paragraph { font-size: 16px; margin-bottom: 32px; }
  .hero-mandala svg { width: 540px; height: 540px; }
}

/* Fade-in keyframe used on page swap */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CROSS-PLATFORM / TOUCH COMPATIBILITY
   ============================================================ */

/* Remove iOS blue tap flash on all interactive elements */
* { -webkit-tap-highlight-color: transparent; }

/* Eliminate 300ms tap delay on buttons/links/pills/days */
button, a, .pill, .cal-day, .nav-link, .lb-arrow, .lb-close {
  touch-action: manipulation;
}

/* iOS safe-area padding so content isn't hidden by home indicator */
footer {
  padding-bottom: calc(32px + env(safe-area-inset-bottom));
}

/* Fix iOS Safari 100vh — use 100svh (safe viewport height) with fallback */
.hero {
  min-height: 100svh;
}

/* ---- Hamburger button (mobile only) ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.ham-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-taupe);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s var(--ease-out);
  transform-origin: center;
}
.ham-bar.open:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham-bar.open:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-bar.open:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---- Mobile menu overlay + slide-in drawer ---- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(58,42,74,0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-menu {
  position: absolute;
  top: 0; right: 0;
  width: min(300px, 82vw);
  height: 100%;
  background: var(--bg-ivory);
  padding: 90px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: -8px 0 40px rgba(58,42,74,0.18);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-link {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--text-walnut);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--border-peach);
  text-align: left;
  padding: 16px 0;
  cursor: pointer;
  letter-spacing: 0.04em;
  width: 100%;
  transition: color 0.2s var(--ease-out);
}
.mobile-nav-link:last-child { border-bottom: 0; }
.mobile-nav-link.active { color: var(--accent-terracotta); }
.mobile-nav-link:active { color: var(--accent-rose-gold); }

/* Show hamburger, hide desktop nav links on mobile */
@media (max-width: 767px) {
  .hamburger { display: flex; }
}

/* ---- Filter pills: horizontal scroll on mobile ---- */
@media (max-width: 767px) {
  .filter-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-pills::-webkit-scrollbar { display: none; }
  .pill { flex-shrink: 0; }
}

/* ---- Lightbox arrows: bigger touch target on mobile ---- */
@media (max-width: 767px) {
  .lb-arrow {
    width: 52px;
    height: 52px;
  }
}

/* ---- Testimonial slider: prevent accidental horizontal scroll on body ---- */
.testimonial-slider { touch-action: pan-y; }

/* ---- Minimum 44px touch target for calendar days ---- */
@media (max-width: 767px) {
  .cal-day { min-width: 36px; min-height: 36px; font-size: 14px; }
  .calendar.large { padding: 20px 16px; }
  .calendar.large .cal-day { font-size: 15px; }
}
