/* ============================================================
   EDDIE'S CAKERY BAR — premium stylesheet
   Palette: warm cream, soft blush, deep cocoa, gold accent
   ============================================================ */

:root {
  --cream:      #faf5ef;
  --cream-2:    #f3eadf;
  --blush:      #f0d9d2;
  --blush-deep: #e6c2b8;
  --cocoa:      #3a2b26;
  --cocoa-soft: #6b574e;
  --gold:       #c2925b;
  --gold-deep:  #a9794a;
  --line:       #e7dcd0;
  --white:      #ffffff;
  --shadow:     0 18px 50px -20px rgba(58, 43, 38, 0.35);
  --shadow-sm:  0 8px 24px -12px rgba(58, 43, 38, 0.25);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--cocoa);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; }

/* ---------- shared section bits ---------- */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--cocoa);
}
.section-lead {
  max-width: 560px;
  color: var(--cocoa-soft);
  margin-top: 1.1rem;
  font-size: 1.05rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cocoa);
  color: var(--cream);
  padding: 0.95rem 2rem;
  border-radius: 40px;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--cocoa);
  cursor: pointer;
  transition: all 0.35s ease;
}
.btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cocoa); border-color: var(--cocoa); }
.btn--ghost:hover { background: var(--cocoa); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--cocoa); border-color: var(--cream); }
.btn--light:hover { background: var(--white); color: var(--cocoa); }
.btn--small { padding: 0.7rem 1.4rem; font-size: 0.72rem; }
.btn--whatsapp { background: #1faf54; border-color: #1faf54; }
.btn--whatsapp:hover { background: #178a42; border-color: #178a42; }
.wa-icon { font-size: 1.1rem; }

.stars { color: var(--gold); letter-spacing: 0.1em; }

/* ---------- topbar ---------- */
.topbar {
  background: var(--cocoa);
  color: var(--cream);
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 239, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cocoa);
}
.nav__logo span { color: var(--gold-deep); font-style: italic; }
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo-img { height: 44px; width: auto; display: block; }
.footer__logo-img { height: 84px; width: auto; display: block; }
.nav__links { display: flex; gap: 1.5rem; }
.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cocoa-soft);
  position: relative;
  transition: color 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--gold-deep);
  transition: width 0.3s;
}
.nav__links a:hover { color: var(--cocoa); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 1rem; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__burger span { width: 24px; height: 2px; background: var(--cocoa); transition: 0.3s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background: url('images/raspberry-square.jpg') center/cover no-repeat;
  transform: scale(1.05);
  animation: slowzoom 18s ease-in-out infinite alternate;
}
@keyframes slowzoom { to { transform: scale(1.15); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(40,28,24,0.72) 0%, rgba(40,28,24,0.35) 55%, rgba(40,28,24,0.15) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero__eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}
.hero__title {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.hero__sub {
  max-width: 480px;
  margin: 1.6rem 0 2.4rem;
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.92;
}
.hero__buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__buttons .btn--ghost { color: var(--cream); border-color: var(--cream); }
.hero__buttons .btn--ghost:hover { background: var(--cream); color: var(--cocoa); }
.hero__rating {
  margin-top: 2.5rem;
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.85rem; opacity: 0.9;
}
.hero__rating .stars { font-size: 1.05rem; }
.hero__scroll {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 2rem;
  color: var(--cream);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ---------- intro ---------- */
.intro { background: var(--cream); padding: 7rem 1.5rem; }
.intro__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.intro__title { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.5rem; }
.intro__text { color: var(--cocoa-soft); font-size: 1.15rem; margin-top: 1.4rem; }
.intro__stats {
  display: flex; justify-content: center; gap: 3.5rem;
  margin-top: 3rem; flex-wrap: wrap;
}
.intro__stats div { display: flex; flex-direction: column; }
.intro__stats strong { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-deep); }
.intro__stats span { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cocoa-soft); }

/* ---------- menu ---------- */
.menu { background: var(--cream-2); padding: 7rem 1.5rem; }
.menu__head { max-width: var(--maxw); margin: 0 auto 3.5rem; text-align: center; }
.menu__head .section-lead { margin-left: auto; margin-right: auto; }
.menu__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.cake-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cake-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
/* contain (not cover) so the full cake is always visible, never cropped */
.cake-card__img {
  height: 320px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
}
.cake-card__video { height: 320px; width: 100%; object-fit: contain; background: var(--white); display: block; }
.cake-card__body { padding: 1.6rem 1.6rem 1.8rem; }
.cake-card__name { font-size: 1.5rem; }
.cake-card__desc { color: var(--cocoa-soft); font-size: 0.95rem; margin: 0.5rem 0 1.1rem; }
.cake-card__foot { display: flex; align-items: center; justify-content: space-between; }
.cake-card__price { font-family: var(--serif); font-size: 1.3rem; color: var(--gold-deep); }
.cake-card__price small { font-size: 0.7rem; color: var(--cocoa-soft); letter-spacing: 0.1em; text-transform: uppercase; display:block; }
.cake-card__btn {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cocoa); border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color 0.3s;
}
.cake-card__btn:hover { color: var(--gold-deep); }
.menu__note { text-align: center; margin-top: 3rem; color: var(--cocoa-soft); }
.menu__note a { color: var(--gold-deep); border-bottom: 1px solid var(--gold); }

/* ---------- featured video ---------- */
.video-feature { background: var(--cream); padding: 6rem 1.5rem; }
.video-feature__inner { max-width: 960px; margin: 0 auto; text-align: center; }
.video-feature__frame {
  margin-top: 2.5rem;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cocoa);
}
.video-feature__frame video,
.video-feature__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; object-fit: cover;
}

/* ---------- instagram feed ---------- */
.insta { background: var(--cream-2); padding: 7rem 1.5rem; }
.insta__head { max-width: var(--maxw); margin: 0 auto 3rem; text-align: center; }
.insta__head .section-lead { margin-left: auto; margin-right: auto; }
.insta__follow { margin-top: 1.6rem; }
.insta__feed { max-width: var(--maxw); margin: 0 auto; }
.insta__feed iframe { width: 100%; min-height: 480px; border: 0; }
.insta__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); gap: 1rem;
}
.insta__tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background-size: cover; background-position: center;
  border-radius: 12px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.insta__tile-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 1rem;
  background: rgba(40,28,24,0.55);
  color: var(--cream);
  font-size: 0.85rem; letter-spacing: 0.04em; line-height: 1.4;
  opacity: 0; transition: opacity 0.35s ease;
}
.insta__tile:hover .insta__tile-overlay { opacity: 1; }

/* ---------- how ---------- */
.how { background: var(--cocoa); color: var(--cream); padding: 7rem 1.5rem; }
.how__head { text-align: center; margin-bottom: 3.5rem; }
.how__head .section-eyebrow { color: var(--blush-deep); }
.how__head .section-title { color: var(--cream); }
.how__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.how__step { text-align: center; padding: 2rem 1rem; }
.how__num { font-family: var(--serif); font-size: 3rem; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.how__step h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
.how__step p { color: rgba(250,245,239,0.7); font-size: 0.98rem; }

/* ---------- split sections (about / masterclass) ---------- */
.split { padding: 7rem 1.5rem; background: var(--cream); }
.split--alt { background: var(--cream-2); }
.split__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.split__media { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split__text p { color: var(--cocoa-soft); margin-bottom: 1rem; }
.split__text .section-title { margin-bottom: 1.4rem; }
.split__signature { color: var(--cocoa); font-style: italic; margin-top: 1.5rem; }
.split__signature strong { font-style: normal; }
.split__subhead { color: var(--cocoa); font-weight: 500; margin-top: 1.4rem; }
.split__list { list-style: none; margin: 0 0 1.8rem; }
.split__list li {
  position: relative; padding-left: 1.6rem; margin-bottom: 0.7rem; color: var(--cocoa-soft);
}
.split__list li::before {
  content: '✦'; position: absolute; left: 0; color: var(--gold-deep); font-size: 0.8rem; top: 0.15rem;
}

/* masterclass curriculum groups */
.learn-groups {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; margin-bottom: 1.8rem;
}
.learn-group h4 {
  font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.6rem;
}
.learn-group .split__list { margin-bottom: 0; }
.learn-group .split__list li { margin-bottom: 0.4rem; font-size: 0.95rem; }
.book-steps { counter-reset: step; list-style: none; margin: 0 0 1.8rem; }
.book-steps li {
  position: relative; padding-left: 2.4rem; margin-bottom: 0.7rem; color: var(--cocoa-soft);
}
.book-steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: -0.1rem;
  width: 1.7rem; height: 1.7rem; border-radius: 50%;
  background: var(--cocoa); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}

/* ---------- flavours & fillings ---------- */
.flavours { background: var(--cream); padding: 7rem 1.5rem; }
.flavours__head { text-align: center; max-width: var(--maxw); margin: 0 auto 3.5rem; }
.flavours__head .section-lead { margin-left: auto; margin-right: auto; }
.flavours__cols {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem;
}
.flavours__col-title {
  font-size: 1.8rem; color: var(--cocoa);
  padding-bottom: 0.9rem; margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.choice { margin-bottom: 1.5rem; }
.choice__name {
  font-family: var(--serif); font-size: 1.3rem; color: var(--gold-deep); margin-bottom: 0.2rem;
}
.choice__desc { color: var(--cocoa-soft); font-size: 0.95rem; }

/* ---------- policies page ---------- */
.policy-lead { color: var(--gold-deep); font-style: italic; margin-bottom: 1rem; }
.policy { max-width: 760px; margin: 0 auto; padding: 4rem 1.5rem 6rem; }
.policy h3 {
  font-size: 1.9rem; color: var(--cocoa);
  margin: 2.6rem 0 0.8rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.policy h3:first-child { margin-top: 0; }
.policy p { color: var(--cocoa-soft); margin-bottom: 1rem; }
.policy strong { color: var(--cocoa); font-weight: 500; }
.policy ul { color: var(--cocoa-soft); margin: 0 0 1rem 0; padding: 0; list-style: none; }
.policy li { position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; }
.policy li::before { content: '✦'; position: absolute; left: 0; top: 0.1rem; color: var(--gold-deep); font-size: 0.8rem; }
.policy__cta { margin-top: 3rem; text-align: center; }

/* ---------- terms agreement (order form) ---------- */
.field--check { display: flex; }
.check { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; text-transform: none; letter-spacing: 0; font-size: 0.92rem; color: var(--cocoa-soft); }
.check input { width: auto; margin-top: 0.2rem; accent-color: var(--gold-deep); flex: none; }
.check a { color: var(--gold-deep); text-decoration: underline; }

/* ---------- file upload ---------- */
.field-hint { font-weight: 300; text-transform: none; letter-spacing: 0; color: var(--cocoa-soft); opacity: 0.8; }
.upload {
  display: flex; align-items: center; gap: 0.7rem;
  border: 1.5px dashed var(--line); border-radius: 10px;
  padding: 1rem 1.2rem; cursor: pointer; background: var(--cream);
  transition: border-color 0.3s, background 0.3s;
}
.upload:hover { border-color: var(--gold); background: var(--white); }
.upload__icon {
  width: 32px; height: 32px; border-radius: 50%; flex: none;
  background: var(--blush); color: var(--cocoa);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.upload__text { color: var(--cocoa-soft); font-size: 0.95rem; }

/* ---------- order ---------- */
.order { background: var(--cream); padding: 7rem 1.5rem; }
.order__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }
.order__intro { position: sticky; top: 110px; }
.order__perks { list-style: none; margin-top: 2rem; }
.order__perks li { color: var(--cocoa-soft); margin-bottom: 0.6rem; }
.order__form {
  background: var(--white);
  padding: 2.6rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cocoa-soft);
  margin-bottom: 0.5rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--cocoa);
  background: var(--cream);
  transition: border-color 0.3s, background 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.field textarea { resize: vertical; }
.order__send { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.6rem; }
.order__ig-link { color: var(--gold-deep); font-size: 0.85rem; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.order__ig-link:hover { border-bottom-color: var(--gold-deep); }
.order__formnote { margin-top: 1rem; font-size: 0.85rem; color: var(--gold-deep); min-height: 1.2em; }

/* ---------- reviews ---------- */
.reviews { background: var(--blush); padding: 7rem 1.5rem; }
.reviews__head { text-align: center; max-width: var(--maxw); margin: 0 auto 3.5rem; }
.reviews__summary { margin-top: 1.2rem; display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
.reviews__summary .stars { font-size: 1.4rem; }
.reviews__summary span:last-child { color: var(--cocoa-soft); font-size: 0.95rem; }
.reviews__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.8rem;
}
.review-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.review-card__stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.review-card__text { color: var(--cocoa); font-style: italic; font-family: var(--serif); font-size: 1.25rem; line-height: 1.4; }
.review-card__author { margin-top: 1.2rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cocoa-soft); }
.reviews__google {
  margin-top: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cocoa-soft);
}
.reviews__google img { width: 18px; height: 18px; }
.reviews__widget { max-width: var(--maxw); margin: 0 auto; }
.review-card__src { color: var(--gold-deep); letter-spacing: normal; text-transform: none; }
.reviews__cta { text-align: center; margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.btn--google { background: var(--white); color: var(--cocoa); border-color: var(--line); }
.btn--google:hover { background: var(--cocoa); color: var(--cream); border-color: var(--cocoa); }
.btn--google img { width: 18px; height: 18px; }
.btn--google:hover img { filter: brightness(0) invert(1); }
.reviews__seeall { color: var(--cocoa-soft); font-size: 0.85rem; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.reviews__seeall:hover { border-bottom-color: var(--cocoa-soft); }

/* review modal */
.review-modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(40,28,24,0.55);
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.review-modal.open { display: flex; }
.review-modal__box {
  background: var(--cream);
  border-radius: 20px;
  padding: 2.6rem;
  width: 100%; max-width: 460px;
  position: relative;
  box-shadow: var(--shadow);
}
.review-modal__box h3 { font-size: 1.9rem; margin-bottom: 1.4rem; }
.review-modal__close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--cocoa-soft);
}
.star-input { display: flex; gap: 0.3rem; font-size: 1.9rem; color: var(--line); cursor: pointer; }
.star-input span { transition: color 0.15s; }
.star-input span.on { color: var(--gold); }

/* ---------- cta banner ---------- */
.cta-banner {
  background: linear-gradient(rgba(40,28,24,0.6), rgba(40,28,24,0.6)),
              url('images/chapter30.jpg') center/cover fixed;
  color: var(--cream);
  text-align: center;
  padding: 8rem 1.5rem;
}
.cta-banner h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.cta-banner p { margin: 1rem 0 2.2rem; font-size: 1.1rem; opacity: 0.9; }

/* ---------- footer ---------- */
.footer { background: var(--cocoa); color: var(--cream); padding: 5rem 1.5rem 2rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
.nav__logo--footer { color: var(--cream); font-size: 1.8rem; }
.footer__tag { color: rgba(250,245,239,0.65); margin-top: 1rem; max-width: 320px; }
.footer__col h4 { font-size: 1.2rem; margin-bottom: 1.2rem; color: var(--blush); }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.7rem; color: rgba(250,245,239,0.75); }
.footer__col ul a:hover { color: var(--gold); }
.footer__hours li { display: flex; justify-content: space-between; gap: 1rem; }
.footer__bottom {
  max-width: var(--maxw); margin: 3rem auto 0; padding-top: 1.6rem;
  border-top: 1px solid rgba(250,245,239,0.15);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(250,245,239,0.55);
}
.footer__privacy {
  max-width: 720px; margin: 1.6rem auto 0;
  text-align: center;
  font-size: 0.6rem; line-height: 1.6; color: rgba(250,245,239,0.5);
}
.footer__privacy h4 {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.06em; color: rgba(250,245,239,0.65);
  margin-bottom: 0.5rem;
}
.footer__privacy p { margin-bottom: 0.5rem; }
.footer__privacy strong { color: rgba(250,245,239,0.65); font-weight: 500; }
.footer__privacy ul { list-style: none; margin: 0 0 0.5rem; padding: 0; }
.footer__privacy li { margin-bottom: 0.2rem; }
.footer__privacy a { color: var(--blush); text-decoration: underline; }

/* ---------- floating whatsapp ---------- */
.float-wa {
  position: fixed; bottom: 1.6rem; left: 1.6rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1faf54; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.float-wa:hover { transform: scale(1.08); }

/* ---------- back to top ---------- */
.to-top {
  position: fixed; bottom: 5.6rem; left: 1.6rem; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cocoa); color: var(--cream);
  border: none; cursor: pointer; font-size: 1.3rem; line-height: 1;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold-deep); transform: translateY(-2px); }

/* ---------- chat widget ---------- */
.chat { position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 95; }
.chat__toggle {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--cocoa); color: var(--cream);
  border: none; cursor: pointer;
  padding: 0.85rem 1.3rem; border-radius: 40px;
  box-shadow: var(--shadow);
  font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.1em;
  transition: transform 0.3s, background 0.3s;
}
.chat__toggle:hover { transform: translateY(-2px); background: var(--gold-deep); }
.chat__toggle-icon { color: var(--gold); font-size: 1.1rem; }
.chat.open .chat__toggle { display: none; }

.chat__window {
  position: absolute; bottom: 0; right: 0;
  width: 360px; max-width: calc(100vw - 2rem);
  height: 520px; max-height: calc(100vh - 3rem);
  background: var(--cream);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: none; flex-direction: column;
  overflow: hidden;
}
.chat.open .chat__window { display: flex; animation: pop 0.3s ease; }
@keyframes pop { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.chat__header {
  background: var(--cocoa); color: var(--cream);
  padding: 1.1rem 1.3rem;
  display: flex; align-items: center; justify-content: space-between;
}
.chat__header strong { font-family: var(--serif); font-size: 1.2rem; display: block; }
.chat__header span { font-size: 0.74rem; opacity: 0.7; }
.chat__close { background: none; border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer; }
.chat__body { flex: 1; overflow-y: auto; padding: 1.2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.msg { max-width: 80%; padding: 0.7rem 1rem; border-radius: 14px; font-size: 0.92rem; line-height: 1.5; }
.msg--bot { background: var(--white); color: var(--cocoa); align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.msg--user { background: var(--cocoa); color: var(--cream); align-self: flex-end; border-bottom-right-radius: 4px; }
.msg a { color: var(--gold-deep); text-decoration: underline; }
.msg--user a { color: var(--blush); }
.chat__quick { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0 1.2rem 0.8rem; }
.chat__quick button {
  background: var(--blush); color: var(--cocoa); border: none; cursor: pointer;
  font-family: var(--sans); font-size: 0.78rem;
  padding: 0.5rem 0.9rem; border-radius: 20px; transition: background 0.3s;
}
.chat__quick button:hover { background: var(--blush-deep); }
.chat__input { display: flex; border-top: 1px solid var(--line); }
.chat__input input { flex: 1; border: none; background: var(--white); padding: 1rem 1.2rem; font-family: var(--sans); font-size: 0.92rem; }
.chat__input input:focus { outline: none; }
.chat__input button { background: var(--cocoa); color: var(--cream); border: none; width: 52px; font-size: 1.2rem; cursor: pointer; transition: background 0.3s; }
.chat__input button:hover { background: var(--gold-deep); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .order__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .order__intro { position: static; }
  .split__inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .split--alt .split__media { order: -1; }
  .split__media { max-height: 420px; }
  .flavours__cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .how__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 720px) {
  /* Remove blur on mobile: backdrop-filter makes the fixed drawer anchor to the
     nav bar instead of the screen, so its background wouldn't cover full height. */
  .nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--cream);
  }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: 78%; max-width: 320px;
    height: 100vh; height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    padding: 5rem 2rem;
    gap: 1.6rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow);
    z-index: 120;
  }
  .nav__links.open { transform: none; }
  .nav__burger { display: flex; }
  .nav__cta .btn--small { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .intro__stats { gap: 2rem; }
  .hero { height: 88vh; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .nav__logo-img { height: 38px; }
  .learn-groups { grid-template-columns: 1fr; }
}
