/* ═══════════════════════════════════════════════════════════════
   LITTLEMISSBAKER by Yamini — Luxury single-page site
   Brand palette · DM Sans body · Cormorant Garamond display
   #fbe3e2 blush · #a97269 rose · #a64349 claret · #fafafa porcelain
   ═══════════════════════════════════════════════════════════════ */

:root {
  --blush: #fbe3e2;
  --blush-tint: #fdf3f2;
  --rose: #a97269;
  --rose-deep: #8f5d55;
  --claret: #a64349;
  --claret-deep: #8a343a;
  --porcelain: #fafafa;
  --espresso: #2a1f1c;
  --espresso-soft: #3a2c28;
  --ink: #3a2c28;
  --ink-soft: #786a64;
  --gold: #c9a877;        /* whisper accent only */
  --gold-soft: #e4d3b3;
  --white: #ffffff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 30px 80px -22px rgba(58, 44, 40, 0.28);
  --shadow-lift: 0 18px 50px -14px rgba(58, 44, 40, 0.32);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--porcelain);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
html { overflow-x: clip; }
::selection { background: var(--blush); color: var(--claret-deep); }
img { display: block; max-width: 100%; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h2 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); letter-spacing: -0.01em; }
h2 em, h1 em { font-style: italic; color: var(--rose); }
a { color: inherit; text-decoration: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Eyebrow ─────────────────────────────────────────────────── */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.eyebrow--light { color: var(--blush); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.05em 2.4em;
  border-radius: 100px;
  transition: transform 0.5s var(--ease-luxe), box-shadow 0.5s var(--ease-luxe), background 0.4s, color 0.4s, border-color 0.4s;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}
.btn--gold {
  background: linear-gradient(135deg, var(--claret) 0%, var(--claret-deep) 100%);
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(138, 52, 58, 0.5);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 42px -12px rgba(138, 52, 58, 0.6); }
.btn--light {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}
.btn--light:hover { background: rgba(255,255,255,0.16); transform: translateY(-3px); }
.btn--dark-ol { border-color: rgba(58,44,40,0.28); color: var(--ink); background: transparent; backdrop-filter: none; }
.btn--dark-ol:hover { border-color: var(--claret); color: var(--claret); background: transparent; }
.btn--xl { padding: 1.3em 3.2em; font-size: 0.82rem; }
.btn--nav { padding: 0.85em 1.9em; font-size: 0.66rem; }

/* ── Gold/rose arrow links ───────────────────────────────────── */
.link-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--claret);
  font-weight: 500;
  padding-bottom: 0.4em;
  border-bottom: 1px solid rgba(166, 67, 73, 0.3);
  transition: gap 0.4s var(--ease-luxe), border-color 0.4s, color 0.4s;
}
.link-gold:hover { gap: 1.1em; border-color: var(--claret); }
.link-gold__arrow { font-family: serif; }

/* ═══════════ NAVIGATION ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: ". brand actions" "links links links";
  align-items: center;
  row-gap: 0.35rem;
  padding: 0.7rem clamp(1.4rem, 4vw, 3.5rem);
  transition: background 0.5s, box-shadow 0.5s, padding 0.5s;
}
.nav__brand { grid-area: brand; justify-self: center; display: flex; flex-direction: column; align-items: center; gap: 0.28rem; text-align: center; }
.nav__tagline { font-family: var(--sans); font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--rose); font-weight: 500; white-space: nowrap; }
.nav__actions { grid-area: actions; justify-self: end; }
.nav.is-scrolled {
  background: rgba(250, 250, 250, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(58, 44, 40, 0.08);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.nav__logo { height: 74px; width: auto; transition: height 0.5s var(--ease-luxe); }
.nav.is-scrolled .nav__logo { height: 44px; }
.nav__links { grid-area: links; display: flex; justify-self: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.nav__links a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 0.4em 0;
  transition: color 0.35s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--claret);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-luxe);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--claret); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__burger { display: none; }

/* ═══════════ HERO (3-photo, light) ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(7rem, 14vh, 10rem) clamp(1.4rem, 4vw, 3.5rem) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--blush) 0%, transparent 62%),
    var(--porcelain);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 940px; }
.hero__title {
  font-size: clamp(3.4rem, 9.5vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero__title .line { display: block; overflow: hidden; }
.reveal--italic { font-style: italic; color: var(--rose); }
.hero__brand { font-family: var(--sans); font-weight: 500; font-size: clamp(1rem, 4.2vw, 1.7rem); letter-spacing: 0.12em; text-transform: uppercase; color: var(--claret-deep); margin-bottom: 1.3rem; line-height: 1.2; white-space: nowrap; }
.hero__brand span { display: block; font-size: 0.66rem; letter-spacing: 0.34em; color: var(--rose); margin-top: 0.5rem; }
.hero__sub { max-width: 600px; margin: 1.8rem auto 0; font-size: 1.05rem; color: var(--ink-soft); }
.hero__cta { margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__stage {
  position: relative; z-index: 1;
  width: min(1080px, 94vw);
  margin-top: clamp(2.5rem, 6vh, 5rem);
  display: flex; align-items: flex-end; justify-content: center;
  gap: clamp(1rem, 3vw, 2.6rem);
}
.hero__img {
  border-radius: 14px 14px 0 0; overflow: hidden;
  box-shadow: var(--shadow-soft); background: var(--blush);
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--center { width: 42%; aspect-ratio: 3 / 4; }
.hero__img--left, .hero__img--right { width: 26%; aspect-ratio: 3 / 4.2; margin-bottom: -6%; }

.hero__stats {
  position: relative; z-index: 2; list-style: none;
  display: flex; align-items: center; gap: clamp(1.4rem, 4vw, 3.4rem);
  padding: 1.6rem clamp(1.5rem, 4vw, 3rem); margin: 0 auto;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(169, 114, 105, 0.25);
  border-radius: 100px; box-shadow: var(--shadow-lift);
}
.hero__stats li { display: flex; flex-direction: column; align-items: center; line-height: 1.35; }
.hero__stats strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--ink); }
.hero__stats span { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-soft); }
.hero__stats-rule { width: 1px; height: 34px; background: rgba(58, 44, 40, 0.14); }

/* ═══════════ SECTION HEADS ═══════════ */
.section-head { text-align: center; max-width: 780px; margin: 0 auto clamp(3rem, 7vh, 5.5rem); padding: 0 1.4rem; }
.section-head__sub { margin-top: 1.2rem; color: var(--ink-soft); font-size: 0.98rem; }

/* ═══════════ WHAT SETS US APART ═══════════ */
.apart { padding: clamp(5rem, 12vh, 9rem) clamp(1.4rem, 4vw, 3.5rem); background: var(--blush-tint); }
.apart__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  max-width: 1320px; margin: 0 auto;
}
.apart__card {
  background: var(--white);
  border: 1px solid rgba(169, 114, 105, 0.16);
  border-radius: 14px;
  padding: 2.4rem 1.8rem;
  transition: transform 0.6s var(--ease-luxe), box-shadow 0.6s var(--ease-luxe);
}
.apart__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.apart__mark {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.apart__card h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.apart__card p { color: var(--ink-soft); font-size: 0.94rem; }

/* ═══════════ COLLECTIONS / SHOWCASES ═══════════ */
.collections { padding: clamp(5rem, 12vh, 9rem) 0 0; }
.showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1.35fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3.5rem, 9vh, 7rem) clamp(1.4rem, 5vw, 5rem);
  max-width: 1440px; margin: 0 auto;
}
.showcase--flip { grid-template-columns: 1.35fr minmax(320px, 0.9fr); }
.showcase--flip .showcase__text { order: 2; }
.showcase--flip .showcase__media { order: 1; }
.showcase__sticky { position: sticky; top: 18vh; }
.showcase__num { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--rose); display: inline-block; margin-bottom: 1rem; }
.showcase__num::after { content: ""; display: inline-block; width: 56px; height: 1px; background: var(--gold-soft); margin-left: 0.9em; vertical-align: middle; }
.showcase h3 { font-size: clamp(2.1rem, 3.6vw, 3.2rem); margin-bottom: 1.3rem; }
.showcase__text p { color: var(--ink-soft); max-width: 42ch; margin-bottom: 2rem; }
.showcase__media { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.6vw, 2.4rem); }

.frame { border-radius: 12px; overflow: hidden; background: var(--blush); box-shadow: var(--shadow-soft); }
.frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.frame--tall { grid-row: span 2; aspect-ratio: 3 / 4.4; }
.frame--small { aspect-ratio: 3 / 3.1; margin-top: clamp(1.5rem, 4vh, 3rem); }
.frame--med { aspect-ratio: 3 / 3.4; }
.frame--wide { grid-column: span 2; aspect-ratio: 16 / 10.5; }
.frame--wide + .frame--small { margin-top: 0; }

/* ═══════════ FESTIVE ═══════════ */
.festive {
  background: linear-gradient(135deg, var(--blush) 0%, #f7d3d1 100%);
  padding: clamp(4.5rem, 11vh, 8rem) clamp(1.4rem, 4vw, 3.5rem);
  text-align: center;
}
.festive__inner { max-width: 780px; margin: 0 auto; }
.festive h2 em { color: var(--claret); }
.festive p { color: var(--rose-deep); margin-top: 1.2rem; font-size: 1.02rem; }
.festive p strong { color: var(--claret-deep); font-weight: 500; }
.festive__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin: 2rem 0; }
.festive__chips span {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.6em 1.3em; border-radius: 100px;
  background: rgba(255,255,255,0.7); color: var(--claret-deep);
  border: 1px solid rgba(166,67,73,0.18);
}

/* ═══════════ FESTIVE GALLERY ═══════════ */
.festive__gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 1200px; margin: 2.8rem auto 0; }
.festive__gallery .insta__tile { background: rgba(255,255,255,0.5); }

/* ═══════════ MONTAGE BAND (framed image + text) ═══════════ */
.montage {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  max-width: 1360px; margin: 0 auto;
  padding: clamp(4.5rem, 11vh, 8rem) clamp(1.4rem, 5vw, 5rem);
}
.montage__frame {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-soft); background: var(--blush);
}
.montage__stage { position: absolute; inset: 0; }
.montage__slide {
  position: absolute; inset: 0;
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0; transition: opacity 1.6s var(--ease-luxe);
  will-change: opacity;
}
.montage__slide.is-active { opacity: 1; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.12); } }
.montage__cap h2 { margin-bottom: 1.2rem; }
.montage__cap p { color: var(--ink-soft); margin-bottom: 1.8rem; max-width: 42ch; }

/* ═══════════ CRAFT BAND (dark) ═══════════ */
.craft { background: var(--espresso); color: var(--blush); display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; overflow: hidden; }
.craft__img { height: 100%; min-height: 480px; overflow: hidden; }
.craft__img img { width: 100%; height: 112%; object-fit: cover; opacity: 0.94; }
.craft__quote { padding: clamp(3.5rem, 8vw, 7rem); }
.craft__quote p { font-family: var(--serif); font-size: clamp(1.7rem, 2.9vw, 2.6rem); line-height: 1.35; font-weight: 300; }
.craft__quote em { color: var(--gold-soft); }
.craft__quote cite { display: block; margin-top: 2rem; font-family: var(--sans); font-style: normal; font-size: 0.72rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-soft); }

/* ═══════════ MEET THE BAKER ═══════════ */
.baker { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; max-width: 1360px; margin: 0 auto; padding: clamp(5rem, 12vh, 9rem) clamp(1.4rem, 5vw, 5rem); }
.baker__portrait { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 4 / 4.6; }
.baker__portrait img { width: 100%; height: 100%; object-fit: cover; }
.baker__lead { font-family: var(--serif); font-style: italic; font-size: 1.45rem; color: var(--ink); margin-bottom: 1.4rem; line-height: 1.4; }
.baker__text > p:not(.eyebrow):not(.baker__lead) { color: var(--ink-soft); }
.baker__points { list-style: none; margin: 2.2rem 0; display: grid; gap: 1.3rem; }
.baker__points li { display: grid; gap: 0.15rem; padding-left: 1.6rem; border-left: 1px solid var(--gold-soft); }
.baker__points strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.baker__points span { color: var(--ink-soft); font-size: 0.95rem; }

/* ═══════════ GALLERY ═══════════ */
.gallery { padding: clamp(4rem, 10vh, 8rem) clamp(1.4rem, 4vw, 3.5rem); background: var(--blush-tint); }
.gallery__filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; margin: -1rem auto 3rem; }
.chip { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.75em 1.7em; border-radius: 100px; border: 1px solid rgba(58,44,40,0.2); background: transparent; color: var(--ink-soft); cursor: pointer; transition: all 0.4s var(--ease-luxe); }
.chip:hover { border-color: var(--claret); color: var(--claret); }
.chip.is-active { background: var(--claret); border-color: var(--claret); color: var(--white); }
.gallery__grid { columns: 4 260px; column-gap: 1.4rem; max-width: 1440px; margin: 0 auto; }
.gallery__item { break-inside: avoid; margin-bottom: 1.4rem; border-radius: 10px; overflow: hidden; cursor: zoom-in; position: relative; background: var(--blush); box-shadow: 0 12px 34px -16px rgba(58,44,40,0.28); opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe); }
.gallery__item.in { opacity: 1; transform: none; }
.gallery__item img { width: 100%; transition: transform 1.3s var(--ease-luxe); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,31,28,0.32), transparent 45%); opacity: 0; transition: opacity 0.6s; }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item.is-hidden { display: none; }

/* ═══════════ INSTAGRAM ═══════════ */
.insta { padding: clamp(4rem, 10vh, 8rem) clamp(1.4rem, 4vw, 3.5rem); }
.insta__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; max-width: 1280px; margin: 0 auto 2.6rem; }
.insta__tile { position: relative; aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--blush); opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease-luxe), transform 0.9s var(--ease-luxe); }
.insta__tile.in { opacity: 1; transform: none; }
.insta__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-luxe); }
.insta__tile:hover img { transform: scale(1.06); }
.insta__tile::after { content: ""; position: absolute; inset: 0; background: rgba(42,31,28,0); transition: background 0.5s; }
.insta__tile:hover::after { background: rgba(42,31,28,0.16); }
.insta__cta { text-align: center; }

/* ═══════════ REVIEWS ═══════════ */
.reviews { padding: clamp(5rem, 12vh, 9rem) clamp(1.4rem, 4vw, 3.5rem); background: var(--porcelain); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.5vw, 2.6rem); max-width: 1280px; margin: 0 auto; }
.review { padding: 2.6rem 2.2rem; border: 1px solid rgba(169,114,105,0.2); border-radius: 14px; display: flex; flex-direction: column; gap: 1.1rem; background: var(--white); box-shadow: 0 16px 44px -24px rgba(58,44,40,0.25); }
.review__stars { color: var(--gold); letter-spacing: 0.15em; font-size: 0.95rem; }
.review blockquote { font-family: var(--serif); font-size: 1.28rem; font-weight: 300; line-height: 1.5; quotes: none; }
.review figcaption { margin-top: auto; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); }
.review figcaption::before { content: "— "; }
.reviews__cta { text-align: center; margin-top: 3rem; }
.reviews__link { text-align: center; display: grid; gap: 1.6rem; justify-items: center; }
.reviews__stars { color: var(--gold); font-size: 1.9rem; letter-spacing: 0.22em; }

/* ═══════════ ORDER + FAQ ═══════════ */
.order { padding: clamp(5rem, 12vh, 9rem) clamp(1.4rem, 4vw, 3.5rem); background: var(--blush-tint); }
.order__steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 4vw, 3.4rem); max-width: 1200px; margin: 0 auto 3.6rem; }
.order__steps li { text-align: center; padding: 0 0.5rem; }
.order__num { font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--rose); display: block; margin-bottom: 0.8rem; }
.order__steps h3 { font-size: 1.55rem; margin-bottom: 0.7rem; }
.order__steps p { color: var(--ink-soft); font-size: 0.95rem; max-width: 32ch; margin: 0 auto; }
.order__cta { text-align: center; margin-bottom: clamp(3.5rem, 8vh, 6rem); }
.order__cta p { margin-top: 1.3rem; font-size: 0.9rem; color: var(--ink-soft); }
.order__cta p a { color: var(--claret); border-bottom: 1px solid rgba(166,67,73,0.3); }

.faq { max-width: 760px; margin: 0 auto; }
.faq__title { font-size: 1.9rem; text-align: center; margin-bottom: 2rem; }
.faq details { border-bottom: 1px solid rgba(58,44,40,0.14); }
.faq details:first-of-type { border-top: 1px solid rgba(58,44,40,0.14); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.4rem 0.2rem; font-family: var(--serif); font-size: 1.28rem; font-weight: 500; transition: color 0.35s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--claret); }
.faq__icon { flex: none; width: 14px; height: 14px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--claret); transition: transform 0.4s var(--ease-luxe); }
.faq__icon::before { inset: 50% 0 auto 0; height: 1px; margin-top: -0.5px; }
.faq__icon::after { inset: 0 auto 0 50%; width: 1px; margin-left: -0.5px; }
.faq details[open] .faq__icon::after { transform: scaleY(0); }
.faq details p { padding: 0 2.4rem 1.5rem 0.2rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ═══════════ STAY IN TOUCH (form) ═══════════ */
.stay { padding: clamp(5rem, 12vh, 9rem) clamp(1.4rem, 4vw, 3.5rem); background: linear-gradient(135deg, var(--claret) 0%, var(--rose-deep) 100%); color: var(--white); text-align: center; }
.stay__inner { max-width: 620px; margin: 0 auto; }
.stay .eyebrow { color: var(--blush); }
.stay h2 em { color: var(--blush); }
.stay__sub { margin: 1.2rem auto 2.4rem; color: rgba(255,255,255,0.9); }
.stay__form { display: grid; gap: 1rem; }
.stay__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stay__form input[type=text], .stay__form input[type=tel] {
  width: 100%; padding: 1.05em 1.3em; border-radius: 100px; border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12); color: var(--white); font-family: var(--sans); font-size: 0.95rem;
}
.stay__form input::placeholder { color: rgba(255,255,255,0.7); }
.stay__form input:focus { outline: none; border-color: var(--white); background: rgba(255,255,255,0.2); }
.stay__hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.stay__consent { display: flex; align-items: flex-start; gap: 0.7rem; text-align: left; font-size: 0.82rem; color: rgba(255,255,255,0.9); margin: 0.3rem 0 0.6rem; }
.stay__consent input { margin-top: 0.25rem; accent-color: var(--blush); flex: none; }
.stay__form .btn--gold { background: var(--white); color: var(--claret-deep); justify-self: center; box-shadow: 0 12px 30px -12px rgba(0,0,0,0.4); }
.stay__form .btn--gold:hover { background: var(--blush); }
.stay__msg { min-height: 1.2em; font-size: 0.9rem; margin-top: 0.4rem; }
.stay__msg.ok { color: #d8f5d8; }
.stay__msg.err { color: #ffe0e0; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--espresso); color: rgba(251,227,226,0.82); padding: clamp(3.5rem, 8vh, 6rem) clamp(1.4rem, 4vw, 3.5rem) 2.4rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer__logo { height: 66px; width: auto; margin-bottom: 1rem; opacity: 0.95; }
.footer__brand p { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(251,227,226,0.55); }
.footer__links, .footer__social { display: grid; gap: 0.7rem; justify-items: start; }
.footer__links a, .footer__social a { font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(251,227,226,0.72); transition: color 0.35s; }
.footer__links a:hover, .footer__social a:hover { color: var(--blush); }
.footer__areas { grid-column: 1 / -1; border-top: 1px solid rgba(251,227,226,0.14); padding-top: 1.6rem; margin-top: 1rem; font-size: 0.74rem; letter-spacing: 0.05em; color: rgba(251,227,226,0.6); }
.footer__fine { grid-column: 1 / -1; font-size: 0.72rem; letter-spacing: 0.06em; color: rgba(251,227,226,0.45); }

/* ═══════════ WHATSAPP FAB ═══════════ */
.whatsapp-fab { position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #23A455; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 34px -8px rgba(35,164,85,0.6); transition: transform 0.45s var(--ease-luxe), box-shadow 0.45s; }
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 20px 44px -10px rgba(35,164,85,0.7); }

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(30,20,17,0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.45s; }
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__stage { max-width: min(88vw, 1000px); max-height: 86vh; text-align: center; }
.lightbox__stage img { max-width: 100%; max-height: 80vh; border-radius: 8px; box-shadow: 0 40px 120px -30px rgba(0,0,0,0.8); margin: 0 auto; }
.lightbox__stage figcaption { margin-top: 1rem; color: rgba(251,227,226,0.75); font-size: 0.78rem; letter-spacing: 0.24em; text-transform: uppercase; }
.lightbox__close, .lightbox__nav { position: fixed; background: transparent; border: 1px solid rgba(251,227,226,0.3); color: rgba(251,227,226,0.85); cursor: pointer; border-radius: 50%; transition: all 0.35s; display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-weight: 300; }
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--blush); color: var(--blush); }
.lightbox__close { top: 1.4rem; right: 1.6rem; width: 48px; height: 48px; font-size: 1.6rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.2rem; }
.lightbox__nav--prev { left: 1.6rem; }
.lightbox__nav--next { right: 1.6rem; }

/* ═══════════ REVEAL ANIMATIONS ═══════════ */
/* Failsafe: if JS is disabled/blocked, never hide content */
html:not(.js) .reveal, html:not(.js) .reveal-img, html:not(.js) .hero__img { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }

.reveal { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity 1.1s var(--ease-luxe), transform 1.1s var(--ease-luxe), filter 1.1s var(--ease-luxe); transition-delay: var(--d, 0ms); will-change: opacity, transform, filter; }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal-img { clip-path: inset(8% 8% 8% 8% round 12px); opacity: 0; transform: translateY(30px) scale(0.97); transition: clip-path 1.3s var(--ease-luxe), opacity 1.3s var(--ease-luxe), transform 1.3s var(--ease-luxe); }
.reveal-img.in { clip-path: inset(0 0 0 0 round 12px); opacity: 1; transform: none; }

/* ═══════════ CRAFT/MONTAGE MEDIA (video-aware) ═══════════ */
.craft__media { position: relative; height: 100%; min-height: 520px; overflow: hidden; }
.montage__slide--video { width: 100%; height: 100%; object-fit: contain; }

/* ═══════════ HOME PORTFOLIO TEASER ═══════════ */
.portfolio-teaser { text-align: center; }
.portfolio-teaser__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; max-width: 1100px; margin: 0 auto 2.8rem; }
.portfolio-teaser__grid figure { aspect-ratio: 3 / 4; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); background: var(--blush); }
.portfolio-teaser__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-luxe); }
.portfolio-teaser__grid figure:hover img { transform: scale(1.06); }

/* ═══════════ GALLERY PAGE ═══════════ */
.gallery-hero { padding: clamp(8rem, 16vh, 11rem) clamp(1.4rem, 4vw, 3.5rem) 0; text-align: center; background: radial-gradient(1000px 500px at 50% -10%, var(--blush) 0%, transparent 60%), var(--porcelain); }
.gallery-hero h1 { font-size: clamp(3rem, 7vw, 5.5rem); color: var(--ink); }
.gallery-hero h1 em { font-style: italic; color: var(--rose); }
.gallery-hero p { color: var(--ink-soft); margin-top: 1rem; }
.filterbar { position: sticky; top: 96px; z-index: 50; background: rgba(250,250,250,0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(58,44,40,0.08); }
.filterbar__inner { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; padding: 1.1rem 1rem; max-width: 1200px; margin: 0 auto; }
.filterbar .chip { font-size: 0.78rem; padding: 0.95em 2.1em; letter-spacing: 0.2em; border-width: 1.5px; }
.gallery--page { padding-top: clamp(2.5rem, 6vh, 4rem); }

/* ═══════════ LEGAL PAGES ═══════════ */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(8rem, 16vh, 11rem) clamp(1.4rem, 4vw, 2rem) clamp(4rem, 10vh, 7rem); }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--ink); margin-bottom: 0.3rem; }
.legal .updated { color: var(--rose); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2rem; }
.legal h2 { font-size: 1.45rem; margin: 2rem 0 0.6rem; color: var(--claret-deep); }
.legal p, .legal li { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0.7rem; line-height: 1.75; }
.legal a { color: var(--claret); border-bottom: 1px solid rgba(166,67,73,0.3); }

/* ═══════════ FLAVOURS ═══════════ */
.flavours { padding: clamp(4.5rem, 11vh, 8rem) clamp(1.4rem, 4vw, 3.5rem); background: var(--blush-tint); }
.flavours__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.5vw, 2.6rem); max-width: 1200px; margin: 0 auto; }
.flavours__col { background: var(--white); border: 1px solid rgba(169,114,105,0.16); border-radius: 14px; padding: 2.2rem 2rem; text-align: center; }
.flavours__col h3 { font-size: 1.7rem; margin-bottom: 1.2rem; color: var(--claret-deep); }
.flavours__col ul { list-style: none; display: grid; gap: 0.55rem; }
.flavours__col li { color: var(--ink-soft); font-size: 0.96rem; }
.flavours__note { margin-top: 1.1rem; font-size: 0.85rem; color: var(--rose); font-style: italic; }
.flavours__foot { text-align: center; margin-top: 2.6rem; color: var(--ink-soft); font-size: 0.92rem; }

/* ═══════════ FLAVOURS PAGE ═══════════ */
.flav-section { padding: clamp(2.5rem, 6vh, 4rem) clamp(1.4rem, 4vw, 3.5rem) clamp(5rem, 12vh, 8rem); }
.flav-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 3.5vw, 2.4rem); max-width: 1200px; margin: 0 auto; }
.flav-card { background: var(--white); border: 1px solid rgba(169,114,105,0.16); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.6s var(--ease-luxe), box-shadow 0.6s var(--ease-luxe); }
.flav-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.flav-card__img { aspect-ratio: 4 / 3; overflow: hidden; }
.flav-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-luxe); }
.flav-card:hover .flav-card__img img { transform: scale(1.08); }
.flav-card__body { padding: 2rem 1.8rem; text-align: center; }
.flav-card__body h3 { font-size: 1.6rem; color: var(--claret-deep); margin-bottom: 1rem; }
.flav-card__body ul { list-style: none; display: grid; gap: 0.5rem; }
.flav-card__body li { color: var(--ink-soft); font-size: 0.95rem; }
.flav-note { color: var(--rose); font-style: italic; font-size: 0.82rem; margin-top: 1rem; }
.flav-foot { text-align: center; color: var(--ink-soft); margin: 3rem auto 0; max-width: 640px; }
.flav-cta { text-align: center; margin-top: 2rem; }

/* ═══════════ FESTIVE PAGE ═══════════ */
.festive-page { padding: clamp(2.5rem, 6vh, 4rem) clamp(1.4rem, 4vw, 3.5rem) clamp(5rem, 12vh, 8rem); }
.festive-page .festive__gallery { margin-top: 0; }
.festive-cta { text-align: center; max-width: 620px; margin: clamp(3rem, 7vh, 5rem) auto 0; }
.festive-cta h2 { color: var(--ink); margin-bottom: 0.8rem; }
.festive-cta p { color: var(--ink-soft); margin-bottom: 1.8rem; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1080px) {
  .apart__grid { grid-template-columns: repeat(2, 1fr); }
  .showcase, .showcase--flip { grid-template-columns: 1fr; }
  .showcase--flip .showcase__text { order: 1; }
  .showcase--flip .showcase__media { order: 2; }
  .showcase__sticky { position: static; }
  .craft { grid-template-columns: 1fr; }
  .craft__img { min-height: 380px; max-height: 55vh; }
  .baker { grid-template-columns: 1fr; }
  .baker__portrait { max-width: 560px; margin: 0 auto; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 640px; }
  .flavours__grid { grid-template-columns: 1fr; max-width: 560px; }
  .flav-grid { grid-template-columns: 1fr; max-width: 480px; }
  .order__steps { grid-template-columns: 1fr; gap: 2.6rem; }
  .footer { grid-template-columns: 1fr; gap: 2.2rem; }
}
@media (max-width: 860px) {
  .nav__links { position: fixed; inset: 0; background: var(--porcelain); flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem; transform: translateY(-100%); transition: transform 0.6s var(--ease-luxe); z-index: 95; }
  .nav__links.is-open { transform: none; }
  .nav__links a { font-size: 1rem; color: var(--ink); text-shadow: none; }
  .nav__burger { display: flex; flex-direction: column; justify-content: center; gap: 6px; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(58,44,40,0.22); border-radius: 50%; cursor: pointer; align-items: center; }
  .nav__burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform 0.4s var(--ease-luxe); }
  .nav__burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav__burger.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .btn--nav { display: none; }
  .apart__grid { grid-template-columns: 1fr; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .festive__gallery { grid-template-columns: repeat(2, 1fr); }
  .portfolio-teaser__grid { grid-template-columns: repeat(2, 1fr); }
  .montage { grid-template-columns: 1fr; }
  .craft__media { min-height: 340px; }
  .filterbar { top: 60px; }
  .gallery__grid { columns: 2 150px; column-gap: 0.9rem; }
  .gallery__item { margin-bottom: 0.9rem; }
  .stay__row { grid-template-columns: 1fr; }
  .lightbox__nav { top: auto; bottom: 1.4rem; }
  .lightbox__nav--prev { left: calc(50% - 64px); }
  .lightbox__nav--next { right: calc(50% - 64px); }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-img, .gallery__item, .insta__tile, .hero__img { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; transition: none !important; }
  .montage__slide.is-active { animation: none; }
}
