/* =============================================================
   CRYPTIC HEARTH — premium luxury dessert brand
   ============================================================= */
:root {
  --cocoa: #3E2723;
  --cocoa-deep: #2a1a17;
  --cream: #F5E6D3;
  --blush: #D8A7B1;
  --ivory: #FFF8F2;
  --gold:  #C8A96B;
  --gold-deep: #a88a4f;

  --serif: 'Cormorant Garamond', serif;
  --display: 'Italiana', serif;
  --body: 'Manrope', sans-serif;

  --shadow-soft: 0 10px 30px -12px rgba(62,39,35,.15);
  --shadow-deep: 0 30px 70px -30px rgba(62,39,35,.4);
  --shadow-glow: 0 0 60px -10px rgba(200,169,107,.4);

  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--cocoa);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--cocoa); color: var(--ivory); }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--cocoa), var(--gold)); border-radius: 99px; }

/* =============================================================
   UTILITY: GRAIN + ANIMATIONS
   ============================================================= */
.grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .18; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.24 0 0 0 0 0.15 0 0 0 0 0.14 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.bob { animation: bob 5s ease-in-out infinite; }
.bob-delay-1 { animation-delay: 1.2s; }
.bob-delay-2 { animation-delay: .6s; }

@keyframes slowspin { to { transform: rotate(360deg); } }
.slowspin { animation: slowspin 28s linear infinite; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes revealUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  display: block;
  opacity: 0;
  animation: revealUp 1s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes pulseRing {
  0% { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* =============================================================
   PAGE LOADER
   ============================================================= */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-mark {
  position: relative; width: 80px; height: 80px; margin: 0 auto;
  color: var(--cocoa);
}
.loader-mark svg { width: 100%; height: 100%;
  animation: slowspin 2s linear infinite; }
.loader-heart {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.loader-text {
  margin-top: 24px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .4em;
  color: var(--cocoa);
}
.loader-text span {
  display: block; font-size: 12px; letter-spacing: .6em;
  color: var(--cocoa); opacity: .6; margin-top: 4px;
}

/* =============================================================
   SCROLL PROGRESS BAR
   ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--cocoa), var(--gold), var(--blush));
  z-index: 99; transition: width .1s linear;
}

/* =============================================================
   NAVBAR
   ============================================================= */
.topnav {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  padding: 20px 0; transition: padding .5s ease;
}
.topnav.scrolled { padding: 10px 0; }
.nav-shell {
  margin: 0 12px;
  border-radius: 999px;
  padding: 0;
  transition: all .5s ease;
  display: flex;
}
.topnav.scrolled .nav-shell {
  background: rgba(255,248,242,.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(62,39,35,.1);
  box-shadow: 0 8px 40px -12px rgba(62,39,35,.18);
}
.nav-shell > * { display: contents; }

.topnav nav { width: 100%; }
.topnav .nav-shell {
  width: 100%;
}
.topnav .nav-shell > div, .topnav .nav-shell {
  display: flex;
}
.topnav nav .nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
@media (min-width: 768px) {
  .topnav nav .nav-shell { padding: 12px 28px; margin: 0 24px; }
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  position: relative; width: 38px; height: 38px;
  background: var(--cocoa); border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(200,169,107,.35);
}
.brand-mark i { color: var(--gold); width: 16px; height: 16px; }
.brand-text .b1 {
  font-family: var(--display); font-size: 20px; letter-spacing: .2em;
  color: var(--cocoa); line-height: 1;
}
.brand-text .b2 {
  font-family: var(--display); font-size: 12px; letter-spacing: .42em;
  color: rgba(62,39,35,.7); line-height: 1; margin-top: 3px;
}

.nav-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; align-items: center; gap: 2px;
}
.nav-link {
  display: inline-block; padding: 10px 16px;
  font-family: var(--body); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(62,39,35,.6);
  border-radius: 999px; transition: color .3s ease;
  position: relative;
}
.nav-link:hover { color: var(--cocoa); }
.nav-link.active { color: var(--cocoa); }
.nav-link.active::after {
  content: ""; position: absolute; left: 50%; bottom: 4px;
  transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}

.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 999px;
  background: var(--cocoa); color: var(--ivory);
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  transition: all .3s ease;
}
.btn-pill:hover { background: var(--cocoa-deep); transform: translateY(-1px); color: var(--ivory); }
.btn-pill i { width: 14px; height: 14px; transition: transform .3s ease; }
.btn-pill:hover i { transform: translate(2px, -2px); }

.hamburger {
  width: 42px; height: 42px; border-radius: 50%;
  border: none; background: rgba(62,39,35,.06);
  display: grid; place-items: center;
  transition: background .3s ease;
}
.hamburger:hover { background: rgba(62,39,35,.12); }
.hamburger i { width: 20px; height: 20px; color: var(--cocoa); }

/* Drawer */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(62,39,35,.45);
  backdrop-filter: blur(6px); z-index: 70;
  opacity: 0; visibility: hidden; transition: all .4s ease;
}
.drawer-overlay.active { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100vh;
  width: 86%; max-width: 380px; z-index: 80;
  background: var(--ivory);
  padding: 28px;
  transform: translateX(100%); transition: transform .5s cubic-bezier(.22,1,.36,1);
  display: flex; flex-direction: column;
}
.drawer.active { transform: translateX(0); }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
}
.drawer-close {
  width: 42px; height: 42px; border-radius: 50%;
  border: none; background: rgba(62,39,35,.06);
  display: grid; place-items: center;
}
.drawer-links { list-style: none; padding: 0; margin: 40px 0 0; }
.drawer-links li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid rgba(62,39,35,.1);
  font-family: var(--serif); font-size: 28px; color: var(--cocoa);
  transition: color .3s ease;
}
.drawer-links li a:hover { color: var(--gold-deep); }
.drawer-links li a i { width: 18px; height: 18px; opacity: .5; }
.drawer-foot {
  margin-top: auto; padding-top: 32px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(62,39,35,.6);
}

/* =============================================================
   COMMON: SECTION TITLES & EYEBROWS
   ============================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--body); font-size: 11px; letter-spacing: .32em;
  text-transform: uppercase; color: rgba(62,39,35,.7);
}
.eyebrow i { width: 14px; height: 14px; color: var(--gold); }
.eyebrow .line {
  display: inline-block; width: 32px; height: 1px; background: var(--gold);
}
.eyebrow.eyebrow-left { display: inline-flex; }
.eyebrow.light { color: rgba(255,248,242,.85); }
.eyebrow.light .line { background: var(--gold); }

.section-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.02; margin: 12px 0 0;
  color: var(--cocoa); letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic; font-weight: 300;
  color: rgba(62,39,35,.8);
}
.section-body {
  margin-top: 18px; max-width: 540px;
  font-size: 15px; line-height: 1.85; color: rgba(62,39,35,.75);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn-primary-x {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; border-radius: 999px; border: 0;
  background: var(--cocoa); color: var(--ivory);
  font-family: var(--body); font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase; cursor: pointer;
  transition: transform .3s ease;
}
.btn-primary-x > * { position: relative; z-index: 1; }
.btn-primary-x::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--blush));
  transform: translateX(-100%); transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.btn-primary-x:hover::before { transform: translateX(0); }
.btn-primary-x:hover { transform: translateY(-2px); color: var(--cocoa); }
.btn-primary-x i { width: 14px; height: 14px; transition: transform .3s ease; }
.btn-primary-x:hover i { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  border: 1px solid rgba(62,39,35,.25);
  background: transparent; color: var(--cocoa);
  font-family: var(--body); font-size: 11px; letter-spacing: .28em;
  text-transform: uppercase;
  transition: all .35s ease;
}
.btn-ghost:hover { background: var(--cocoa); color: var(--ivory); border-color: var(--cocoa); }
.btn-ghost i { width: 14px; height: 14px; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  background: #25d366; color: #fff;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  margin-top: 22px;
  box-shadow: 0 10px 30px -10px rgba(37,211,102,.4);
  transition: transform .3s ease, box-shadow .3s ease;
}
.btn-whatsapp:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(37,211,102,.55); }
.btn-whatsapp i { width: 16px; height: 16px; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  padding: 130px 0 60px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, var(--ivory) 0%, rgba(245,230,211,.45) 50%, var(--ivory) 100%);
}
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(80px);
}
.hero-bg::before {
  top: -160px; right: -160px; width: 600px; height: 600px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 65%);
  opacity: .5;
}
.hero-bg::after {
  bottom: -160px; left: -160px; width: 700px; height: 700px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 65%);
  opacity: .4;
}

.float { position: absolute; z-index: 0; }
.float-1 { top: 18%; right: 4%; width: 120px; }
.float-2 { top: 55%; left: 6%; width: 110px; }
.float-3 { bottom: 8%; right: 12%; width: 130px; }
@media (min-width: 768px) {
  .float-1 { width: 170px; }
  .float-2 { width: 150px; }
  .float-3 { width: 160px; }
}

.hero-inner { position: relative; z-index: 2; text-align: center; }

.eyebrow {
  justify-content: center;
}

.hero-title {
  margin: 32px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.2rem, 13vw, 8.4rem);
  line-height: .92;
  color: var(--cocoa);
  letter-spacing: -0.02em;
}
.hero-title .italic { font-style: italic; font-weight: 300; }
.hero-title .small {
  font-size: .62em; font-style: italic; font-weight: 300;
  color: rgba(62,39,35,.85); margin-top: .15em;
}

.hero-sub {
  margin: 32px auto 0; max-width: 560px;
  font-size: 16px; line-height: 1.75; color: rgba(62,39,35,.75);
}

.hero-ctas {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
}

.trust-row {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 640px; margin-inline: auto;
}
@media (min-width: 768px) {
  .trust-row { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.trust-item i { width: 18px; height: 18px; color: var(--gold); }
.trust-item span {
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(62,39,35,.7);
}

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(62,39,35,.6);
}
.scroll-cue span { font-size: 10px; letter-spacing: .34em; text-transform: uppercase; }
.scroll-cue i { width: 16px; height: 16px; animation: bob 2s ease-in-out infinite; }

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee {
  background: var(--cocoa);
  border-block: 1px solid rgba(200,169,107,.2);
  padding: 22px 0; overflow: hidden;
}
.marquee-track {
  display: inline-flex; gap: 48px; white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: .18em;
  color: var(--ivory);
  animation: marquee 38s linear infinite;
  padding-left: 48px;
}
.marquee-track .dot { color: var(--gold); font-size: .85em; }

/* =============================================================
   ABOUT
   ============================================================= */
.about { padding: 120px 0; }
@media (min-width: 768px) { .about { padding: 160px 0; } }

.about-image {
  position: relative; aspect-ratio: 4/5;
  border-radius: 32px; overflow: hidden;
  background: linear-gradient(135deg, var(--cream), var(--blush));
  box-shadow: var(--shadow-deep);
}
.about-stack {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.about-stack .big { width: 60%; }
.image-tag {
  position: absolute; left: 28px; bottom: 24px;
  font-family: var(--display); font-size: 13px; letter-spacing: .35em;
  color: rgba(62,39,35,.7);
}

.quote-card {
  position: relative; margin: -60px 0 0 auto;
  width: 280px; padding: 24px;
  background: var(--ivory);
  border: 1px solid rgba(62,39,35,.1);
  border-radius: 18px;
  box-shadow: var(--shadow-deep);
  z-index: 2;
}
.quote-card i { width: 22px; height: 22px; color: var(--gold); }
.quote-card p {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  line-height: 1.35; margin: 12px 0 0; color: var(--cocoa);
}
.quote-card span {
  display: block; margin-top: 14px;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(62,39,35,.6);
}

.stat-row {
  margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(62,39,35,.12);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 460px;
}
.stat .n {
  font-family: var(--serif); font-size: 36px; line-height: 1;
  color: var(--cocoa);
}
.stat .l {
  margin-top: 6px;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(62,39,35,.6);
}

/* =============================================================
   PRODUCTS
   ============================================================= */
.products { padding: 100px 0; }
@media (min-width: 768px) { .products { padding: 140px 0; } }

.filter-pills {
  display: flex; gap: 8px; flex-wrap: nowrap; overflow-x: auto;
  scrollbar-width: none; padding-bottom: 4px;
}
.filter-pills::-webkit-scrollbar { display: none; }
.pill {
  position: relative;
  flex-shrink: 0;
  padding: 11px 22px; border-radius: 999px; border: 1px solid rgba(62,39,35,.15);
  background: transparent;
  font-family: var(--body); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: rgba(62,39,35,.7);
  transition: all .35s ease;
}
.pill:hover { color: var(--cocoa); border-color: rgba(62,39,35,.35); }
.pill.active { background: var(--cocoa); color: var(--ivory); border-color: var(--cocoa); }

.product-grid { margin-top: 56px; }

.product-card { position: relative; }
.product-art-box {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; border-radius: 24px;
  background: linear-gradient(135deg, var(--cream), var(--ivory));
  box-shadow: inset 0 0 0 1px rgba(62,39,35,.05);
}
.product-art-box::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.4), transparent 50%);
}
.product-art {
  position: absolute; inset: 0; display: grid; place-items: center;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.product-art > svg { width: 70%; }
.product-card:hover .product-art { transform: scale(1.08) rotate(-3deg); }

.product-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--cocoa); color: var(--ivory);
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
}
.product-wishlist {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: rgba(255,248,242,.85);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  transition: background .3s ease, color .3s ease;
}
.product-wishlist i { width: 16px; height: 16px; color: var(--cocoa); transition: color .3s ease; }
.product-wishlist:hover { background: var(--ivory); }
.product-wishlist:hover i { color: var(--blush); }

.product-add {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  padding: 12px; border-radius: 999px; border: 0;
  background: var(--cocoa); color: var(--ivory);
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s ease, transform .4s ease;
}
.product-add i { width: 14px; height: 14px; }
.product-card:hover .product-add { opacity: 1; transform: translateY(0); }

.product-meta { padding: 18px 4px 0; }
.product-meta .top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.product-meta h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  margin: 0; line-height: 1.2; color: var(--cocoa);
}
.product-meta .price { font-size: 14px; color: rgba(62,39,35,.85); }
.product-meta p {
  margin: 4px 0 0; font-size: 13px; line-height: 1.55;
  color: rgba(62,39,35,.6);
}
.product-meta .cat {
  margin-top: 8px; font-size: 10px; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-deep);
}

/* =============================================================
   WHY US
   ============================================================= */
.why-us { background: rgba(245,230,211,.4); padding: 100px 0; }
@media (min-width: 768px) { .why-us { padding: 140px 0; } }

.why-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid rgba(62,39,35,.08);
  border-radius: 28px;
  padding: 32px;
  transition: all .4s ease;
  height: 100%;
}
.why-card:hover {
  border-color: rgba(200,169,107,.45);
  box-shadow: 0 30px 70px -40px rgba(62,39,35,.45);
  transform: translateY(-4px);
}
.why-ico {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--cocoa);
  display: grid; place-items: center;
  transition: background .4s ease;
}
.why-ico i { width: 20px; height: 20px; color: var(--ivory); stroke-width: 1.4; }
.why-card:hover .why-ico { background: var(--gold); }
.why-card h3 {
  margin: 24px 0 0; font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--cocoa);
}
.why-card p {
  margin: 12px 0 0; font-size: 14px; line-height: 1.75;
  color: rgba(62,39,35,.7);
}
.why-no {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .32em; color: var(--gold-deep);
}
.why-no .line { display: inline-block; width: 32px; height: 1px; background: rgba(200,169,107,.5); }

/* =============================================================
   PROCESS
   ============================================================= */
.process { padding: 100px 0; }
@media (min-width: 768px) { .process { padding: 140px 0; } }
.process-sticky { position: sticky; top: 120px; align-self: flex-start; }

.process-step {
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid rgba(62,39,35,.12);
  align-items: start;
  transition: padding .35s ease;
}
.process-step:hover { padding-left: 12px; }
.process-step:last-child { border-bottom: 0; }
.ps-num {
  font-family: var(--display); font-size: 36px; letter-spacing: .1em;
  color: var(--gold); min-width: 64px; line-height: 1;
}
.ps-body h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  margin: 0 0 8px; color: var(--cocoa);
}
.ps-body p {
  margin: 0; font-size: 14px; line-height: 1.7; color: rgba(62,39,35,.7);
}

/* =============================================================
   HAMPERS
   ============================================================= */
.hampers { padding: 100px 0; background: linear-gradient(180deg, var(--ivory), rgba(216,167,177,.18) 60%, var(--ivory)); }
@media (min-width: 768px) { .hampers { padding: 140px 0; } }

.hamper-card {
  position: relative;
  border-radius: 28px; overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(62,39,35,.08);
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.hamper-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.hamper-card.featured {
  background: var(--cocoa); color: var(--ivory);
  transform: scale(1.02);
}
.hamper-card.featured h3, .hamper-card.featured .hamper-price { color: var(--ivory); }
.hamper-card.featured p { color: rgba(255,248,242,.75); }
.hamper-card.featured .hamper-art {
  background: linear-gradient(135deg, #4a302a, #2a1a17);
}

.hamper-art {
  position: relative;
  height: 260px;
  background: linear-gradient(135deg, var(--cream), var(--blush));
  display: grid; place-items: center;
  overflow: hidden;
}
.hamper-art::before {
  content: ""; position: absolute; inset: 24px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(62,39,35,.85), rgba(62,39,35,.65)),
    radial-gradient(circle at 30% 30%, rgba(200,169,107,.35), transparent 50%);
  box-shadow: var(--shadow-deep);
}
.hamper-card.featured .hamper-art::before {
  background:
    linear-gradient(135deg, rgba(255,248,242,.12), rgba(255,248,242,.05)),
    radial-gradient(circle at 30% 30%, rgba(200,169,107,.4), transparent 60%);
  border: 1px solid rgba(200,169,107,.3);
}
.hamper-ribbon {
  position: absolute; left: 50%; top: 24px; bottom: 24px;
  transform: translateX(-50%);
  width: 28px;
  background: var(--blush);
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.hamper-ribbon::after {
  content: ""; position: absolute; left: 50%; top: 38%;
  transform: translate(-50%, -50%);
  width: 70px; height: 36px;
  background:
    radial-gradient(circle at 25% 50%, var(--blush) 40%, transparent 42%),
    radial-gradient(circle at 75% 50%, var(--blush) 40%, transparent 42%);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.2));
}
.hamper-ribbon.gold { background: var(--gold); }
.hamper-ribbon.gold::after {
  background:
    radial-gradient(circle at 25% 50%, var(--gold) 40%, transparent 42%),
    radial-gradient(circle at 75% 50%, var(--gold) 40%, transparent 42%);
}
.hamper-ribbon.pink { background: #e0bcc5; }
.hamper-ribbon.pink::after {
  background:
    radial-gradient(circle at 25% 50%, #e0bcc5 40%, transparent 42%),
    radial-gradient(circle at 75% 50%, #e0bcc5 40%, transparent 42%);
}

.hamper-meta { padding: 28px; }
.hamper-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(62,39,35,.08); color: var(--cocoa);
}
.hamper-tag.dark { background: var(--gold); color: var(--cocoa); }
.hamper-meta h3 {
  margin: 18px 0 8px;
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  color: var(--cocoa);
}
.hamper-meta p {
  margin: 0; font-size: 14px; line-height: 1.7; color: rgba(62,39,35,.7);
}
.hamper-price {
  margin-top: 16px; font-family: var(--serif); font-size: 22px;
  color: var(--cocoa);
}

/* =============================================================
   CUSTOM ORDERS
   ============================================================= */
.custom { padding: 100px 0; }
@media (min-width: 768px) { .custom { padding: 140px 0; } }

.custom-form {
  background: var(--ivory);
  border: 1px solid rgba(62,39,35,.1);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) { .custom-form { padding: 40px; } }
.custom-form label {
  display: block;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(62,39,35,.65); margin-bottom: 8px;
}
.custom-form input, .custom-form select, .custom-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--body); font-size: 14px; color: var(--cocoa);
  transition: all .3s ease;
}
.custom-form input:focus, .custom-form select:focus, .custom-form textarea:focus {
  outline: none; background: var(--ivory);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,107,.18);
}
.custom-form textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(62,39,35,.55);
}

/* =============================================================
   GALLERY
   ============================================================= */
.gallery { padding: 100px 0; background: linear-gradient(180deg, var(--ivory), var(--cream) 60%, var(--ivory)); }
@media (min-width: 768px) { .gallery { padding: 140px 0; } }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
  .g-1 { grid-column: span 2; grid-row: span 2; }
  .g-4 { grid-column: span 2; }
}

.g-cell {
  position: relative; overflow: hidden; border-radius: 18px;
  display: block; cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.g-art {
  position: absolute; inset: 0;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.g-cell:hover .g-art { transform: scale(1.06); }
.g-art-1 { background:
  radial-gradient(circle at 30% 30%, #7a4a36, #2a160f),
  linear-gradient(135deg, #5a3526, #2a160f); }
.g-art-2 { background:
  radial-gradient(circle at 60% 40%, var(--blush), #b87d8c); }
.g-art-3 { background:
  linear-gradient(135deg, var(--cream), var(--gold)); }
.g-art-4 { background:
  radial-gradient(circle at 70% 60%, #4a302a, #1d100c); }
.g-art-5 { background:
  linear-gradient(160deg, var(--ivory), var(--blush)); }
.g-art-6 { background:
  radial-gradient(circle at 40% 50%, var(--gold), #8a6e3f); }

.g-art::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,.18), transparent 50%);
}
.g-meta {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(62,39,35,.5);
  opacity: 0; transition: opacity .35s ease;
  color: var(--ivory);
}
.g-meta i { width: 30px; height: 30px; }
.g-cell:hover .g-meta { opacity: 1; }

/* =============================================================
   REVIEWS
   ============================================================= */
.reviews { padding: 100px 0; }
@media (min-width: 768px) { .reviews { padding: 140px 0; } }

.reviews-stage {
  position: relative;
  margin-top: 48px;
  max-width: 920px; margin-inline: auto;
}
.rev-track {
  display: flex;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.rev-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 40px 20px;
  text-align: center;
}
@media (min-width: 768px) { .rev-card { padding: 60px 80px; } }
.stars {
  display: inline-flex; gap: 6px; color: var(--gold);
  margin-bottom: 28px;
}
.stars i { width: 18px; height: 18px; fill: var(--gold); }
.rev-card p {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4; color: var(--cocoa);
  margin: 0;
}
.rev-by {
  margin-top: 32px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(62,39,35,.65);
}

.rev-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(62,39,35,.18);
  background: var(--ivory);
  display: grid; place-items: center;
  z-index: 2; transition: all .3s ease;
}
.rev-nav.prev { left: -8px; }
.rev-nav.next { right: -8px; }
@media (min-width: 768px) {
  .rev-nav.prev { left: -25px; }
  .rev-nav.next { right: -25px; }
}
.rev-nav:hover { background: var(--cocoa); border-color: var(--cocoa); }
.rev-nav:hover i { color: var(--ivory); }
.rev-nav i { width: 18px; height: 18px; color: var(--cocoa); transition: color .3s; }

.rev-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 12px;
}
.rev-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(62,39,35,.18); border: 0; cursor: pointer;
  transition: all .3s ease;
}
.rev-dot.active { background: var(--gold); width: 24px; border-radius: 999px; }

/* =============================================================
   FAQ
   ============================================================= */
.faq { padding: 100px 0; background: rgba(245,230,211,.4); }
@media (min-width: 768px) { .faq { padding: 140px 0; } }

.link-gold { color: var(--gold-deep); border-bottom: 1px solid var(--gold-deep); }

.faq-list {}
.faq-item {
  border-bottom: 1px solid rgba(62,39,35,.12);
}
.faq-q {
  width: 100%;
  background: transparent; border: 0;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 22px; color: var(--cocoa);
  text-align: left;
  transition: color .3s ease;
}
.faq-q:hover { color: var(--gold-deep); }
.faq-q i { width: 20px; height: 20px; transition: transform .35s ease; color: var(--gold-deep); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s ease;
}
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p {
  margin: 0 0 24px; padding-right: 32px;
  font-size: 15px; line-height: 1.75; color: rgba(62,39,35,.75);
}

/* =============================================================
   NEWSLETTER
   ============================================================= */
.newsletter { padding: 60px 0; }
.news-card {
  position: relative; overflow: hidden;
  background: var(--cocoa); color: var(--ivory);
  border-radius: 36px; padding: 60px 40px;
  box-shadow: var(--shadow-deep);
}
@media (min-width: 768px) { .news-card { padding: 80px 60px; } }
.news-card::before, .news-card::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(80px);
}
.news-card::before {
  top: -100px; right: -100px; width: 360px; height: 360px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: .4;
}
.news-card::after {
  bottom: -120px; left: -120px; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
  opacity: .25;
}
.news-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05; margin: 14px 0 0;
}
.news-title em { font-style: italic; font-weight: 300; opacity: .85; }
.news-sub { margin-top: 16px; font-size: 15px; line-height: 1.7; color: rgba(255,248,242,.75); }
.news-form {
  display: flex; gap: 8px; padding: 6px;
  background: rgba(255,248,242,.1);
  border: 1px solid rgba(255,248,242,.2);
  border-radius: 999px;
}
.news-form input {
  flex: 1; min-width: 0;
  background: transparent; border: 0; padding: 14px 20px;
  color: var(--ivory); font-family: var(--body); font-size: 14px;
}
.news-form input::placeholder { color: rgba(255,248,242,.5); }
.news-form input:focus { outline: 0; }
.news-form button {
  padding: 14px 24px; border: 0; border-radius: 999px;
  background: var(--gold); color: var(--cocoa);
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  transition: background .3s ease;
}
.news-form button:hover { background: var(--ivory); }
.news-foot { margin-top: 12px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,248,242,.55); }

/* =============================================================
   CONTACT
   ============================================================= */
.contact { padding: 100px 0; }
@media (min-width: 768px) { .contact { padding: 140px 0; } }

.contact-line {
  display: flex; gap: 18px; padding: 22px 0;
  border-bottom: 1px solid rgba(62,39,35,.1);
}
.contact-line i { width: 22px; height: 22px; color: var(--gold-deep); margin-top: 4px; }
.contact-line strong {
  display: block;
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--cocoa);
}
.contact-line span {
  display: block; margin-top: 2px;
  font-size: 13px; color: rgba(62,39,35,.65);
}

.map-card {
  position: relative;
  border-radius: 28px; overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-deep);
  background: var(--cream);
}
.map-card iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) sepia(.2) hue-rotate(-15deg); }
.map-pin-card {
  position: absolute; left: 24px; bottom: 24px;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-radius: 18px;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  max-width: 80%;
}
.map-pin-card i { width: 22px; height: 22px; color: var(--gold-deep); flex-shrink: 0; }
.map-pin-card strong {
  display: block;
  font-family: var(--serif); font-size: 18px; color: var(--cocoa);
}
.map-pin-card span { font-size: 12px; color: rgba(62,39,35,.65); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--cocoa); color: var(--ivory);
  padding: 80px 0 32px;
}
.site-footer .brand-text .b1, .site-footer .brand-text .b2 { color: var(--ivory); }
.site-footer .brand-text .b2 { color: rgba(255,248,242,.7); }
.site-footer .brand-mark { background: rgba(255,248,242,.08); }

.foot-blurb { font-size: 14px; line-height: 1.75; color: rgba(255,248,242,.7); max-width: 360px; }
.foot-socials { display: flex; gap: 12px; margin-top: 22px; }
.foot-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,248,242,.06); border: 1px solid rgba(255,248,242,.15);
  display: grid; place-items: center; transition: all .3s ease;
}
.foot-socials a:hover { background: var(--gold); border-color: var(--gold); }
.foot-socials a:hover i { color: var(--cocoa); }
.foot-socials i { width: 16px; height: 16px; color: var(--ivory); transition: color .3s; }

.foot-title {
  font-family: var(--display); font-size: 14px; letter-spacing: .3em;
  color: var(--gold); margin-bottom: 18px;
}
.foot-links { list-style: none; padding: 0; margin: 0; }
.foot-links li { font-size: 13px; line-height: 2.1; color: rgba(255,248,242,.7); }
.foot-links li a { transition: color .3s ease; }
.foot-links li a:hover { color: var(--gold); }

.foot-rule {
  height: 1px; background: rgba(255,248,242,.1);
  margin: 48px 0 24px;
}
.foot-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-size: 12px; color: rgba(255,248,242,.5);
}
.foot-bottom i { width: 12px; height: 12px; color: var(--blush); vertical-align: middle; }

/* =============================================================
   FLOATING WHATSAPP
   ============================================================= */
.float-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 40px -10px rgba(37,211,102,.55);
  transition: transform .3s ease;
}
.float-whatsapp:hover { transform: scale(1.08); color: #fff; }
.float-whatsapp i { width: 26px; height: 26px; position: relative; z-index: 2; }
.fw-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; opacity: .6;
  animation: pulseRing 1.8s ease-out infinite;
}

/* =============================================================
   RESPONSIVE TWEAKS
   ============================================================= */
@media (max-width: 767px) {
  .hero { padding-top: 110px; }
  .stat-row { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .quote-card { width: 90%; margin: -40px auto 0; }
  .process-sticky { position: static; }
  .news-form { flex-direction: column; border-radius: 24px; }
  .news-form button { width: 100%; }
}
