/* ============================================
   THE BLOOM ROOM LA — Main Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --dark: #141414;
  --dark-2: #1c1c1c;
  --gold: #c8a96e;
  --gold-light: #e0c98a;
  --rose: #8b1a2a;
  --rose-light: #c23b50;
  --cream: #f5f0e8;
  --cream-2: #faf6ef;
  --white: #ffffff;
  --grey: #888;
  --grey-light: #ccc;
  --text: #2a2a2a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --shadow: 0 4px 32px rgba(0,0,0,0.12);
  --shadow-deep: 0 8px 48px rgba(0,0,0,0.22);
  --radius: 4px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  border: 2px solid var(--rose);
}
.btn-primary:hover { background: var(--rose-light); border-color: var(--rose-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline-dark:hover { background: var(--text); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--grey);
  border: 2px solid var(--grey-light);
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); }
.btn-card {
  background: var(--rose);
  color: var(--white);
  border: 2px solid var(--rose);
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  font-size: 12px;
}
.btn-card:hover { background: var(--rose-light); border-color: var(--rose-light); }
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  color: var(--white);
  border: none;
  font-weight: 700;
}
.btn-instagram:hover { opacity: 0.9; transform: translateY(-2px); }
.full-width { width: 100%; justify-content: center; }

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-eyebrow { color: var(--gold); }
.section-header.light .section-sub { color: rgba(255,255,255,0.7); }
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub { color: var(--grey); font-size: 15px; max-width: 600px; margin: 0 auto; }
.section-title-left {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--dark);
  color: var(--gold);
  text-align: center;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 1001;
  position: relative;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  background: var(--rose) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--rose-light) !important; color: var(--white) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--white); transform: scale(1.3); }

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  background: var(--dark);
  padding: 20px 0;
}
.strip-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.strip-item i { font-size: 14px; }

/* ============================================
   BOUQUETS
   ============================================ */
.bouquets {
  padding: 96px 0;
  background: var(--cream-2);
}
.color-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 2px solid var(--grey-light);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: var(--white);
  color: var(--grey);
  transition: all var(--transition);
}
.toggle-btn.active {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(139,26,42,0.06);
}
.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.red-dot { background: #8b1a2a; }
.mixed-dot { background: linear-gradient(135deg, #8b1a2a 50%, #f0ece6 50%); border: 1px solid #ccc; }

.bouquet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bouquet-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.bouquet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.bouquet-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.02);
}
.bouquet-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.bouquet-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.bouquet-img-wrap img { transition: transform 0.6s ease; }
.bouquet-card:hover .bouquet-img-wrap img { transform: scale(1.05); }
.bouquet-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--dark);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.bouquet-badge.popular { background: var(--rose); color: var(--white); }
.bouquet-badge.bestseller { background: var(--gold); color: var(--dark); }
.bouquet-badge.luxury { background: var(--dark-2); color: var(--gold); }
.bouquet-info { padding: 24px; }
.bouquet-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}
.bouquet-stems {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bouquet-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 16px;
}
.bouquet-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}
.bouquet-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--dark);
}
.bouquet-pickup {
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.addons-box {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: 32px 40px;
  margin-top: 40px;
  text-align: center;
}
.addons-box h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 24px;
}
.addons-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.addon-item i { font-size: 20px; color: var(--rose); }
.addon-item strong { display: block; font-weight: 600; color: var(--dark); }
.addon-item span { color: var(--gold); font-weight: 700; font-size: 18px; }
.addons-note { font-size: 13px; color: var(--grey); font-style: italic; }

/* ============================================
   HOW TO ORDER
   ============================================ */
.how-to-order {
  padding: 96px 0;
  background: var(--dark);
}
.how-to-order .section-title { color: var(--white); }
.order-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}
.order-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 24px;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-serif);
  margin: 0 auto 16px;
}
.order-step h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.order-step p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; }
.order-arrow {
  color: var(--gold);
  font-size: 18px;
  padding-top: 20px;
  flex-shrink: 0;
}
.order-example {
  background: var(--dark-2);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 8px;
  padding: 40px;
}
.order-example-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.example-col h4 {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.text-bubble {
  border-radius: 12px;
  padding: 20px 24px;
  line-height: 2;
  font-size: 14px;
}
.text-bubble.customer {
  background: rgba(139,26,42,0.15);
  border: 1px solid rgba(139,26,42,0.3);
  color: var(--cream);
}
.text-bubble.store {
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.2);
  color: var(--cream);
}
.text-bubble strong { color: var(--white); }
.example-note { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin-bottom: 24px; font-style: italic; }
.order-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   DATE NIGHT
   ============================================ */
.date-night {
  padding: 96px 0;
  background: var(--white);
}
.date-night-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.date-night-img {
  position: relative;
  height: 680px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.date-night-content {}
.date-night-body {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 8px;
}
.date-night-note {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 32px;
  font-style: italic;
}

/* Forms */
.reminder-form, .readers-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
}
.label-light { color: rgba(255,255,255,0.7) !important; }
.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--rose); }
.form-fine-print {
  font-size: 11px;
  color: var(--grey);
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}
.light-fine { color: rgba(255,255,255,0.4) !important; }

/* Success State */
.reminder-success, .readers-success {
  text-align: center;
  padding: 32px;
  background: rgba(139,26,42,0.06);
  border: 1px solid rgba(139,26,42,0.15);
  border-radius: 8px;
  margin-bottom: 24px;
}
.success-icon { font-size: 40px; color: var(--rose); margin-bottom: 16px; }
.reminder-success h4, .readers-success h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.reminder-success p, .readers-success p { font-size: 13px; color: var(--grey); margin-bottom: 20px; line-height: 1.7; }

/* Loyalty Box */
.loyalty-box {
  background: var(--cream-2);
  border: 1px solid var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: 24px;
}
.loyalty-box h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.loyalty-box h4 i { color: var(--gold); }
.loyalty-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.loyalty-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.loyalty-list li i { color: var(--rose); font-size: 11px; }
.loyalty-note { font-size: 13px; color: var(--dark); font-weight: 600; margin-bottom: 8px; }
.loyalty-private {
  font-size: 12px;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 6px;
}
.loyalty-private i { color: var(--gold); }

/* ============================================
   LATE NIGHT READERS CLUB
   ============================================ */
.readers-club {
  position: relative;
  padding: 96px 0;
  background: var(--black);
  overflow: hidden;
}
.readers-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(139,26,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.readers-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.light-eyebrow { color: var(--gold) !important; }
.readers-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.readers-body {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 16px;
}
.readers-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 32px;
}
.readers-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.readers-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 16px;
}
.readers-feature i {
  font-size: 18px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.readers-feature strong {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 3px;
}
.readers-feature span {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  line-height: 1.5;
}
.readers-price-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(200,169,110,0.1);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.readers-price-note span { font-size: 12px; color: rgba(255,255,255,0.6); font-style: italic; }
.readers-price-note strong { font-size: 22px; font-family: var(--font-serif); color: var(--gold); }
.readers-form .form-group input,
.readers-form .form-group select {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.readers-form .form-group input::placeholder { color: rgba(255,255,255,0.3); }
.readers-form .form-group input:focus,
.readers-form .form-group select:focus { border-color: var(--gold); }

/* Readers images */
.readers-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.readers-img-main {
  position: relative;
  height: 420px;
  border-radius: 8px;
  overflow: hidden;
}
.readers-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.75);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  backdrop-filter: blur(6px);
}
.readers-img-badge i { font-size: 18px; }
.readers-img-secondary {
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}
.readers-success {
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.25);
}
.readers-success .success-icon { color: var(--gold); }
.readers-success h4 { color: var(--white); }
.readers-success p { color: rgba(255,255,255,0.6); }

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 96px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* ============================================
   INSTAGRAM CTA
   ============================================ */
.instagram-cta {
  padding: 72px 0;
  background: var(--dark);
}
.instagram-cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ig-content { color: var(--white); }
.ig-icon { font-size: 40px; color: var(--gold); margin-bottom: 16px; }
.ig-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 12px;
}
.ig-content p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.ig-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 220px;
}
.ig-photo { overflow: hidden; border-radius: 4px; }
.ig-photo img { transition: transform 0.5s ease; }
.ig-photo:hover img { transform: scale(1.08); }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 96px 0;
  background: var(--cream-2);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item { background: var(--white); border-bottom: 1px solid var(--cream); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover, .faq-q.open { color: var(--rose); }
.faq-q i { transition: transform var(--transition); flex-shrink: 0; margin-left: 12px; color: var(--grey); }
.faq-q.open i { transform: rotate(45deg); color: var(--rose); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 28px;
}
.faq-a.open { max-height: 300px; padding: 0 28px 22px; }
.faq-a p { font-size: 14px; color: var(--grey); line-height: 1.7; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.cta-banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 16px;
}
.cta-banner-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo-main {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.footer-logo-sub {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-ig:hover { color: var(--gold-light); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ============================================
   POPUP
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.popup-box {
  background: var(--white);
  border-radius: 12px;
  max-width: 460px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  color: var(--grey);
  cursor: pointer;
  transition: color var(--transition);
}
.popup-close:hover { color: var(--dark); }
.popup-icon { font-size: 36px; color: var(--rose); text-align: center; display: block; margin-bottom: 16px; }
.popup-content { text-align: center; }
.popup-content h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 10px;
}
.popup-content > p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 24px;
}
#popupForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
#popupForm input,
#popupForm select {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
#popupForm input:focus,
#popupForm select:focus { border-color: var(--rose); }
.popup-success {
  text-align: center;
  padding: 20px 0;
}
.popup-success i { font-size: 40px; color: var(--rose); margin-bottom: 12px; }
.popup-success h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.popup-success p { font-size: 13px; color: var(--grey); line-height: 1.6; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .bouquet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .date-night-grid { grid-template-columns: 1fr; }
  .date-night-img { height: 400px; }
  .readers-grid { grid-template-columns: 1fr; }
  .readers-images { grid-template-columns: 1fr 1fr; display: grid; }
  .readers-img-main { height: 280px; }
  .readers-img-secondary { height: 180px; }
  .instagram-cta .container { grid-template-columns: 1fr; }
  .ig-photos { height: 180px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; }
  .order-example-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--cream);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; }
  .bouquet-grid { grid-template-columns: 1fr; }
  .bouquet-card.featured { transform: none; }
  .readers-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .order-steps { flex-direction: column; align-items: center; }
  .order-arrow { transform: rotate(90deg); padding: 0; }
  .strip-items { gap: 24px; }
}

@media (max-width: 540px) {
  .hero-title { font-size: 2.8rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item.tall { grid-row: span 1; }
  .addons-row { flex-direction: column; align-items: center; gap: 20px; }
  .readers-images { grid-template-columns: 1fr; }
}
