/* =================================================================
   BISTRO MARLENE — SHARED STYLES
   Editorial / Magazine direction, Fashion-inspired typography
   ================================================================= */

/* ----- 1. TOKENS ----- */
:root {
  --navy:        #14213d;
  --navy-deep:   #0a1428;
  --navy-soft:   #1f3057;
  --cream:       #f5ead0;
  --cream-bright:#faf3e0;
  --cream-deep:  #ebdfc1;
  --cream-line:  #d4c8a8;
  --gold:        #c69551;
  --gold-soft:   #d4ad75;
  --gold-deep:   #a87a3c;
  --rust:        #8b3a1f;

  --serif:    'Fraunces', Georgia, serif;
  --hand:     'Caveat', cursive;
  --sans:     'Manrope', system-ui, sans-serif;

  --ease-out:     cubic-bezier(.4, 0, .2, 1);
  --ease-curtain: cubic-bezier(.83, 0, .17, 1);
  --ease-back:    cubic-bezier(.65, 0, .35, 1);

  --container: 1280px;
  --gutter: 2.5rem;
}

/* ----- 2. RESET ----- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.is-locked { overflow: hidden; }
body {
  background: var(--cream);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }

/* Subtle paper grain across whole site */
body::after {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  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 type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .07;
  mix-blend-mode: multiply;
}

/* Selection */
::selection { background: var(--navy); color: var(--cream); }

/* ----- 3. SCROLL PROGRESS BAR ----- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 1.5px;
  background: var(--gold);
  width: 0%;
  z-index: 90;
  transition: width .12s linear;
  mix-blend-mode: difference;
}

/* ----- 4. CURTAIN (Intro + Page Transitions) ----- */
.curtain {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transform: translateY(0);
  pointer-events: none;
}
.curtain::before {
  content: '';
  position: absolute; inset: 0;
  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 type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .08; pointer-events: none;
}

/* Full intro brand (only on direct visits) */
.curtain__intro {
  text-align: center;
  transition: opacity .35s ease-out;
  position: relative;
}
body.is-loaded .curtain__intro,
body[data-quick-intro] .curtain__intro { opacity: 0; }

.curtain__bistro {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  color: var(--cream);
  margin-bottom: -.25em;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(15px);
  animation: bistro-in .9s var(--ease-out) .25s forwards;
}
@keyframes bistro-in { to { opacity: .85; transform: translateY(0); } }

.curtain__marlene {
  font-family: var(--serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: var(--cream);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.05;
  overflow: hidden;
  padding: .08em 0;
  display: flex;
  justify-content: center;
}
.curtain__marlene span {
  display: inline-block;
  transform: translateY(110%);
  animation: char-rise 1s var(--ease-back) forwards;
}
.curtain__marlene span:nth-child(1) { animation-delay: .45s; }
.curtain__marlene span:nth-child(2) { animation-delay: .52s; }
.curtain__marlene span:nth-child(3) { animation-delay: .59s; }
.curtain__marlene span:nth-child(4) { animation-delay: .66s; }
.curtain__marlene span:nth-child(5) { animation-delay: .73s; }
.curtain__marlene span:nth-child(6) { animation-delay: .80s; }
.curtain__marlene span:nth-child(7) { animation-delay: .87s; }
@keyframes char-rise { to { transform: translateY(0); } }

.curtain__line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem auto 0;
  animation: line-grow 1s var(--ease-back) 1.4s forwards;
}
@keyframes line-grow { to { width: 90px; } }

.curtain__sub {
  font-family: var(--hand);
  font-size: 1.2rem;
  color: var(--gold-soft);
  margin-top: 1rem;
  opacity: 0;
  animation: fade-in .7s ease-out 1.6s forwards;
}
@keyframes fade-in { to { opacity: 1; } }

/* Quick intro brand (page-to-page nav) */
.curtain__quick {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--cream);
  letter-spacing: .12em;
  text-align: center;
  opacity: 0;
  transition: opacity .4s ease-out;
  position: absolute;
}
.curtain__quick::before { content: '— '; color: var(--gold); }
.curtain__quick::after  { content: ' —'; color: var(--gold); }
body[data-quick-intro] .curtain__quick { opacity: .9; }

/* Curtain states */
.curtain.curtain--exit {
  transform: translateY(-100%);
  transition: transform 1s var(--ease-curtain);
}
.curtain[data-state="below"]    { transform: translateY(100%); transition: none; }
.curtain[data-state="covering"] { transform: translateY(0);    transition: transform .75s var(--ease-curtain); }
.curtain[data-state="rising"]   { transform: translateY(-100%); transition: transform .75s var(--ease-curtain); }

/* ----- 5. TOP NAV ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 2.5rem;
  z-index: 60;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .8s ease-out 1s;
}
body.is-loaded .nav { opacity: 1; }

.nav__brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .25em;
  color: var(--cream);
  text-decoration: none;
}
.nav__brand em {
  font-style: italic; font-weight: 400; opacity: .8; padding: 0 .25em;
}

.nav__menu-btn {
  background: none; border: none; cursor: pointer;
  width: 50px; height: 50px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 7px; color: var(--cream);
}
.nav__menu-btn span {
  display: block; width: 30px; height: 1.5px;
  background: currentColor;
  transition: transform .4s var(--ease-curtain), opacity .3s;
}
.nav__menu-btn.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__menu-btn.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

/* ----- 6. OVERLAY MENU ----- */
.overlay {
  position: fixed; inset: 0;
  background: var(--navy-deep);
  z-index: 50;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .5s;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }
.overlay::before {
  content: '';
  position: absolute; inset: 0;
  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 type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .08; pointer-events: none;
}

.overlay__nav {
  list-style: none;
  text-align: center;
  position: relative;
  z-index: 2;
}
.overlay__nav li { overflow: hidden; }
.overlay__nav a {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-decoration: none;
  display: block;
  padding: .35rem 0;
  transform: translateY(110%);
  transition: transform .7s var(--ease-back), color .3s, font-style .2s;
  letter-spacing: -.01em;
}
.overlay.is-open .overlay__nav a { transform: translateY(0); }
.overlay__nav li:nth-child(1) a { transition-delay: .10s; }
.overlay__nav li:nth-child(2) a { transition-delay: .15s; }
.overlay__nav li:nth-child(3) a { transition-delay: .20s; }
.overlay__nav li:nth-child(4) a { transition-delay: .25s; }
.overlay__nav li:nth-child(5) a { transition-delay: .30s; }
.overlay__nav li:nth-child(6) a { transition-delay: .35s; }
.overlay__nav a:hover,
.overlay__nav a[aria-current="page"] { color: var(--gold); font-style: normal; }
.overlay__nav a span {
  display: inline-block;
  opacity: .4; font-size: .4em; vertical-align: super;
  margin-right: .4em;
  font-style: normal; letter-spacing: .1em;
}

.overlay__contact {
  position: absolute;
  bottom: 2rem; left: 0; right: 0;
  text-align: center;
  color: var(--cream);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .5;
  z-index: 2;
}

/* ----- 7. SHARED UTILITY ----- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.label {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 1rem;
  opacity: .85;
  font-weight: 500;
}
.label::before { content: ''; width: 32px; height: 1px; background: currentColor; }
.label--center { justify-content: center; }
.label--center::before { display: none; }

/* Magazine-style volume/issue label */
.vol-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .55;
  font-weight: 400;
}

.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 1.05rem 1.9rem;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--serif);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--cream);
  transition: background .35s, color .35s;
  cursor: pointer;
  position: relative;
}
.btn:hover { background: transparent; color: var(--cream); }
.btn--ghost { background: transparent; color: var(--cream); }
.btn--ghost:hover { background: var(--cream); color: var(--navy); }
.btn--dark { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn--dark:hover { background: transparent; color: var(--navy); }
.btn--ghost-dark {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn--ghost-dark:hover { background: var(--navy); color: var(--cream); }
.btn__arrow { display: inline-block; transition: transform .35s; }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ----- 8. SCROLL REVEALS ----- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

[data-reveal="clip"] {
  opacity: 1;
  transform: none;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.4s var(--ease-curtain);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal="clip"].in-view { clip-path: inset(0); }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-stagger].in-view > *:nth-child(1) { transition-delay: 0s; }
[data-stagger].in-view > *:nth-child(2) { transition-delay: .07s; }
[data-stagger].in-view > *:nth-child(3) { transition-delay: .14s; }
[data-stagger].in-view > *:nth-child(4) { transition-delay: .21s; }
[data-stagger].in-view > *:nth-child(5) { transition-delay: .28s; }
[data-stagger].in-view > *:nth-child(6) { transition-delay: .35s; }
[data-stagger].in-view > *:nth-child(7) { transition-delay: .42s; }
[data-stagger].in-view > *:nth-child(8) { transition-delay: .49s; }
[data-stagger].in-view > * { opacity: 1; transform: translateY(0); }

/* ----- 9. HERO (only on index) ----- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  display: flex; align-items: center;
  padding: 7rem 2.5rem 5rem;
  overflow: hidden;
}
.hero__seit,
.hero__content > *,
.seal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
body.is-loaded .hero__seit    { opacity: .85; transform: translateY(0); transition-delay: .55s; }
body.is-loaded .hero__bistro  { opacity: .9;  transform: translateY(0); transition-delay: .25s; }
body.is-loaded .hero__name    { opacity: 1;   transform: translateY(0); transition-delay: .35s; }
body.is-loaded .hero__tagline { opacity: 1;   transform: rotate(-1.5deg) translateY(0); transition-delay: .75s; }
body.is-loaded .hero__desc    { opacity: .85; transform: translateY(0); transition-delay: .9s; }
body.is-loaded .hero__cta     { opacity: 1;   transform: translateY(0); transition-delay: 1.05s; }
body.is-loaded .seal          { opacity: 1;   transform: translateY(0); transition-delay: 1.25s; }

.hero__seit {
  position: absolute;
  top: 6rem; left: 2.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: .9rem;
  letter-spacing: .15em;
}
.hero__seit::before { content: '— '; }

.hero__content { max-width: 1100px; position: relative; z-index: 2; }
.hero__bistro {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  margin-bottom: -.32em;
  margin-left: .25em;
  display: block;
  font-variation-settings: "SOFT" 100;
}
.hero__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(4.5rem, 17vw, 15rem);
  line-height: .85;
  letter-spacing: -.045em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  display: block;
}
.hero__tagline {
  font-family: var(--hand);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--gold-soft);
  margin-top: 1.4rem;
  font-weight: 500;
  margin-left: .5em;
  display: inline-block;
  transform: rotate(-1.5deg) translateY(35px);
}
.hero__desc {
  max-width: 460px;
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.75;
}
.hero__cta { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.seal {
  position: absolute;
  bottom: 4rem; right: 4rem;
  width: 170px; height: 170px;
  z-index: 3;
}
.seal__circle { animation: rotate 22s linear infinite; }
.seal__inner {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64%; height: 64%;
  border: 1px solid var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  font-size: .92rem;
  line-height: 1.25;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1s ease-out 1.4s;
}
body.is-loaded .scroll-indicator { opacity: .6; }
.scroll-indicator::after {
  content: ''; display: block;
  width: 1px; height: 30px;
  background: var(--cream);
  margin: .8rem auto 0;
  animation: scroll-down 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scroll-down {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%      { transform: scaleY(1); }
  50.01%   { transform-origin: bottom; }
}

/* ----- 10. PAGE HEADER (sub pages) ----- */
.page-head {
  background: var(--navy);
  color: var(--cream);
  padding: 9rem 2.5rem 6rem;
  position: relative;
  overflow: hidden;
}
.page-head__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 3rem;
}
.page-head__crumb {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .55;
  display: flex; align-items: center; gap: .6rem;
  align-self: end;
}
.page-head__crumb a { text-decoration: none; transition: opacity .3s; }
.page-head__crumb a:hover { opacity: 1; color: var(--gold-soft); }
.page-head__crumb span { opacity: .4; }
.page-head__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: .9;
  letter-spacing: -.04em;
  text-align: center;
}
.page-head__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}
.page-head__vol {
  font-family: var(--serif);
  font-style: italic;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .55;
  text-align: right;
  align-self: end;
}
.page-head__sub {
  font-family: var(--hand);
  font-size: 1.6rem;
  color: var(--gold-soft);
  text-align: center;
  margin-top: 1.5rem;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
  line-height: 1.4;
}

/* ----- 11. MARQUEE ----- */
.marquee {
  background: var(--cream);
  color: var(--navy);
  padding: 1.4rem 0;
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  overflow: hidden;
  white-space: nowrap;
}
.marquee--dark {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--cream);
}
.marquee__track {
  display: inline-flex; align-items: center;
  animation: marquee 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 400;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { padding: 0 1.6rem; }
.marquee__star { color: var(--gold); padding: 0 .3rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----- 12. STORY (about teaser & full) ----- */
.story {
  padding: 9rem 2.5rem;
  background: var(--cream);
  position: relative;
}
.story__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.story__photo {
  aspect-ratio: 4/5;
  background: var(--navy);
  background-size: cover; background-position: center;
  position: relative;
  filter: contrast(1.04) saturate(.95);
}
.story__photo::before {
  content: '';
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1px solid var(--navy);
  z-index: -1;
}
.story__photo-tag {
  position: absolute;
  top: -1.2rem; right: -1.2rem;
  background: var(--cream);
  padding: .8rem 1.2rem;
  font-family: var(--hand);
  font-size: 1.4rem;
  color: var(--navy);
  transform: rotate(4deg);
  border: 1px solid var(--navy);
  opacity: 0;
  transition: opacity .6s ease-out 1.4s;
}
.story__photo.in-view .story__photo-tag { opacity: 1; }

.story__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.4vw, 4.2rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: -.02em;
}
.story__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  font-variation-settings: "SOFT" 100;
}
.story__text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--navy);
  margin-bottom: 1.4rem;
  max-width: 480px;
}

/* DROP CAP — magazine style */
.story__text--lead::first-letter {
  font-family: var(--serif);
  font-size: 4.2em;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  float: left;
  line-height: .85;
  padding-right: .12em;
  padding-top: .08em;
  padding-bottom: 0;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

.story__sig {
  font-family: var(--hand);
  font-size: 2rem;
  color: var(--navy);
  margin-top: 2rem;
}
.story__cta { margin-top: 2.5rem; }

/* ----- 13. PRESS STRIP ----- */
.press {
  background: var(--cream);
  padding: 4rem 2.5rem;
  border-top: 1px solid var(--cream-line);
  border-bottom: 1px solid var(--cream-line);
}
.press__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.press__label {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .55;
  white-space: nowrap;
  flex-shrink: 0;
}
.press__items {
  display: flex; align-items: center; gap: 2.5rem;
  flex-wrap: wrap; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: .02em;
}
.press__items span {
  display: inline-flex; align-items: center; gap: 2.5rem;
}
.press__items span::after {
  content: '·';
  color: var(--gold);
  font-style: normal;
  margin-left: 2.5rem;
}
.press__items span:last-child::after { display: none; }

/* ----- 14. PULL QUOTE — Editorial ----- */
.pullquote {
  background: var(--cream);
  padding: 7rem 2.5rem;
  text-align: center;
  position: relative;
}
.pullquote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 12rem;
  color: var(--gold);
  position: absolute;
  top: 2rem; left: 50%; transform: translateX(-50%);
  opacity: .15;
  line-height: 1;
  pointer-events: none;
}
.pullquote__text {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
  letter-spacing: -.01em;
  color: var(--navy);
  position: relative; z-index: 2;
}
.pullquote__cite {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-top: 2.5rem;
  opacity: .65;
}
.pullquote__cite em {
  font-style: italic;
  text-transform: none;
  letter-spacing: .04em;
  font-family: var(--serif);
  font-size: 1rem;
  opacity: 1;
  margin-left: .4em;
}

/* ----- 15. NOW SERVING — Saisonal ----- */
.now {
  background: var(--cream);
  padding: 8rem 2.5rem;
  position: relative;
}
.now__inner { max-width: var(--container); margin: 0 auto; }
.now__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 2rem; flex-wrap: wrap;
  margin-bottom: 4rem;
}
.now__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
}
.now__title em { font-style: italic; color: var(--gold); }
.now__date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: .04em;
  opacity: .65;
  white-space: nowrap;
}
.now__date::before { content: '— '; }
.now__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.now__card {
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.now__card-img {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: var(--navy);
  filter: saturate(.95) contrast(1.03);
  transition: transform .8s var(--ease-out);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.now__card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,33,61,.2));
}
.now__card:hover .now__card-img { transform: scale(.98); }
.now__card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: .8rem;
  letter-spacing: .2em;
  opacity: .5;
  margin-bottom: .4rem;
}
.now__card-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: .4rem;
  letter-spacing: -.01em;
}
.now__card-name em { font-style: italic; color: var(--gold); }
.now__card-desc {
  font-size: .92rem;
  opacity: .7;
  line-height: 1.55;
  max-width: 32ch;
}
.now__tag {
  display: inline-block;
  font-family: var(--hand);
  font-size: 1.05rem;
  color: var(--rust);
  margin-top: .6rem;
  transform: rotate(-2deg);
  letter-spacing: .02em;
}

/* ----- 16. MENU TEASER (kompakt) ----- */
.menu-teaser {
  padding: 8rem 2.5rem;
  background: var(--navy);
  color: var(--cream);
}
.menu-teaser__inner {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.menu-teaser__intro {
  position: sticky;
  top: 7rem;
}
.menu-teaser__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.03em;
  margin: 1.4rem 0 1.6rem;
}
.menu-teaser__title em { font-style: italic; color: var(--gold-soft); font-weight: 300; }
.menu-teaser__lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: .8;
  max-width: 28em;
  margin-bottom: 2rem;
}
.menu-teaser__list {
  list-style: none;
}
.menu-teaser__row {
  display: grid;
  grid-template-columns: 4ch 1fr auto;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(245, 234, 208, .14);
  align-items: baseline;
  transition: padding-left .35s var(--ease-out);
}
.menu-teaser__row:hover { padding-left: 1rem; }
.menu-teaser__row:first-child { border-top: 1px solid rgba(245, 234, 208, .14); }
.menu-teaser__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  opacity: .45;
  letter-spacing: .1em;
}
.menu-teaser__name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -.005em;
}
.menu-teaser__name .badge {
  display: inline-block;
  margin-left: .7em;
  font-family: var(--hand);
  font-style: normal;
  color: var(--gold-soft);
  font-size: 1.05rem;
  transform: rotate(-3deg);
  font-weight: 400;
}
.menu-teaser__desc {
  display: block;
  font-family: var(--sans);
  font-size: .85rem;
  opacity: .58;
  margin-top: .3rem;
  font-weight: 300;
  letter-spacing: .005em;
}
.menu-teaser__price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--gold-soft);
}
.menu-teaser__cta { margin-top: 3rem; }

/* ----- 17. FULL MENU PAGE STYLES ----- */
.menu {
  padding: 7rem 2.5rem;
  background: var(--cream);
  color: var(--navy);
  position: relative;
}
.menu--dark { background: var(--navy); color: var(--cream); }

.menu__container { max-width: var(--container); margin: 0 auto; }

.menu__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem 6rem;
}
.menu__cat-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 1.8rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid currentColor;
  display: flex; justify-content: space-between; align-items: baseline;
}
.menu__cat-title small {
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .35em;
  opacity: .5;
}
.menu__items { list-style: none; }
.menu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px dashed currentColor;
  border-bottom-color: rgba(20, 33, 61, .15);
  transition: padding .3s var(--ease-out), background .3s;
}
.menu--dark .menu__item {
  border-bottom-color: rgba(245, 234, 208, .14);
}
.menu__item:hover { padding-left: .8rem; }
.menu__item:hover .menu__item-name { color: var(--gold); }
.menu--dark .menu__item:hover .menu__item-name { color: var(--gold-soft); }
.menu__item-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  transition: color .3s;
}
.menu__item-name .badge {
  display: inline-block;
  margin-left: .6em;
  font-family: var(--hand);
  font-style: normal;
  color: var(--gold);
  font-size: 1.05rem;
  transform: rotate(-3deg);
  font-weight: 400;
}
.menu--dark .menu__item-name .badge { color: var(--gold-soft); }
.menu__item-desc {
  font-size: .85rem;
  opacity: .65;
  margin-top: .35rem;
  line-height: 1.55;
  font-weight: 300;
}
.menu__item-price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--gold);
}
.menu--dark .menu__item-price { color: var(--gold-soft); }

.menu__notes {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-top: 4rem;
  border-top: 1px solid currentColor;
  border-top-color: rgba(20, 33, 61, .2);
}
.menu--dark .menu__notes { border-top-color: rgba(245, 234, 208, .2); }
.menu__note h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: .6rem;
  font-weight: 400;
}
.menu__note p { font-size: .88rem; line-height: 1.65; opacity: .75; }

/* ----- 18. GALLERY / LOOKBOOK ----- */
.gallery {
  padding: 8rem 2.5rem;
  background: var(--cream);
}
.gallery__head {
  max-width: var(--container); margin: 0 auto 4rem;
  text-align: center;
}
.gallery__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.015em;
  margin-top: 1rem;
}
.gallery__title em { font-style: italic; color: var(--gold); }
.gallery__handle {
  font-family: var(--hand);
  font-size: 1.9rem;
  margin-top: .7rem;
  display: inline-block;
  text-decoration: none;
  color: var(--navy);
  transform: rotate(-2deg);
  transition: color .3s, transform .3s;
}
.gallery__handle:hover { color: var(--gold); transform: rotate(-2deg) scale(1.04); }

.gallery__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.gallery__tile {
  position: relative;
  aspect-ratio: 1;
  background: var(--navy);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.gallery__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .6s;
  filter: saturate(.95);
  display: block;
}
.gallery__tile:hover img { transform: scale(1.07); filter: saturate(1.15); }
.gallery__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 33, 61, .85) 100%);
  color: var(--cream);
  display: flex; align-items: end;
  padding: 1.2rem;
  gap: 1.2rem;
  opacity: 0;
  transition: opacity .4s;
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .05em;
}
.gallery__tile:hover .gallery__overlay { opacity: 1; }
.gallery__cta { text-align: center; margin-top: 3rem; }

/* Lookbook editorial layout (galerie.html) */
.lookbook {
  padding: 7rem 2.5rem;
  background: var(--cream);
}
.lookbook__container { max-width: var(--container); margin: 0 auto; }
.lookbook__row {
  display: grid;
  gap: 2rem;
  margin-bottom: 6rem;
}
.lookbook__row--2 { grid-template-columns: 1.4fr 1fr; }
.lookbook__row--reverse { grid-template-columns: 1fr 1.4fr; }
.lookbook__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.lookbook__row--full { grid-template-columns: 1fr; }
.lookbook__img {
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  background-color: var(--navy);
  filter: saturate(.95);
}
.lookbook__row--full .lookbook__img { aspect-ratio: 21/9; }
.lookbook__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  margin-top: .8rem;
  opacity: .65;
  letter-spacing: .02em;
}
.lookbook__caption span {
  display: inline-block;
  font-style: normal;
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-right: .8rem;
  opacity: .55;
  vertical-align: middle;
}

/* ----- 19. NEWSLETTER ("The Letter") ----- */
.letter {
  background: var(--navy);
  color: var(--cream);
  padding: 8rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.letter::before {
  content: '✦';
  position: absolute;
  font-family: var(--serif);
  font-size: 14rem;
  color: var(--gold);
  opacity: .08;
  top: 50%; right: 5%; transform: translateY(-50%);
  pointer-events: none;
}
.letter__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}
.letter__eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 1.2rem;
}
.letter__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
}
.letter__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}
.letter__lead {
  font-family: var(--hand);
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin: 1.6rem 0 0;
  line-height: 1.4;
}
.letter__benefits {
  list-style: none;
  margin: 2.5rem 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: .98rem;
  text-align: center;
}
.letter__benefits li {
  position: relative;
  padding-top: 1.2rem;
}
.letter__benefits li::before {
  content: '✦';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  font-style: normal;
  color: var(--gold);
  opacity: .85;
  font-size: 1rem;
}
.letter__form {
  display: flex; align-items: end; gap: 1rem;
  border-bottom: 1px solid var(--cream);
  padding-bottom: .4rem;
  max-width: 480px;
  margin: 0 auto;
}
.letter__input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  padding: .6rem 0;
  letter-spacing: .01em;
}
.letter__input:focus { outline: none; }
.letter__input::placeholder { color: var(--cream); opacity: .4; font-style: italic; }
.letter__submit {
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--serif);
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  padding: .6rem 0;
  font-weight: 500;
  transition: color .3s, transform .3s;
  white-space: nowrap;
}
.letter__submit:hover { color: var(--gold-soft); transform: translateX(4px); }
.letter__note {
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .45;
  margin-top: 1.6rem;
}

/* ----- 20. RESERVE / RESERVE PAGE ----- */
.reserve {
  padding: 7rem 2.5rem;
  background: var(--navy-deep);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reserve::before, .reserve::after {
  content: '✦';
  position: absolute;
  top: 50%;
  font-size: 3rem;
  color: var(--gold);
  opacity: .3;
  animation: float 6s ease-in-out infinite;
}
.reserve::before { left: 8%; transform: translateY(-50%); }
.reserve::after  { right: 8%; transform: translateY(-50%); animation-direction: reverse; }
@keyframes float {
  0%, 100% { transform: translateY(-50%) rotate(0); }
  50%      { transform: translateY(-60%) rotate(180deg); }
}
.reserve__inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.reserve__label {
  font-size: .75rem; letter-spacing: .35em; text-transform: uppercase;
  opacity: .65; margin-bottom: 1.5rem;
}
.reserve__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.6rem;
  line-height: 1.2;
}
.reserve__title em { color: var(--gold-soft); }
.reserve__phone {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: inline-block;
  margin: 1rem 0 1.5rem;
  letter-spacing: .02em;
  transition: transform .3s;
}
.reserve__phone:hover { transform: scale(1.03); }
.reserve__mail { opacity: .75; font-size: .95rem; }
.reserve__mail a { color: var(--gold-soft); text-decoration: none; }
.reserve__mail a:hover { color: var(--cream); }

/* Reserve full page */
.reserve-page {
  padding: 7rem 2.5rem;
  background: var(--cream);
  color: var(--navy);
}
.reserve-page__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.reserve-page__col h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.reserve-page__col h3:first-child { margin-top: 0; }
.reserve-page__col p { font-size: .98rem; line-height: 1.75; margin-bottom: 1rem; }
.reserve-page__col ul {
  list-style: none;
  font-family: var(--serif);
  font-size: 1.02rem;
}
.reserve-page__col ul li {
  display: flex; justify-content: space-between;
  padding: .7rem 0;
  border-bottom: 1px solid var(--cream-line);
}
.reserve-page__col ul li span:first-child { font-style: italic; }

.contact-card {
  background: var(--navy);
  color: var(--cream);
  padding: 3rem;
  position: relative;
}
.contact-card h4 {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 400;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.contact-card h4 em { font-style: italic; color: var(--gold-soft); }
.contact-card__phone {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 1.4rem;
  letter-spacing: .02em;
}
.contact-card__divider {
  height: 1px;
  background: rgba(245, 234, 208, .25);
  margin: 1.4rem 0;
}
.contact-card p { font-size: .92rem; line-height: 1.7; opacity: .82; margin-bottom: .6rem; }
.contact-card a { color: var(--gold-soft); text-decoration: none; }
.contact-card a:hover { color: var(--cream); }

/* ----- 21. KONTAKT PAGE ----- */
.kontakt {
  padding: 7rem 2.5rem;
  background: var(--cream);
}
.kontakt__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.kontakt__col h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.kontakt__col h3:first-child { margin-top: 0; }
.kontakt__col p { font-size: 1rem; line-height: 1.8; margin-bottom: .5rem; }
.kontakt__col a {
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid var(--cream-line);
  transition: border-color .3s, color .3s;
}
.kontakt__col a:hover { color: var(--gold); border-color: var(--gold); }
.kontakt__map {
  aspect-ratio: 4/5;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.kontakt__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(.6) contrast(1.05);
}

/* ----- 22. FOOTER ----- */
.footer {
  background: var(--cream-deep);
  color: var(--navy);
  padding: 5rem 2.5rem 2rem;
  position: relative;
}
.footer__grid {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--navy);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
  text-decoration: none;
  color: var(--navy);
}
.footer__brand em { font-style: italic; font-weight: 400; opacity: .85; }
.footer__tag {
  font-family: var(--hand);
  font-size: 1.4rem;
  margin-top: .8rem;
  color: var(--gold);
}
.footer h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: .02em;
}
.footer__list { list-style: none; font-size: .92rem; line-height: 2; }
.footer__list a { color: var(--navy); text-decoration: none; transition: opacity .3s; }
.footer__list a:hover { opacity: .55; }
.footer__bottom {
  max-width: var(--container); margin: 1.6rem auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .65;
}

/* ----- 23. RESPONSIVE ----- */
@media (max-width: 1024px) {
  .menu-teaser__inner { grid-template-columns: 1fr; gap: 3rem; }
  .menu-teaser__intro { position: static; }
  .now__grid { grid-template-columns: 1fr 1fr; }
  .now__grid .now__card:nth-child(3) { grid-column: 1 / -1; max-width: 50%; }
}
@media (max-width: 900px) {
  .nav { padding: 1.1rem 1.4rem; }
  .hero { padding: 6rem 1.4rem 4rem; }
  .hero__seit { left: 1.4rem; top: 5.5rem; }
  .seal { display: none; }
  .marquee__track { font-size: 1.2rem; }
  .story { padding: 5rem 1.4rem; }
  .story__grid { grid-template-columns: 1fr; gap: 3rem; }
  .menu, .menu-teaser { padding: 5rem 1.4rem; }
  .menu__categories { grid-template-columns: 1fr; gap: 4rem; }
  .menu__notes { grid-template-columns: 1fr; gap: 2rem; }
  .gallery, .lookbook { padding: 5rem 1.4rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook__row--2,
  .lookbook__row--reverse { grid-template-columns: 1fr; }
  .lookbook__row--3 { grid-template-columns: 1fr 1fr; }
  .reserve { padding: 4.5rem 1.4rem; }
  .reserve::before, .reserve::after { display: none; }
  .reserve-page { padding: 5rem 1.4rem; }
  .reserve-page__inner { grid-template-columns: 1fr; gap: 3rem; }
  .kontakt { padding: 5rem 1.4rem; }
  .kontakt__grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .footer__bottom { font-size: .68rem; }

  .page-head { padding: 7rem 1.4rem 4rem; }
  .page-head__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .page-head__crumb,
  .page-head__vol { justify-self: center; text-align: center; }

  .now { padding: 5rem 1.4rem; }
  .now__grid { grid-template-columns: 1fr; }
  .now__grid .now__card:nth-child(3) { max-width: 100%; }
  .letter { padding: 5rem 1.4rem; }
  .letter__benefits { grid-template-columns: 1fr; gap: 1.4rem; }
  .pullquote { padding: 5rem 1.4rem; }
  .press__items { font-size: 1rem; gap: 1.5rem; }
  .press__items span::after { margin-left: 1.5rem; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .lookbook__row--3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .letter__form { flex-direction: column; align-items: stretch; gap: 1.2rem; border-bottom: none; }
  .letter__input { border-bottom: 1px solid var(--cream); padding: .8rem 0; }
  .letter__submit {
    background: var(--cream); color: var(--navy);
    padding: 1rem; letter-spacing: .2em;
  }
}

/* ----- 24. REDUCED MOTION ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .curtain { display: none !important; }
}
