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

:root {
  /* Palette */
  --salmon:       #E8607A;
  --salmon-deep:  #E8607A;
  --salmon-pale:  #E8607A;
  --salmon-blush: #FFF0F3;
  --ivory:        #FAF7F2;
  --ivory-dark:   #F0EBE3;
  --charcoal:     #1C1C1A;
  --charcoal-mid: #3A3935;
  --charcoal-muted:#7A7975;
  --charcoal-dim: #B0ADA8;
  --white:        #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing / layout */
  --max-w: 1360px;
  --section-pad: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom Cursor ─────────────────────────────────────────────────────────── */
.cursor {
  width: 6px; height: 6px;
  background: var(--charcoal);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s;
}
.cursor-ring {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,145,164,0.6);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
  opacity: 0.7;
}
.cursor-ring.hovered {
  width: 52px; height: 52px;
  opacity: 0.35;
  border-color: var(--salmon);
}

/* ─── Nav ───────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
  transition: background 0.5s ease, padding 0.4s ease, border-color 0.5s;
}
nav.scrolled {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(16px);
  padding: 1.2rem clamp(1.5rem, 5vw, 5rem);
  border-bottom: 1px solid var(--ivory-dark);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--salmon-deep);
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--salmon);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--charcoal);
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--charcoal-mid); }
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

/* Full-bleed background image with overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1490750967868-88df5691cc3c?w=1800&q=85') center/cover no-repeat;
  z-index: 0;
}
/* Gradient overlay — strong at bottom for text legibility, subtle at top */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,247,242,0.15) 0%,
    rgba(250,247,242,0.35) 30%,
    rgba(250,247,242,0.80) 60%,
    rgba(250,247,242,0.97) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem) 5rem;
}

/* Top eyebrow sits near the nav */
.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--salmon-deep);
  margin-bottom: 1.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 36px; height: 1px; background: var(--salmon);
}

/* Two-column bottom row: big title left, sub-content right */
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-end;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 7.5rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  margin: 0;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--salmon-deep);
  display: block;
}

.hero-right-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 0.4rem;
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-mid);
  max-width: 400px;
}
.hero-actions {
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
}

/* Stats row — full width below the two columns */
.hero-stats {
  display: flex; gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(28,28,26,0.12);
}
.hero-stat {
  flex: 1;
  padding: 1.5rem 0;
  border-right: 1px solid rgba(28,28,26,0.12);
}
.hero-stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-top: 0.4rem;
}

.btn-primary {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--salmon-deep);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--salmon); transform: translateY(-1px); }
.btn-outline {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal-dim);
  padding-bottom: 2px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.3s, color 0.3s, gap 0.3s;
}
.btn-outline:hover {
  border-color: var(--salmon);
  color: var(--salmon-deep);
  gap: 0.9rem;
}
.btn-outline::after { content: '\2192'; }

/* ─── Marquee ────────────────────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--charcoal);
  padding: 0.85rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 3rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
}
.marquee-sep {
  width: 4px; height: 4px;
  background: var(--salmon);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section Commons ────────────────────────────────────────────────────────── */
section { padding: var(--section-pad); }
.inner { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--salmon-deep);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.section-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1px; background: var(--salmon);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--salmon-deep);
}

/* ─── About ─────────────────────────────────────────────────────────────────── */
.about { background: var(--white); }
.about-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center;
}
.about-visual {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute; top: 0; left: 0; right: 80px; bottom: 80px;
  background: url('https://s7d1.scene7.com/is/image/wbcollab/greenhouse-1920x1080?qlt=90&fmt=webp') center/cover no-repeat;
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 54%; height: 48%;
  background: url('https://images.unsplash.com/photo-1567696153798-9111f9cd3d0d?w=400&q=80') center/cover no-repeat;
  border: 5px solid var(--white);
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}
.about-img-tag {
  position: absolute; top: 2rem; right: 90px;
  background: var(--salmon-deep);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--charcoal-mid);
  margin-top: 1.5rem;
  max-width: 500px;
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin-top: 2.5rem;
}
.about-feature {
  border-left: 2px solid var(--ivory-dark);
  padding-left: 1rem;
  transition: border-color 0.3s;
}
.about-feature:hover { border-color: var(--salmon); }
.about-feature-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.about-feature-text {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--charcoal-muted);
}

/* ─── Flowers ────────────────────────────────────────────────────────────────── */
.flowers { background: var(--ivory); }
.flowers-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 4rem; flex-wrap: wrap; gap: 1.5rem;
}
.flowers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.flower-card {
  position: relative; overflow: hidden;
  height: 520px;
}
.flower-card:first-child { margin-top: -2rem; height: 560px; }
.flower-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.flower-card:hover img { transform: scale(1.04); }
.flower-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,26,0.82) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}
.flower-card-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--salmon);
  border: 1px solid var(--salmon);
  padding: 0.28rem 0.65rem;
  margin-bottom: 0.8rem;
  width: fit-content;
}
.flower-card-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.flower-card-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  max-width: 280px;
}
.flower-colors {
  display: flex; gap: 0.4rem; margin-top: 1rem;
}
.flower-color-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
}

/* ─── Varieties ──────────────────────────────────────────────────────────────── */
.varieties { background: var(--charcoal); padding: var(--section-pad); }
.varieties h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}
.varieties h2 em { font-style: italic; color: var(--salmon); }
.varieties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(250,247,242,0.08);
}
.variety-item {
  background: var(--charcoal);
  padding: 2.2rem 2rem;
  transition: background 0.3s;
}
.variety-item:hover { background: var(--charcoal-mid); }
.variety-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,145,164,0.12);
  line-height: 1;
  margin-bottom: 1rem;
}
.variety-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.variety-detail {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(250,247,242,0.45);
  line-height: 1.65;
}

/* ─── Process ────────────────────────────────────────────────────────────────── */
.process { background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 3rem; margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 1.9rem; left: 2rem; right: 2rem;
  height: 1px; background: var(--ivory-dark); z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.step-number {
  width: 3.8rem; height: 3.8rem;
  background: var(--ivory);
  border: 1px solid var(--ivory-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal-muted);
  margin-bottom: 1.5rem;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.process-step:hover .step-number {
  background: var(--salmon-deep);
  border-color: var(--salmon-deep);
  color: var(--white);
}
.step-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.step-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--charcoal-muted);
}

/* ─── Certifications ─────────────────────────────────────────────────────────── */
.certifications { background: var(--ivory-dark); }
.cert-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; margin-bottom: 3rem;
}
.cert-header p {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-mid);
}
.cert-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.cert-item {
  background: var(--white);
  padding: 1.6rem;
  text-align: center;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, transform 0.2s;
}
.cert-item:hover {
  border-color: var(--salmon);
  transform: translateY(-2px);
}
.cert-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.cert-desc {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--charcoal-muted);
  line-height: 1.55;
}
.cert-compliance {
  grid-column: 1 / -1;
  background: var(--charcoal);
  padding: 1.2rem 1.6rem;
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 0.5rem;
}
.cert-compliance-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--salmon);
  white-space: nowrap;
}
.cert-compliance-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(250,247,242,0.65);
  line-height: 1.55;
}

/* ─── Destinations ───────────────────────────────────────────────────────────── */
.destinations { background: var(--ivory); }
.dest-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 1.2rem; margin-top: 3rem;
}
.dest-card {
  position: relative; overflow: hidden;
  min-height: 300px;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.dest-card:hover img { transform: scale(1.04); }
.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(28,28,26,0.65) 0%, transparent 55%);
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.dest-region {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 0.35rem;
}
.dest-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}
.dest-commitment {
  background: var(--salmon-pale);
  padding: 1.8rem 1.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.dest-commitment-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--salmon-deep);
  margin-bottom: 0.8rem;
}
.dest-commitment-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.35;
}
.dest-commitment-text em { font-style: italic; color: var(--salmon-deep); }

/* ─── Contact ────────────────────────────────────────────────────────────────── */
.contact { background: var(--charcoal); }
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8rem;
}
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.contact h2 em { font-style: italic; color: var(--salmon); }
.contact-desc {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,247,242,0.55);
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon {
  width: 2rem; height: 2rem;
  background: rgba(255,145,164,0.1);
  border: 1px solid rgba(255,145,164,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 13px; height: 13px; stroke: var(--salmon); fill: none; }
.contact-item-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 0.25rem;
}
.contact-item-value {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ivory);
}
.contact-item-value a { color: inherit; text-decoration: none; }
.contact-item-value a:hover { color: var(--salmon-pale); }

/* Hours */
.hours-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,145,164,0.08);
  border: 1px solid rgba(255,145,164,0.2);
  padding: 0.35rem 0.8rem;
  margin-top: 0.5rem;
}
.hours-dot {
  width: 5px; height: 5px;
  background: #6fcf97; border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.hours-text {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,145,164,0.75);
  letter-spacing: 0.04em;
}

/* ─── Contact Form ────────────────────────────────────────────────────────────── */
.contact-form { padding-top: 0.5rem; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(250,247,242,0.05);
  border: 1px solid rgba(250,247,242,0.1);
  color: var(--ivory);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(250,247,242,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--salmon);
  background: rgba(255,145,164,0.04);
}
.form-group select {
  appearance: none; cursor: pointer;
  color: rgba(250,247,242,0.5);
}
.form-group select option { background: var(--charcoal); }
.form-group.full { grid-column: 1 / -1; }
.form-group textarea { resize: none; height: 120px; }
.form-submit {
  margin-top: 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.btn-submit {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--salmon-deep);
  border: none;
  padding: 0.9rem 2.2rem;
  cursor: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-submit:hover { background: var(--salmon); transform: translateY(-1px); }

/* ─── Footer ─────────────────────────────────────────────────────────────────── */
footer {
  background: #111110;
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.2rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.footer-logo em { font-style: italic; font-weight: 400; color: var(--salmon); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: rgba(250,247,242,0.75); }
.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(250,247,242,0.25);
}

/* ─── Reveal Animations ──────────────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Mobile Overrides ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { min-height: 100svh; }
  .hero-body { grid-template-columns: 1fr; gap: 2rem; }
  .hero-title { font-size: clamp(3rem, 10vw, 4.5rem); }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 40%; }
  .hero-left { padding: 9rem 1.5rem 4rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 55vw; }
  .flowers-grid { grid-template-columns: 1fr; }
  .flower-card:first-child { margin-top: 0; height: 420px; }
  .flower-card { height: 380px; }
  .varieties-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .cert-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 560px) {
  .varieties-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .cert-compliance { flex-direction: column; gap: 0.5rem; }
  .about-features { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
}