/* ═════════════════════════════════════════════
   THE DIAMOND FLORIST — Luxury Design System
   ═════════════════════════════════════════════ */
:root {
  --ivory: #f8f5f2;
  --cream: #f3ede6;
  --champagne: #e8dccb;
  --rose: #d9a7a0;
  --rose-deep: #b97c78;
  --sage: #a9b8a0;
  --emerald: #3e6b52;
  --gold: #c9a37e;
  --gold-bright: #dcb98f;
  --charcoal: #2b2926;
  --charcoal-soft: #55504a;
  --glass-bg: rgba(255, 253, 250, 0.55);
  --glass-border: rgba(255, 255, 255, 0.65);
  --radius: 26px;
  --radius-sm: 18px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft:
    0 1px 2px rgba(43, 41, 38, 0.04),
    0 4px 12px rgba(43, 41, 38, 0.05),
    0 16px 40px rgba(43, 41, 38, 0.08);
  --shadow-lift:
    0 2px 4px rgba(43, 41, 38, 0.05),
    0 8px 20px rgba(43, 41, 38, 0.08),
    0 28px 60px rgba(43, 41, 38, 0.12);
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background:
    radial-gradient(1200px 700px at 85% -5%, rgba(217, 167, 160, 0.18), transparent 60%),
    radial-gradient(1000px 600px at -10% 30%, rgba(169, 184, 160, 0.16), transparent 55%),
    radial-gradient(900px 700px at 100% 75%, rgba(201, 163, 126, 0.14), transparent 60%),
    var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Grain */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Petals */
#petals { position: fixed; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; }
.petal {
  position: absolute; top: -6vh;
  font-size: 18px; color: var(--rose);
  opacity: 0.55; will-change: transform;
  animation: petal-fall linear infinite;
}
@keyframes petal-fall {
  0%   { transform: translate3d(0, -6vh, 0) rotate(0deg); }
  100% { transform: translate3d(var(--drift, 40px), 108vh, 0) rotate(var(--spin, 320deg)); }
}

/* Glass */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 1.1s var(--ease-out);
  pointer-events: none;
}
.glass:hover::before { transform: translateX(120%); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 500; line-height: 1.12; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); letter-spacing: -0.01em; margin-bottom: 1rem; }
h3 { font-size: 1.45rem; }
.center { text-align: center; }
.eyebrow {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.lead { font-size: 1.18rem; color: var(--charcoal-soft); font-weight: 400; margin-bottom: 1rem; }

/* Word reveal */
[data-words] .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px) rotate(2deg);
  filter: blur(6px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
  transition-delay: calc(var(--i) * 70ms);
}
[data-words].in .word { opacity: 1; transform: none; filter: blur(0); }

/* Reveal */
.reveal, .reveal-card {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(5px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), filter 0.9s var(--ease-out);
}
.reveal.in, .reveal-card.in { opacity: 1; transform: none; filter: blur(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.5s; }
.reveal-img { overflow: hidden; border-radius: var(--radius); }
.reveal-img img { transform: scale(1.06); transition: transform 1.4s var(--ease-out); }
.reveal-img.in img { transform: scale(1); }

/* Layout */
.section { padding: clamp(5rem, 10vw, 8.5rem) 0; position: relative; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.container-wide { width: min(1400px, 96%); margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95rem 2.1rem;
  border-radius: 100px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.03em;
  cursor: pointer; border: none;
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-out), background 0.4s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lift); }
.btn:active { transform: translateY(-1px) scale(0.99); }
.btn-primary {
  background: linear-gradient(135deg, var(--emerald), #2e5440);
  color: var(--ivory);
  box-shadow: 0 8px 24px rgba(62, 107, 82, 0.35);
}
.btn-primary:hover { box-shadow: 0 14px 36px rgba(62, 107, 82, 0.45); }
.btn-glass {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--charcoal);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--charcoal);
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--rose-deep));
  color: #fff; padding: 0.6rem 1.4rem; font-size: 0.85rem;
}

/* ══════════ NAV ══════════ */
.nav {
  position: fixed; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: min(1240px, 94%);
  z-index: 100;
  border-radius: 100px;
  background: rgba(248, 245, 242, 0.5);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow-soft);
  transition: all 0.6s var(--ease-out);
}
.nav.scrolled {
  top: 8px;
  width: min(1080px, 92%);
  background: rgba(248, 245, 242, 0.78);
  box-shadow: var(--shadow-lift);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.85rem 2rem;
  transition: padding 0.5s var(--ease-out);
}
.nav.scrolled .nav-inner { padding: 0.55rem 1.6rem; }
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 600;
  white-space: nowrap;
}
.logo-diamond { color: var(--gold); font-size: 0.9rem; animation: diamond-glow 3s ease-in-out infinite; }
@keyframes diamond-glow {
  0%, 100% { text-shadow: 0 0 6px rgba(201,163,126,0.4); transform: scale(1); }
  50% { text-shadow: 0 0 16px rgba(201,163,126,0.8); transform: scale(1.1); }
}
.nav-links { display: flex; gap: 1.6rem; align-items: center; font-size: 0.88rem; font-weight: 500; }
.nav-left { justify-content: flex-end; padding-right: 2rem; }
.nav-right { justify-content: flex-start; padding-left: 2rem; }
.nav-links a:not(.btn) { position: relative; opacity: 0.85; transition: opacity 0.3s; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav-links a:not(.btn):hover { opacity: 1; }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; border-radius: 2px; transition: 0.4s var(--ease-out); }
.nav-burger.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 78px; left: 50%;
  transform: translateX(-50%) translateY(-16px);
  width: min(420px, 92%);
  z-index: 99;
  background: rgba(248, 245, 242, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  display: flex; flex-direction: column; gap: 0.4rem;
  padding: 1.4rem;
  opacity: 0; pointer-events: none;
  transition: 0.5s var(--ease-spring);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.mobile-menu a:not(.btn) { padding: 0.7rem 1rem; border-radius: 12px; font-weight: 500; transition: background 0.3s; }
.mobile-menu a:not(.btn):hover { background: rgba(201,163,126,0.12); }

/* ══════════ HERO ══════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  color: var(--ivory);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-zoom 20s var(--ease-out) forwards;
}
.hero-fallback { z-index: -1; }
@keyframes hero-zoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 26, 22, 0.45) 0%, rgba(23, 26, 22, 0.25) 40%, rgba(23, 26, 22, 0.65) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(43, 41, 38, 0.5), transparent 70%);
}
.hero-content { position: relative; z-index: 2; width: min(900px, 92%); padding-top: 4rem; }
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--champagne); margin-bottom: 1.6rem; font-weight: 500;
}
.hero-title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero-title .word:nth-child(2) { font-style: italic; color: var(--rose); }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 620px; margin: 0 auto 2.4rem;
  color: rgba(248, 245, 242, 0.88); font-weight: 300;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.6rem; }
.review-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  background: rgba(255, 253, 250, 0.14);
  border-color: rgba(255,255,255,0.3);
  color: var(--ivory);
  font-size: 0.88rem;
  animation: badge-float 5s ease-in-out infinite;
}
@keyframes badge-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.stars { color: var(--gold-bright); letter-spacing: 2px; font-size: 0.95rem; }
.badge-score { font-weight: 700; }
.badge-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.35); }
.hero-scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 14px; z-index: 2;
}
.hero-scroll-hint span {
  position: absolute; top: 8px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 3px; background: rgba(255,255,255,0.8);
  animation: scroll-dot 2s var(--ease-out) infinite;
}
@keyframes scroll-dot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* ══════════ ABOUT ══════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.about-media { position: relative; }
.about-portrait { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lift); }
.about-portrait img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.about-card {
  position: absolute; bottom: -26px; right: -18px;
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.6rem;
  display: flex; flex-direction: column; gap: 0.2rem;
  max-width: 220px;
}
.about-card-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 600; color: var(--emerald); line-height: 1; }
.about-card-label { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--charcoal-soft); }
.about-values { list-style: none; margin: 1.4rem 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.about-values li { display: flex; gap: 0.6rem; font-size: 0.95rem; font-weight: 500; }
.about-values span { color: var(--gold); }
.about-copy > p { color: var(--charcoal-soft); }

/* ══════════ BENTO ══════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 1.2rem; margin-top: 3rem;
}
.bento-lg { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }
.bento-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background-image: linear-gradient(160deg, rgba(43,41,38,0.05) 40%, rgba(43,41,38,0.4)), var(--img);
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.6s var(--ease-spring), box-shadow 0.6s var(--ease-out), background-size 0.9s var(--ease-out);
  will-change: transform;
}
.bento-card:hover { box-shadow: var(--shadow-lift); }
.bento-glass {
  width: 100%; border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  background: rgba(255, 253, 250, 0.4);
  transition: background 0.4s, transform 0.5s var(--ease-spring);
}
.bento-card:hover .bento-glass { background: rgba(255, 253, 250, 0.62); transform: translateY(-4px); }
.bento-emoji { font-size: 1.4rem; display: inline-block; transition: transform 0.5s var(--ease-spring); }
.bento-card:hover .bento-emoji { transform: scale(1.25) rotate(-8deg); }
.bento-glass h3 { margin: 0.15rem 0 0.1rem; }
.bento-glass p { font-size: 0.85rem; color: var(--charcoal-soft); }

/* ══════════ WHY ══════════ */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 3rem;
}
.why-card {
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  transition: transform 0.55s var(--ease-spring), box-shadow 0.5s var(--ease-out);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.why-icon {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; font-size: 1.4rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201,163,126,0.18), rgba(217,167,160,0.2));
  margin-bottom: 1rem;
  transition: transform 0.5s var(--ease-spring);
}
.why-card:hover .why-icon { transform: rotate(-8deg) scale(1.12); }
.why-card h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.why-card p { font-size: 0.92rem; color: var(--charcoal-soft); }

/* ══════════ GALLERY ══════════ */
.masonry {
  columns: 3; column-gap: 1.2rem; margin-top: 3rem;
}
.masonry-item {
  position: relative; break-inside: avoid; margin-bottom: 1.2rem;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); cursor: pointer;
}
.masonry-item img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.masonry-item.tall img { aspect-ratio: 3/4.6; }
.masonry-item:hover img { transform: scale(1.07); }
.masonry-item figcaption {
  position: absolute; left: 10px; right: 10px; bottom: 10px;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  background: rgba(255, 253, 250, 0.55);
  transform: translateY(14px); opacity: 0;
  transition: 0.55s var(--ease-spring);
}
.masonry-item:hover figcaption { transform: translateY(0); opacity: 1; }
.masonry-item h4 { font-size: 1.2rem; }
.masonry-item figcaption span {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.masonry-item figcaption p { font-size: 0.85rem; color: var(--charcoal-soft); margin: 0.2rem 0 0.4rem; }
.masonry-item figcaption a { font-size: 0.85rem; font-weight: 600; color: var(--emerald); }

/* ══════════ REVIEWS ══════════ */
.marquee { overflow: hidden; margin-top: 3rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track {
  display: flex; gap: 1.4rem; width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.review-card {
  width: 380px; flex-shrink: 0;
  border-radius: var(--radius); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 0.9rem;
  transition: transform 0.5s var(--ease-spring);
}
.review-card:hover { transform: translateY(-5px); }
.review-card p { font-family: var(--font-head); font-size: 1.18rem; font-style: italic; line-height: 1.45; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c); color: #fff;
  font-weight: 700; font-size: 1rem;
}
.reviewer strong { display: block; font-size: 0.92rem; }
.reviewer small { color: var(--charcoal-soft); font-size: 0.78rem; }

/* ══════════ PROCESS ══════════ */
.timeline {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
.vine {
  position: absolute; top: 30px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--emerald), var(--gold));
  transform-origin: left;
  transform: scaleX(var(--grow, 0));
  transition: transform 0.2s linear;
  border-radius: 2px;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  display: inline-grid; place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 600;
  color: var(--emerald);
  margin-bottom: 1.1rem;
}
.step h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.step p { font-size: 0.9rem; color: var(--charcoal-soft); }

/* ══════════ SERVICES ══════════ */
.services-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin-top: 3rem;
}
.service-chip {
  border-radius: 100px; padding: 0.9rem 1.9rem;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.45s var(--ease-spring), background 0.4s;
  cursor: default;
}
.service-chip:hover { transform: translateY(-4px) scale(1.04); background: rgba(201, 163, 126, 0.2); }
.services-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 3rem; }

/* ══════════ INSTAGRAM ══════════ */
.insta-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0.9rem; margin-top: 3rem;
}
.insta-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 1;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.4rem;
  background: rgba(43, 41, 38, 0.45);
  backdrop-filter: blur(4px);
  color: #fff; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  opacity: 0; transition: opacity 0.4s;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.heart { font-size: 1.6rem; color: var(--rose); display: inline-block; }
.insta-item:hover .heart { animation: heart-bloom 0.7s var(--ease-spring); }
@keyframes heart-bloom {
  0% { transform: scale(0); } 60% { transform: scale(1.4); } 100% { transform: scale(1); }
}

/* ══════════ CONTACT ══════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 2rem; align-items: stretch;
}
.contact-card { border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 3rem); }
.contact-list { list-style: none; margin: 1.6rem 0 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 14px; font-size: 1.1rem;
  background: linear-gradient(135deg, rgba(169,184,160,0.2), rgba(201,163,126,0.18));
  flex-shrink: 0;
}
.contact-list strong { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.contact-list p, .contact-list a { font-size: 0.98rem; }
.contact-list a:hover { color: var(--emerald); }
.contact-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.75) contrast(1.02); }

/* ══════════ FOOTER ══════════ */
.footer {
  position: relative;
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(217,167,160,0.1), transparent 60%),
    linear-gradient(180deg, #262420, #1c1a17);
  color: rgba(248, 245, 242, 0.8);
  padding: 5rem 0 0;
  overflow: hidden;
  margin-top: 4rem;
}
.footer-petals { position: absolute; inset: 0; pointer-events: none; }
.footer-petals span {
  position: absolute; color: var(--rose); opacity: 0.16; font-size: 22px;
  animation: footer-drift 14s ease-in-out infinite;
}
.footer-petals span:nth-child(1) { left: 8%; top: 15%; }
.footer-petals span:nth-child(2) { left: 30%; top: 60%; animation-delay: -3s; }
.footer-petals span:nth-child(3) { left: 55%; top: 25%; animation-delay: -6s; }
.footer-petals span:nth-child(4) { left: 75%; top: 65%; animation-delay: -9s; }
.footer-petals span:nth-child(5) { left: 92%; top: 30%; animation-delay: -12s; }
@keyframes footer-drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -26px) rotate(40deg); }
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr;
  gap: 2.5rem; position: relative; z-index: 1;
  padding-bottom: 3.5rem;
}
.footer-logo { color: var(--ivory); font-size: 1.35rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; margin-bottom: 1.4rem; max-width: 300px; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  font-size: 0.85rem; font-weight: 600;
  padding: 0.5rem 1.1rem; border-radius: 100px;
  border: 1px solid rgba(248,245,242,0.25);
  transition: 0.4s var(--ease-out);
}
.footer-social a:hover { background: rgba(248,245,242,0.1); border-color: var(--gold); transform: translateY(-2px); }
.footer-col h4 { color: var(--ivory); font-size: 1.15rem; margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.92rem; margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-bright); }
.news-form {
  display: flex; gap: 0.5rem;
  border-radius: 100px; padding: 0.4rem;
  background: rgba(248,245,242,0.08);
  border-color: rgba(248,245,242,0.15);
  margin-top: 0.8rem;
}
.news-form input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  color: var(--ivory); padding: 0.5rem 1rem; font-family: var(--font-body); font-size: 0.9rem;
  transition: box-shadow 0.4s;
}
.news-form input::placeholder { color: rgba(248,245,242,0.4); }
.news-form:focus-within { box-shadow: 0 0 0 2px rgba(201,163,126,0.4); }
.news-form .btn { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(248,245,242,0.1);
  padding: 1.6rem 0; text-align: center;
  font-size: 0.82rem; color: rgba(248,245,242,0.5);
  position: relative; z-index: 1;
}

/* ══════════ MOBILE BOTTOM NAV ══════════ */
.bottom-nav {
  position: fixed; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: none;
  gap: 0.2rem;
  border-radius: 100px;
  padding: 0.5rem 0.7rem;
  background: rgba(248, 245, 242, 0.75);
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 0.62rem; font-weight: 600;
  padding: 0.4rem 0.85rem; border-radius: 100px;
  transition: 0.35s var(--ease-out);
}
.bottom-nav a span { font-size: 1.05rem; }
.bottom-nav a:active { transform: scale(0.92); }
.bottom-nav .bn-cta { background: linear-gradient(135deg, var(--emerald), #2e5440); color: #fff; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; grid-row: span 1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; padding: 0.7rem 1.3rem; }
  .nav-logo { justify-self: start; }
  .nav-burger { display: block; justify-self: end; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-card { right: 8px; bottom: -20px; }
  .why-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .timeline { grid-template-columns: 1fr; gap: 2.5rem; }
  .vine { top: 0; bottom: 0; left: 29px; right: auto; width: 2px; height: auto; transform: scaleY(var(--grow, 0)); transform-origin: top; }
  .step { text-align: left; padding-left: 5.2rem; }
  .step .step-num { position: absolute; left: 0; top: 0; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .bottom-nav { display: flex; }
  .footer { padding-bottom: 5rem; }
  .review-card { width: 300px; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-card, [data-words] .word { opacity: 1; transform: none; filter: none; }
}
