/* =============================================================
   CRYPTIC HEARTH — colorful candy-shop edition
   Matches the upgraded index.html (Fraunces + photo collage hero)
   ============================================================= */
:root {
  /* Core brand */
  --cocoa: #3E2723;
  --cocoa-soft: #5a3a32;
  --cocoa-deep: #2a1a17;
  --cream: #FBEFE0;
  --ivory: #FFF8F2;

  /* Vibrant accents */
  --rose:  #F06292;
  --pink:  #FCC9D9;
  --blush: #F7B5C7;
  --gold:  #E0B355;
  --gold-deep: #B8862E;
  --mint:  #B5E0C8;
  --mint-deep: #6FB890;
  --peach: #FFC8A0;
  --peach-deep: #F39A6B;
  --lilac: #D8C9E8;
  --sky:   #BCD9E8;
  --berry: #B33A6F;

  --serif: 'Fraunces', serif;
  --hand:  'Caveat', cursive;
  --body:  'Manrope', sans-serif;

  --shadow-soft: 0 10px 28px -12px rgba(62,39,35,.18);
  --shadow-deep: 0 30px 60px -20px rgba(62,39,35,.35);
  --shadow-pop:  0 18px 50px -18px rgba(240,98,146,.45);
}

* { 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(--rose); color: var(--ivory); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--rose), var(--gold)); border-radius: 99px; }

/* =============================================================
   UTILITIES
   ============================================================= */
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.bob    { animation: bob 5s ease-in-out infinite; }
.bob-d1 { animation-delay: 1.2s; }
.bob-d2 { 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 pulseRing {
  0%   { transform: scale(.9); opacity: .7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* Color utility classes */
.bg-rose  { background: var(--rose);  }
.bg-pink  { background: var(--pink);  }
.bg-mint  { background: var(--mint);  }
.bg-gold  { background: var(--gold);  }
.bg-peach { background: var(--peach); }
.bg-lilac { background: var(--lilac); }
.bg-sky   { background: var(--sky);   }

/* =============================================================
   PAGE LOADER
   ============================================================= */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ivory);
  display: grid; place-items: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-mark {
  position: relative; width: 84px; height: 84px; margin: 0 auto;
}
.loader-disc {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--rose);
  border-right-color: var(--gold);
  border-bottom-color: var(--mint);
  animation: slowspin 1.4s linear infinite;
}
.loader-heart {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--rose);
}
.loader-heart i { width: 24px; height: 24px; fill: var(--rose); }
.loader-text {
  margin-top: 22px;
  font-family: var(--serif); font-weight: 500;
  font-size: 26px; color: var(--cocoa);
  letter-spacing: -.01em;
}
.loader-text em { font-style: italic; color: var(--rose); font-weight: 400; }
.loader-tag {
  margin-top: 6px;
  font-family: var(--hand); font-size: 18px; color: var(--cocoa-soft);
}

/* =============================================================
   SCROLL PROGRESS
   ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%; z-index: 99;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--mint));
}

/* =============================================================
   NAVBAR
   ============================================================= */
.topnav {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  padding: 18px 0; transition: padding .5s ease;
}
.topnav.scrolled { padding: 10px 0; }

.nav-shell {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 12px; padding: 12px 18px;
  border-radius: 999px;
  transition: all .5s ease;
}
.topnav.scrolled .nav-shell {
  background: rgba(255,248,242,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(62,39,35,.08);
  box-shadow: 0 14px 40px -14px rgba(62,39,35,.2);
}
@media (min-width: 768px) { .nav-shell { margin: 0 28px; padding: 12px 28px; } }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: grid; place-items: center;
  box-shadow: 0 8px 18px -6px rgba(240,98,146,.5);
}
.brand-mark i { color: var(--ivory); width: 18px; height: 18px; fill: var(--ivory); }
.brand-text .b1 {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--cocoa); line-height: .95; letter-spacing: -.02em;
}
.brand-text .b2 {
  font-family: var(--serif); font-style: italic; font-size: 22px; font-weight: 400;
  color: var(--rose); line-height: .95; margin-top: -2px; letter-spacing: -.02em;
}

.nav-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 2px; }
.nav-link {
  position: relative;
  display: inline-block; padding: 10px 16px;
  font: 500 13px/1 var(--body);
  color: var(--cocoa-soft);
  border-radius: 999px; transition: all .3s ease;
}
.nav-link:hover { color: var(--cocoa); }
.nav-link.active { color: var(--cocoa); }
.nav-link.active::after {
  content: ""; position: absolute; left: 50%; bottom: 2px;
  transform: translateX(-50%);
  width: 5px; height: 5px; background: var(--rose); border-radius: 50%;
}

.btn-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  background: var(--cocoa); color: var(--ivory);
  font: 600 13px/1 var(--body);
  transition: all .3s ease;
}
.btn-pill:hover { background: var(--rose); color: var(--ivory); transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.btn-pill i { width: 16px; height: 16px; }

.hamburger {
  width: 42px; height: 42px; border-radius: 50%;
  border: 0; background: var(--cream);
  display: grid; place-items: center;
}
.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: 0; background: var(--cream);
  display: grid; place-items: center;
}
.drawer-links { list-style: none; padding: 0; margin: 36px 0 0; }
.drawer-links li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; border-bottom: 1px solid rgba(62,39,35,.08);
  font-family: var(--serif); font-size: 26px; color: var(--cocoa);
  transition: color .3s ease;
}
.drawer-links li a:hover { color: var(--rose); }
.drawer-links li a i { width: 18px; height: 18px; opacity: .5; }
.drawer-foot {
  margin-top: auto; padding-top: 24px;
  font-size: 12px; color: var(--cocoa-soft);
}

/* =============================================================
   COMMON
   ============================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font: 600 12px/1 var(--body);
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cocoa-soft);
  justify-content: center;
}
.eyebrow.eyebrow-left { justify-content: flex-start; }
.eyebrow .line { display: inline-block; width: 28px; height: 2px; background: var(--rose); border-radius: 2px; }
.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: -.02em;
}
.section-title em {
  font-style: italic; font-weight: 400; color: var(--rose);
}
.section-body {
  margin-top: 18px; max-width: 540px;
  font-size: 15px; line-height: 1.8; color: var(--cocoa-soft);
}

/* 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: 600 13px/1 var(--body);
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 14px 28px -10px rgba(62,39,35,.45);
}
.btn-primary-x > * { position: relative; z-index: 1; }
.btn-primary-x::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  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(-3px); box-shadow: var(--shadow-pop); }
.btn-primary-x i { width: 16px; height: 16px; transition: transform .3s ease; }
.btn-primary-x:hover i { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; border-radius: 999px;
  border: 2px solid var(--cocoa);
  background: var(--ivory); color: var(--cocoa);
  font: 600 13px/1 var(--body);
  transition: all .35s ease;
}
.btn-ghost:hover { background: var(--cocoa); color: var(--ivory); transform: translateY(-3px); }
.btn-ghost i { width: 16px; height: 16px; }

/* =============================================================
   HERO — split card + photo collage
   ============================================================= */
.hero {
  padding: 100px 0 40px;
  background:
    radial-gradient(ellipse 700px 500px at 0% 0%, rgba(252,201,217,.6), transparent 60%),
    radial-gradient(ellipse 600px 400px at 100% 100%, rgba(255,200,160,.55), transparent 60%),
    radial-gradient(ellipse 600px 500px at 50% 50%, rgba(181,224,200,.35), transparent 70%),
    var(--ivory);
}
@media (min-width: 768px) { .hero { padding: 120px 0 60px; } }

.hero-card {
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 36px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: 0 30px 80px -30px rgba(62,39,35,.25);
}
@media (min-width: 992px) {
  .hero-card {
    grid-template-columns: 1.05fr 1fr;
    padding: 56px;
    gap: 48px;
  }
}

/* HERO LEFT */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--ivory);
  font: 600 12px/1 var(--body);
  color: var(--cocoa);
  border: 1px solid rgba(62,39,35,.08);
  box-shadow: var(--shadow-soft);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240,98,146,.25);
  animation: pulseRing 1.8s ease-out infinite;
  animation: none;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  position: relative;
}
.hero-badge .dot::after {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%; background: var(--rose); opacity: .35;
  animation: pulseRing 1.8s ease-out infinite;
}

.hero-title {
  margin: 20px 0 0;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1; color: var(--cocoa);
  letter-spacing: -.025em;
}
.hero-title .italic { font-style: italic; color: var(--rose); display: block; }
.hero-title .title-row {
  display: inline-flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.title-pill {
  display: inline-flex;
  width: clamp(58px, 9vw, 84px); height: clamp(58px, 9vw, 84px);
  border-radius: 999px; overflow: hidden;
  border: 4px solid var(--ivory);
  box-shadow: 0 12px 28px -8px rgba(62,39,35,.35);
  vertical-align: middle;
  position: relative; top: -6px;
}
.title-pill img { width: 100%; height: 100%; object-fit: cover; }

.hero-sub {
  margin-top: 22px;
  font-size: 16px; line-height: 1.7;
  color: var(--cocoa-soft);
  max-width: 480px;
}

.hero-ctas {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 14px;
}

.hero-stats {
  margin-top: 38px;
  display: flex; gap: 18px; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(62,39,35,.1);
}
.hero-stats > div:not(.div) strong {
  display: block;
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  color: var(--cocoa); line-height: 1;
}
.hero-stats > div:not(.div) span {
  display: block; margin-top: 4px;
  font-size: 11px; color: var(--cocoa-soft);
  letter-spacing: .04em;
}
.hero-stats .div { width: 1px; height: 30px; background: rgba(62,39,35,.15); }

/* HERO RIGHT — collage */
.hero-right { position: relative; }
.collage {
  position: relative;
  aspect-ratio: 1/1;
  min-height: 320px;
  max-height: 560px;
}

.cphoto {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.cphoto img { width: 100%; height: 100%; object-fit: cover; }
.cphoto-tag {
  position: absolute;
  font: 600 11px/1 var(--body);
  color: var(--ivory);
  padding: 8px 14px; border-radius: 999px;
  bottom: 14px; left: 14px;
  box-shadow: 0 6px 14px -4px rgba(62,39,35,.3);
}
.cphoto-tag.bg-mint { color: var(--cocoa); }

/* Layout: 4 photos in collage */
.cp1 {
  top: 0; left: 0;
  width: 56%; aspect-ratio: 4/5;
  border-radius: 200px 200px 32px 32px;
  z-index: 2;
}
.cp2 {
  top: 8%; right: 0;
  width: 42%; aspect-ratio: 1/1;
  border-radius: 28px;
  z-index: 3;
  transform: rotate(4deg);
}
.cp3 {
  bottom: 0; left: 8%;
  width: 38%; aspect-ratio: 1/1;
  border-radius: 28px;
  z-index: 3;
  transform: rotate(-6deg);
}
.cp4 {
  bottom: 6%; right: 4%;
  width: 48%; aspect-ratio: 4/3;
  border-radius: 32px 32px 200px 32px;
  z-index: 2;
}

/* Decorative blobs */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(40px); opacity: .55;
  z-index: 1;
}
.b-rose { top: 30%; left: 35%; width: 160px; height: 160px; background: var(--rose); }
.b-gold { bottom: 20%; right: 25%; width: 140px; height: 140px; background: var(--gold); }
.b-mint { top: 60%; left: 0; width: 120px; height: 120px; background: var(--mint); }

/* Stickers */
.hero-sticker {
  position: absolute; z-index: 4;
  background: var(--ivory);
  border-radius: 999px;
}
.s-circle {
  top: -6%; right: -4%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  box-shadow: var(--shadow-deep);
}
.s-circle svg { width: 100%; height: 100%; }
.s-center {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  animation: slowspin 28s linear infinite reverse;
}
.s-center i { width: 24px; height: 24px; color: var(--cocoa); fill: var(--cocoa); }

.s-hand {
  top: 38%; right: -2%;
  background: var(--rose); color: var(--ivory);
  padding: 14px 18px;
  font-family: var(--hand); font-size: 22px; font-weight: 700;
  text-align: center; line-height: 1;
  border-radius: 50%;
  width: 76px; height: 76px;
  display: grid; place-items: center;
  transform: rotate(8deg);
  box-shadow: var(--shadow-deep);
}
.s-hand span { display: block; font-size: 20px; margin-top: 2px; }

@media (max-width: 575px) {
  .s-circle { width: 80px; height: 80px; top: -10px; right: -10px; }
  .s-hand { width: 60px; height: 60px; font-size: 16px; top: 36%; right: -8px; }
  .s-hand span { font-size: 14px; }
}

/* Hero trust strip */
.hero-trust {
  margin-top: 28px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  background: var(--ivory);
  padding: 22px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 768px) {
  .hero-trust { grid-template-columns: repeat(4, 1fr); padding: 28px 32px; gap: 24px; }
}
.trust { display: flex; align-items: center; gap: 14px; }
.t-ico {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.t-ico i { width: 20px; height: 20px; color: var(--cocoa); }
.trust strong {
  display: block; font: 600 14px/1.2 var(--body); color: var(--cocoa);
}
.trust span {
  display: block; margin-top: 2px;
  font-size: 12px; color: var(--cocoa-soft);
}

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee {
  background: var(--cocoa);
  padding: 22px 0; overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--cocoa), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--cocoa), transparent); }

.marquee-track {
  display: inline-flex; gap: 42px; white-space: nowrap;
  font-family: var(--serif);
  font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  color: var(--ivory);
  animation: marquee 38s linear infinite;
  padding-left: 42px;
}
.marquee-track .dot { color: var(--gold); }

/* =============================================================
   CATEGORIES
   ============================================================= */
.categories { padding: 90px 0 50px; }
@media (min-width: 768px) { .categories { padding: 130px 0 60px; } }

.cat-head {
  display: flex; flex-direction: column;
  align-items: flex-start;
  justify-content: space-between; gap: 18px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .cat-head { flex-direction: row; align-items: flex-end; }
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

.cat-card {
  position: relative;
  border-radius: 28px;
  padding: 22px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex; flex-direction: column;
  justify-content: space-between;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  color: var(--cocoa);
}
.cat-card:hover { transform: translateY(-8px) rotate(-1deg); color: var(--cocoa); }
.cat-card.c-rose  { background: var(--pink);  }
.cat-card.c-peach { background: var(--peach); }
.cat-card.c-mint  { background: var(--mint);  }
.cat-card.c-gold  { background: var(--gold);  }

.cat-img {
  width: 76%; aspect-ratio: 1/1; margin-left: auto;
  border-radius: 999px; overflow: hidden;
  border: 6px solid var(--ivory);
  box-shadow: var(--shadow-deep);
}
.cat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}
.cat-card:hover .cat-img img { transform: scale(1.1); }

.cat-meta { display: flex; flex-direction: column; gap: 6px; }
.cat-meta h3 {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cocoa); margin: 0;
  letter-spacing: -.02em;
}
.cat-meta span {
  font: 600 12px/1 var(--body);
  letter-spacing: .08em; color: var(--cocoa);
  opacity: .75;
}

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

.about-image-wrap {
  position: relative;
  padding-right: 50px; padding-bottom: 70px;
}
.about-image-main {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 240px 240px 32px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.about-image-main img { width: 100%; height: 100%; object-fit: cover; }
.image-tag {
  position: absolute; left: 22px; bottom: 22px;
  padding: 12px 16px; border-radius: 14px;
  background: var(--ivory);
  font-family: var(--serif); font-size: 11px; letter-spacing: .3em;
  color: var(--cocoa); line-height: 1.2;
  box-shadow: var(--shadow-soft);
}
.image-tag strong { font-size: 16px; letter-spacing: .2em; display: block; margin-top: 2px; }

.about-image-small {
  position: absolute; right: 0; bottom: 0;
  width: 52%; aspect-ratio: 1/1;
  border-radius: 28px; overflow: hidden;
  border: 8px solid var(--ivory);
  box-shadow: var(--shadow-deep);
  transform: rotate(4deg);
  transition: transform .5s ease;
}
.about-image-small:hover { transform: rotate(0deg); }
.about-image-small img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute; top: -8px; right: -8px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-deep);
}
.about-badge svg { width: 100%; height: 100%; }
.badge-center {
  position: absolute; inset: 0; display: grid; place-items: center;
  animation: slowspin 28s linear infinite reverse;
}
.badge-center i { width: 26px; height: 26px; color: var(--cocoa); fill: var(--cocoa); }

.about-blob {
  position: absolute; border-radius: 50%;
  filter: blur(50px); opacity: .55;
  z-index: -1;
}
.a-bl1 { top: 20%; left: -40px; width: 180px; height: 180px; background: var(--pink); }
.a-bl2 { bottom: 0; right: -30px; width: 160px; height: 160px; background: var(--mint); }

.about-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 28px;
}
.af {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px; border-radius: 18px;
  background: var(--cream);
  transition: all .35s ease;
}
.af:hover { background: var(--pink); transform: translateX(6px); }
.af-num {
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--rose);
  line-height: 1; min-width: 36px;
}
.af strong {
  display: block; font: 600 15px/1.3 var(--body); color: var(--cocoa);
}
.af span {
  display: block; margin-top: 3px;
  font-size: 13px; color: var(--cocoa-soft);
}

/* =============================================================
   PRODUCTS
   ============================================================= */
.products {
  padding: 90px 0;
  background:
    radial-gradient(ellipse 700px 500px at 100% 0%, rgba(252,201,217,.4), transparent 60%),
    var(--ivory);
}
@media (min-width: 768px) { .products { padding: 130px 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 {
  flex-shrink: 0;
  padding: 11px 20px; border-radius: 999px;
  border: 2px solid rgba(62,39,35,.12);
  background: var(--ivory);
  font: 600 12px/1 var(--body);
  color: var(--cocoa-soft);
  transition: all .3s ease;
}
.pill:hover { color: var(--cocoa); border-color: var(--rose); background: var(--pink); }
.pill.active { background: var(--cocoa); color: var(--ivory); border-color: var(--cocoa); }

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

.product-card {
  position: relative;
  background: var(--ivory);
  border-radius: 28px;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); }

.product-photo {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  background: var(--cream);
}
.product-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.product-card:hover .product-photo img { transform: scale(1.08); }

.product-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 7px 14px; border-radius: 999px;
  background: var(--rose); color: var(--ivory);
  font: 600 11px/1 var(--body);
  box-shadow: 0 6px 14px -4px rgba(240,98,146,.45);
}
.product-tag.new  { background: var(--mint); color: var(--cocoa); }
.product-tag.gift { background: var(--gold); color: var(--cocoa); }

.product-wishlist {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  border: 0; background: rgba(255,248,242,.92);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  transition: all .3s ease;
}
.product-wishlist i { width: 16px; height: 16px; color: var(--cocoa); transition: all .3s ease; }
.product-wishlist:hover { transform: scale(1.1); }
.product-wishlist:hover i { color: var(--rose); fill: var(--rose); }

.product-add {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  padding: 12px; border-radius: 999px; border: 0;
  background: var(--cocoa); color: var(--ivory);
  font: 600 12px/1 var(--body);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transform: translateY(16px);
  transition: all .4s ease;
}
.product-add:hover { background: var(--rose); }
.product-add i { width: 14px; height: 14px; }
.product-card:hover .product-add { opacity: 1; transform: translateY(0); }

.product-meta { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.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);
  letter-spacing: -.01em;
}
.product-meta .price {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  color: var(--rose);
}
.product-meta p {
  margin: 8px 0 0; font-size: 13px; line-height: 1.55;
  color: var(--cocoa-soft);
  flex: 1;
}
.product-meta .cat {
  margin-top: 14px;
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  font: 600 10px/1 var(--body);
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--cream); color: var(--gold-deep);
  align-self: flex-start;
}

/* =============================================================
   WHY US
   ============================================================= */
.why-us {
  padding: 90px 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 0%, rgba(252,201,217,.4), transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 100%, rgba(181,224,200,.35), transparent 70%),
    var(--ivory);
}
@media (min-width: 768px) { .why-us { padding: 140px 0; } }

.why-card {
  position: relative;
  border-radius: 28px;
  padding: 30px;
  height: 100%;
  transition: all .4s ease;
  border: 2px solid transparent;
  box-shadow: var(--shadow-soft);
}
.why-card:hover { transform: translateY(-8px) rotate(-1.5deg); box-shadow: var(--shadow-deep); }
.why-card.c-mint  { background: var(--mint);  }
.why-card.c-pink  { background: var(--pink);  }
.why-card.c-gold  { background: var(--gold);  }
.why-card.c-peach { background: var(--peach); }
.why-card.c-lilac { background: var(--lilac); }
.why-card.c-rose  { background: var(--blush); }

.why-ico {
  width: 56px; height: 56px; border-radius: 18px;
  background: var(--ivory);
  display: grid; place-items: center;
  box-shadow: 0 10px 18px -10px rgba(62,39,35,.25);
  transform: rotate(-6deg); transition: transform .4s ease;
}
.why-card:hover .why-ico { transform: rotate(6deg) scale(1.05); }
.why-ico i { width: 24px; height: 24px; color: var(--cocoa); }

.why-card h3 {
  margin: 22px 0 0;
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--cocoa); letter-spacing: -.01em;
}
.why-card p {
  margin: 10px 0 0; font-size: 14px; line-height: 1.7;
  color: var(--cocoa);
  opacity: .82;
}
.why-no {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--cocoa);
  opacity: .35;
}

/* =============================================================
   HAMPERS
   ============================================================= */
.hampers {
  padding: 90px 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(255,200,160,.4), transparent 70%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(216,201,232,.35), transparent 70%),
    var(--ivory);
}
@media (min-width: 768px) { .hampers { padding: 140px 0; } }

.hamper-card {
  position: relative;
  border-radius: 28px; overflow: hidden;
  background: var(--ivory);
  box-shadow: var(--shadow-soft);
  transition: all .5s cubic-bezier(.22,1,.36,1);
  height: 100%;
}
.hamper-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.hamper-card.featured {
  background: var(--cocoa); color: var(--ivory);
  transform: scale(1.03);
}
.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-btn { background: var(--gold); color: var(--cocoa); }
.hamper-card.featured .hamper-btn:hover { background: var(--rose); color: var(--ivory); }

.hamper-photo {
  position: relative;
  aspect-ratio: 16/11; overflow: hidden;
}
.hamper-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.hamper-card:hover .hamper-photo img { transform: scale(1.06); }
.hamper-corner {
  position: absolute; bottom: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  opacity: .85;
}
.hamper-stamp {
  position: absolute; top: 18px; right: 18px;
  background: var(--gold); color: var(--cocoa);
  padding: 8px 14px; border-radius: 999px;
  font: 700 11px/1 var(--body);
  letter-spacing: .04em;
  box-shadow: 0 8px 18px -6px rgba(224,179,85,.55);
  transform: rotate(8deg);
}

.hamper-meta { padding: 28px; }
.hamper-tag {
  display: inline-block;
  font: 700 11px/1 var(--body);
  letter-spacing: .08em;
  padding: 7px 14px; border-radius: 999px;
  background: var(--pink); color: var(--cocoa);
}
.hamper-tag.dark { background: var(--gold); color: var(--cocoa); }

.hamper-meta h3 {
  margin: 16px 0 8px;
  font-family: var(--serif); font-size: 28px; font-weight: 500;
  color: var(--cocoa); letter-spacing: -.01em;
}
.hamper-meta p {
  margin: 0; font-size: 14px; line-height: 1.7; color: var(--cocoa-soft);
}
.hamper-bottom {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.hamper-price {
  font-family: var(--serif); font-size: 24px; color: var(--cocoa);
  font-weight: 500;
}
.hamper-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 0; background: var(--cocoa); color: var(--ivory);
  display: grid; place-items: center;
  transition: all .3s ease;
}
.hamper-btn:hover { background: var(--rose); transform: rotate(-45deg); }
.hamper-btn i { width: 18px; height: 18px; }

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

.custom-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 240px 32px 240px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.custom-image img { width: 100%; height: 100%; object-fit: cover; }

.sticker {
  position: absolute;
  padding: 12px 18px; border-radius: 999px;
  background: var(--ivory);
  font-family: var(--hand); font-size: 22px; font-weight: 600;
  color: var(--cocoa);
  box-shadow: var(--shadow-soft);
  transform: rotate(-6deg);
}
.sticker { top: 22px; right: 22px; }
.sticker.s2 {
  top: auto; bottom: 80px; right: auto; left: 22px;
  background: var(--mint);
  transform: rotate(4deg);
}
.sticker.s3 {
  top: auto; bottom: 22px; right: 22px;
  background: var(--rose); color: var(--ivory);
  transform: rotate(-3deg);
}

.custom-form {
  background: var(--ivory);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(62,39,35,.06);
  margin-top: 24px;
}
@media (min-width: 768px) { .custom-form { padding: 36px; } }
.custom-form label {
  display: block;
  font: 600 12px/1 var(--body);
  color: var(--cocoa-soft); margin-bottom: 8px;
}
.custom-form input, .custom-form select, .custom-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 14px;
  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: 0; background: var(--ivory);
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(240,98,146,.15);
}
.custom-form textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 12px; color: var(--cocoa-soft);
}

/* =============================================================
   GALLERY
   ============================================================= */
.gallery {
  padding: 90px 0;
  background:
    radial-gradient(ellipse 600px 400px at 0% 50%, rgba(216,201,232,.4), transparent 70%),
    radial-gradient(ellipse 600px 400px at 100% 50%, rgba(181,224,200,.35), transparent 70%),
    var(--ivory);
}
@media (min-width: 768px) { .gallery { padding: 140px 0; } }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
  }
  .g-1 { grid-column: span 2; grid-row: span 2; }
  .g-4 { grid-column: span 2; }
}
.g-cell {
  position: relative; overflow: hidden; border-radius: 24px;
  display: block; cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.g-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}
.g-cell:hover img { transform: scale(1.08); }
.g-meta {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, rgba(240,98,146,.6), rgba(62,39,35,.7));
  opacity: 0; transition: opacity .35s ease;
  color: var(--ivory);
  font: 600 16px/1 var(--body);
}
.g-meta i { width: 24px; height: 24px; }
.g-cell:hover .g-meta { opacity: 1; }

/* =============================================================
   REVIEWS — colored cards
   ============================================================= */
.reviews { padding: 90px 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;
  border-radius: 36px;
}
.rev-card {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 50px 30px;
  text-align: center;
}
.rev-card.c-pink  { background: var(--pink);  }
.rev-card.c-mint  { background: var(--mint);  }
.rev-card.c-peach { background: var(--peach); }
.rev-card.c-lilac { background: var(--lilac); }
@media (min-width: 768px) { .rev-card { padding: 70px 80px; } }

.stars {
  display: inline-flex; gap: 5px; color: var(--gold);
  margin-bottom: 24px;
}
.stars i { width: 20px; height: 20px; fill: var(--gold); }
.rev-card p {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.4; color: var(--cocoa); margin: 0;
  letter-spacing: -.01em;
}
.rev-by {
  margin-top: 30px;
  display: inline-flex; align-items: center; gap: 14px;
}
.avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 3px solid var(--ivory);
  box-shadow: var(--shadow-soft);
}
.rev-by div { text-align: left; }
.rev-by strong {
  display: block; font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--cocoa);
  letter-spacing: -.01em;
}
.rev-by span {
  font-size: 12px; color: var(--cocoa-soft);
}

.rev-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 0; background: var(--ivory);
  box-shadow: var(--shadow-soft);
  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(--rose); transform: translateY(-50%) scale(1.05); }
.rev-nav:hover i { color: var(--ivory); }
.rev-nav i { width: 20px; height: 20px; color: var(--cocoa); transition: color .3s; }

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

/* =============================================================
   FAQ
   ============================================================= */
.faq {
  padding: 90px 0;
  background:
    radial-gradient(ellipse 600px 400px at 0% 50%, rgba(255,200,160,.4), transparent 70%),
    var(--ivory);
}
@media (min-width: 768px) { .faq { padding: 140px 0; } }

.faq-image {
  position: relative;
  margin-top: 32px;
  aspect-ratio: 4/3;
  border-radius: 200px 28px 200px 28px;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.faq-image img { width: 100%; height: 100%; object-fit: cover; }
.faq-sticker {
  position: absolute; bottom: 22px; left: 22px;
  padding: 12px 18px; border-radius: 999px;
  background: var(--rose); color: var(--ivory);
  font-family: var(--hand); font-size: 22px; font-weight: 600;
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
}

.link-gold {
  color: var(--rose); border-bottom: 2px solid var(--rose);
  font-weight: 600;
}

.faq-item {
  background: var(--ivory);
  border-radius: 18px;
  margin-bottom: 12px;
  padding: 0 24px;
  transition: all .35s ease;
  box-shadow: var(--shadow-soft);
}
.faq-item.open { background: var(--pink); }
.faq-q {
  width: 100%; background: transparent; border: 0;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 21px; font-weight: 500;
  color: var(--cocoa);
  text-align: left;
  letter-spacing: -.01em;
}
.faq-q:hover { color: var(--rose); }
.faq-q i {
  width: 22px; height: 22px;
  color: var(--rose);
  transition: transform .35s ease;
  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: 260px; }
.faq-a p {
  margin: 0 0 22px; padding-right: 24px;
  font-size: 15px; line-height: 1.75; color: var(--cocoa-soft);
}

/* =============================================================
   NEWSLETTER
   ============================================================= */
.newsletter { padding: 50px 0; }
.news-card {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 400px 300px at 90% 0%, rgba(240,98,146,.55), transparent 60%),
    radial-gradient(ellipse 400px 300px at 0% 100%, rgba(224,179,85,.45), transparent 60%),
    var(--cocoa);
  color: var(--ivory);
  border-radius: 36px; padding: 50px 30px;
  box-shadow: var(--shadow-deep);
}
@media (min-width: 768px) { .news-card { padding: 70px 60px; } }
.news-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05; margin: 14px 0 0;
  color: var(--ivory); letter-spacing: -.02em;
}
.news-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.news-sub { margin-top: 16px; font-size: 15px; line-height: 1.7; color: rgba(255,248,242,.78); }
.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,.55); }
.news-form input:focus { outline: 0; }
.news-form button {
  padding: 14px 24px; border: 0; border-radius: 999px;
  background: var(--gold); color: var(--cocoa);
  font: 700 12px/1 var(--body);
  letter-spacing: .02em;
  transition: all .3s ease;
}
.news-form button:hover { background: var(--rose); color: var(--ivory); }
.news-foot { margin-top: 12px; font-size: 12px; color: rgba(255,248,242,.55); }

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

.contact-line {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid rgba(62,39,35,.1);
  align-items: center;
}
.cl-ico {
  width: 50px; height: 50px; border-radius: 16px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cl-ico i { width: 22px; height: 22px; color: var(--cocoa); }
.contact-line strong {
  display: block;
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--cocoa); letter-spacing: -.01em;
}
.contact-line span {
  display: block; margin-top: 3px;
  font-size: 13px; color: var(--cocoa-soft);
}

.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: saturate(.8) hue-rotate(-15deg);
}
.map-pin-card {
  position: absolute; left: 22px; bottom: 22px;
  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(--rose); flex-shrink: 0; }
.map-pin-card strong {
  display: block;
  font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--cocoa);
}
.map-pin-card span { font-size: 12px; color: var(--cocoa-soft); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--cocoa); color: var(--ivory);
  padding: 70px 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before, .site-footer::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(50px);
}
.site-footer::before {
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: rgba(240,98,146,.25);
}
.site-footer::after {
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: rgba(224,179,85,.2);
}
.site-footer > .container { position: relative; z-index: 1; }

.foot-hero {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 24px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .foot-hero { flex-direction: row; justify-content: space-between; align-items: center; }
}
.foot-hero h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.02; color: var(--ivory);
  margin: 0; letter-spacing: -.02em;
}
.foot-hero h2 em { font-style: italic; color: var(--gold); font-weight: 400; }

.site-footer .brand-text .b1 { color: var(--ivory); }
.site-footer .brand-text .b2 { color: var(--gold); }
.site-footer .brand-mark { background: linear-gradient(135deg, var(--rose), var(--gold)); }

.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: 42px; height: 42px; 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(--rose); border-color: var(--rose); transform: translateY(-3px); }
.foot-socials a:hover i { color: var(--ivory); }
.foot-socials i { width: 16px; height: 16px; color: var(--ivory); transition: color .3s; }

.foot-title {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 20px; color: var(--gold);
  margin-bottom: 16px; letter-spacing: -.01em;
}
.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(--rose); }

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

/* =============================================================
   FLOATING WHATSAPP
   ============================================================= */
.float-whatsapp {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; 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: 28px; height: 28px; 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
   ============================================================= */
@media (max-width: 575px) {
  .hero-card { padding: 24px 20px; }
  .collage { min-height: 360px; }
  .news-form { flex-direction: column; border-radius: 24px; }
  .news-form button { width: 100%; }
  .about-image-wrap { padding-right: 25px; padding-bottom: 50px; }
  .about-image-small { width: 56%; }
  .about-badge { width: 80px; height: 80px; top: -5px; right: -5px; }
  .custom-image { aspect-ratio: 1/1; border-radius: 120px 24px 120px 24px; }
  .sticker { font-size: 16px; padding: 9px 14px; }
  .sticker.s2, .sticker.s3 { font-size: 14px; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .hero-stats .div { display: none; }
  .hero-stats > div:not(.div) { flex: 1 0 30%; }
}
