/* VERRE — ink, porcelain, champagne, bordeaux */
:root {
  --ink: #0e0d0b;
  --ink-soft: #171512;
  --porcelain: #efebe3;
  --porcelain-deep: #e5dfd3;
  --champagne: #c2a36b;
  --bordeaux: #571c26;
  --smoke: #8a8377;
  --smoke-dark: #5c574e;
  --hairline: rgba(194, 163, 107, 0.28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--porcelain);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--bordeaux); color: var(--porcelain); }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 1px solid var(--champagne);
  outline-offset: 4px;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 3rem;
  mix-blend-mode: normal;
  background: linear-gradient(to bottom, rgba(14,13,11,0.82), rgba(14,13,11,0));
}
.nav__brand {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.55em;
  font-size: 1.05rem;
  color: var(--porcelain);
}
.nav__links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links a { position: relative; padding-bottom: 3px; color: rgba(239,235,227,0.75); transition: color .3s; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(.2,.6,.2,1);
}
.nav__links a:hover { color: var(--porcelain); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  border: 1px solid var(--hairline);
  padding: 0.55em 1.4em !important;
  color: var(--champagne) !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--champagne); color: var(--ink) !important; border-color: var(--champagne); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero__image {
  position: absolute;
  inset: 0;
  background: url("assets/hero.png") center 40% / cover no-repeat;
  transform: scale(1.08);
  animation: hero-settle 3.2s cubic-bezier(.2,.6,.2,1) forwards;
}
@keyframes hero-settle { to { transform: scale(1); } }
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(14,13,11,0.05) 0%, rgba(14,13,11,0.72) 100%),
    linear-gradient(to top, rgba(14,13,11,0.92) 0%, rgba(14,13,11,0.12) 38%);
}
.hero__frame {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(194,163,107,0.32);
  pointer-events: none;
  opacity: 0;
  animation: frame-in 1.6s 1.2s cubic-bezier(.2,.6,.2,1) forwards;
}
@keyframes frame-in { to { opacity: 1; } }
.hero__content {
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
}
.hero__eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0;
  animation: rise .9s .5s cubic-bezier(.2,.6,.2,1) forwards;
}
.hero__eyebrow .dot {
  width: 3px; height: 3px;
  background: var(--champagne);
  border-radius: 50%;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4.5rem, 16vw, 12.5rem);
  line-height: 1;
  margin: 1.2rem 0 1.4rem;
  color: var(--porcelain);
  display: flex;
  justify-content: center;
}
.hero__title span {
  opacity: 0;
  letter-spacing: 0.18em;
  animation: letter-in 1.4s cubic-bezier(.2,.6,.2,1) forwards;
}
.hero__title span:nth-child(1) { animation-delay: .15s; }
.hero__title span:nth-child(2) { animation-delay: .27s; }
.hero__title span:nth-child(3) { animation-delay: .39s; }
.hero__title span:nth-child(4) { animation-delay: .51s; }
.hero__title span:nth-child(5) { animation-delay: .63s; }
@keyframes letter-in {
  from { opacity: 0; transform: translateY(0.35em); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(239,235,227,0.78);
  opacity: 0;
  animation: rise .9s 1.1s cubic-bezier(.2,.6,.2,1) forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: rise 1s 1.8s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(var(--champagne), transparent);
  animation: scroll-pulse 2.4s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.55); opacity: 0.5; }
}
.hero__scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* ---------- shared ---------- */
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--smoke-dark);
  margin-bottom: 2.2rem;
}
.eyebrow--gold { color: var(--champagne); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- philosophie ---------- */
.philosophie {
  background: var(--porcelain);
  color: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 1.5rem;
}
.philosophie__inner { max-width: 1060px; margin: 0 auto; }
.philosophie .eyebrow { color: var(--bordeaux); }
.philosophie__pull {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.22;
  max-width: 21em;
  margin-bottom: 3.5rem;
}
.philosophie__pull em {
  font-style: italic;
  color: var(--bordeaux);
}
.philosophie__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 60rem;
  font-size: 1rem;
  color: #3d3a34;
}
.has-dropcap::first-letter {
  font-family: var(--serif);
  font-size: 3.4em;
  float: left;
  line-height: 0.82;
  padding: 0.06em 0.12em 0 0;
  color: var(--bordeaux);
}
.philosophie__facts {
  display: flex;
  gap: clamp(2rem, 8vw, 6rem);
  margin-top: 4.5rem;
  padding-top: 2.6rem;
  border-top: 1px solid rgba(87,28,38,0.22);
}
.philosophie__facts > div { display: flex; flex-direction: column; gap: 0.3rem; }
.fact-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.fact-label {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--smoke-dark);
}

/* ---------- menu ---------- */
.menu {
  background: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 1.5rem clamp(7rem, 12vw, 11rem);
  position: relative;
}
.menu__head {
  max-width: 1060px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  text-align: center;
}
.menu__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.1;
}
.menu__title em { font-style: italic; color: var(--champagne); }
.menu__note {
  margin-top: 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--smoke);
}
.menu__body {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.menu__line {
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(194,163,107,0.14);
}
.menu__line-progress {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(var(--champagne), var(--bordeaux));
}
.menu__rail {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -5rem;
  width: 2.4rem;
}
.menu__indicator {
  position: sticky;
  top: 44vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--champagne);
}
.menu__indicator-sep {
  width: 1px;
  height: 2rem;
  background: var(--hairline);
}
.menu__indicator span:last-child { color: var(--smoke-dark); font-size: 0.85rem; }

.courses { list-style: none; }
.course {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2rem;
  padding: 2.4rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.2,.6,.2,1), transform 1s cubic-bezier(.2,.6,.2,1);
}
.course.is-visible { opacity: 1; transform: translateY(0); }
.course + .course { border-top: 1px solid rgba(239,235,227,0.06); }
.course__numeral {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--champagne);
  text-align: center;
  line-height: 1.9;
  position: relative;
}
.course__text { max-width: 34rem; }
.course__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--porcelain);
  transition: color .4s;
}
.course:hover .course__name { color: var(--champagne); }
.course__desc {
  margin-top: 0.5rem;
  color: rgba(239,235,227,0.62);
  font-size: 0.95rem;
}
.course__pairing {
  margin-top: 0.9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--bordeaux);
  filter: brightness(1.9);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .5s, transform .5s;
}
.course:hover .course__pairing,
.course:focus-within .course__pairing { opacity: 1; transform: translateY(0); }

/* ---------- signatures ---------- */
.signatures {
  background: var(--ink);
  border-top: 1px solid rgba(194,163,107,0.12);
  padding: clamp(5rem, 10vw, 9rem) 1.5rem;
}
.signatures__inner { max-width: 1060px; margin: 0 auto; text-align: center; }
.signatures__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
}
.signatures__title em { font-style: italic; color: var(--champagne); }
.signatures__note {
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--smoke);
}
.signatures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
  text-align: left;
}
.sig__frame {
  border: 1px solid rgba(194,163,107,0.35);
  padding: 10px;
  background: var(--ink-soft);
  overflow: hidden;
}
.sig__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92);
  transition: transform .7s cubic-bezier(.2,.6,.2,1);
}
.sig:hover .sig__frame img { transform: scale(1.04); }
.sig figcaption { display: block; margin-top: 1rem; }
.sig__row {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.sig__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--porcelain);
  white-space: nowrap;
}
.sig__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(138,131,119,0.45);
  transform: translateY(-3px);
}
.sig__price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--champagne);
  white-space: nowrap;
}
.sig__desc {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: rgba(239,235,227,0.6);
}

/* ---------- chef ---------- */
.chef {
  background: var(--porcelain);
  color: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 1.5rem;
}
.chef__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.chef__inner--split {
  max-width: 1020px;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  text-align: left;
}
.chef__portrait img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(87,28,38,0.35);
  padding: 10px;
  background: #fff;
  filter: saturate(0.9);
}
.chef__inner--split .chef__quote cite { align-items: flex-start; }
@media (max-width: 760px) {
  .chef__inner--split { grid-template-columns: 1fr; text-align: center; }
  .chef__portrait { max-width: 300px; margin: 0 auto; }
  .chef__inner--split .chef__quote cite { align-items: center; }
}
.chef .eyebrow { color: var(--bordeaux); }
.chef__quote p {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1.3;
}
.chef__quote cite {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 2.6rem;
  font-style: normal;
}
.chef__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}
.chef__role {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--smoke-dark);
}

/* ---------- reserve ---------- */
.reserve {
  background: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 1.5rem 3rem;
  border-top: 1px solid rgba(194,163,107,0.12);
}
.reserve__inner { max-width: 1060px; margin: 0 auto; }
.reserve__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  margin-bottom: 3.6rem;
}
.reserve__title em { font-style: italic; color: var(--champagne); }
.reserve__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding: 2.8rem 0;
  border-top: 1px solid rgba(239,235,227,0.08);
  border-bottom: 1px solid rgba(239,235,227,0.08);
}
.reserve__grid h3 {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 400;
  margin-bottom: 0.9rem;
}
.reserve__grid p { font-size: 0.92rem; color: rgba(239,235,227,0.66); }
.reserve__grid a { border-bottom: 1px solid var(--hairline); transition: color .3s; }
.reserve__grid a:hover { color: var(--champagne); }
/* ---------- reservation form ---------- */
.rform { margin-top: 3.2rem; max-width: 760px; }
.rform__title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--champagne);
  margin-bottom: 2rem;
}
.rform__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 2.6rem;
}
.rform__field { display: flex; flex-direction: column; gap: 0.5rem; }
.rform__field--wide { grid-column: 1 / -1; }
.rform__field label {
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--smoke);
}
.rform__opt { color: var(--smoke-dark); text-transform: none; letter-spacing: 0.1em; }
.rform__field input,
.rform__field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(194,163,107,0.35);
  color: var(--porcelain);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  padding: 0.5em 0.1em;
  border-radius: 0;
  transition: border-color .3s;
}
.rform__field select { cursor: pointer; }
.rform__field select option { background: var(--ink-soft); color: var(--porcelain); }
.rform__field input:focus-visible,
.rform__field select:focus-visible {
  outline: none;
  border-bottom-color: var(--champagne);
}
.rform__field input:user-invalid { border-bottom-color: var(--bordeaux); }
.rform__field input[type="date"] { color-scheme: dark; }
.rform__error {
  min-height: 1.2em;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #c98a8a;
}
.rform__submit {
  display: inline-block;
  margin-top: 0.6rem;
  background: none;
  border: none;
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--champagne);
  padding: 0 0 0.35rem;
  transition: letter-spacing .5s cubic-bezier(.2,.6,.2,1), color .3s;
}
.rform__submit:hover { letter-spacing: 0.06em; color: var(--porcelain); }
.rform__hint {
  margin-top: 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--smoke-dark);
}
.rform__done { margin-top: 3.2rem; max-width: 640px; }
.rform__done-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--champagne);
}
.rform__done-sub { margin-top: 0.8rem; font-size: 0.95rem; color: rgba(239,235,227,0.7); }
.reserve__fine {
  margin-top: 4.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--smoke-dark);
}

/* ---------- portal return ---------- */
.portal-return {
  position: fixed;
  bottom: 1.4rem;
  left: 1.6rem;
  z-index: 60;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
  border: 1px solid rgba(138,131,119,0.25);
  padding: 0.5em 1em;
  background: rgba(14,13,11,0.5);
  backdrop-filter: blur(6px);
  transition: color .3s, border-color .3s;
}
.portal-return:hover { color: var(--champagne); border-color: var(--hairline); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav { padding: 1.2rem 1.4rem; }
  .nav__links { gap: 1.3rem; }
  .nav__links a:not(.nav__cta) { display: none; }
  .philosophie__cols { grid-template-columns: 1fr; gap: 1.6rem; }
  .reserve__grid { grid-template-columns: 1fr 1fr; }
  .menu__rail { display: none; }
  .signatures__grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  .course { grid-template-columns: 40px 1fr; gap: 1.1rem; }
  .menu__line { left: 19px; }
  .reserve__grid { grid-template-columns: 1fr; }
  .hero__frame { inset: 12px; }
  .rform__grid { grid-template-columns: 1fr; gap: 1.4rem; }
}
@media (hover: none) {
  .course__pairing { opacity: 1; transform: none; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .course { opacity: 1; transform: none; }
  .hero__title span, .hero__eyebrow, .hero__sub, .hero__scroll { opacity: 1; }
}
