/* ═══════════════ TOKENS ═══════════════ */
:root {
  /* Lotus-inspired palette: blush pink, deep green, cream, gold */
  --blush-50: #fdf6f7;
  --blush-100: #f9e8ec;
  --blush-300: #eec3ce;
  --blush-500: #d98aa1;
  --blush-700: #b45f7c;
  --green-500: #4d7358;
  --green-700: #34543e;
  --green-900: #1e3627;
  --cream: #faf6ef;
  --gold: #c9a866;
  --gold-soft: #e4d3ac;
  --ink: #22302a;
  --ink-soft: #55655c;

  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-soft: 0 8px 30px rgba(30, 54, 39, 0.08), 0 2px 8px rgba(30, 54, 39, 0.05);
  --shadow-lift: 0 20px 50px rgba(30, 54, 39, 0.16), 0 6px 16px rgba(30, 54, 39, 0.08);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.65;
  font-weight: 300;
}
::selection { background: var(--blush-300); color: var(--green-900); }

/* ═══════════════ GRAIN / NOISE ═══════════════ */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 6s steps(8) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); } 25% { transform: translate(-2%,1%); }
  50% { transform: translate(1%,-2%); } 75% { transform: translate(-1%,2%); }
}

/* ═══════════════ GLASS ═══════════════ */
.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.8);
}
.glass-dark {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.glass-chip {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 100px;
  padding: 0.45em 1.1em;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--green-700);
  box-shadow: var(--shadow-soft);
}

/* ═══════════════ TYPO ═══════════════ */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--green-900); }
h2 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.05; letter-spacing: -0.01em; }
h2 em, h1 em { font-style: italic; color: var(--blush-700); font-weight: 500; }
h2.light { color: var(--cream); }
h2.light em { color: var(--blush-300); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.32em; font-size: 0.75rem;
  font-weight: 500; color: var(--gold); margin-bottom: 1rem;
}
.eyebrow.light { color: var(--gold-soft); }
.section-sub { color: var(--ink-soft); max-width: 46ch; margin: 1.2rem auto 0; }
.section-sub.light { color: rgba(250,246,239,0.65); }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px)); z-index: 100;
  border-radius: 100px;
  background: rgba(250, 246, 239, 0.5);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 4px 24px rgba(30,54,39,0.06);
  transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(250, 246, 239, 0.82);
  box-shadow: 0 8px 32px rgba(30,54,39,0.12);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem 1.6rem; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark { width: 38px; height: 38px; color: var(--blush-700); display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--green-900); line-height: 1; display: flex; flex-direction: column;
}
.brand-text em { font-size: 0.72em; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-style: normal; }
.brand-text.big { font-size: 1.6rem; }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-size: 0.9rem; font-weight: 400;
  position: relative; padding: 0.2em 0; transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1.5px;
  background: var(--blush-700); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-links a:hover { color: var(--blush-700); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5em;
  background: var(--green-900); color: var(--cream); text-decoration: none;
  padding: 0.6em 1.3em; border-radius: 100px; font-size: 0.85rem; font-weight: 500;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.nav-cta:hover { background: var(--blush-700); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(180,95,124,0.35); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--green-900); border-radius: 2px; transition: 0.3s; }

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center;
  padding: 140px 6vw 80px; gap: 3rem;
  background: linear-gradient(160deg, var(--cream) 0%, var(--blush-50) 45%, #eef3ec 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; will-change: transform; }
.blob-1 { width: 480px; height: 480px; background: radial-gradient(circle, var(--blush-300), transparent 70%); top: -8%; right: 8%; }
.blob-2 { width: 380px; height: 380px; background: radial-gradient(circle, #cfe0cd, transparent 70%); bottom: -5%; left: -6%; }
.blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, var(--gold-soft), transparent 70%); top: 40%; left: 38%; opacity: 0.4; }

.petal {
  position: absolute; width: 18px; height: 26px;
  background: linear-gradient(180deg, var(--blush-300), var(--blush-500));
  border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
  opacity: 0.5; animation: petal-fall linear infinite;
}
.p1 { left: 12%; animation-duration: 13s; animation-delay: 0s; }
.p2 { left: 30%; animation-duration: 17s; animation-delay: 3s; transform: scale(0.7); }
.p3 { left: 52%; animation-duration: 15s; animation-delay: 6s; }
.p4 { left: 68%; animation-duration: 19s; animation-delay: 1.5s; transform: scale(0.8); }
.p5 { left: 84%; animation-duration: 14s; animation-delay: 8s; transform: scale(0.6); }
.p6 { left: 42%; animation-duration: 21s; animation-delay: 10s; }
@keyframes petal-fall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.5; }
  90% { opacity: 0.4; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-eyebrow {
  text-transform: uppercase; letter-spacing: 0.3em; font-size: 0.72rem;
  color: var(--gold); font-weight: 500; margin-bottom: 1.4rem;
}
.hero-title {
  font-size: clamp(3.4rem, 8.5vw, 6.8rem); line-height: 0.98; letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-sub { font-size: 1.1rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 2.2rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 0.95em 2.2em; border-radius: 100px; text-decoration: none;
  font-weight: 500; font-size: 0.95rem; letter-spacing: 0.02em; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn span { position: relative; z-index: 1; }
.btn-primary { background: var(--green-900); color: var(--cream); box-shadow: 0 10px 26px rgba(30,54,39,0.28); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--blush-700), var(--blush-500));
  opacity: 0; transition: opacity 0.35s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(180,95,124,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-ghost {
  color: var(--green-900); border: 1.5px solid rgba(30,54,39,0.25);
  background: rgba(255,255,255,0.4); backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--blush-700); color: var(--blush-700); transform: translateY(-3px); }

.hero-stats { display: flex; align-items: center; gap: 1.6rem; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-display); font-size: 2rem; color: var(--green-900); line-height: 1; }
.stat span { font-size: 0.78rem; color: var(--ink-soft); letter-spacing: 0.05em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 38px; background: rgba(30,54,39,0.15); }

/* Hero visual — tilting glass lotus */
.hero-visual { position: relative; z-index: 2; display: grid; place-items: center; perspective: 1000px; }
.lotus-card {
  position: relative; width: min(380px, 80%); aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow-lift), inset 0 1px 0 rgba(255,255,255,0.9);
  display: grid; place-items: center;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}
.lotus-glow {
  position: absolute; inset: 15%;
  background: radial-gradient(circle, rgba(217,138,161,0.45), transparent 65%);
  filter: blur(30px); animation: glow-pulse 5s ease-in-out infinite;
}
@keyframes glow-pulse { 0%,100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.12); } }
.lotus-svg { width: 72%; position: relative; z-index: 1; transform: translateZ(40px); filter: drop-shadow(0 16px 24px rgba(180,95,124,0.3)); }
.lotus-svg .lp { transform-origin: 100px 130px; animation: bloom 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) backwards; }
.lotus-svg .lp:nth-child(2) { animation-delay: 0.5s; }
.lotus-svg .lp:nth-child(3),
.lotus-svg .lp:nth-child(4) { animation-delay: 0.65s; }
.lotus-svg .lp:nth-child(5),
.lotus-svg .lp:nth-child(6) { animation-delay: 0.8s; }
@keyframes bloom { from { transform: scale(0.2) rotate(-8deg); opacity: 0; } to { transform: scale(1) rotate(0); opacity: 1; } }
.lotus-card-badge { position: absolute; bottom: -16px; transform: translateZ(60px); }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1.5px solid rgba(30,54,39,0.3); border-radius: 14px;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--blush-700); border-radius: 3px; animation: hint 1.8s ease-in-out infinite;
}
@keyframes hint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee { background: var(--green-900); overflow: hidden; padding: 0.9rem 0; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-size: 1.1rem; font-style: italic;
  color: var(--gold-soft); letter-spacing: 0.12em; padding-right: 1em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════════ SECTIONS ═══════════════ */
.section { padding: 110px 6vw; }
.section-alt { background: linear-gradient(180deg, var(--blush-50), var(--cream)); }
.section-dark {
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(217,138,161,0.14), transparent),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(201,168,102,0.1), transparent),
    var(--green-900);
}
.section-head { text-align: center; margin-bottom: 3.5rem; }

/* ═══════════════ BENTO ═══════════════ */
.bento {
  display: grid; gap: 1.4rem; max-width: 1200px; margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}
.bento-card {
  border-radius: var(--radius-lg); padding: 2.2rem;
  display: flex; flex-direction: column; gap: 0.7rem;
  position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.bento-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.bento-card[data-tone="rose"]::before { background: linear-gradient(140deg, rgba(217,138,161,0.16), transparent 60%); }
.bento-card[data-tone="green"]::before { background: linear-gradient(140deg, rgba(77,115,88,0.14), transparent 60%); }
.bento-card[data-tone="gold"]::before { background: linear-gradient(140deg, rgba(201,168,102,0.2), transparent 60%); }
.bento-card[data-tone="blush"]::before { background: linear-gradient(140deg, rgba(238,195,206,0.3), transparent 60%); }
.bento-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.bento-card:hover::before { opacity: 1; }
.b-lg { grid-column: span 2; grid-row: span 1; }
.b-wide { grid-column: span 3; }
.bento-icon { font-size: 2rem; }
.bento-card h3 { font-size: 1.55rem; }
.bento-card p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.card-link {
  color: var(--blush-700); text-decoration: none; font-weight: 500; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.4em;
}
.card-link i { font-style: normal; transition: transform 0.3s; }
.card-link:hover i { transform: translateX(5px); }

/* ═══════════════ PRODUCTS ═══════════════ */
.products {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  max-width: 1240px; margin: 0 auto;
}
.product {
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
}
.product:hover { transform: translateY(-10px) scale(1.01); box-shadow: var(--shadow-lift); }
.product-img {
  aspect-ratio: 4/3.4; display: grid; place-items: center; position: relative; overflow: hidden;
}
.tone-white { background: linear-gradient(150deg, #f4f1e8, #e5e9dd); }
.tone-rose { background: linear-gradient(150deg, var(--blush-100), var(--blush-300)); }
.tone-red { background: linear-gradient(150deg, #f4dbdc, #e4a7ac); }
.tone-lux { background: linear-gradient(150deg, #efe6d3, var(--gold-soft)); }
.product-flower { font-size: 4rem; filter: drop-shadow(0 12px 16px rgba(30,54,39,0.18)); transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1); }
.product:hover .product-flower { transform: scale(1.18) rotate(-6deg); }
.product-tag { position: absolute; top: 14px; left: 14px; font-size: 0.72rem; }
.product-body { padding: 1.4rem 1.5rem 1.6rem; }
.product-body h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
.product-body p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1.1rem; min-height: 3.4em; }
.product-foot { display: flex; align-items: center; justify-content: space-between; }
.product-foot strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--green-900); }
.btn-mini {
  background: var(--green-900); color: var(--cream); border: none; cursor: pointer;
  padding: 0.55em 1.4em; border-radius: 100px; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500; transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-mini:hover { background: var(--blush-700); transform: translateY(-2px); box-shadow: 0 8px 18px rgba(180,95,124,0.35); }
.products-note { text-align: center; margin-top: 2.4rem; font-size: 0.85rem; color: var(--ink-soft); }

/* ═══════════════ ABOUT ═══════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-visual { position: relative; }
.about-frame {
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  aspect-ratio: 1; display: grid; place-items: center; padding: 2.5rem;
  animation: morph 12s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; }
  50% { border-radius: 55% 45% 42% 58% / 45% 55% 48% 52%; }
}
.about-inner { text-align: center; }
.about-emblem { font-size: 3rem; color: var(--blush-500); display: block; margin-bottom: 1rem; }
.about-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.2vw, 1.7rem); color: var(--green-700); max-width: 20ch; margin: 0 auto; }
.about-chip { position: absolute; animation: float 5s ease-in-out infinite; }
.about-chip.c1 { top: 4%; right: -6%; animation-delay: 0s; }
.about-chip.c2 { bottom: 16%; left: -10%; animation-delay: 1.4s; }
.about-chip.c3 { bottom: -4%; right: 8%; animation-delay: 2.8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.about-text h2 { margin-bottom: 1.4rem; }
.about-text > p { color: var(--ink-soft); margin-bottom: 1.8rem; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.about-list li {
  padding-left: 1.8em; position: relative; color: var(--ink-soft); font-size: 0.98rem;
}
.about-list li::before { content: "✿"; position: absolute; left: 0; color: var(--blush-500); }
.about-list strong { color: var(--ink); font-weight: 500; }

/* ═══════════════ DELIVERY ═══════════════ */
.delivery-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.4rem;
  max-width: 1100px; margin: 0 auto;
}
.delivery-main { border-radius: var(--radius-lg); padding: 2.4rem; }
.delivery-main h3 { color: var(--gold-soft); font-size: 1.3rem; margin-bottom: 1rem; }
.delivery-main h3.mt { margin-top: 2rem; }
.area-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-pills span {
  padding: 0.45em 1.2em; border-radius: 100px; font-size: 0.88rem;
  background: rgba(238,195,206,0.16); color: var(--blush-300);
  border: 1px solid rgba(238,195,206,0.28);
  transition: background 0.3s, transform 0.3s;
}
.area-pills span:hover { background: rgba(238,195,206,0.3); transform: translateY(-2px); }
.area-pills.soft span { background: rgba(255,255,255,0.06); color: rgba(250,246,239,0.7); border-color: rgba(255,255,255,0.12); }
.delivery-side { display: flex; flex-direction: column; gap: 1.4rem; }
.d-card { border-radius: var(--radius-lg); padding: 1.8rem 2rem; flex: 1; transition: transform 0.35s; }
.d-card:hover { transform: translateY(-5px); }
.d-num { font-size: 1.8rem; }
.d-card h4 { color: var(--cream); font-family: var(--font-display); font-size: 1.35rem; margin: 0.4rem 0 0.3rem; }
.d-card p { color: rgba(250,246,239,0.62); font-size: 0.9rem; }

/* ═══════════════ REVIEWS ═══════════════ */
.review-score { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.6rem; }
.score-big { font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: var(--blush-700); line-height: 1; }
.score-meta { text-align: left; font-size: 0.92rem; color: var(--ink-soft); }
.score-meta small { color: var(--gold); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
  max-width: 1240px; margin: 0 auto;
}
.review {
  border-radius: var(--radius-md); padding: 1.8rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s;
}
.review:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-lift); }
.stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.95rem; }
.review p { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: var(--green-700); flex: 1; line-height: 1.5; }
.review footer { font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.05em; }

/* ═══════════════ VISIT ═══════════════ */
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1000px; margin: 0 auto; align-items: center;
}
.visit-info h2 { margin-bottom: 1.4rem; }
.visit-info address { font-style: normal; font-size: 1.1rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 2rem; }
.hours { border-radius: var(--radius-lg); padding: 2.4rem; }
.hours h3 { font-size: 1.5rem; margin-bottom: 1.2rem; }
.hours table { width: 100%; border-collapse: collapse; }
.hours td { padding: 0.55em 0; font-size: 0.95rem; color: var(--ink-soft); border-bottom: 1px solid rgba(30,54,39,0.08); }
.hours td:last-child { text-align: right; color: var(--ink); font-weight: 400; }
.hours tr:last-child td { border-bottom: none; }
.hours .closed td { color: var(--blush-700); }

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: var(--green-900); color: rgba(250,246,239,0.7); padding: 70px 6vw 30px; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  max-width: 1200px; margin: 0 auto 3rem;
}
.footer-brand .brand-text { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.92rem; max-width: 32ch; }
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col h4 { color: var(--gold-soft); font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.4rem; }
.footer-col a, .footer-col span { color: rgba(250,246,239,0.7); text-decoration: none; font-size: 0.92rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--blush-300); }
.footer-base {
  max-width: 1200px; margin: 0 auto; padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.8rem; color: rgba(250,246,239,0.45);
}

/* ═══════════════ REVEAL ANIMATIONS ═══════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .b-lg, .b-wide { grid-column: span 2; }
  .products, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .about-grid, .visit-grid, .delivery-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { 
    display: none; position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    flex-direction: column; padding: 1.4rem; gap: 1rem; text-align: center;
    background: rgba(250,246,239,0.95); backdrop-filter: blur(20px);
    border-radius: 24px; border: 1px solid rgba(255,255,255,0.6);
    box-shadow: var(--shadow-lift);
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}
@media (max-width: 560px) {
  .products, .reviews-grid, .bento { grid-template-columns: 1fr; }
  .b-lg, .b-wide { grid-column: span 1; }
  .section { padding: 80px 6vw; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
