/* ─────────────────────────────────────────────────────────────
   Promesse Sucrée — pâtisserie éditoriale, Méditerranée + Égypte
   palette: crème, miel, rose-pétale, pistache, encre brûlée
   typographie: Fraunces (display), Caveat (script), DM Sans (texte)
   ───────────────────────────────────────────────────────────── */

:root {
  --cream: #f5e9d3;
  --cream-warm: #ede0c5;
  --cream-deep: #e3d2b1;
  --honey: #c98a3f;
  --honey-deep: #9a6620;
  --rose: #c47a6e;
  --rose-deep: #a55a4d;
  --rose-soft: #ecc3b9;
  --pistache: #95a87a;
  --pistache-deep: #6e8456;
  --ink: #271810;
  --ink-soft: #5a4334;
  --ink-faint: #7a6552;
  --paper-shadow: 0 24px 70px -32px rgba(39, 24, 16, 0.45);
  --soft-shadow: 0 10px 24px -12px rgba(39, 24, 16, 0.18);
  --max: 1320px;
  --gut: clamp(20px, 4vw, 56px);
  --grain-opacity: .35;
  --reveal-y: 28px;
}

/* reset + base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(15px, 0.6vw + 13px, 17px);
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(1100px 700px at 88% -10%, rgba(196, 122, 110, 0.28), transparent 60%),
    radial-gradient(900px 600px at -10% 35%, rgba(149, 168, 122, 0.18), transparent 60%),
    radial-gradient(700px 500px at 50% 110%, rgba(201, 138, 63, 0.18), transparent 60%);
  overflow-x: hidden;
  cursor: none;
}
@media (pointer: coarse) { body { cursor: auto; } }
img, video, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--rose); color: var(--cream); }

/* ── atmosphere ─────────────────────────────── */
.atmos { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.grain {
  position: absolute; inset: -10%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.15  0 0 0 0 0.10  0 0 0 0 0.06  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.65'/></svg>");
  opacity: var(--grain-opacity);
  mix-blend-mode: multiply;
}
.petals { position: absolute; inset: 0; width: 100%; height: 100%; }
.petals .p { color: var(--rose); transform-origin: center; will-change: transform; }
.petals .p1 { animation: drift 22s linear infinite; }
.petals .p2 { animation: drift 28s linear -4s infinite; color: var(--pistache); }
.petals .p3 { animation: drift 26s linear -10s infinite; color: var(--honey); }
.petals .p4 { animation: drift 30s linear -2s infinite; color: var(--rose-soft); }
.petals .p5 { animation: drift 24s linear -16s infinite; color: var(--rose-deep); }
.petals .p6 { animation: drift 32s linear -8s infinite; color: var(--pistache-deep); }
.petals .p7 { animation: drift 27s linear -12s infinite; color: var(--rose); }
.petals .p8 { animation: drift 34s linear -6s infinite; color: var(--honey); }
@keyframes drift {
  0%   { transform: translate3d(-5vw, -10vh, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.7; }
  100% { transform: translate3d(110vw, 110vh, 0) rotate(540deg); opacity: 0; }
}

/* ── custom cursor ──────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  transition: width .25s ease, height .25s ease, opacity .25s ease, background .25s ease;
}
.cursor-dot { width: 6px; height: 6px; background: var(--ink); }
.cursor-ring { width: 36px; height: 36px; border: 1px solid var(--ink-soft); }
.cursor-ring.is-hover { width: 64px; height: 64px; background: rgba(196, 122, 110, 0.12); border-color: var(--rose); }
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ── typography utilities ───────────────────── */
.display, .h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 360;
  font-weight: 360;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--ink);
}
.script {
  font-family: "Caveat", cursive;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--rose-deep);
}
.serif-italic {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 360;
}
.kicker {
  font: 500 11px/1 "DM Sans", sans-serif;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 10px;
}
.kicker__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose-deep);
  box-shadow: 0 0 0 4px rgba(196, 122, 110, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(196, 122, 110, 0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(196, 122, 110, 0); }
}
.eyebrow {
  font: 500 11px/1 "DM Sans", sans-serif;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "✦"; margin-right: 10px; color: var(--rose); font-size: 12px;
}

/* ── nav ────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: backdrop-filter .35s, background .35s, padding .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(245, 233, 211, 0.78);
  border-color: rgba(39, 24, 16, 0.10);
  padding-top: 12px; padding-bottom: 12px;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  letter-spacing: -0.01em;
}
.nav__brand-mark {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 24, "SOFT" 100, "wght" 540;
  font-style: italic;
  font-size: 22px;
  background: var(--ink); color: var(--cream);
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
  transform: rotate(-3deg);
}
.nav__brand-name {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 24, "wght" 460;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex; gap: 28px;
  font-size: 14px;
}
.nav__links a {
  position: relative; padding: 6px 0;
  color: var(--ink-soft);
  transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--ink); transform: scaleX(0);
  transform-origin: right; transition: transform .35s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--cream);
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; letter-spacing: 0.02em;
  transition: background .3s, transform .3s;
}
.nav__cta:hover { background: var(--rose-deep); }
@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* ── hero ───────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(120px, 18vh, 160px) var(--gut) clamp(40px, 8vh, 90px);
  max-width: var(--max);
  margin: 0 auto;
  z-index: 2;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
}
.display {
  font-size: clamp(48px, 8.4vw, 132px);
  margin: 26px 0 28px;
}
.display .line {
  display: block;
  overflow: hidden;
}
.display .line > * {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.display .line:nth-child(1) > * { animation-delay: 0.10s; }
.display .line:nth-child(2) > *, .display .line:nth-child(2) { animation-delay: 0.22s; }
.display .line:nth-child(3) > * { animation-delay: 0.34s; }
.display .line .script { animation-delay: 0.4s; }
.display em.serif-italic { color: var(--rose-deep); }
@keyframes lineUp {
  0%   { transform: translateY(110%); }
  100% { transform: translateY(0); }
}
.hero__copy .lede {
  max-width: 50ch;
  font-size: clamp(16px, 0.4vw + 14px, 19px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s 0.55s ease forwards;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.7s ease forwards;
}
.strapline {
  margin-top: 24px;
  font-size: 13px; color: var(--ink-faint);
  display: inline-flex; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 0.9s 0.85s ease forwards;
}
.strapline strong { color: var(--ink); font-weight: 500; }
.strapline .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pistache-deep);
  box-shadow: 0 0 0 4px rgba(110, 132, 86, 0.18);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font: 500 14px/1 "DM Sans", sans-serif;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform .35s, background .35s, color .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ""; position: absolute; inset: 0;
  background: var(--rose-deep);
  transform: translateY(101%);
  transition: transform .45s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn--solid { background: var(--ink); color: var(--cream); }
.btn--solid:hover { color: var(--cream); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { color: var(--cream); border-color: var(--rose-deep); }
.btn__arrow { transition: transform .35s; }
.btn:hover .btn__arrow { transform: translate(3px, -3px) rotate(8deg); }

.hero__media { position: relative; aspect-ratio: 4/5; max-height: 680px; }
.hero__tile {
  position: relative; width: 100%; height: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--paper-shadow);
  transform: rotate(1.2deg);
  opacity: 1;
  animation: tileIn 1.2s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes tileIn {
  from { opacity: 0; transform: rotate(1.2deg) translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: rotate(1.2deg) translateY(0) scale(1); }
}
.hero__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero__tile:hover img { transform: scale(1.06); }
.hero__tile figcaption {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(245, 233, 211, 0.92);
  backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: 2px;
  display: flex; flex-direction: column; gap: 4px;
  max-width: 70%;
  box-shadow: var(--soft-shadow);
}
.hero__tile-label {
  font: 500 10px/1 "DM Sans", sans-serif;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--rose-deep);
}
.hero__tile-name {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 24, "SOFT" 60, "wght" 460;
  font-style: italic;
  font-size: 22px;
}
.hero__tile-meta {
  font-size: 12px; color: var(--ink-soft);
}

.hero__sticker {
  position: absolute;
  top: -38px; right: -38px;
  width: 140px; height: 140px;
  animation: none;
  filter: drop-shadow(0 8px 18px rgba(39, 24, 16, 0.15));
}
.hero__sticker svg {
  width: 100%; height: 100%;
}
.sticker__text {
  font: 500 13px/1 "DM Sans", sans-serif;
  letter-spacing: 0.18em;
  fill: var(--ink);
  text-transform: uppercase;
}
.sticker__core {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-variation-settings: "opsz" 24, "wght" 540;
  font-size: 30px;
  fill: var(--rose-deep);
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 900px) {
  .hero__sticker { width: 96px; height: 96px; top: -16px; right: 4px; }
}

/* ── ticker ─────────────────────────────────── */
.ticker {
  position: relative;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 22px 0;
  overflow: hidden;
  background: var(--cream-warm);
  z-index: 2;
}
.ticker__track {
  display: inline-flex; gap: 36px;
  white-space: nowrap;
  animation: ticker 160s linear infinite;
  will-change: transform;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-variation-settings: "opsz" 24, "wght" 380;
  font-size: clamp(24px, 3.6vw, 46px);
  color: var(--ink);
}
.ticker__sep { color: var(--rose-deep); font-style: normal; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── stats ──────────────────────────────────── */
.stats {
  max-width: var(--max);
  margin: clamp(60px, 9vw, 120px) auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(39, 24, 16, 0.18);
  border-bottom: 1px solid rgba(39, 24, 16, 0.18);
  position: relative; z-index: 2;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 38px 26px;
  border-right: 1px solid rgba(39, 24, 16, 0.10);
  display: flex; flex-direction: column; gap: 10px;
}
.stat:last-child { border-right: none; }
@media (max-width: 760px) {
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(39, 24, 16, 0.10); }
}
.stat__num {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 380;
  font-size: clamp(36px, 4.8vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.stat__num .stat__sm {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.42em;
  color: var(--ink-faint);
  margin-left: 8px;
  vertical-align: middle;
}
.stat__label {
  font-size: 12.5px; color: var(--ink-soft);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ── about ──────────────────────────────────── */
.about {
  max-width: var(--max);
  margin: clamp(60px, 9vw, 140px) auto;
  padding: 0 var(--gut);
  position: relative; z-index: 2;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
}
.about__copy p { margin: 0 0 16px; max-width: 50ch; color: var(--ink-soft); }
.h2 {
  font-size: clamp(36px, 5.4vw, 72px);
  margin-bottom: 28px;
  line-height: 0.98;
}
.about__sig {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.about__sig .script { font-size: 36px; color: var(--ink); }
.about__sig-meta { font-size: 12px; color: var(--ink-faint); letter-spacing: 0.04em; }

.about__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--paper-shadow);
  transform: rotate(-1deg);
}
.about__media video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__media-tag {
  position: absolute; left: 0; top: 22px;
  background: var(--ink); color: var(--cream);
  padding: 8px 14px;
  font: 500 11px/1 "DM Sans", sans-serif;
  letter-spacing: 0.22em; text-transform: uppercase;
  transform: rotate(-3deg) translateX(-12px);
}

/* ── feature ────────────────────────────────── */
.feature {
  max-width: var(--max);
  margin: clamp(60px, 9vw, 140px) auto;
  padding: 0 var(--gut);
  position: relative; z-index: 2;
}
.feature__index {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid var(--ink);
  padding-top: 18px;
  margin-bottom: 32px;
  font: 500 12px/1 "DM Sans", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.feature__index-num { color: var(--rose-deep); }
.feature__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 880px) { .feature__grid { grid-template-columns: 1fr; } }
.feature__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--paper-shadow);
}
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature__media:hover img { transform: scale(1.05); }
.feature__title { font-size: clamp(40px, 5.8vw, 86px); }
.feature__title .script { font-size: 0.9em; }
.feature__lede {
  font-size: clamp(15px, 0.3vw + 14px, 18px);
  color: var(--ink-soft);
  margin: 22px 0 28px;
  max-width: 46ch;
}
.feature__notes {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.feature__notes li {
  display: flex; align-items: baseline; gap: 14px;
  font-size: 14px; color: var(--ink-soft);
  border-top: 1px solid rgba(39, 24, 16, 0.12);
  padding-top: 10px;
}
.feature__notes li:last-child { border-bottom: 1px solid rgba(39, 24, 16, 0.12); padding-bottom: 10px; }
.feature__notes li span {
  font-family: "Fraunces", serif; font-style: italic;
  color: var(--rose-deep); font-size: 13px;
  min-width: 22px;
}

/* ── gallery ────────────────────────────────── */
.gallery {
  max-width: var(--max);
  margin: clamp(60px, 9vw, 140px) auto;
  padding: 0 var(--gut);
  position: relative; z-index: 2;
}
.gallery__head { text-align: center; margin-bottom: clamp(36px, 6vw, 72px); }
.gallery__head .h2 { font-size: clamp(48px, 7vw, 96px); }
.gallery__sub { color: var(--ink-faint); font-size: 13px; letter-spacing: 0.04em; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 14px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-warm);
  cursor: none;
  box-shadow: var(--soft-shadow);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform .9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity .9s, box-shadow .5s;
}
.tile.is-in { transform: translateY(0) scale(1); opacity: 1; }
.tile.is-in:hover { box-shadow: var(--paper-shadow); }
.tile img, .tile video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter .6s;
}
.tile:hover img, .tile:hover video { transform: scale(1.07); }
.tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(39, 24, 16, 0.85) 100%);
  opacity: 0;
  transition: opacity .4s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 20px;
  color: var(--cream);
}
.tile:hover .tile__overlay { opacity: 1; }
.tile__title {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 24, "SOFT" 60, "wght" 460;
  font-style: italic;
  font-size: 20px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.tile__likes {
  font-size: 11.5px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--rose-soft);
}
.tile__video-mark {
  position: absolute; top: 14px; right: 14px;
  background: rgba(245, 233, 211, 0.92);
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
}

/* nth-child editorial layout (desktop) */
.gallery__grid .tile:nth-child(1)  { grid-column: span 7; aspect-ratio: 4/5; }
.gallery__grid .tile:nth-child(2)  { grid-column: span 5; aspect-ratio: 3/4; }
.gallery__grid .tile:nth-child(3)  { grid-column: span 4; aspect-ratio: 3/4; }
.gallery__grid .tile:nth-child(4)  { grid-column: span 4; aspect-ratio: 3/4; }
.gallery__grid .tile:nth-child(5)  { grid-column: span 4; aspect-ratio: 3/4; }
.gallery__grid .tile:nth-child(6)  { grid-column: span 5; aspect-ratio: 4/5; }
.gallery__grid .tile:nth-child(7)  { grid-column: span 7; aspect-ratio: 4/5; }
.gallery__grid .tile:nth-child(8)  { grid-column: span 6; aspect-ratio: 3/4; }
.gallery__grid .tile:nth-child(9)  { grid-column: span 6; aspect-ratio: 3/4; }
.gallery__grid .tile:nth-child(10) { grid-column: span 12; aspect-ratio: 16/9; }

@media (max-width: 880px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .gallery__grid .tile { grid-column: span 6 !important; aspect-ratio: 4/5 !important; }
  .gallery__grid .tile:nth-child(2n) { grid-column: span 3 !important; aspect-ratio: 3/4 !important; }
  .gallery__grid .tile:nth-child(2n+1):not(:first-child):not(:last-child) { grid-column: span 3 !important; aspect-ratio: 3/4 !important; }
}

/* ── pull quote ─────────────────────────────── */
.quote {
  max-width: 1080px;
  margin: clamp(80px, 12vw, 180px) auto;
  padding: 0 var(--gut);
  text-align: center;
  position: relative; z-index: 2;
}
.quote__mark {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 200px;
  line-height: 0.5;
  color: var(--rose);
  margin-bottom: 18px;
  height: 80px;
}
.quote__text {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 320;
  font-size: clamp(28px, 3.6vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.quote__text .script { font-size: 1.1em; line-height: 0.7; }
.quote__src {
  margin-top: 26px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ── menu ───────────────────────────────────── */
.menu {
  max-width: var(--max);
  margin: clamp(60px, 9vw, 140px) auto;
  padding: 0 var(--gut);
  position: relative; z-index: 2;
}
.menu__head { text-align: center; margin-bottom: clamp(36px, 6vw, 80px); }
.menu__head .h2 { font-size: clamp(36px, 5vw, 64px); }
.menu__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(39, 24, 16, 0.18);
}
@media (max-width: 880px) { .menu__list { grid-template-columns: 1fr; } }
.menu__item {
  padding: 32px 28px;
  border-right: 1px solid rgba(39, 24, 16, 0.10);
  border-bottom: 1px solid rgba(39, 24, 16, 0.10);
  position: relative;
  transition: background .5s;
}
.menu__item:hover { background: var(--cream-warm); }
.menu__item:nth-child(3n) { border-right: none; }
@media (max-width: 880px) { .menu__item { border-right: none; } }
.menu__num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--rose-deep);
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.menu__item h3 {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 24, "SOFT" 60, "wght" 440;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.menu__item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ── order ──────────────────────────────────── */
.order {
  max-width: var(--max);
  margin: clamp(60px, 9vw, 140px) auto;
  padding: 0 var(--gut) 40px;
  position: relative; z-index: 2;
}
.order__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 900px) { .order__grid { grid-template-columns: 1fr; } }
.order__copy { padding-top: 12px; }
.order__copy .h2 { font-size: clamp(36px, 5vw, 64px); }
.order__copy p { color: var(--ink-soft); max-width: 42ch; margin-bottom: 24px; }
.order__perks {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(39, 24, 16, 0.18);
  padding-top: 18px;
}
.order__perks li {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 14px; color: var(--ink-soft);
}
.order__perks span { color: var(--rose-deep); }

.order__form {
  background: var(--cream-warm);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 6px;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--paper-shadow);
  border: 1px solid rgba(39, 24, 16, 0.08);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field--grid > div { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font: 500 11px/1 "DM Sans", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(39, 24, 16, 0.32);
  padding: 10px 0;
  font: 400 16px/1.4 "Fraunces", serif;
  font-variation-settings: "opsz" 24, "SOFT" 80, "wght" 360;
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--rose-deep);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%); background-position: calc(100% - 14px) 18px, calc(100% - 9px) 18px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }

.order__submit { align-self: flex-start; margin-top: 6px; }
.order__status {
  font: 500 12.5px/1.4 "DM Sans", sans-serif;
  color: var(--pistache-deep);
  min-height: 1em;
  letter-spacing: 0.04em;
}
.order__status.is-error { color: var(--rose-deep); }

/* ── footer ─────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 8vw, 120px) var(--gut) 32px;
  position: relative; z-index: 2;
  margin-top: 60px;
}
.footer__row {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: clamp(32px, 6vw, 90px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 233, 211, 0.18);
}
@media (max-width: 800px) { .footer__row { grid-template-columns: 1fr; } }
.footer__mark {
  font-family: "Fraunces", serif;
  font-variation-settings: "opsz" 144, "SOFT" 100, "wght" 380;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.footer__tag { font-size: 26px; color: var(--rose-soft); }
.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  font-size: 13.5px;
  color: rgba(245, 233, 211, 0.78);
}
@media (max-width: 600px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__h {
  font: 500 11px/1 "DM Sans", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer__cols a { transition: color .25s; }
.footer__cols a:hover { color: var(--rose-soft); }
.footer__cols p { margin-bottom: 6px; }

/* ── lightbox ───────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(39, 24, 16, 0.94);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 4vw;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  cursor: none;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox__inner {
  position: relative;
  max-width: 1100px; max-height: 90vh;
  display: flex; flex-direction: column;
  gap: 14px;
  transform: scale(0.94);
  transition: transform .45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.lightbox.is-open .lightbox__inner { transform: scale(1); }
.lightbox__media {
  display: flex; align-items: center; justify-content: center;
  max-height: 80vh;
}
.lightbox__media img,
.lightbox__media video {
  max-width: 100%; max-height: 80vh; border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
}
.lightbox__caption {
  color: var(--cream); text-align: center;
  max-width: 60ch; margin: 0 auto;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 15px;
  font-variation-settings: "opsz" 24, "SOFT" 60, "wght" 360;
  line-height: 1.5;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(245, 233, 211, 0.10);
  border: 1px solid rgba(245, 233, 211, 0.35);
  color: var(--cream);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 24px;
  display: grid; place-items: center;
  transition: background .25s, transform .25s;
  cursor: none;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(245, 233, 211, 0.25); 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 ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition: opacity .9s cubic-bezier(0.2, 0.8, 0.2, 1), transform .9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* magnetic affordance (handled by JS) */
.magnetic { will-change: transform; }

/* prefers reduced motion — only kill expensive non-essential motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .display .line > *, .hero__copy .lede, .hero__cta, .strapline {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
  .petals, .grain { display: none; }
  .hero__tile { animation: none !important; opacity: 1 !important; transform: rotate(1.2deg) !important; }
}
