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

:root {
  --black:       #1e0d14;
  --black-soft:  #2d1020;
  --red:         #c4607a;
  --red-deep:    #a04060;
  --red-bright:  #e0809a;
  --cream:       #fdf0f3;
  --cream-warm:  #fae0e6;
  --gold:        #d4a0b0;
  --gold-light:  #f0c8d4;
  --text:        #2d1020;
  --text-mid:    #7a3a52;
  --text-soft:   #b07888;
  --white:       #ffffff;
  --green:       #2a4a36;
  --green-mid:   #3a6a48;
  --green-light: #4a8a5a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Tenor Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

em { font-style: italic; color: var(--red); }

/* ── ROSE PETAL PARTICLES ── */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  top: -20px;
  width: 8px;
  height: 10px;
  background: radial-gradient(ellipse at 40% 30%, #e898a8, #c4607a);
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: petal-fall linear forwards;
}

@keyframes petal-fall {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.8); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(105vh) rotate(280deg) scale(1.1); }
}

/* ── HERO BRAND BAR ── */
.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 60px;
  background: #1a3a2a;
  position: relative;
  z-index: 1;
}

.brand-line {
  flex: 1;
  max-width: 120px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.5;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 5% 10%, rgba(196, 96, 122, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 90%, rgba(196, 96, 122, 0.06) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 60px 80px;
  gap: 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.eyebrow-dash {
  display: inline-block;
  width: 32px;
  height: 0.5px;
  background: var(--red);
}

.eyebrow-text {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 400;
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--black-soft);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red-deep);
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 0;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 20px;
  border: 0.5px solid rgba(201, 169, 110, 0.3);
}

.hero-btn:hover {
  background: var(--red);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn-arrow { opacity: 0.6; }

.hero-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-soft);
  opacity: 0.8;
}

/* HERO RIGHT */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-frame {
  background: var(--white);
  padding: 8px 8px 52px;
  box-shadow:
    0 2px 0 rgba(201, 169, 110, 0.3),
    0 20px 60px rgba(26, 10, 16, 0.2);
  transform: rotate(1deg);
  max-width: 400px;
  width: 100%;
  position: relative;
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 0.5px solid rgba(201, 169, 110, 0.2);
  pointer-events: none;
}

.hero-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #f0c0cc 0%, #e09aaa 30%, #d47090 60%, #c0607a 100%);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.frame-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px 0;
}

.tag-rose {
  color: var(--red);
  font-size: 10px;
  opacity: 0.6;
}

.tag-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-soft);
}

.hero-ribbon-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--black-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border: 0.5px solid rgba(201, 169, 110, 0.3);
}

.ribbon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ribbon-top {
  font-size: 11px;
  color: rgba(201, 169, 110, 0.6);
  letter-spacing: 0.1em;
  font-family: 'Tenor Sans', sans-serif;
}

.ribbon-em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
}

/* ── ROSE DIVIDER ── */
.rose-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 60px;
  position: relative;
  z-index: 1;
  background: #fff0f8;
}

.divider-line {
  flex: 1;
  height: 0.5px;
  background: linear-gradient(to right, transparent, rgba(139, 26, 42, 0.3), transparent);
}

.divider-rose {
  font-size: 12px;
  color: var(--red);
  opacity: 0.5;
}

/* ── GALLERY ── */
.gallery-section {
  position: relative;
  z-index: 1;
  background: var(--cream);
  padding: 80px 0 0;
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.gallery-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.gallery-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--black-soft);
  line-height: 1.15;
  margin-bottom: 14px;
}

.gallery-subtext {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Full bleed grid with thin cream lines */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  background: var(--cream-warm);
  width: 100%;
}

.gi-tall { grid-row: span 2; }

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  flex: 1;
  min-height: 260px;
  background: var(--cream);
}

.gi-tall { min-height: 522px; }

.gallery-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gi-tall .gallery-img-placeholder,
.gi-tall img { min-height: 522px; height: 100%; }

/* Deep red placeholder gradients */
.gp1 { background: linear-gradient(160deg, #e8a0b0, #d47090, #c4607a); }
.gp2 { background: linear-gradient(160deg, #f0c0cc, #e0a0b4); }
.gp3 { background: linear-gradient(160deg, #d47090, #e898a8); }
.gp4 { background: linear-gradient(160deg, #c87090, #b86080); }
.gp5 { background: linear-gradient(160deg, #e898a8, #d47090); }

.gallery-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-soft);
  padding: 12px 20px 14px;
  background: var(--cream);
  border-top: 0.5px solid rgba(139, 26, 42, 0.1);
}

/* ── CLOSING QUOTE ── */
.quote-section {
  position: relative;
  z-index: 1;
  background: #3d1828;
  padding: 100px 60px;
  text-align: center;
  background-image: radial-gradient(ellipse at 50% 50%, rgba(196, 96, 122, 0.2) 0%, transparent 70%);
}

.quote-rose {
  font-size: 16px;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 32px;
  letter-spacing: 0.3em;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.8vw, 34px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream-warm);
  max-width: 700px;
  margin: 0 auto;
  font-style: normal;
}

.quote-text em {
  font-style: italic;
  color: var(--red-bright);
}

.quote-sig {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(245, 236, 224, 0.45);
  margin-top: 28px;
}

.lafleur-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.4);
}

.credit-brand {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.7;
}

/* ── FOOTER ── */
.footer {
  background: #2d1020;
  padding: 48px 60px;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 10px;
  font-weight: 300;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 236, 224, 0.25);
  margin-bottom: 20px;
}

.footer-divider {
  width: 40px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.2;
  margin: 0 auto 16px;
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(245, 236, 224, 0.18);
  text-transform: uppercase;
}

/* ── FLOATING MUSIC PLAYER ── */
.music-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 16, 20, 0.92);
  backdrop-filter: blur(16px);
  border-radius: 0;
  padding: 10px 20px 10px 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  border: 0.5px solid rgba(196, 96, 122, 0.3);
  z-index: 999;
  transition: all 0.3s;
}

.music-float:hover {
  border-color: rgba(196, 96, 122, 0.5);
}

.float-btn {
  width: 36px;
  height: 36px;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.float-btn:hover { background: var(--red-bright); }

.pause-icon { display: flex; gap: 3px; }
.pause-bar { width: 3px; height: 12px; background: #fff; border-radius: 0; }
.play-tri { width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 13px solid #fff; margin-left: 2px; }

.float-info { display: flex; flex-direction: column; }

.float-note {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
  text-transform: uppercase;
}

.float-track {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--cream-warm);
  font-style: italic;
  white-space: nowrap;
}


/* ── ROSE BLOOM ANIMATIONS ── */
.rose-corner {
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

.rose-corner-tl { top: -10px; left: -10px; }
.rose-corner-br { bottom: -10px; right: -10px; transform: rotate(180deg); }

.rose-svg {
  opacity: 0;
  animation: rose-appear 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.rose-corner-br .rose-svg {
  animation-delay: 0.4s;
}

@keyframes rose-appear {
  from { opacity: 0; transform: scale(0.5) rotate(-20deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Rose petals on hero photo */
.hero-frame .rose-petal-accent {
  position: absolute;
  top: -14px;
  left: -14px;
  font-size: 28px;
  animation: sway 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes sway {
  0%, 100% { transform: rotate(-10deg) scale(1); }
  50%       { transform: rotate(8deg) scale(1.08); }
}

/* Blooming rose in quote section */
.quote-rose-bloom {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.quote-rose-svg {
  animation: bloom-spin 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes bloom-spin {
  from { transform: scale(0) rotate(-90deg); opacity: 0; }
  to   { transform: scale(1) rotate(0deg);  opacity: 1; }
}

/* Stem grow animation on dividers */
.rose-divider .divider-rose {
  animation: pulse-rose 3s ease-in-out infinite;
}

@keyframes pulse-rose {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0.9; transform: scale(1.3); }
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-brand { padding: 24px 24px 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 48px;
    min-height: auto;
  }

  .hero-right { justify-content: flex-start; }
  .hero-frame { max-width: 100%; transform: rotate(0.5deg); }

  .rose-divider { padding: 12px 24px; }

  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .gi-tall,
  .gallery-col { display: flex; flex-direction: column; gap: 3px; }

  .gallery-item { min-height: 280px; }
  .gi-tall { min-height: 280px; }

  .gi-tall img,
  .gallery-col .gallery-item img,
  .gi-tall .gallery-img-placeholder,
  .gallery-img-placeholder {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    min-height: unset;
  }

  .quote-section { padding: 72px 24px; }
  .footer { padding: 36px 24px; }
  .music-float { bottom: 16px; right: 16px; }
}