
/* ═══════════════════════════════════════════════════════════
   DreamersJoy Floral Studio — Cinematic Website
   Identity: Modern Minimal Luxury + Editorial Contemporary
   ═══════════════════════════════════════════════════════════ */

:root {
  --primary: #334155;
  --secondary: #F5F0EB;
  --accent1: #8B7355;
  --accent2: #C9B8A8;
  --accent3: #6B7C6E;
  --accent4: #D4B8A0;
  --dark: #1A1A2E;
  --light: #FAFAF8;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--primary);
  background: var(--light);
  overflow-x: hidden;
  line-height: 1.75;
  font-size: 19px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }
.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 14px;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(42px, 5.7vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--primary);
}
.fade-up { opacity: 1; transform: none; }
/* Only hide fade-ups once JS has confirmed it can animate them */
html.js-animations-ready .fade-up { opacity: 0; transform: translateY(40px); }

/* ═══════════════════════════════════════════════════════════
   1. NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}
.nav.scrolled {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(51, 65, 85, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 150px; width: 150px; transition: transform 0.3s var(--ease-out), filter 0.4s var(--ease-smooth); }
.nav-logo:hover img { transform: scale(1.05); }
/* Logo light on hero, dark on scroll */
.nav .nav-logo img { filter: brightness(0) invert(1) opacity(0.9); }
.nav.scrolled .nav-logo img { filter: none; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.9);
  position: relative;
  transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--primary); }
.nav.scrolled .nav-links a { color: var(--primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent1);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent1); }
.nav-cta {
  font-size: 12px !important;
  font-weight: 500 !important;
  padding: 10px 24px;
  border: 1px solid rgba(250,250,248,0.5);
  color: rgba(250,250,248,0.9) !important;
  border-radius: 0;
  transition: all 0.3s var(--ease-out) !important;
}
.nav-cta:hover { background: rgba(250,250,248,0.15); color: var(--light) !important; }
.nav.scrolled .nav-cta { border-color: var(--primary); color: var(--primary) !important; }
.nav.scrolled .nav-cta:hover { background: var(--primary); color: var(--light) !important; }
.nav.scrolled .nav-cta { border-color: var(--primary); color: var(--primary) !important; }
.nav.scrolled .nav-cta:hover { background: var(--primary); color: var(--light) !important; }
.nav-cta::after { display: none !important; }
/* nav-logo handled above with img tag */

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: rgba(250,250,248,0.9);
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav.scrolled .nav-hamburger span { background: var(--primary); }
.nav.scrolled .nav-hamburger span { background: var(--primary); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--light);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--primary);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
}

/* ═══════════════════════════════════════════════════════════
   2. HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 115vh;
  overflow: hidden;
  background: var(--secondary);
}
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(26,26,46,0.15) 0%, rgba(26,26,46,0.35) 50%, rgba(26,26,46,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
  margin-top: 14vh;
}
@media (max-width: 768px) {
  .hero-content { margin-top: 10vh; }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.8);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6.7vw, 88px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--light);
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: italic;
  color: var(--accent4);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 2.1vw, 22px);
  font-weight: 300;
  color: rgba(250,250,248,0.85);
  max-width: 52ch;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-shadow: 0 1px 20px rgba(0,0,0,0.2);
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  background: var(--primary);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}
.btn-primary:hover { background: var(--dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid var(--accent2);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
}
.btn-outline:hover { border-color: var(--primary); background: rgba(51,65,85,0.04); }
.hero .btn-primary { background: rgba(250,250,248,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(250,250,248,0.4); color: var(--light); }
.hero .btn-primary:hover { background: rgba(250,250,248,0.25); }
.hero .btn-outline { border-color: rgba(250,250,248,0.4); color: var(--light); }
.hero .btn-outline:hover { border-color: var(--light); background: rgba(250,250,248,0.15); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.6);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(250,250,248,0.5);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════════════
   2C. HOW TO WORK WITH US
   ═══════════════════════════════════════════════════════════ */
.how-to-work {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--light);
}
.how-to-work-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.how-to-work-header .section-heading { margin-bottom: 12px; }
.how-to-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-to-work-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.how-to-work-item .htw-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-out);
}
.how-to-work-item:hover .htw-bg { transform: scale(1.04); }
.how-to-work-item .htw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.3) 50%, transparent 100%);
}
.how-to-work-item .htw-content {
  position: relative;
  z-index: 1;
  padding: 32px 28px;
}
.how-to-work-item h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 10px;
}
.how-to-work-item p {
  font-size: 15px;
  color: rgba(250,250,248,0.7);
  line-height: 1.7;
}
.how-to-work-item a {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent4);
  border-bottom: 1px solid rgba(212,184,160,0.4);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.how-to-work-item a:hover { border-color: var(--light); color: var(--light); }
@media (max-width: 768px) {
  .how-to-work-grid { grid-template-columns: 1fr; }
  .how-to-work-item { min-height: 320px; }
}

/* ═══════════════════════════════════════════════════════════
   3. TEXT MASK REVEAL
   ═══════════════════════════════════════════════════════════ */
.mask-section {
  position: relative;
  min-height: 120vh;
  background: var(--light);
}
.mask-sticky {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--light);
}
.mask-bg {
  position: absolute;
  inset: 0;
  background: var(--secondary);
}
@keyframes meshShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.mask-overlay {
  position: absolute;
  inset: 0;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.mask-text {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(51, 65, 85, 0.12);
  position: relative;
  z-index: 2;
}
.mask-reveal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  clip-path: inset(100% 0 0 0);
}
.mask-text-filled {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 280px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background: #1A1A2E;
  -webkit-background-clip: text;
  background-clip: text;
}
.mask-subtext {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  z-index: 4;
}
.mask-subtext p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--accent1);
  max-width: 45ch;
  line-height: 1.7;
}

/* Mother's Day promo strip */
.mothers-day {
  padding: clamp(24px, 3vw, 36px) 0;
  background: var(--secondary);
  text-align: center;
  border-bottom: 1px solid rgba(201,184,168,0.15);
}
.mothers-day .md-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 16px;
}
.mothers-day h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 55px);
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.15;
}
.mothers-day .md-sub {
  font-size: 16px;
  color: rgba(51,65,85,0.6);
  max-width: 48ch;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.mothers-day .md-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.mothers-day .md-options {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.mothers-day .md-options span {
  font-size: 13px;
  color: rgba(51,65,85,0.5);
  letter-spacing: 0.06em;
}
.mothers-day .md-options span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent2);
  margin-right: 8px;
  vertical-align: middle;
}
.mothers-day .md-note {
  font-size: 13px;
  font-style: italic;
  color: rgba(51,65,85,0.45);
  margin-top: 8px;
}
@media (max-width: 480px) {
  .md-palette-row { grid-template-columns: 1fr !important; gap: 24px !important; }
  .mothers-day .md-delivery > div { grid-template-columns: repeat(2, 1fr) !important; }
  .mothers-day .md-btns { flex-direction: column; align-items: center; }
  .mothers-day .md-btns .btn-primary,
  .mothers-day .md-btns .btn-outline { width: 100%; max-width: 280px; }
}

/* Brand statement strip (after mask section) */
.brand-strip {
  background: var(--dark);
  padding: clamp(40px, 6vw, 72px) 0;
  text-align: center;
}
.brand-strip p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(250,250,248,0.8);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   4. ABOUT / THE STUDIO
   ═══════════════════════════════════════════════════════════ */
.about {
  padding: clamp(56px, 8vw, 100px) 0;
  background: var(--light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-text .section-label { margin-bottom: 16px; }
.about-text .section-heading { margin-bottom: 28px; }
.about-text .about-body {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(51, 65, 85, 0.75);
  margin-bottom: 12px;
}
.about-text .about-signature {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--accent1);
  margin-top: 32px;
}
.about-visual {
  aspect-ratio: 4/5;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  background-image: url(assets/images/about-studio.png); background-size: cover; background-position: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-height: 400px; }
}

/* ═══════════════════════════════════════════════════════════
   4B. FLORAL OFFERINGS
   ═══════════════════════════════════════════════════════════ */
.offerings {
  padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 4vw, 48px);
  background: var(--secondary);
}
.offerings-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.offerings-header .section-heading { margin-bottom: 16px; }
.offerings-header p {
  font-size: 17px;
  color: rgba(51,65,85,0.75);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.offering-card {
  background: var(--light);
  border: 1px solid rgba(201,184,168,0.3);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.offering-card:hover {
  border-color: var(--accent1);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(139,115,85,0.1);
}
.offering-card-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
}
.offering-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,26,46,0.15));
}
.offering-card-body {
  padding: 28px 24px;
}
.offering-card-body .offering-tier {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent3);
  margin-bottom: 8px;
}
.offering-card-body h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
}
.offering-card-body .offering-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent1);
  margin-bottom: 12px;
}
.offering-card-body p {
  font-size: 14px;
  color: rgba(51,65,85,0.6);
  line-height: 1.7;
}
.offerings-footer {
  text-align: center;
  margin-top: clamp(40px, 5vw, 64px);
}
.offerings-footer p {
  font-size: 14px;
  font-style: italic;
  color: rgba(51,65,85,0.5);
  margin-bottom: 24px;
}
.offerings-footer .btn-primary {
  display: inline-block;
}
@media (max-width: 768px) {
  .offerings-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.offering-btns {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.btn-sm {
  padding: 8px 16px !important;
  font-size: 11px !important;
}
@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   4B2. PALETTE COLLECTION
   ═══════════════════════════════════════════════════════════ */
.palette-section {
  padding: clamp(40px, 5vw, 60px) 0;
  border-top: 1px solid rgba(201,184,168,0.12);
}
.palette-section:first-of-type { border-top: none; }
.palette-header {
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.palette-header h3 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 8px;
}
.palette-header .palette-desc {
  font-size: 16px;
  color: rgba(51,65,85,0.55);
  max-width: 48ch;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}
.palette-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.palette-card {
  background: var(--white);
  border: 1px solid rgba(201,184,168,0.2);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}
.palette-card:hover {
  border-color: var(--accent1);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(139,115,85,0.08);
}
.palette-card-img {
  aspect-ratio: 3.8/3;
  background-size: cover;
  background-position: center;
}
.palette-card-body {
  padding: 24px 20px;
  text-align: center;
}
.palette-card-body .pc-size {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent3);
  margin-bottom: 6px;
}
.palette-card-body h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 6px;
}
.palette-card-body .pc-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent1);
  margin-bottom: 10px;
}
.palette-card-body p {
  font-size: 14px;
  color: rgba(51,65,85,0.55);
  line-height: 1.7;
}
.palette-card-body .offering-btns {
  margin-top: 14px;
  justify-content: center;
}
@media (max-width: 768px) {
  .palette-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════
   4C. SEASONAL BOUQUETS
   ═══════════════════════════════════════════════════════════ */
.bouquets {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--light);
  border-top: 1px solid rgba(201,184,168,0.15);
}
.bouquets-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.bouquets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bouquet-card {
  padding: 32px 24px;
  border: 1px solid rgba(201,184,168,0.25);
  border-radius: 4px;
  background: var(--white);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}
.bouquet-card:hover {
  border-color: var(--accent1);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139,115,85,0.08);
}
.bouquet-img {
  aspect-ratio: 3.8/3;
  background-size: cover;
  background-position: center;
  border-radius: 3px 3px 0 0;
  margin: -32px -24px 20px;
  width: calc(100% + 48px);
}
.bouquet-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 8px;
}
.bouquet-card .bouquet-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent1);
  margin-bottom: 12px;
}
.bouquet-card p {
  font-size: 14px;
  color: rgba(51,65,85,0.6);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .bouquets-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .bouquets-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   5. EXPERIENCES — STICKY STACK (formerly Workshops)
   ═══════════════════════════════════════════════════════════ */
.workshops {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--secondary);
}
.workshops-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.workshops-header .section-heading { margin-bottom: 16px; }
.workshops-header p {
  font-size: 17px;
  color: rgba(51,65,85,0.75);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}
.stack-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.stack-visual {
  position: sticky;
  top: 120px;
  height: fit-content;
}
.stack-preview {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(51,65,85,0.1);
}
.stack-preview-state { position: relative; }
.stack-preview-state::before { content: ''; position: absolute; inset: 0; background: rgba(26,26,46,0.4); border-radius: inherit; z-index: 0; }
.stack-preview-state .preview-icon, .stack-preview-state .preview-stems { position: relative; z-index: 1; }
.stack-preview-state {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.stack-preview-state.active { opacity: 1; }
.stack-preview-state .preview-icon {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}
.stack-preview-state .preview-stems {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 2;
}

.stack-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 0;
}
.workshop-card {
  padding: 36px 32px;
  border-radius: 4px;
  background: var(--light);
  border: 1px solid rgba(201,184,168,0.3);
  opacity: 0.4;
  transform: translateY(6px);
  transition: all 0.4s var(--ease-out);
  cursor: default;
}
.workshop-card.active {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--accent1);
  box-shadow: 0 8px 32px rgba(139,115,85,0.08);
}
.workshop-card .card-season {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent3);
  margin-bottom: 10px;
}
.workshop-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 10px;
}
.workshop-card p {
  font-size: 14px;
  color: rgba(51,65,85,0.6);
  line-height: 1.7;
  margin-bottom: 14px;
}
.workshop-card .card-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent1);
}
@media (max-width: 768px) {
  .stack-container { grid-template-columns: 1fr; }
  .stack-visual { position: relative; top: 0; }
  .stack-preview { aspect-ratio: 16/10; }
}

/* ═══════════════════════════════════════════════════════════
   6. GALLERY GRID — MAGNETIC STYLE
   ═══════════════════════════════════════════════════════════ */
.gallery {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--light);
}
.gallery-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover .gallery-item-bg { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.5);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--light);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out) 0.1s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
.gallery-item-cat {
  position: absolute;
  bottom: 46px;
  left: 20px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.6);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out) 0.05s;
}
.gallery-item:hover .gallery-item-cat { opacity: 1; transform: translateY(0); }

/* Masonry-like spans */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(8) { grid-column: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
}

/* ═══════════════════════════════════════════════════════════
   7. WHAT TO EXPECT (clean grid, curtain removed)
   ═══════════════════════════════════════════════════════════ */
/* What to Expect uses inline styles — no dedicated CSS needed */

/* ═══════════════════════════════════════════════════════════
   8. KINETIC MARQUEE
   ═══════════════════════════════════════════════════════════ */
/* ─── HERO TRANSITION MARQUEE ─── */
.hero-marquee {
  padding: 24px 0;
  overflow: hidden;
  background: var(--secondary);
  position: relative;
}
.hero-marquee::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(201,184,168,0.2);
}
.hero-marquee::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(201,184,168,0.2);
}
.hero-marquee-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  padding: 6px 0;
}
.hero-marquee-row .marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hero-marquee-word {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: var(--primary);
  padding: 0 20px;
  letter-spacing: 0.02em;
}
.hero-marquee-word.light {
  font-size: clamp(16px, 2.2vw, 22px);
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(139,115,85,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-marquee-sep {
  color: rgba(201,184,168,0.5);
  font-size: clamp(20px, 3vw, 36px);
  padding: 0 16px;
}
.hero-marquee-sep.light {
  font-size: 10px;
  color: rgba(201,184,168,0.4);
}
@media (max-width: 600px) {
  .hero-marquee { padding: 18px 0; }
  .hero-marquee-word { padding: 0 14px; }
  .hero-marquee-word.light { padding: 0 10px; letter-spacing: 0.1em; }
  .hero-marquee-sep { padding: 0 10px; }
}

.marquee-section {
  padding: 40px 0;
  overflow: hidden;
  background: var(--secondary);
  border-top: 1px solid rgba(201,184,168,0.2);
  border-bottom: 1px solid rgba(201,184,168,0.2);
}
.marquee-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  padding: 16px 0;
}
.marquee-row .marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: var(--primary);
  padding: 0 24px;
  letter-spacing: 0.02em;
}
.marquee-item .marquee-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent1);
  margin: 0 24px;
  opacity: 0.4;
}
.marquee-logo-inline {
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
}
.marquee-logo-inline svg,
.marquee-logo-inline img {
  height: 40px;
  width: 40px;
  opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════════
   9. PRIVATE GATHERINGS
   ═══════════════════════════════════════════════════════════ */
.private {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--secondary);
}
.private-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.private-header p {
  font-size: 16px;
  color: rgba(51,65,85,0.6);
  max-width: 50ch;
  margin: 12px auto 0;
  line-height: 1.7;
}
.private-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.flip-card {
  perspective: 1000px;
  height: 380px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
}
.flip-card-front {
  border: none;
  background: var(--dark);
  overflow: hidden;
}
.flip-card-front .flip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: transform 0.6s var(--ease-out);
}
.flip-card:hover .flip-card-front .flip-bg { transform: scale(1.04); }
.flip-card-front .flip-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, rgba(26,26,46,0.3) 50%, transparent 100%);
  z-index: 1;
}
.flip-card-front .flip-icon {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,250,248,0.7);
  position: relative; z-index: 2;
  margin-bottom: 20px;
}
.flip-card-front h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 12px;
  position: relative; z-index: 2;
}
.flip-card-front p {
  font-size: 14px;
  color: rgba(250,250,248,0.6);
  position: relative; z-index: 2;
}
.flip-card-back {
  background: var(--primary);
  color: var(--light);
  transform: rotateY(180deg);
}
.flip-card-back h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
}
.flip-card-back p {
  font-size: 14px;
  color: rgba(250,250,248,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.flip-card-back .flip-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent4);
  border-bottom: 1px solid var(--accent4);
  padding-bottom: 2px;
}
@media (max-width: 768px) {
  .private-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════
   10. STUDIO FLORAL DESIGN
   ═══════════════════════════════════════════════════════════ */
.studio-design {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--secondary);
}
.studio-design-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.studio-design-header p {
  font-size: 16px;
  color: rgba(51,65,85,0.6);
  max-width: 50ch;
  margin: 12px auto 0;
  line-height: 1.7;
}
.design-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.design-acc-item {
  border-bottom: 1px solid rgba(201,184,168,0.3);
}
.design-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}
.design-acc-trigger h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--primary);
}
.design-acc-trigger .acc-icon {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: var(--accent1);
  transition: transform 0.3s var(--ease-out);
}
.design-acc-item.open .acc-icon { transform: rotate(45deg); }
.design-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.design-acc-body-inner {
  padding: 0 0 28px;
}
.design-acc-body-inner p {
  font-size: 15px;
  color: rgba(51,65,85,0.6);
  line-height: 1.7;
  max-width: 60ch;
}

/* ═══════════════════════════════════════════════════════════
   11. FOUNDER
   ═══════════════════════════════════════════════════════════ */
.founder {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--light);
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.founder-image {
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  background-image: url(assets/images/founder-sarah.png); background-size: cover; background-position: center top;
}
.founder-image::after {
  content: 'S';
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.12);
  line-height: 1;
}
.founder-text .section-label { margin-bottom: 16px; }
.founder-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 8px;
}
.founder-text .founder-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 28px;
}
.founder-text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(51,65,85,0.7);
  margin-bottom: 16px;
}
.founder-text .founder-sig {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--accent1);
  margin-top: 24px;
}
@media (max-width: 768px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-image { max-height: 400px; }
}

/* ═══════════════════════════════════════════════════════════
   12. TESTIMONIALS MARQUEE
   ═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--dark);
  overflow: hidden;
}
.testimonials-label {
  text-align: center;
  margin-bottom: 48px;
}
.testimonials-label .section-label { color: var(--accent4); }
.testimonial-row {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.testimonial-row .testimonial-content {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}
.testimonial-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 400px;
  max-width: 400px;
  padding: 40px 36px;
  margin: 0 12px;
  border: 1px solid rgba(250,250,248,0.06);
  border-radius: 4px;
  white-space: normal;
  background: rgba(250,250,248,0.02);
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--accent4);
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(250,250,248,0.75);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.testimonial-card .quote-author {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.35);
}
@media (max-width: 480px) {
  .testimonial-card { min-width: 300px; max-width: 300px; padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   13. BOOKING CTA
   ═══════════════════════════════════════════════════════════ */
.booking-cta {
  position: relative;
  padding: clamp(48px, 7vw, 80px) 0;
  overflow: hidden;
}
.booking-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.booking-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.booking-cta-inner .section-label { color: var(--accent1); }
.booking-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 16px;
}
.booking-cta-inner p {
  font-size: 17px;
  color: rgba(51,65,85,0.7);
  max-width: 45ch;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.booking-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.booking-btns .btn-primary { min-width: 200px; text-align: center; }
.booking-btns .btn-outline { min-width: 200px; text-align: center; }

/* Booking Form */
.booking-form {
  max-width: 560px;
  margin: 48px auto 0;
  text-align: left;
}
.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.booking-form .form-full {
  margin-bottom: 16px;
}
.booking-form label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 6px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--accent2);
  background: rgba(255,255,255,0.6);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--primary);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(51,65,85,0.35);
}
.booking-form textarea {
  resize: vertical;
  min-height: 100px;
}
.booking-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23334155' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.booking-form .form-submit {
  text-align: center;
  margin-top: 24px;
}
.booking-form .form-submit .btn-primary {
  min-width: 240px;
}
.booking-form .form-success {
  text-align: center;
  padding: 40px 20px;
}
.booking-form .form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 8px;
}
.booking-form .form-success p {
  font-size: 15px;
  color: rgba(51,65,85,0.6);
}
@media (max-width: 480px) {
  .booking-form .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   14. CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--secondary);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info .section-heading { margin-bottom: 28px; }
.contact-detail {
  margin-bottom: 24px;
}
.contact-detail .detail-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 6px;
}
.contact-detail p {
  font-size: 16px;
  color: var(--primary);
  line-height: 1.6;
}
.contact-detail a {
  color: var(--primary);
  border-bottom: 1px solid var(--accent2);
  transition: border-color 0.3s;
}
.contact-detail a:hover { border-color: var(--primary); }
.contact-map {
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map .map-placeholder {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent1);
  opacity: 0.5;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   15. FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: clamp(60px, 8vw, 100px) 0 40px;
  color: var(--light);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,250,248,0.06);
}
.footer-brand svg { height: 90px; width: 90px; margin-bottom: 20px; shape-rendering: geometricPrecision; }
.footer-brand p {
  font-size: 14px;
  color: rgba(250,250,248,0.4);
  line-height: 1.7;
  max-width: 30ch;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.3);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(250,250,248,0.55);
  padding: 6px 0;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(250,250,248,0.2);
}
.footer-bottom .footer-social {
  display: flex;
  gap: 20px;
}
.footer-bottom .footer-social a {
  font-size: 13px;
  color: rgba(250,250,248,0.3);
  transition: color 0.3s;
}
.footer-bottom .footer-social a:hover { color: var(--light); }
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   BLOOM CIRCLE — SUBSCRIPTION
   ═══════════════════════════════════════════════════════════ */
.bloom-circle {
  padding: clamp(64px, 8vw, 110px) 0;
  background: var(--light);
  color: var(--primary);
  text-align: center;
}
.bloom-circle .section-label { color: var(--accent1); }
.bloom-circle .section-heading { color: var(--primary); margin-bottom: 16px; }
.bloom-circle-desc {
  font-size: 17px;
  color: rgba(51,65,85,0.75);
  max-width: 52ch;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.bloom-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.bloom-tier {
  padding: 44px 36px;
  border: 1px solid rgba(201,184,168,0.3);
  border-radius: 4px;
  background: var(--white);
  transition: all 0.4s var(--ease-out);
}
.bloom-tier:hover {
  border-color: var(--accent1);
  background: rgba(139,115,85,0.03);
}
.bloom-tier-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 3px 3px 0 0;
  margin: -44px -36px 24px;
  width: calc(100% + 72px);
}
.bloom-tier h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
}
.bloom-tier .tier-freq {
  font-size: 13px;
  color: var(--accent1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bloom-tier p {
  font-size: 15px;
  color: rgba(51,65,85,0.6);
  line-height: 1.7;
}
.bloom-circle-cta {
  margin-top: 40px;
}
.bloom-circle-cta .btn-outline {
  border-color: var(--accent2);
  color: var(--primary);
}
.bloom-circle-cta .btn-outline:hover {
  border-color: var(--primary);
  background: rgba(51,65,85,0.04);
}
@media (max-width: 768px) {
  .bloom-tiers { grid-template-columns: 1fr; max-width: 400px; }
}

/* ═══════════════════════════════════════════════════════════
   VOICE AGENT WIDGET
   ═══════════════════════════════════════════════════════════ */
.voice-agent-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

/* ═══════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════ */
@media print {
  .nav, .scroll-indicator, .marquee-section, .voice-agent-wrapper { display: none !important; }
  .hero, .mask-section { min-height: auto !important; height: auto !important; }
  .mask-sticky { position: relative !important; }
  * { animation: none !important; transition: none !important; }
}
.signup-form { display: flex; gap: 0; flex-wrap: wrap; justify-content: center; }
.signup-form input:focus { border-color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — COMPREHENSIVE CLEANUP
   Ensure all new elements stack cleanly without breaking
   the existing mobile experience
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero: scale text down, buttons stack nicely */
  .hero-sub { font-size: clamp(16px, 4vw, 18px) !important; line-height: 1.6; }
  .hero-cta-row { gap: 12px; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline { min-width: 160px; text-align: center; font-size: 13px; padding: 14px 28px; }

  /* Bloom Circle: collapse 4-col grids to 2-col */
  .bloom-steps { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .bloom-levels { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .bloom-details { grid-template-columns: 1fr !important; gap: 32px !important; }
  .bloom-tiers { grid-template-columns: 1fr !important; }
  .bloom-circle .section-heading { font-size: clamp(28px, 6vw, 42px); }
  .bloom-circle-desc { font-size: 16px !important; }

  /* Offering cards: per-card buttons stack */
  .offering-btns { flex-direction: column; }
  .offering-btns .btn-sm { width: 100%; text-align: center; }

  /* Booking form: single column on mobile */
  .booking-form .form-row { grid-template-columns: 1fr !important; }

  /* Private Gatherings: cards stack with more breathing room */
  .private-cards { gap: 24px; }
  .flip-card { min-height: 280px; }

  /* What to Expect grid */
  .wte-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }

  /* Mobile: section headings scale down, body copy stays readable */
  .section-heading { font-size: clamp(32px, 8vw, 48px) !important; line-height: 1.15; }
  .section-label { font-size: 11px !important; }
  p { line-height: 1.65; }

  /* MD palette labels are bigger on mobile */
  .mothers-day h2, .offerings h2, .bouquets h2 { font-size: clamp(32px, 8vw, 44px) !important; }

  /* Tap-friendly buttons */
  .btn-primary, .btn-outline { min-height: 48px; padding: 14px 28px; font-size: 13px; }
  .btn-sm { min-height: 42px; padding: 12px 20px; }

  /* Container padding */
  .container { padding: 0 20px !important; }
}
@media (max-width: 480px) {
  .section-heading { font-size: clamp(28px, 9vw, 38px) !important; }
  .mothers-day h2, .offerings h2, .bouquets h2 { font-size: clamp(28px, 9vw, 36px) !important; }
  .wte-grid { grid-template-columns: 1fr !important; }
  .bloom-steps { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  /* Bloom Circle: single column everything */
  .bloom-steps { grid-template-columns: 1fr !important; }
  .bloom-levels { grid-template-columns: 1fr !important; }

  /* Hero buttons full width */
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline { width: 100%; max-width: 280px; }

  /* Offerings: ordering section tighter */
  .offerings-ordering .section-label { font-size: 11px; }
}


/* ═══════════════════════════════════════════════════════════
   PAGE TRANSITIONS — body fades on navigation
   Default: hidden until JS marks page as ready (no FOUC).
   On navigation: body fades out smoothly before navigating.
   Reduced-motion: instant, no fade.
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  body {
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
  }
  body.page-ready { opacity: 1; }
  body.page-leaving { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  body { opacity: 1; }
}
