/* =========================================================
   [CAKE BUSINESS NAME] — Soft luxury bakery styles
   ========================================================= */

:root {
  /* Colour palette */
  --cream: #FBF6EE;
  --cream-deep: #F4EADB;
  --blush: #F8E1DD;
  --blush-deep: #F0CFC8;
  --rose: #D49B95;
  --chocolate: #2E1B10;
  --chocolate-soft: #4A2C1F;
  --chocolate-muted: #7A5B49;
  --gold: #C9A35B;
  --gold-light: #E0C28A;
  --gold-deep: #A6843F;
  --white: #FFFFFF;
  --off-white: #FDFAF5;
  --line: #ECE0CF;
  --line-soft: #F3EADC;

  /* Typography */
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Caveat', cursive;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-full: 999px;

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(46, 27, 16, 0.06);
  --shadow-sm: 0 4px 12px rgba(46, 27, 16, 0.06);
  --shadow-md: 0 12px 30px rgba(46, 27, 16, 0.08);
  --shadow-lg: 0 24px 60px rgba(46, 27, 16, 0.14);
  --shadow-xl: 0 40px 90px rgba(46, 27, 16, 0.20);
  --shadow-gold: 0 12px 30px rgba(201, 163, 91, 0.25);

  /* Misc */
  --transition: 320ms cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1240px;
  --header-h: 78px;
}

/* =========================================================
   Reset & base
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--chocolate);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-deep); }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--chocolate);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
}

p { margin: 0; }

::selection { background: var(--blush-deep); color: var(--chocolate); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; position: relative; }
.section--cream { background: linear-gradient(180deg, var(--cream-deep) 0%, var(--cream) 100%); }
.section--blush { background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%); }

.section__header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  margin-bottom: 18px;
}
.section__lede {
  font-size: 1.075rem;
  color: var(--chocolate-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section__body { color: var(--chocolate-muted); }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 0.875rem; }
.btn--lg { padding: 17px 32px; font-size: 1rem; }

.btn--primary {
  background: var(--chocolate);
  color: var(--off-white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--chocolate-soft);
  color: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--chocolate);
  border: 1.5px solid var(--chocolate);
}
.btn--ghost:hover {
  background: var(--chocolate);
  color: var(--off-white);
  transform: translateY(-2px);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--off-white);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  color: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(201, 163, 91, 0.4);
}

/* =========================================================
   Announcement bar
   ========================================================= */
.announcement {
  background: var(--chocolate);
  color: var(--off-white);
  font-size: 0.825rem;
  text-align: center;
  padding: 9px 24px;
  letter-spacing: 0.02em;
}
.announcement__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.announcement__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 0 rgba(224, 194, 138, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224, 194, 138, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(224, 194, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 194, 138, 0); }
}

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 246, 238, 0.95);
  box-shadow: 0 2px 20px rgba(46, 27, 16, 0.04);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--chocolate);
}
.logo:hover { color: var(--chocolate); }
.logo__mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream-deep) 100%);
  display: grid;
  place-items: center;
  color: var(--chocolate);
  flex-shrink: 0;
  border: 1px solid var(--line-soft);
}
.logo__mark svg { width: 22px; height: 22px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.005em;
}
.logo__sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--chocolate-muted);
  margin-top: 2px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 0.92rem;
  color: var(--chocolate-soft);
  position: relative;
  font-weight: 450;
  padding: 4px 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav__link:hover { color: var(--chocolate); }
.nav__link:hover::after,
.nav__link.is-active::after { width: 22px; }

.header__actions { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform var(--transition);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--chocolate);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--cream);
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  /* translateY alone never clears `top: var(--header-h)`, so the closed
     drawer used to leak its CTA into view and kept its links tabbable. */
  visibility: hidden;
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 380ms;
  z-index: 99;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(46, 27, 16, 0.08);
}
.mobile-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}
.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 10px 0;
  color: var(--chocolate);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-nav__link:last-of-type { border-bottom: none; }
.mobile-nav__cta { margin-top: 18px; align-self: flex-start; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__blob--1 {
  width: 480px; height: 480px;
  background: var(--blush-deep);
  top: -80px; right: -120px;
}
.hero__blob--2 {
  width: 380px; height: 380px;
  background: var(--gold-light);
  bottom: -100px; left: -80px;
  opacity: 0.35;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  z-index: 1;
}
.hero__content { max-width: 600px; }
.hero__title {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero__lede {
  font-size: 1.135rem;
  color: var(--chocolate-muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hero__badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 480px;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--chocolate-soft);
  font-weight: 500;
}
.badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}
.badge-icon svg { width: 18px; height: 18px; }

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}
.hero__photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__photo:hover img { transform: scale(1.04); }

.hero__photo--main {
  top: 0; left: 8%;
  width: 70%; height: 78%;
  border-radius: 56% 44% 50% 50% / 55% 45% 55% 45%;
  transform: rotate(-2deg);
}
.hero__photo--accent {
  bottom: 4%;
  right: 0;
  width: 46%; height: 46%;
  border-radius: var(--radius-lg);
  transform: rotate(4deg);
  border: 8px solid var(--cream);
}
.hero__photo--small {
  top: 8%; right: 0;
  width: 38%; height: 36%;
  border-radius: var(--radius-md);
  transform: rotate(-6deg);
  border: 6px solid var(--cream);
}

.hero__tag {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--off-white);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: spin 18s linear infinite;
  z-index: 2;
}
.hero__tag-script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  line-height: 1;
}
.hero__tag-year {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}
.hero__tag { display: flex; flex-direction: column; gap: 4px; padding: 14px; }
@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  background: var(--chocolate);
  color: var(--cream);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  gap: 36px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.marquee__track span { color: var(--cream); }
.marquee__track span:nth-child(even) { color: var(--gold-light); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================
   About
   ========================================================= */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 1 / 1.05;
}
.about__photo {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.about__photo:hover img { transform: scale(1.04); }
.about__photo--lg {
  top: 0; left: 0;
  width: 75%; height: 70%;
}
.about__photo--sm {
  bottom: 0; right: 0;
  width: 55%; height: 48%;
  border: 8px solid var(--cream);
  border-radius: var(--radius-lg);
}
.about__sticker {
  position: absolute;
  top: 4%; right: 4%;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--blush);
  border: 1px solid var(--blush-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--chocolate);
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
  z-index: 2;
}
.about__sticker-script {
  font-family: var(--font-script);
  font-size: 1.3rem;
  line-height: 1;
}
.about__sticker-heart {
  font-size: 1.8rem;
  color: var(--rose);
  line-height: 1;
  margin: 2px 0;
}
.about__content { max-width: 520px; }
.about__content .section__title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 20px; }
.about__content .section__lede { margin: 0 0 18px; text-align: left; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 0;
  margin: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat__value {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--chocolate);
  line-height: 1;
}
.stat__value span { color: var(--gold-deep); }
.stat__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--chocolate-muted);
  margin-top: 6px;
}

/* =========================================================
   Cake cards
   ========================================================= */
.cake-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cake-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.cake-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cake-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
}
.cake-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.cake-card:hover .cake-card__media img { transform: scale(1.06); }
.cake-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.cake-card__body h3 {
  font-size: 1.25rem;
  font-weight: 500;
}
.cake-card__body p {
  color: var(--chocolate-muted);
  font-size: 0.92rem;
  flex: 1;
}
.cake-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gold-deep);
  margin-top: 4px;
  align-self: flex-start;
}
.cake-card__cta svg { transition: transform var(--transition); }
.cake-card__cta:hover { color: var(--chocolate); }
.cake-card__cta:hover svg { transform: translateX(4px); }

/* =========================================================
   Gallery
   ========================================================= */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.filter {
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--chocolate-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.filter:hover {
  background: var(--blush);
  border-color: var(--blush-deep);
  color: var(--chocolate);
}
.filter.is-active {
  background: var(--chocolate);
  color: var(--off-white);
  border-color: var(--chocolate);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  margin: 0;
  background: var(--cream-deep);
  transition: transform var(--transition), box-shadow var(--transition), opacity 350ms ease;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.gallery__item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 8px 14px;
  background: rgba(46, 27, 16, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--off-white);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery__item.is-hidden {
  display: none;
}

/* =========================================================
   How to Order
   ========================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
}
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--line-soft);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold-deep);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--chocolate-muted);
  font-size: 0.94rem;
}
.how__cta { text-align: center; }

/* =========================================================
   Flavours
   ========================================================= */
.flavours__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.flavours__intro { max-width: 440px; }
.flavours__intro .section__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.flavours__intro .section__lede { text-align: left; margin: 0 0 28px; }
.flavours__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.flavour-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.flavour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.flavour-card h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chips li {
  padding: 7px 14px;
  background: var(--cream);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--chocolate-soft);
  border: 1px solid var(--line-soft);
  transition: all var(--transition);
}
.chips li:hover {
  background: var(--blush);
  border-color: var(--blush-deep);
}

/* =========================================================
   Callout
   ========================================================= */
.callout {
  position: relative;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(46, 27, 16, 0.85) 0%, rgba(74, 44, 31, 0.85) 100%),
    url('https://images.unsplash.com/photo-1612203985729-70726954388c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--off-white);
  text-align: left;
  overflow: hidden;
}
.callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 163, 91, 0.25), transparent 60%);
  pointer-events: none;
}
.callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.callout__text { max-width: 640px; }
.callout__text h2 {
  color: var(--off-white);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  margin-bottom: 14px;
  font-weight: 500;
}
.callout__text p {
  color: rgba(253, 250, 245, 0.8);
  font-size: 1.05rem;
  max-width: 560px;
}

/* =========================================================
   Testimonials
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  border: 1px solid var(--line-soft);
  margin: 0;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.review::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--blush);
  line-height: 1;
  font-style: italic;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review blockquote {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 1.075rem;
  line-height: 1.55;
  color: var(--chocolate);
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.review figcaption {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.review__name {
  font-weight: 600;
  color: var(--chocolate);
  font-size: 0.95rem;
}
.review__role {
  font-size: 0.82rem;
  color: var(--chocolate-muted);
  margin-top: 2px;
}

/* =========================================================
   Instagram
   ========================================================= */
.insta__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.insta__tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
}
.insta__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.insta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(46, 27, 16, 0.55);
  color: var(--off-white);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.insta__tile:hover .insta__overlay { opacity: 1; }
.insta__tile:hover img { transform: scale(1.08); }
.insta__cta { text-align: center; }

/* =========================================================
   Contact
   ========================================================= */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}
.contact__info { max-width: 480px; }
.contact__info .section__title { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.contact__info .section__lede { text-align: left; margin: 0 0 32px; }

.contact__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 16px;
}
.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact__list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}
.contact__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blush);
  display: grid;
  place-items: center;
  color: var(--chocolate);
  flex-shrink: 0;
}
.contact__icon svg { width: 18px; height: 18px; }
.contact__list strong {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--chocolate-muted);
  margin-bottom: 2px;
}
.contact__list a, .contact__list span {
  font-size: 1rem;
  color: var(--chocolate);
  font-weight: 500;
}
.contact__list a:hover { color: var(--gold-deep); }

.contact__socials { display: flex; gap: 10px; }
.social {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--chocolate);
  transition: all var(--transition);
}
.social:hover {
  background: var(--chocolate);
  color: var(--off-white);
  transform: translateY(-2px);
}

/* Form */
.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.contact__form h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.contact__form-note {
  font-size: 0.9rem;
  color: var(--chocolate-muted);
  margin-bottom: 24px;
}
.contact__form-note a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--chocolate-soft);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--chocolate);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }

.form__submit { width: 100%; margin-top: 8px; }
.form__status {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--gold-deep);
  min-height: 1.2em;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--chocolate);
  color: rgba(253, 250, 245, 0.78);
  padding: 80px 0 0;
  position: relative;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer h4 {
  color: var(--off-white);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: rgba(253, 250, 245, 0.7); font-size: 0.95rem; transition: color var(--transition); }
.footer ul a:hover { color: var(--gold-light); }

.logo--light { color: var(--off-white); }
.logo--light:hover { color: var(--off-white); }
.logo--light .logo__mark {
  background: rgba(253, 250, 245, 0.08);
  border-color: rgba(253, 250, 245, 0.18);
  color: var(--off-white);
}
.logo--light .logo__title { color: var(--off-white); }
.logo--light .logo__sub { color: var(--gold-light); }

.footer__about {
  margin: 22px 0 22px;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 340px;
  color: rgba(253, 250, 245, 0.7);
}
.footer__socials { display: flex; gap: 10px; }
.footer__socials .social {
  background: rgba(253, 250, 245, 0.06);
  border-color: rgba(253, 250, 245, 0.12);
  color: var(--off-white);
}
.footer__socials .social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--chocolate);
}

.footer__contact a { color: rgba(253, 250, 245, 0.78); }

.footer__bar {
  border-top: 1px solid rgba(253, 250, 245, 0.1);
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(253, 250, 245, 0.55);
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   Floating WhatsApp
   ========================================================= */
.float-wa {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform var(--transition);
}
.float-wa:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
}
.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  opacity: 0;
  animation: ripple 2s infinite;
  z-index: -1;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(46, 27, 16, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 60px 20px;
}
.lightbox.is-open { display: flex; }
.lightbox__figure {
  margin: 0;
  max-width: min(92vw, 1100px);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}
.lightbox__figure figcaption {
  color: var(--off-white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(253, 250, 245, 0.1);
  color: var(--off-white);
  border-radius: 50%;
  width: 48px; height: 48px;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  transition: background var(--transition), transform var(--transition);
  line-height: 1;
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: rgba(253, 250, 245, 0.2);
  transform: scale(1.05);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.05); }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .cake-grid { grid-template-columns: repeat(3, 1fr); }
  .insta__grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }

  .nav { display: none; }
  .hamburger { display: inline-flex; }

  .section { padding: 72px 0; }
  .section__header { margin-bottom: 40px; }

  .hero { padding: 50px 0 70px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { margin: 0 auto; max-width: 480px; width: 100%; }
  .hero__badges { grid-template-columns: repeat(2, 1fr); max-width: 100%; }

  .about__inner { grid-template-columns: 1fr; gap: 56px; }
  .about__media { max-width: 480px; margin: 0 auto; width: 100%; }

  .cake-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 2; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .flavours__inner { grid-template-columns: 1fr; gap: 48px; }
  .flavours__intro { max-width: 100%; }

  .reviews { grid-template-columns: 1fr; }

  .insta__grid { grid-template-columns: repeat(3, 1fr); }

  .contact__inner { grid-template-columns: 1fr; gap: 48px; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --header-h: 68px; }
  .container { padding: 0 20px; }

  .header__cta { display: none; }
  .logo__sub { display: none; }

  .announcement { font-size: 0.75rem; padding: 8px 16px; }

  .hero { padding: 32px 0 60px; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .hero__lede { font-size: 1.02rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .hero__badges { grid-template-columns: 1fr 1fr; gap: 12px; }

  .hero__visual { aspect-ratio: 1 / 1; }
  .hero__photo--main { width: 75%; height: 80%; left: 4%; }
  .hero__photo--accent { width: 50%; height: 48%; }
  .hero__photo--small { width: 42%; height: 38%; }
  .hero__tag { width: 88px; height: 88px; }
  .hero__tag-script { font-size: 1.1rem; }
  .hero__tag-year { font-size: 1.2rem; }

  .marquee__track { font-size: 1.1rem; gap: 24px; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }

  .cake-grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 12px; }

  .steps { grid-template-columns: 1fr; }
  .flavours__cards { grid-template-columns: 1fr; }

  .callout { padding: 60px 0; }
  .callout__inner { flex-direction: column; align-items: flex-start; gap: 24px; }

  .insta__grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  .contact__form { padding: 28px 22px; }
  .field-row { grid-template-columns: 1fr; }

  .footer { padding-top: 60px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer__bar-inner { flex-direction: column; align-items: flex-start; }

  .float-wa { right: 16px; bottom: 16px; width: 52px; height: 52px; }

  .lightbox__nav { width: 40px; height: 40px; font-size: 1.3rem; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
  .lightbox__close { top: 16px; right: 16px; }
}

@media (max-width: 420px) {
  .hero__badges { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
}
