/* ==========================================
   ML Events & Florals — Complete Stylesheet
   Luxury Edition · Blue + Pink + Cream
   ========================================== */

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

/* ======= TOKENS ======= */
:root {
  --cream:       #FBF8F3;
  --cream-dark:  #EDE8E0;
  --white:       #FFFFFF;
  --dark:        #1C1714;
  --text:        #2D2319;
  --text-mid:    #6B5848;
  --text-light:  #A89080;

  --blue-pale:   #E8F1F7;
  --blue-light:  #C5D8E8;
  --blue:        #7AAFD0;
  --blue-deep:   #4D8DB5;

  --pink-pale:   #F5E8EC;
  --pink-light:  #EEDADD;
  --pink:        #D4909A;
  --pink-deep:   #B56B78;

  --gold:        #C8A96B;
  --sage:        #9DB5A8;

  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:  0.4s var(--ease-out);
  --shadow:      0 4px 32px rgba(28, 23, 20, 0.08);
  --shadow-lg:   0 16px 64px rgba(28, 23, 20, 0.14);
  --radius:      4px;
  --radius-lg:   12px;
}

/* ======= RESET ======= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Pseudo-elements are decorative — never block clicks */
*::before, *::after { pointer-events: none; }
html { font-size: 16px; }
/* Offset for fixed nav — JS handles smooth scroll */
[id] { scroll-margin-top: 80px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(54px, 7.5vw, 108px); }
h2 { font-size: clamp(36px, 5vw, 66px); }
h3 { font-size: clamp(24px, 3vw, 40px); }
h4 { font-size: clamp(20px, 2.5vw, 30px); }
p  { font-size: clamp(15px, 1.1vw, 17px); line-height: 1.75; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 16px;
}

/* ======= LAYOUT ======= */
.container       { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.section-pad     { padding: 120px 0; }
.section-pad--sm { padding: 80px 0; }
.text-center     { text-align: center; }

/* Section headers */
.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p:not(.eyebrow) { color: var(--text-mid); max-width: 640px; }
.section-header.text-center p:not(.eyebrow) {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header.text-center .eyebrow {
  text-align: center;
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.35s var(--ease-luxury), box-shadow 0.35s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn--primary {
  background: var(--dark);
  color: var(--white);
}
.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue-deep);
  transform: translateX(-101%);
  transition: transform 0.45s var(--ease-luxury);
  z-index: -1;
}
.btn--primary:hover::before { transform: translateX(0); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn--outline:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); transform: translateY(-2px); }

.btn--white {
  background: var(--white);
  color: var(--dark);
}
.btn--white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--pink {
  background: var(--pink-deep);
  color: var(--white);
}
.btn--pink:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(181,107,120,0.35); }

.btn--ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  border: none;
}
.btn--ig:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(253,29,29,0.30); }

/* ======= PAGE LOADER ======= */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 260px;
}
.page-loader__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0;
}
.page-loader__bar {
  width: 100%;
  height: 1px;
  background: var(--cream-dark);
  overflow: hidden;
}
.page-loader__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--pink));
}

/* ======= CUSTOM CURSOR ======= */
.cursor {
  width: 7px;
  height: 7px;
  background: var(--dark);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(28,23,20,0.30);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
body.cursor-active .cursor-ring {
  width: 70px; height: 70px;
  border-color: var(--blue);
  background: rgba(122,175,208,0.05);
}
body.cursor-link .cursor-ring {
  width: 54px; height: 54px;
  border-color: var(--pink);
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* ======= NAV ======= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(251, 248, 243, 0.96);
  backdrop-filter: blur(14px);
  padding: 16px 40px;
  box-shadow: 0 1px 20px rgba(28, 23, 20, 0.06);
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: var(--transition);
}
.nav.scrolled .nav__logo { color: var(--dark); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav.scrolled .nav__links a { color: var(--text-mid); }
.nav.scrolled .nav__links a:hover { color: var(--dark); }
.nav__right { display: flex; align-items: center; gap: 20px; }
.lang-toggle {
  background: none;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.80);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.lang-toggle:hover { background: rgba(255,255,255,0.15); }
.nav.scrolled .lang-toggle { border-color: var(--blue-light); color: var(--blue-deep); }
.nav__book {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--white);
  color: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__book:hover { background: var(--pink-deep); color: var(--white); transform: translateY(-1px); }
.nav.scrolled .nav__book { background: var(--dark); color: var(--white); }
.nav.scrolled .nav__book:hover { background: var(--blue-deep); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--dark); }

/* ======= MOBILE NAV ======= */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav__links {
  display: flex; flex-direction: column;
  align-items: center; gap: 32px; text-align: center;
}
.mobile-nav__links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300;
  color: var(--dark); transition: var(--transition);
}
.mobile-nav__links a:hover { color: var(--pink-deep); }
.mobile-nav__close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none;
  font-size: 28px; color: var(--dark); cursor: pointer;
}

/* ======= HERO ======= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('https://static.wixstatic.com/media/11062b_d3a1fcc8a12b4fb5b93aefefd6a30399~mv2.jpg');
  background-size: cover;
  background-position: center top;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,15,12,0.38) 0%,
    rgba(20,15,12,0.12) 45%,
    rgba(20,15,12,0.62) 100%
  );
}
.hero__petals {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 2;
  pointer-events: none;
}
.hero-petal {
  position: absolute; top: -60px;
  pointer-events: none;
}
@keyframes petalFall {
  0%   { opacity: 0;    transform: translateY(0)     rotate(0deg)   translateX(0px); }
  8%   { opacity: 0.75; }
  88%  { opacity: 0.45; }
  100% { opacity: 0;    transform: translateY(110vh) rotate(400deg) translateX(var(--drift, 50px)); }
}

/* Hero content */
.hero__content {
  position: relative; z-index: 3;
  text-align: center;
  max-width: 960px;
  padding: 0 24px;
}
.hero__eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px; opacity: 0;
}
.hero__title {
  font-size: clamp(56px, 8.5vw, 112px);
  font-weight: 300; line-height: 1.0;
  color: var(--white); margin-bottom: 28px;
}
.hero__title em { font-style: italic; color: var(--pink-light); }

/* Hero line-by-line reveal */
.hero-line-wrap { display: block; overflow: hidden; line-height: 1.05; }
.hero-line { display: block; opacity: 0; transform: translateY(110%); }

.hero__sub {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300; color: rgba(255,255,255,0.72);
  margin-bottom: 48px; line-height: 1.7; opacity: 0;
}
.hero__ctas {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  flex-wrap: wrap; opacity: 0;
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; opacity: 0;
}
.hero__scroll span {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity:0.5; }
  50%      { transform: scaleY(1.2); opacity:1; }
}

/* ======= BRAND STRIP ======= */
.brand-strip { background: var(--dark); padding: 18px 0; overflow: hidden; }
.brand-strip__track {
  display: flex; gap: 80px;
  animation: strip 30s linear infinite;
  white-space: nowrap;
}
.brand-strip__item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.45); flex-shrink: 0;
}
.brand-strip__dot { color: var(--pink); margin: 0 8px; }
@keyframes strip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ======= FLORALS ======= */
.florals { background: var(--cream); }
.florals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.floral-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.floral-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.85s var(--ease-luxury);
  will-change: transform;
}
.floral-card:hover img { transform: scale(1.08); }
.floral-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,12,0.82) 0%, rgba(20,15,12,0) 55%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.floral-card:hover .floral-card__overlay { opacity: 1; }
.floral-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  transform: translateY(16px);
  transition: transform 0.5s var(--ease-luxury);
}
.floral-card:hover .floral-card__info { transform: translateY(0); }
.floral-card__info h4 { font-size: 26px; color: white; margin-bottom: 6px; }
.floral-card__info .price {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.65);
}
.floral-card__cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s, border-color 0.3s;
}
.floral-card:hover .floral-card__cta { opacity: 1; transform: translateY(0); }
.floral-card__index {
  position: absolute; top: 20px; right: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 300; letter-spacing: 0.12em;
  color: rgba(255,255,255,0);
  transition: color 0.4s ease; z-index: 3;
}
.floral-card:hover .floral-card__index { color: rgba(255,255,255,0.5); }
.florals-cta { text-align: center; margin-top: 64px; }

/* ======= EVENTS ======= */
.events {
  background: var(--dark); color: var(--white);
  position: relative; overflow: hidden;
}
.events::before {
  content: '';
  position: absolute; top: -150px; left: -150px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(122,175,208,0.10), transparent 65%);
  animation: orbFloat1 22s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
.events::after {
  content: '';
  position: absolute; bottom: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(212,144,154,0.10), transparent 65%);
  animation: orbFloat2 28s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
@keyframes orbFloat1 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(70px,50px) scale(1.12); }
}
@keyframes orbFloat2 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(-50px,-70px) scale(1.15); }
}
.events .section-header { position: relative; z-index: 1; }
.events .section-header p:not(.eyebrow) { color: rgba(255,255,255,0.55); }
.events .eyebrow { color: var(--blue-light); }
.events .section-header h2 { color: var(--white); }
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 64px;
  position: relative; z-index: 1;
}
.event-card {
  position: relative;
  padding: 56px 40px 48px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.45s var(--ease-luxury);
  overflow: hidden; cursor: default;
}
.event-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(122,175,208,0.08), rgba(212,144,154,0.06));
  opacity: 0; transition: opacity 0.45s ease;
  pointer-events: none;
}
.event-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  transition: width 0.5s var(--ease-luxury);
  pointer-events: none;
}
.event-card:hover::before { opacity: 1; }
.event-card:hover::after  { width: 100%; }
.event-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.event-card__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 300;
  color: rgba(255,255,255,0.05);
  line-height: 1; margin-bottom: 20px;
  transition: all 0.45s ease; letter-spacing: -0.04em;
}
.event-card:hover .event-card__number { color: rgba(122,175,208,0.18); transform: scale(1.05); }
.event-card h4 {
  color: var(--white); margin-bottom: 16px;
  font-size: 26px; transition: color 0.3s ease;
}
.event-card:hover h4 { color: var(--blue-light); }
.event-card p {
  color: rgba(255,255,255,0.50); font-size: 15px;
  line-height: 1.75; margin-bottom: 28px;
  transition: color 0.3s ease;
}
.event-card:hover p { color: rgba(255,255,255,0.72); }
.event-card__price {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; color: var(--blue-light);
  transition: color 0.3s ease;
}
.event-card:hover .event-card__price { color: var(--pink-light); }
.event-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 24px; transition: all 0.3s ease;
}
.event-card:hover .event-card__link { gap: 14px; color: var(--white); }
.events-cta { text-align: center; margin-top: 64px; position: relative; z-index: 1; }

/* ======= ABOUT ======= */
.about { background: var(--cream); overflow: hidden; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about__visual { position: relative; aspect-ratio: 4/5; }
.about__img {
  width: 100%; height: 100%;
  border-radius: 2px; overflow: hidden;
}
.about__accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 60%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--blue-light), var(--pink-light));
  border-radius: 2px; z-index: -1; opacity: 0.55;
}
.about__accent-2 {
  position: absolute; top: -16px; left: -16px;
  width: 30%; aspect-ratio: 1;
  border: 2px solid var(--blue-light);
  border-radius: 2px; opacity: 0.35;
}
.about__text .eyebrow { margin-bottom: 20px; }
.about__text h2 { margin-bottom: 28px; }
.about__text h2 em { font-style: italic; color: var(--pink-deep); }
.about__text p { color: var(--text-mid); margin-bottom: 20px; line-height: 1.8; }
.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px; padding-top: 48px;
  border-top: 1px solid var(--cream-dark);
}
.about__stat h3 { font-size: 44px; color: var(--blue-deep); margin-bottom: 8px; }
.about__stat p  { font-size: 13px; color: var(--text-light); margin-bottom: 0; }
.about__cta { margin-top: 40px; }

/* ======= GALLERY ======= */
.gallery {
  background: #181210;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

/* Botanical flora backgrounds */
.gallery__flora {
  position: absolute;
  pointer-events: none;
  color: white;
  opacity: 0.055;
  z-index: 0;
}
.gallery__flora--1 {
  top: -60px; right: -110px;
  width: 540px; height: 540px;
  animation: floraFloat1 26s ease-in-out infinite alternate;
}
.gallery__flora--2 {
  bottom: 60px; left: -90px;
  width: 400px; height: 400px;
  animation: floraFloat2 32s ease-in-out infinite alternate;
}
.gallery__flora--3 {
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 560px;
  opacity: 0.04;
  animation: floraFloat1 28s ease-in-out infinite alternate;
}
.gallery__flora--4 {
  bottom: 0; right: 8%;
  width: 420px; height: 420px;
  opacity: 0.045;
  animation: floraFloat2 36s ease-in-out infinite alternate;
}
.gallery__flora--5 {
  bottom: 20px; left: 12%;
  width: 320px; height: 320px;
  opacity: 0.038;
  animation: floraFloat1 40s ease-in-out infinite alternate-reverse;
}
@keyframes floraFloat1 {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(20deg) scale(1.07); }
}
@keyframes floraFloat2 {
  from { transform: rotate(0deg) scale(1); }
  to   { transform: rotate(-16deg) scale(0.93); }
}

/* Editorial header */
.gallery__header {
  padding-bottom: 56px;
  position: relative; z-index: 1;
}
.gallery__header .eyebrow { color: var(--blue-light); margin-bottom: 14px; }
.gallery__header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}
.gallery__header-left h2 {
  color: white;
  font-size: clamp(64px, 9.5vw, 132px);
  line-height: 0.95;
}
.gallery__header-desc {
  color: rgba(255,255,255,0.42);
  font-size: 15px;
  max-width: 300px;
  line-height: 1.75;
  flex-shrink: 0;
  margin-bottom: 8px;
}
.gallery__divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin-top: 44px;
}

/* Full-bleed grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  position: relative; z-index: 1;
  margin-top: 3px;
}
.gallery-item {
  overflow: hidden; cursor: pointer;
  position: relative;
  min-height: 280px;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; min-height: 563px; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-luxury);
  will-change: transform;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(20,12,8,0);
  transition: background 0.5s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(20,12,8,0.38); }
.gallery-item__expand { display: none; }

/* Hover label */
.gallery-item__label {
  position: absolute;
  bottom: 18px; left: 20px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0);
  transition: color 0.45s ease;
  z-index: 2;
}
.gallery-item:hover .gallery-item__label { color: rgba(255,255,255,0.55); }

/* CTA inside the dark section */
.gallery-cta {
  padding: 64px 0;
  text-align: center;
  position: relative; z-index: 1;
}

/* ======= PACKAGES ======= */
.packages {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.packages::after {
  content: 'FLORALS · EVENTS · WEDDINGS';
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--dark);
  opacity: 0.028;
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.packages .container { position: relative; z-index: 1; }
.pkg__flora {
  position: absolute;
  pointer-events: none;
  color: var(--dark);
  z-index: 0;
}
.pkg__flora--1 {
  top: -80px; left: -90px;
  width: 460px; height: 460px;
  opacity: 0.038;
  animation: floraFloat2 28s ease-in-out infinite alternate;
}
.pkg__flora--2 {
  bottom: -50px; right: -70px;
  width: 400px; height: 400px;
  opacity: 0.032;
  animation: floraFloat1 34s ease-in-out infinite alternate;
}
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--cream-dark);
  transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s ease;
  position: relative; overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-light), var(--pink-light));
  opacity: 0; transition: opacity 0.4s ease;
}
.package-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-luxury);
}
.package-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-8px); }
.package-card:hover::before { opacity: 1; }
.package-card:hover::after  { transform: scaleX(1); }
.package-card--featured {
  background: var(--dark); color: var(--white);
  border-color: var(--dark);
}
.package-card--featured::before { opacity: 1; }
.package-card__badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 12px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  color: var(--white); border-radius: 100px; margin-bottom: 24px;
}
.package-card__icon {
  display: block; margin-bottom: 24px;
  color: var(--blue-deep);
}
.package-card--featured .package-card__icon { color: var(--blue-light); }
.package-card h4 { font-size: 28px; margin-bottom: 12px; }
.package-card--featured h4 { color: var(--white); }
.package-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 300;
  color: var(--blue-deep); margin: 16px 0; line-height: 1;
}
.package-card--featured .package-card__price { color: var(--blue-light); }
.package-card__price-note {
  font-size: 13px; color: var(--text-light); margin-bottom: 28px;
}
.package-card--featured .package-card__price-note { color: rgba(255,255,255,0.45); }
.package-card__list { margin-bottom: 40px; }
.package-card__list li {
  font-size: 14px; color: var(--text-mid);
  padding: 10px 0; border-bottom: 1px solid var(--cream-dark);
  display: flex; align-items: center; gap: 12px;
}
.package-card--featured .package-card__list li {
  color: rgba(255,255,255,0.65);
  border-bottom-color: rgba(255,255,255,0.10);
}
.package-card__list li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--blue); border-radius: 50%; flex-shrink: 0;
}
.package-card--featured .package-card__list li::before { background: var(--pink-light); }

/* ======= LOGO ======= */
.nav__logo-img {
  height: 42px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease; display: block;
}
.nav.scrolled .nav__logo-img { filter: none; }
.footer__logo-img {
  height: 52px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85; margin-bottom: 20px; display: block;
}

/* ======= HOW IT WORKS ======= */
.process { background: var(--cream); }
.process__header { margin-bottom: 64px; }
.process__header h2 { margin-top: 16px; }
.process__header h2 em { font-style: italic; color: var(--pink-deep); }
.process-list { border-top: 1px solid var(--cream-dark); }
.process-step {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center; gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--cream-dark);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.process-step:hover { transform: translateX(10px); }
.process-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400;
  letter-spacing: 0.14em; color: var(--pink);
}
.process-step__body h4 {
  font-size: clamp(22px, 2.5vw, 30px);
  margin-bottom: 10px; color: var(--dark);
  transition: color 0.3s ease;
}
.process-step:hover .process-step__body h4 { color: var(--blue-deep); }
.process-step__body p { font-size: 15px; color: var(--text-mid); line-height: 1.75; max-width: 580px; }
.process-step__tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-light); padding: 6px 16px;
  border: 1px solid var(--cream-dark); border-radius: 100px;
  white-space: nowrap; flex-shrink: 0;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.process-step:hover .process-step__tag { border-color: var(--pink-light); color: var(--pink-deep); }
.process__cta { margin-top: 56px; }

/* ======= FAQ ======= */
.faq { background: var(--white); }
.faq__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq__header .eyebrow { margin-bottom: 16px; }
.faq__header h2 { margin-bottom: 20px; }
.faq__header p { color: var(--text-mid); margin-bottom: 36px; }
.faq__list { border-top: 1px solid var(--cream-dark); }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-item__q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 24px 0; background: none; border: none; cursor: pointer;
  text-align: left; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 1.6vw, 22px); font-weight: 400;
  color: var(--dark); line-height: 1.3; transition: color 0.3s ease;
}
.faq-item__q:hover { color: var(--blue-deep); }
.faq-item__q::after {
  content: '+'; font-family: 'Inter', sans-serif;
  font-size: 24px; font-weight: 300; color: var(--pink);
  flex-shrink: 0; line-height: 1;
  transition: transform 0.4s var(--ease-luxury), color 0.3s ease;
}
.faq-item.open .faq-item__q::after { transform: rotate(45deg); color: var(--blue-deep); }
.faq-item.open .faq-item__q { color: var(--blue-deep); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.55s var(--ease-luxury), padding 0.4s ease; }
.faq-item.open .faq-item__a { max-height: 260px; padding-bottom: 28px; }
.faq-item__a p { font-size: 15px; color: var(--text-mid); line-height: 1.75; }

@media (max-width: 768px) {
  .process-step { grid-template-columns: 48px 1fr; }
  .process-step__tag { display: none; }
  .faq__grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery__header-inner { flex-direction: column; gap: 20px; }
  .gallery__header-desc { max-width: 100%; text-align: left; }
}

/* ======= SECTION SEPARATOR ======= */
.section-sep {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 80px;
  background: var(--cream);
}
.section-sep__line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
}
.section-sep__symbol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--pink);
  opacity: 0.65; line-height: 1;
}

/* ======= REVIEWS ======= */
.reviews {
  background: linear-gradient(150deg, #EDE2E6 0%, #E2EBF3 100%);
  position: relative;
}

/* 50+ stat badge */
.reviews-stat {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.reviews-stat__pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 36px;
  border: 1px solid rgba(181,107,120,0.30);
  border-radius: 100px;
  background: rgba(255,255,255,0.45);
}
.reviews-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300;
  color: var(--pink-deep); line-height: 1;
}
.reviews-stat__sep { color: var(--pink); opacity: 0.5; font-size: 18px; }
.reviews-stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.10em; color: var(--text-mid);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Review cards — clean glass, Cormorant dominant */
.review-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: 6px;
  padding: 48px 44px 40px;
  box-shadow: 0 2px 20px rgba(28,23,20,0.04);
  transition: transform 0.5s var(--ease-luxury), box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
}
/* Large decorative opening quote */
.review-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px;
  font-weight: 300;
  line-height: 0.8;
  color: var(--pink-deep);
  opacity: 0.12;
  position: absolute;
  top: 16px; left: 20px;
  pointer-events: none;
  z-index: 0;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(28,23,20,0.09);
}

/* Stars */
.review-stars {
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

/* The quote text */
.review-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(20px, 1.7vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: #1C1714;
  line-height: 1.62;
  letter-spacing: 0.01em;
  margin: 0 0 28px 0;
  padding: 0;
  border: none;
  position: relative;
  z-index: 1;
}

/* Author block */
.review-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid rgba(181,107,120,0.20);
  position: relative;
  z-index: 1;
}
.review-author__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.03em;
  color: #1C1714;
  margin: 0;
  padding: 0;
}
.review-author__detail {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #A89080;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}

/* ======= INSTAGRAM ======= */
.instagram {
  background: var(--white);
  padding: 80px 0;
}

/* Header */
.ig__top { margin-bottom: 40px; }
.ig__top .eyebrow { margin-bottom: 12px; }

.ig__handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.0;
  text-decoration: none;
  display: block;
  transition: color 0.35s ease;
  letter-spacing: -0.02em;
}
.ig__handle:hover { color: var(--pink-deep); }

.ig__line {
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--blue-light), transparent);
  margin-top: 24px;
  width: 60%;
}

/* Full-width photo strip */
.ig-strip {
  display: flex;
  gap: 3px;
  margin: 0;
}
.ig-strip__item {
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  position: relative;
}
.ig-strip__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s var(--ease-luxury), filter 0.5s ease;
  filter: grayscale(0%);
}
.ig-strip__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.85);
}
/* Subtle overlay on hover */
.ig-strip__item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(212,144,154,0.18);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.ig-strip__item:hover::after { opacity: 1; }

/* Footer */
.ig__footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ig__caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  font-weight: 300;
  color: var(--text-mid);
}

@media (max-width: 768px) {
  .ig-strip { flex-wrap: wrap; }
  .ig-strip__item { flex: 0 0 calc(33.333% - 2px); }
  .ig__footer { flex-direction: column; text-align: center; }
  .ig__line { width: 100%; }
}

/* ======= CTA INSTAGRAM (inside CTA band) ======= */
.cta-instagram {
  margin-top: 60px;
  padding-top: 48px;
  text-align: center;
  position: relative; z-index: 1;
}
.cta-instagram__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.20));
  margin: 0 auto 24px;
}
.cta-instagram__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 10px;
}
.cta-instagram__handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: block;
  transition: color 0.35s ease;
  letter-spacing: -0.01em;
}
.cta-instagram__handle:hover { color: var(--pink-light); }

/* ======= CTA BAND ======= */
.cta-band {
  background: var(--dark); padding: 110px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(122,175,208,0.14), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(212,144,154,0.14), transparent 60%);
}
.cta-band__content { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 20px; }
.cta-band p  { color: rgba(255,255,255,0.55); margin-bottom: 48px; font-size: 18px; }
.cta-band .eyebrow { color: var(--blue-light); margin-bottom: 24px; }

/* ======= FOOTER ======= */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 64px;
}
.footer__brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400;
  color: var(--white); margin-bottom: 16px;
}
.footer__brand p {
  color: rgba(255,255,255,0.40); font-size: 14px;
  line-height: 1.7; margin-bottom: 24px;
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 13px;
  transition: var(--transition);
}
.footer__social a:hover { border-color: var(--blue-light); color: var(--blue-light); transform: translateY(-3px); }
.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-bottom: 24px;
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a {
  color: rgba(255,255,255,0.50); font-size: 14px;
  transition: var(--transition);
}
.footer__col ul a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ======= WHATSAPP FAB ======= */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  background: #25D366; color: white;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 18px; border-radius: 100px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease-luxury), box-shadow 0.3s ease;
  animation: fabPulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  animation: none;
}
@keyframes fabPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.35); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,0.55); }
}

/* ======= SCROLL REVEAL ======= */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.95s var(--ease-luxury), transform 0.95s var(--ease-luxury);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .about__grid        { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid       { grid-template-columns: 1fr 1fr; gap: 40px; }
  .florals-grid       { grid-template-columns: repeat(2, 1fr); }
  .events-grid        { grid-template-columns: 1fr 1fr; }
  .gallery-grid       { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 1; }
  .instagram-grid     { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav__links, .nav__book { display: none; }
  .nav__hamburger     { display: flex; }
  .nav                { padding: 20px 24px; }
  .nav.scrolled       { padding: 14px 24px; }
  .container          { padding: 0 20px; }
  .container--wide    { padding: 0 20px; }
  .section-pad        { padding: 80px 0; }
  .florals-grid       { grid-template-columns: 1fr 1fr; }
  .events-grid        { grid-template-columns: 1fr; }
  .packages-grid      { grid-template-columns: 1fr; }
  .about__stats       { grid-template-columns: 1fr 1fr; }
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .instagram-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer__grid       { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom     { flex-direction: column; gap: 12px; text-align: center; }
  .hero__ctas         { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn    { justify-content: center; }
  .reviews-grid       { grid-template-columns: 1fr; }
  .whatsapp-fab span  { display: none; }
  .whatsapp-fab       { padding: 16px; }
}
@media (max-width: 480px) {
  .florals-grid   { grid-template-columns: 1fr; }
  .about__stats   { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}
