/* =========================================================
   BRASSERIE VELOURS · Styles
   Palette: ink #0a0a0a + bone #f5f0e6 + amber #d49653
   Fonts:   Albert Sans (display) + Manrope (body) + JetBrains Mono
   Refs:    11elevenbar.com (mood) + amritpalace.com (modular system)
   ========================================================= */

:root {
  /* ---- Palette ---- */
  --ink: #0a0a0a;
  --ink-warm: #161210;
  --ink-2: #111110;
  --bone: #f5f0e6;
  --bone-dim: rgba(245, 240, 230, 0.72);
  --bone-soft: rgba(245, 240, 230, 0.52);
  --bone-faint: rgba(245, 240, 230, 0.42);
  --amber: #d49653;
  --amber-deep: #b87a3c;
  --amber-glow: rgba(212, 150, 83, 0.18);
  --amber-soft: rgba(212, 150, 83, 0.10);
  --cream-tan: #d8cbb8;
  --warm-dark: #2c2c2c;
  --line: rgba(245, 240, 230, 0.12);
  --line-strong: rgba(245, 240, 230, 0.28);

  /* ---- Type ---- */
  --f-display: 'Albert Sans', 'Optima', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-body: 'Manrope', 'Satoshi', system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* ---- Layout ---- */
  --nav-h: 76px;
  --container: 1280px;
  --container-narrow: 1080px;
  --gutter: clamp(20px, 4.2vw, 64px);

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET ==================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--ink);
}
body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--bone);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color 220ms var(--ease), opacity 220ms var(--ease); }
ul, ol { list-style: none; margin: 0; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--amber); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==================== GRAIN (subtle, max 0.03) ==================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.86  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ==================== TYPOGRAPHY UTILITIES ==================== */
.display {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(2.3rem, 5.2vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--bone);
  margin: 0 0 24px;
}
.display span { display: block; }
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
  display: block;
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 22px;
  font-weight: 500;
}
.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.65;
  color: var(--bone-dim);
  max-width: 56ch;
  margin: 0 0 32px;
  font-weight: 400;
}
.section-head {
  max-width: 720px;
  margin: 0 0 64px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head--center .eyebrow,
.section-head--center .display { margin-left: auto; margin-right: auto; }
.section-head__sub {
  font-size: 1.05rem;
  color: var(--bone-dim);
  line-height: 1.65;
  margin: 0;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 260ms var(--ease), background 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
  will-change: transform;
}
.btn--gold {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--amber), 0 10px 28px -16px var(--amber-glow);
}
.btn--gold:hover {
  background: var(--amber-deep);
  box-shadow: 0 0 0 1px var(--amber-deep), 0 14px 36px -14px rgba(212, 150, 83, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn--block { width: 100%; }

/* ==================== NAVIGATION ==================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0));
  backdrop-filter: saturate(120%);
  transition: background 320ms var(--ease), border-color 320ms var(--ease), box-shadow 320ms var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-family: var(--f-display);
  flex-shrink: 0;
}
.nav__brand-line {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--bone-dim);
  font-family: var(--f-mono);
}
.nav__brand-mark {
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--bone);
  margin-top: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
}
.nav__links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 320ms var(--ease), left 320ms var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}
.lang__btn {
  color: var(--bone-faint);
  padding: 4px 2px;
  text-transform: uppercase;
  transition: color 200ms var(--ease);
}
.lang__btn:hover { color: var(--bone-dim); }
.lang__btn.is-active { color: var(--amber); }
.lang__sep { color: var(--bone-faint); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--amber);
  border-radius: 999px;
  color: var(--bone);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 260ms var(--ease), color 260ms var(--ease), transform 260ms var(--ease);
  will-change: transform;
}
.nav__cta:hover {
  background: var(--amber);
  color: var(--ink);
}

/* ---- Burger ---- */
.burger {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}
.burger span {
  position: absolute;
  left: 4px;
  width: 24px;
  height: 1.5px;
  background: var(--bone);
  transition: transform 320ms var(--ease), opacity 200ms var(--ease);
}
.burger span:nth-child(1) { top: 11px; }
.burger span:nth-child(2) { top: 16px; }
.burger span:nth-child(3) { top: 21px; }
.burger.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  padding: 40px var(--gutter);
  gap: 22px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 320ms var(--ease), opacity 240ms var(--ease);
  z-index: 99;
}
.nav-mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile a {
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 200;
  color: var(--bone);
  padding: 4px 0;
}
.nav-mobile__cta {
  display: inline-flex;
  align-self: flex-start;
  padding: 14px 32px;
  border: 1px solid var(--amber);
  border-radius: 999px;
  font-family: var(--f-body) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  margin-top: 16px;
}
.nav-mobile__lang {
  display: flex;
  gap: 18px;
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.nav-mobile__lang .lang__btn {
  font-size: 13px;
  letter-spacing: 0.2em;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 100px;
  overflow: hidden;
  isolation: isolate;
}
html.shot-mode .hero { min-height: 720px !important; max-height: 900px !important; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.7) 60%, rgba(10, 10, 10, 0.92) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.2) 35%, rgba(10, 10, 10, 0.85) 100%);
}

/* Hero corner eyebrows (editorial anchors) */
.hero__corner {
  position: absolute;
  top: calc(var(--nav-h) + 24px);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone-faint);
  z-index: 2;
}
.hero__corner--tl { left: var(--gutter); }
.hero__corner--tr { right: var(--gutter); }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 940px;
}
.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 32px;
  font-weight: 500;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 200;
  margin: 0 0 28px;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.hero__title-l1 {
  display: block;
  font-size: clamp(2.4rem, 7.4vw, 5.8rem);
  font-weight: 200;
}
.hero__title-l2 {
  display: block;
  font-size: clamp(3.6rem, 11vw, 9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--amber);
  letter-spacing: -0.024em;
  margin-top: 2px;
}
.hero__tagline {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  color: var(--bone-dim);
  margin: 0 auto 44px;
  max-width: 38ch;
  line-height: 1.4;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bone-faint);
  border: 0;
  transition: background 320ms var(--ease), transform 320ms var(--ease);
}
.hero__dot.is-active {
  background: var(--amber);
  transform: scale(1.4);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone-faint);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, transparent, var(--amber), transparent);
  background-size: 100% 200%;
  background-position: 0 0;
  animation: scrollLine 2.4s infinite ease-in-out;
}
@keyframes scrollLine {
  0% { background-position: 0 -200%; }
  100% { background-position: 0 200%; }
}

/* ==================== MARQUEE ==================== */
.marquee {
  border-block: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  background: var(--ink-warm);
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.marquee__dot { color: var(--amber); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== GALLERY (strip 6) ==================== */
.gallery {
  padding: 60px var(--gutter);
}
.gallery__track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: var(--container);
  margin: 0 auto;
}
.gallery__cell {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
  filter: grayscale(0.05) brightness(0.92);
}
.gallery__cell:hover img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(1);
}
.gallery__cell figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85), transparent);
  text-align: center;
}

/* ==================== HISTOIRE ==================== */
.histoire {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
}
.histoire__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.histoire__text { padding-right: 0; }
.people {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}
.person {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.person:last-child { border-bottom: 1px solid var(--line); }
.person__mono {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--amber);
  display: grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 0.08em;
  font-weight: 600;
}
.person__role {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin: 0 0 6px;
}
.person__name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--bone);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.person__bio {
  font-size: 0.95rem;
  color: var(--bone-dim);
  margin: 0;
  line-height: 1.6;
}
.creed {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 32px;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--bone-dim);
}
.creed li::before {
  content: '— ';
  color: var(--amber);
}

.histoire__visual {
  position: relative;
}
.histoire__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
}
.histoire__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.05);
}
.histoire__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.55) 100%);
  pointer-events: none;
}

/* Static stamp badge (replaces rotating seal — prohibido per brief 3.6) */
.stamp {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--amber);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.6), inset 0 0 0 4px rgba(212, 150, 83, 0.08);
}
.stamp::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 150, 83, 0.45);
}
.stamp__line {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0;
}
.stamp__year {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--bone);
  margin: 4px 0 2px;
  line-height: 1;
}
.stamp__city {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin: 0;
}

/* ==================== CARTE ==================== */
.carte {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--ink-warm);
}
.carte__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.carte__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.carte__col {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.carte__col--feature {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-warm) 100%);
}
.carte__col-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  gap: 16px;
}
.carte__col-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 1.35rem;
  color: var(--bone);
  margin: 0;
  letter-spacing: -0.005em;
}
.carte__col-meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
}
.carte__feature-photo {
  margin: -8px -8px 24px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.carte__feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
  filter: brightness(0.92);
}
.carte__col--feature:hover .carte__feature-photo img { transform: scale(1.04); }

.dishes {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}
.dish {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line);
}
.dish:last-child { border-bottom: 0; padding-bottom: 0; }
.dish__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.dish__name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 1.08rem;
  color: var(--bone);
  margin: 0;
  letter-spacing: -0.002em;
  flex-shrink: 0;
}
.dish--lg .dish__name { font-size: 1.2rem; }
.dot-line {
  flex: 1;
  height: 1px;
  background-image: radial-gradient(circle, var(--bone-faint) 1px, transparent 1.4px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: center;
  align-self: center;
  margin-top: 8px;
}
.dish__price {
  font-family: var(--f-mono);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--amber);
  flex-shrink: 0;
}
.dish__desc {
  font-size: 0.88rem;
  color: var(--bone-dim);
  margin: 0;
  line-height: 1.5;
  font-style: italic;
  font-family: var(--f-display);
  font-weight: 300;
}
.dish--note {
  background: var(--amber-soft);
  border: 1px solid rgba(212, 150, 83, 0.25);
  border-radius: 4px;
  padding: 14px 16px;
  margin-top: 12px;
}
.dish__note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--bone);
  margin: 0;
  line-height: 1.6;
}

/* ==================== CABINET (11eleven-style cocktail list) ==================== */
.cabinet {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
}
.cabinet__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.cocktails {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.cocktail {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: baseline;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 360ms var(--ease);
}
.cocktail:last-child { border-bottom: 1px solid var(--line); }
.cocktail__head {
  display: contents;
}
.cocktail__no {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber);
  font-weight: 500;
}
.cocktail__name {
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--bone);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.015em;
  transition: color 280ms var(--ease), transform 360ms var(--ease);
  grid-column: 2;
  grid-row: 1 / span 2;
}
.cocktail__price {
  font-family: var(--f-mono);
  font-size: 0.95rem;
  color: var(--amber);
  font-weight: 500;
  grid-column: 3;
  grid-row: 1;
}
.cocktail__ing {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.96rem;
  color: var(--bone-dim);
  margin: 8px 0 0;
  line-height: 1.5;
  grid-column: 2 / span 2;
  grid-row: 2;
  max-width: 64ch;
}
.cocktail:hover .cocktail__name {
  color: var(--amber);
  transform: translateX(6px);
}
.cocktail--wild .cocktail__name {
  font-style: italic;
}

/* ==================== SOMMELIER ==================== */
.sommelier {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--ink-warm);
}
.sommelier__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.sommelier__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
}
.sommelier__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.04);
}
.wines {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}
.wine {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.wine:last-child { border-bottom: 1px solid var(--line); }
.wine__region {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 6px;
}
.wine__name {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--bone);
  margin: 0 0 4px;
  padding-right: 100px;
  letter-spacing: -0.005em;
}
.wine__desc {
  font-size: 0.9rem;
  color: var(--bone-dim);
  margin: 0;
  padding-right: 100px;
  font-style: italic;
  font-family: var(--f-display);
  font-weight: 300;
}
.wine__price {
  position: absolute;
  top: 22px;
  right: 0;
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 500;
}

/* ==================== PRESS / TESTIMONIALS ==================== */
.press {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
}
.press__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.press__rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(212, 150, 83, 0.04);
}
.press__stars {
  color: var(--amber);
  letter-spacing: 0.1em;
  font-size: 0.95rem;
}
.press__score {
  font-family: var(--f-mono);
  font-size: 0.92rem;
  color: var(--bone);
  font-weight: 600;
}
.press__count {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.press__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 56px;
}
.press__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink-warm);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.press__badge-star {
  color: var(--amber);
  font-size: 11px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--ink-warm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review__stars {
  color: var(--amber);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.review__quote {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--bone);
  margin: 0;
  letter-spacing: -0.002em;
}
.review__quote::before { content: '“ '; color: var(--amber); }
.review__quote::after { content: ' ”'; color: var(--amber); }
.review__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.review__name {
  font-family: var(--f-body);
  font-size: 0.92rem;
  color: var(--bone);
  font-weight: 500;
}
.review__src {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

/* ==================== PRIVATISATIONS ==================== */
.prive {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--ink-warm);
}
.prive__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.prive__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0 40px;
}
.prive__fact-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
}
.prive__fact-label {
  display: block;
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.prive__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
}
.prive__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.94);
}
.prive__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 16px 20px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--amber);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.prive__badge-num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--amber);
}
.prive__badge-text {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ==================== RESERVE ==================== */
.reserve {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
}
.reserve__inner {
  max-width: 880px;
  margin: 0 auto;
}
.reserve__form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.field {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.field input,
.field select,
.field textarea {
  background: var(--ink-warm);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: 0.96rem;
  color: var(--bone);
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.reserve__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.reserve__submit .btn { max-width: 360px; }
.reserve__note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin: 0;
  text-align: center;
}

/* ==================== VISITE ==================== */
.visite {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--ink-warm);
}
.visite__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.visite__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0 40px;
}
.visite__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.visite__row:last-child { border-bottom: 1px solid var(--line); }
.visite__row dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
}
.visite__row dd {
  margin: 0;
  color: var(--bone-dim);
  font-size: 0.96rem;
  line-height: 1.6;
}
.visite__row dd a {
  color: var(--bone);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.visite__row dd a:hover {
  color: var(--amber);
  border-color: var(--amber);
}
.visite__closed { color: var(--bone-faint); font-size: 0.85rem; }

.visite__map {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
}
.visite__map .map { width: 100%; height: 100%; }

/* ==================== CLOSING ==================== */
.closing {
  padding: clamp(80px, 14vw, 160px) var(--gutter);
  border-top: 1px solid var(--line);
  text-align: center;
}
.closing__inner { max-width: var(--container); margin: 0 auto; }
.closing__line {
  font-family: var(--f-display);
  font-weight: 200;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--amber);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* ==================== FOOTER (Amrit: 4 cols + newsletter) ==================== */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter) 0;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__logo {
  font-family: var(--f-display);
  margin: 0;
  line-height: 0.92;
  font-weight: 200;
}
.footer__logo span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--f-mono);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 6px;
}
.footer__logo em {
  display: block;
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.footer__tag {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--bone-dim);
  margin: 0;
  line-height: 1.55;
  max-width: 32ch;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--bone-dim);
}
.footer__col p { margin: 0; line-height: 1.6; }
.footer__col a {
  color: var(--bone-dim);
  transition: color 200ms var(--ease);
}
.footer__col a:hover { color: var(--amber); }
.footer__head {
  font-family: var(--f-mono) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase;
  color: var(--amber) !important;
  margin: 0 0 10px !important;
}

.footer__newsletter {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__newsletter-form {
  display: flex;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  background: var(--ink-warm);
}
.footer__newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 10px 0;
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--bone);
}
.footer__newsletter-form input::placeholder { color: var(--bone-faint); }
.footer__newsletter-form button {
  padding: 8px 18px;
  background: var(--amber);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 200ms var(--ease);
}
.footer__newsletter-form button:hover { background: var(--amber-deep); }
.footer__newsletter-note {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin: 0;
}

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy,
.footer__by {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin: 0;
}
.footer__by a {
  color: var(--amber);
  margin-left: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}
.footer__by a:hover { border-color: var(--amber); }

/* ==================== STICKY RESERVE PILL ==================== */
.sticky-reserve {
  position: fixed;
  z-index: 95;
  right: var(--gutter);
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--amber);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 16px 38px -16px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--amber-deep);
  opacity: 0;
  transform: translateY(20px) scale(0.94);
  pointer-events: none;
  transition: opacity 320ms var(--ease), transform 320ms var(--ease), background 200ms var(--ease);
}
.sticky-reserve.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.sticky-reserve:hover { background: var(--amber-deep); }
.sticky-reserve__arrow {
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 240ms var(--ease);
}
.sticky-reserve:hover .sticky-reserve__arrow { transform: translateX(4px); }

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms var(--ease),
    transform 600ms var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  :root { --nav-h: 68px; }
  .nav__links { display: none; }
  .burger { display: block; }

  .histoire__inner,
  .sommelier__inner,
  .prive__inner,
  .visite__inner { grid-template-columns: 1fr; }

  .sommelier__photo,
  .histoire__visual { max-width: 540px; margin: 0 auto; width: 100%; }

  .carte__grid { grid-template-columns: 1fr; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__brand,
  .footer__newsletter { grid-column: 1 / -1; }

  .reviews { grid-template-columns: 1fr; }

  .gallery__track { grid-template-columns: repeat(3, 1fr); }
  .gallery__cell:nth-child(n+4) { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  :root { --nav-h: 64px; }

  .hero { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 120px; }
  .hero__corner { font-size: 9px; letter-spacing: 0.22em; }
  .hero__dots { bottom: 100px; }
  .hero__scroll { display: none; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }

  .carte__col { padding: 28px 22px; }
  .cocktail { grid-template-columns: 50px 1fr auto; gap: 14px; padding: 22px 0; }
  .cocktail__name { font-size: 1.4rem; }

  .reserve__form { grid-template-columns: 1fr; }
  .field { grid-column: 1 / -1; }

  .prive__facts { grid-template-columns: 1fr; gap: 14px; text-align: left; }
  .prive__fact-num { font-size: 2rem; }

  .visite__row { grid-template-columns: 1fr; gap: 4px; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .stamp {
    width: 110px;
    height: 110px;
    right: -16px;
    bottom: -16px;
  }
  .stamp__year { font-size: 1.3rem; }

  .sticky-reserve {
    right: 16px;
    left: 16px;
    bottom: 16px;
    justify-content: center;
  }

  .review { padding: 24px 20px; }

  .marquee__track { font-size: 11px; gap: 22px; }
}

/* ==================== 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;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__slide { transition: none; }
  .marquee__track { animation: none; }
}

/* ==================== PRINT ==================== */
@media print {
  .nav, .sticky-reserve, .grain, .hero__dots, .hero__scroll, .marquee { display: none; }
  body { background: white; color: black; }
}
