/* =============================================================
   L'ORIGINAL — Restaurant méditerranéen
   Design system
============================================================= */

:root {
  /* Couleurs */
  --cream: #F5EFE4;
  --cream-2: #EFE6D4;
  --bone: #FBF8F1;
  --clay: #C65D3D;
  --clay-deep: #A84A2E;
  --saffron: #E8A93A;
  --saffron-soft: #F2C264;
  --olive: #6B7D4F;
  --olive-deep: #4E5E37;
  --sea: #2C6975;
  --ink: #1A1613;
  --ink-2: #2B2520;
  --muted: #7A6F62;
  --line: rgba(26,22,19,.12);

  /* Typo */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Caveat", cursive;

  /* Layout */
  --container: 1240px;
  --radius: 4px;
  --radius-lg: 24px;

  /* Ease */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--cream); color: var(--ink); }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--container); padding: 0 clamp(20px, 4vw, 48px); margin: 0 auto; }

/* =============================================================
   Preloader
============================================================= */
.preloader {
  position: fixed; inset: 0;
  background: var(--ink);
  z-index: 999;
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader { transition: opacity .35s var(--ease), visibility .35s var(--ease); }
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { width: min(340px, 70vw); text-align: center; }
.preloader__logo { width: 100%; height: auto; }
.preloader__text {
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  fill: var(--cream);
  letter-spacing: .02em;
}
.preloader__bar {
  margin-top: 22px;
  height: 1px;
  background: rgba(245,239,228,.15);
  overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%;
  background: var(--saffron);
  width: 0;
  animation: load .7s var(--ease) forwards;
}
@keyframes load { to { width: 100%; } }

/* =============================================================
   Navigation
============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
}
.nav.is-scrolled {
  background: rgba(245,239,228,.82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
  font-weight: 500;
  color: var(--cream);
  transition: color .35s var(--ease);
}
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav__brand-mark { font-style: italic; color: var(--saffron); }

.nav__links {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.nav__link {
  position: relative;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,239,228,.85);
  padding: 6px 0;
  transition: color .35s var(--ease);
}
.nav.is-scrolled .nav__link { color: var(--ink-2); }
.nav__link::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--saffron);
  transition: right .4s var(--ease);
}
.nav__link:hover::after { right: 0; }

.nav__burger { display: none; width: 42px; height: 42px; position: relative; }
.nav__burger span {
  position: absolute; left: 10px; right: 10px; height: 1.5px;
  background: var(--cream);
  transition: transform .35s var(--ease), top .35s, background .35s;
}
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 24px; }
.nav__burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .5s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn svg { transition: transform .4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--solid {
  background: var(--saffron);
  color: var(--ink);
}
.btn--solid:hover { background: var(--saffron-soft); }
.btn--ghost {
  border: 1px solid rgba(245,239,228,.4);
  color: var(--cream);
  padding: 12px 22px;
}
.nav.is-scrolled .btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.nav.is-scrolled .btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--link {
  padding: 14px 0;
  color: var(--cream);
  border-bottom: 1px solid transparent;
  border-radius: 0;
}
.btn--link:hover { border-color: var(--saffron); color: var(--saffron); }
.btn--block { width: 100%; justify-content: center; padding: 18px 28px; }

/* Drawer mobile */
.drawer {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--cream);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  z-index: 400;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
}
.drawer.is-open { transform: translateY(0); }
.drawer__nav { display: flex; flex-direction: column; gap: 18px; }
.drawer__nav a {
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 54px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}
.drawer__nav a.drawer__cta {
  margin-top: 30px;
  font-style: normal; font-family: var(--sans);
  font-size: 14px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--saffron);
}
.drawer__meta {
  margin-top: 60px;
  opacity: .7;
  font-size: 14px;
  display: flex; flex-direction: column; gap: 6px;
}

/* =============================================================
   HERO
============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 9vh, 120px);
  color: var(--cream);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 8s var(--ease-out) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232,169,58,.18), transparent 55%),
    linear-gradient(180deg, rgba(26,22,19,.4) 0%, rgba(26,22,19,.75) 70%, rgba(26,22,19,.95) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: .08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='2' seed='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.hero__pattern {
  position: absolute; inset: 0;
  z-index: 1;
  opacity: .5;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__content { position: relative; z-index: 2; width: 100%; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(245,239,228,.75);
  margin-bottom: 28px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 4px rgba(232,169,58,.2); }

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 10vw, 148px);
  line-height: .96;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line--italic { font-style: italic; color: var(--saffron); }
.hero__title [data-split] {
  display: inline-block;
  transform: translateY(110%);
}
.is-loaded .hero__title [data-split] {
  animation: riseUp .7s var(--ease-out) forwards;
}
.is-loaded .hero__title .line:nth-child(1) [data-split] { animation-delay: .05s; }
.is-loaded .hero__title .line:nth-child(2) [data-split] { animation-delay: .15s; }
.is-loaded .hero__title .line:nth-child(3) [data-split] { animation-delay: .25s; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero__sub {
  max-width: 520px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(245,239,228,.82);
  margin-bottom: 40px;
}

.hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero__badges {
  display: flex;
  gap: 40px;
  margin-top: 72px;
  flex-wrap: wrap;
}
.badge {
  display: flex; flex-direction: column;
  gap: 4px;
  border-left: 1px solid rgba(245,239,228,.25);
  padding-left: 18px;
}
.badge--v { flex-direction: row; gap: 18px; align-items: center; }
.badge strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
}
.badge strong span { font-size: 16px; color: rgba(245,239,228,.6); }
.badge__label {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(245,239,228,.7);
}

.hero__scroll {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(30px, 6vh, 60px);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  writing-mode: vertical-rl;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(245,239,228,.7);
}
.hero__scroll-line {
  writing-mode: horizontal-tb;
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--saffron));
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.2); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* =============================================================
   Marquee
============================================================= */
.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245,239,228,.06);
  border-bottom: 1px solid rgba(245,239,228,.06);
}
.marquee__track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
}
.marquee__track em { font-style: normal; color: var(--saffron); }
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* =============================================================
   Section generics
============================================================= */
.section__head { max-width: 760px; margin-bottom: 72px; }
.section__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.section__kicker .dot { background: var(--clay); box-shadow: 0 0 0 4px rgba(198,93,61,.15); }
.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin-bottom: 24px;
}
.section__title em { font-style: italic; color: var(--clay); }
.section__lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 640px;
}
.section__body {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-top: 18px;
}

/* =============================================================
   STORY
============================================================= */
.story { padding: clamp(90px, 14vh, 160px) 0; }
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
}
.story__media { position: relative; aspect-ratio: 4/5; }
.story__frame {
  position: absolute; inset: 0;
  overflow: hidden;
  border-radius: 0 120px 0 0;
}
.story__frame img { width: 100%; height: 100%; object-fit: cover; }
.story__frame--2 {
  width: 45%; height: 45%;
  inset: auto -10% -6% auto;
  border-radius: 120px 0 0 0;
  border: 10px solid var(--cream);
}
.story__tag {
  position: absolute;
  top: 18px; left: -22px;
  background: var(--ink); color: var(--cream);
  padding: 14px 20px;
  border-radius: 999px;
  display: flex; flex-direction: column; align-items: center;
  gap: 2px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.3);
  transform: rotate(-6deg);
}
.story__tag span { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: rgba(245,239,228,.6); }
.story__tag strong { font-family: var(--serif); font-size: 28px; font-style: italic; color: var(--saffron); }

.story__pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.pillar { display: flex; flex-direction: column; gap: 10px; }
.pillar svg { color: var(--clay); }
.pillar h3 { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.pillar p { font-size: 14px; color: var(--muted); }

/* =============================================================
   SIGNATURES
============================================================= */
.signatures {
  padding: clamp(90px, 14vh, 160px) 0;
  background: var(--bone);
  position: relative;
}
.signatures::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(232,169,58,.08), transparent 50%);
  pointer-events: none;
}
.sig__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sig {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.sig:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -40px rgba(26,22,19,.28);
}
.sig__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.sig__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.25));
}
.sig__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.sig:hover .sig__img img { transform: scale(1.08); }
.sig__body { padding: 28px; position: relative; }
.sig__tag {
  display: inline-block;
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.sig__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.sig__body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px;
}
.sig__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* =============================================================
   QUOTE parallax
============================================================= */
.quote {
  position: relative;
  min-height: 60vh;
  display: grid; place-items: center;
  color: var(--cream);
  padding: clamp(90px, 16vh, 180px) 0;
  overflow: hidden;
}
.quote__bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.quote__bg img { width: 100%; height: 120%; object-fit: cover; will-change: transform; }
.quote__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,19,.65), rgba(26,22,19,.85));
}
.quote__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
}
.quote__mark { color: var(--saffron); margin-bottom: 8px; }
.quote__content p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.3;
  margin-bottom: 32px;
}
.quote__content cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(245,239,228,.7);
}
.quote__content cite span { color: var(--saffron); }

/* =============================================================
   MENU
============================================================= */
.menu { padding: clamp(90px, 14vh, 160px) 0; }
.menu__tabs {
  display: flex; gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.menu__tab {
  padding: 14px 22px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .3s, border-color .3s;
}
.menu__tab:hover { color: var(--ink); }
.menu__tab.is-active {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

.menu__panels { position: relative; }
.menu__panel {
  display: none;
  animation: panelFade .5s var(--ease);
}
.menu__panel.is-active { display: block; }
@keyframes panelFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.menu__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
}
.menu__cols--3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu__col h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--clay);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.menu__item {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  transition: transform .3s var(--ease), color .3s;
}
.menu__item:last-child { border-bottom: 0; }
.menu__item:hover { transform: translateX(6px); color: var(--clay); }
.menu__item h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}
.menu__item p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.menu__item span {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  white-space: nowrap;
}
.menu__item.small { flex-direction: row; align-items: baseline; }
.menu__cols--3 .menu__item { padding: 18px 0; }

.menu__note {
  margin-top: 32px;
  padding: 18px 22px;
  background: var(--cream-2);
  border-left: 3px solid var(--saffron);
  font-size: 14px;
  color: var(--ink-2);
}
.menu__note strong { font-weight: 600; color: var(--clay); }

/* =============================================================
   GALLERY
============================================================= */
.gallery { padding: clamp(80px, 12vh, 140px) 0; background: var(--bone); }
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter .5s;
  filter: saturate(.95);
}
.mosaic__item:hover img { transform: scale(1.08); filter: saturate(1.1); }
.mosaic__item--tall { grid-row: span 2; }
.mosaic__item--wide { grid-column: span 2; }

/* =============================================================
   EVENTS
============================================================= */
.events {
  position: relative;
  padding: clamp(90px, 14vh, 160px) 0;
  color: var(--cream);
  overflow: hidden;
}
.events__bg { position: absolute; inset: 0; z-index: 0; }
.events__bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.05); }
.events__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(198,93,61,.35), transparent 60%),
    linear-gradient(135deg, rgba(26,22,19,.92), rgba(26,22,19,.8));
}
.events__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.events .section__title { color: var(--cream); }
.events .section__title em { color: var(--saffron); font-style: italic; }
.events .section__kicker { color: rgba(245,239,228,.7); }
.events .section__kicker .dot { background: var(--saffron); box-shadow: 0 0 0 4px rgba(232,169,58,.2); }
.events .section__lead { color: rgba(245,239,228,.82); }

.events__list {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 22px;
}
.event-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 24px;
  background: rgba(245,239,228,.05);
  border: 1px solid rgba(245,239,228,.1);
  border-radius: var(--radius);
  transition: background .35s, transform .35s var(--ease), border-color .35s;
}
.event-card:hover { background: rgba(245,239,228,.08); border-color: rgba(232,169,58,.35); transform: translateX(4px); }
.event-card__icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(232,169,58,.12);
  border-radius: 50%;
  color: var(--saffron);
}
.event-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 4px;
}
.event-card p { font-size: 14px; color: rgba(245,239,228,.72); }

.events__cta {
  margin-top: 36px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.events__cta .btn--link { color: var(--cream); border-bottom-color: rgba(245,239,228,.3); }
.events__cta .btn--link:hover { color: var(--saffron); border-bottom-color: var(--saffron); }

/* Poster card */
.events__poster { perspective: 1200px; }
.poster {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  padding: 40px 32px 28px;
  border-radius: 4px;
  box-shadow:
    0 30px 60px -30px rgba(0,0,0,.7),
    0 2px 0 rgba(0,0,0,.1);
  transform: rotate(-2.5deg);
  transition: transform .6s var(--ease);
  max-width: 380px;
  margin: 0 auto;
}
.poster:hover { transform: rotate(0) scale(1.02); }
.poster__tape {
  position: absolute;
  width: 80px; height: 24px;
  background: rgba(232,169,58,.55);
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.poster__tape--1 { top: -10px; left: 20px; transform: rotate(-6deg); }
.poster__tape--2 { top: -10px; right: 20px; transform: rotate(5deg); }

.poster__date {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.poster__date span { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.poster__date strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 44px;
  font-weight: 500;
  color: var(--clay);
  line-height: 1;
  margin: 6px 0 4px;
}

.poster__title {
  text-align: center;
  padding: 20px 0;
  display: flex; align-items: baseline; justify-content: center; gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px dashed var(--line);
}
.poster__title span {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
}
.poster__title em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--saffron);
}

.poster__meta {
  padding: 16px 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.poster__meta div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: 13px;
}
.poster__meta span {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--clay);
}
.poster__meta em { font-style: normal; color: var(--muted); letter-spacing: .05em; }

.poster__footer {
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .events__grid { grid-template-columns: 1fr; }
  .events__poster { order: -1; }
}

/* =============================================================
   RESERVATION
============================================================= */
.reserve {
  position: relative;
  padding: clamp(90px, 14vh, 160px) 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.reserve__bg { position: absolute; inset: 0; opacity: .4; pointer-events: none; }
.reserve__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
}
.reserve .section__title { color: var(--cream); }
.reserve .section__title em { color: var(--saffron); }
.reserve .section__kicker { color: rgba(245,239,228,.6); }
.reserve .section__kicker .dot { background: var(--saffron); box-shadow: 0 0 0 4px rgba(232,169,58,.2); }
.reserve .section__lead { color: rgba(245,239,228,.75); }

.reserve__list {
  list-style: none;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(245,239,228,.15);
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
  color: rgba(245,239,228,.75);
}
.reserve__list strong { color: var(--cream); font-weight: 600; }
.reserve__list a { color: var(--saffron); text-decoration: underline; text-decoration-color: rgba(232,169,58,.4); text-underline-offset: 4px; }

.reserve__form {
  background: rgba(245,239,228,.04);
  border: 1px solid rgba(245,239,228,.12);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.field { position: relative; margin-bottom: 22px; }
.field__row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.field__row:has(> .field:nth-child(2):last-child) { grid-template-columns: 1fr 1fr; }
.field label {
  display: block;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(245,239,228,.55);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(245,239,228,.2);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  padding: 10px 0;
  outline: none;
  appearance: none;
}
.field select { cursor: pointer; }
.field select option { background: var(--ink); }
.field textarea { resize: vertical; min-height: 70px; }
.field__line {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--saffron);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.field input:focus ~ .field__line,
.field select:focus ~ .field__line,
.field textarea:focus ~ .field__line { transform: scaleX(1); }

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-bottom-color: var(--clay); }

.reserve__form .btn--solid { margin-top: 10px; }
.reserve__disclaimer {
  font-size: 12px;
  color: rgba(245,239,228,.45);
  text-align: center;
  margin-top: 14px;
}

/* Modal */
.modal {
  position: fixed; inset: 0;
  z-index: 800;
  display: grid; place-items: center;
  background: rgba(26,22,19,.85);
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__inner {
  background: var(--cream);
  color: var(--ink);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 90%;
  text-align: center;
  transform: translateY(20px) scale(.96);
  transition: transform .5s var(--ease);
}
.modal.is-open .modal__inner { transform: translateY(0) scale(1); }
.modal__check { color: var(--olive); margin-bottom: 12px; }
.modal__check circle { stroke-dasharray: 176; stroke-dashoffset: 176; animation: drawC 1s var(--ease-out) .2s forwards; }
.modal__check path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawP .6s var(--ease-out) .9s forwards; }
@keyframes drawC { to { stroke-dashoffset: 0; } }
@keyframes drawP { to { stroke-dashoffset: 0; } }
.modal__inner h3 { font-family: var(--serif); font-size: 32px; font-weight: 500; margin-bottom: 10px; }
.modal__inner p { color: var(--muted); margin-bottom: 24px; }
.modal .btn--ghost { border-color: var(--ink); color: var(--ink); }

/* =============================================================
   CONTACT
============================================================= */
.contact { padding: clamp(80px, 12vh, 140px) 0; }
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact__card {
  padding: 36px 32px;
  background: var(--bone);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: background .4s, border-color .4s, transform .4s var(--ease);
}
.contact__card:hover { background: var(--cream-2); transform: translateY(-4px); }
.contact__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
  margin: 8px 0 22px;
}
.contact__title a { transition: color .3s; }
.contact__title a:hover { color: var(--clay); }
.contact__link {
  align-self: flex-start;
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 4px;
}
.contact__muted { color: var(--muted); font-size: 14px; margin-top: auto; }
.contact__card--hours { grid-column: span 2; }
.hours { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.hours li {
  display: flex; justify-content: space-between; gap: 24px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.hours li span { color: var(--muted); letter-spacing: .04em; }
.hours li em { font-style: normal; font-family: var(--serif); font-size: 17px; }
.hours__highlight em { color: var(--clay); font-style: italic; }
.contact__card--social { grid-column: span 2; }
.social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.social a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; letter-spacing: .1em;
  transition: all .3s;
}
.social a:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* =============================================================
   Footer
============================================================= */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 60px 0 40px;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 4px; }
.footer__brand span {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--saffron);
}
.footer__brand small { font-size: 12px; color: rgba(245,239,228,.6); letter-spacing: .1em; }
.footer__nav {
  display: flex; gap: 22px; justify-content: center;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,239,228,.7);
  transition: color .3s;
}
.footer__nav a:hover { color: var(--saffron); }
.footer__legal {
  font-size: 12px;
  color: rgba(245,239,228,.5);
  text-align: right;
}

/* =============================================================
   Responsive
============================================================= */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .story__grid { grid-template-columns: 1fr; }
  .story__pillars { grid-template-columns: 1fr; }
  .sig__grid { grid-template-columns: repeat(2, 1fr); }
  .reserve__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__card--hours, .contact__card--social { grid-column: span 2; }
  .mosaic { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer__legal { text-align: center; }
}

@media (max-width: 700px) {
  .hero__badges { gap: 24px; margin-top: 48px; }
  .badge--v { flex-direction: column; align-items: flex-start; gap: 4px; }
  .sig__grid { grid-template-columns: 1fr; gap: 20px; }
  .menu__cols { grid-template-columns: 1fr; gap: 32px; }
  .menu__cols--3 { grid-template-columns: 1fr 1fr; }
  .field__row { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card--hours, .contact__card--social { grid-column: span 1; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .story__frame--2 { display: none; }
  .hero__scroll { display: none; }
  .hero { align-items: center; padding-top: 140px; padding-bottom: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
