/* ============================================
   L'Auberge de Villaz — Design System
   Auberge alpine contemporaine
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  /* Colors — warm alpine palette */
  --ink: #14100a;
  --ink-soft: #1f1810;
  --paper: #f6efe1;
  --paper-warm: #f0e6d2;
  --cream: #e8d5b2;
  --cream-deep: #d9bf94;
  --copper: #b8763a;
  --copper-deep: #8e5424;
  --gold: #d4a05b;
  --gold-soft: #e9c787;
  --green: #1f3a30;
  --green-deep: #142a23;
  --wine: #5e1d29;
  --wine-deep: #421119;
  --burgundy: #7b2436;
  --slate: #2c2a26;
  --muted: #807462;
  --muted-soft: #a89c87;
  --line: rgba(20, 16, 10, 0.12);
  --line-soft: rgba(20, 16, 10, 0.06);
  --line-light: rgba(246, 239, 225, 0.18);

  /* Shadows */
  --shadow-sm: 0 4px 16px rgba(20, 16, 10, 0.08);
  --shadow-md: 0 16px 40px rgba(20, 16, 10, 0.14);
  --shadow-lg: 0 32px 80px rgba(20, 16, 10, 0.22);

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.6, 0, 0.4, 1);
}

/* ===== Reset / base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* ===== Typography ===== */
.display,
h1,
h2,
h3 {
  font-family: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 30;
}

h1 {
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.1;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}

.eyebrow::before,
.kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.lead {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
}

/* ===== Layout ===== */
.container {
  width: min(1280px, calc(100% - 36px));
  margin-inline: auto;
}

.container-narrow {
  width: min(960px, calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(80px, 11vw, 160px);
  position: relative;
}

.section-sm {
  padding-block: clamp(48px, 6vw, 80px);
}

/* Decorative grain texture (subtle, premium) */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.45 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.07;
  mix-blend-mode: multiply;
}

.grain-light::after {
  opacity: 0.13;
  mix-blend-mode: overlay;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: #fff;
  transition:
    padding 280ms var(--ease-out),
    background 280ms var(--ease-out),
    box-shadow 280ms var(--ease-out),
    color 280ms var(--ease-out);
}

.site-header.is-scrolled,
body.menu-open .site-header,
.site-header.theme-light {
  padding-block: 14px;
  color: var(--ink);
  background: rgba(246, 239, 225, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--line-soft), 0 18px 48px rgba(20, 16, 10, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  position: relative;
  z-index: 2;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Fraunces", Georgia, serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-style: italic;
  transition: background 240ms var(--ease-out), color 240ms var(--ease-out);
}

.brand:hover .brand-mark {
  background: currentColor;
}

.brand:hover .brand-mark::before {
  content: "AV";
  color: var(--paper);
  position: absolute;
  font-style: italic;
}

.brand:hover .brand-mark {
  color: transparent;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}

.brand-text small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.85;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 8px 2px;
  opacity: 0.92;
  transition: opacity 200ms var(--ease-out);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 320ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.desktop-nav a.is-active {
  color: var(--gold-soft);
}

.site-header.theme-light .desktop-nav a.is-active,
.site-header.is-scrolled .desktop-nav a.is-active {
  color: var(--copper);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  min-height: 46px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.header-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  position: relative;
  z-index: 2;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 260ms var(--ease-out), opacity 200ms var(--ease-out);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Mobile panel */
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 100px 26px 32px;
  background: var(--paper);
  transform: translateY(-100%);
  transition: transform 460ms var(--ease-out);
  overflow-y: auto;
}

body.menu-open .mobile-panel {
  transform: translateY(0);
}

.mobile-panel nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-panel a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  transition: color 200ms var(--ease-out), transform 240ms var(--ease-out);
}

.mobile-panel a:hover,
.mobile-panel a.is-active {
  color: var(--copper);
  transform: translateX(6px);
}

.mobile-panel a::after {
  content: "→";
  font-family: "Inter", sans-serif;
  font-size: 18px;
  opacity: 0.4;
  transition: opacity 200ms var(--ease-out), transform 240ms var(--ease-out);
}

.mobile-panel a:hover::after,
.mobile-panel a.is-active::after {
  opacity: 1;
  transform: translateX(4px);
}

.mobile-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}

.mobile-cta-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: var(--r-md);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
}

.mobile-cta-row a.primary {
  color: #fff;
  background: var(--wine);
}

.mobile-cta-row a.secondary {
  background: var(--ink);
  color: var(--paper);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 200ms var(--ease-out),
    background 220ms var(--ease-out),
    color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn.primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 16px 36px rgba(94, 29, 41, 0.36);
}

.btn.primary:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(94, 29, 41, 0.46);
}

.btn.gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(212, 160, 91, 0.32);
}

.btn.gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn.dark {
  background: var(--ink);
  color: var(--paper);
}

.btn.dark:hover {
  background: var(--slate);
  transform: translateY(-2px);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn.outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--copper);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 200ms var(--ease-out), gap 220ms var(--ease-out);
}

.text-link::after {
  content: "→";
  transition: transform 220ms var(--ease-out);
}

.text-link:hover {
  gap: 12px;
}

.text-link:hover::after {
  transform: translateX(2px);
}

/* ===== HERO (homepage) ===== */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 12s var(--ease-out) forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1.02);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0.46) 0%, rgba(20, 16, 10, 0.18) 35%, rgba(20, 16, 10, 0.82) 100%),
    linear-gradient(90deg, rgba(20, 16, 10, 0.72), rgba(20, 16, 10, 0.22) 50%, rgba(20, 16, 10, 0.46));
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 96px;
}

.hero .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 28px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  font-variation-settings: "SOFT" 50;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-variation-settings: "SOFT" 90;
}

.hero-lead {
  max-width: 36ch;
  margin-bottom: 36px;
  font-family: "Fraunces", serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-facts dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  gap: 32px 56px;
}

.hero-facts > dl > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-facts dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero-facts dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
  animation: scrollHint 2.2s var(--ease-in-out) infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.4); transform-origin: top center; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top center; opacity: 1; }
}

/* ===== Page banner (subpages) ===== */
.page-banner {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.page-banner.green {
  background:
    linear-gradient(180deg, rgba(20, 42, 35, 0.72) 0%, rgba(20, 16, 10, 0.94) 100%),
    url("assets/dish.webp") center/cover;
}

.page-banner.wine {
  background:
    linear-gradient(180deg, rgba(94, 29, 41, 0.55) 0%, rgba(20, 16, 10, 0.94) 100%),
    url("assets/cocktail-bar.webp") center/cover;
}

.page-banner.copper {
  background:
    linear-gradient(180deg, rgba(142, 84, 36, 0.48) 0%, rgba(20, 16, 10, 0.92) 100%),
    url("assets/pizza-oven.webp") center/cover;
}

.page-banner.alpine {
  background:
    linear-gradient(180deg, rgba(20, 42, 35, 0.5) 0%, rgba(20, 16, 10, 0.92) 100%),
    url("assets/fondue.webp") center/cover;
  background-position: center 40%;
}

.page-banner.gold {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0.45) 0%, rgba(20, 16, 10, 0.94) 100%),
    url("assets/private-dinner.webp") center/cover;
}

.page-banner.infos {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0.55) 0%, rgba(20, 16, 10, 0.92) 100%),
    url("assets/hero.webp?v=bar-3") center/cover;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' /%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.22 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.25;
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
}

.page-banner .eyebrow {
  color: var(--gold-soft);
  margin-bottom: 24px;
}

.page-banner h1 {
  max-width: 16ch;
  font-size: clamp(48px, 7vw, 108px);
  margin-bottom: 24px;
}

.page-banner h1 em {
  font-style: italic;
  color: var(--gold-soft);
  font-variation-settings: "SOFT" 90;
}

.page-banner .lead {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.86);
}

.page-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.page-crumbs a:hover {
  color: var(--gold-soft);
}

.page-crumbs span {
  opacity: 0.5;
}

/* ===== Reveal animations ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal-delay="1"] {
  transition-delay: 80ms;
}

[data-reveal-delay="2"] {
  transition-delay: 160ms;
}

[data-reveal-delay="3"] {
  transition-delay: 240ms;
}

[data-reveal-delay="4"] {
  transition-delay: 320ms;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media img {
    animation: none;
    transform: none;
  }
}

/* ===== Intro section ===== */
.intro {
  text-align: center;
}

.intro .kicker {
  justify-content: center;
  margin-bottom: 28px;
}

.intro h2 {
  max-width: 14ch;
  margin: 0 auto 28px;
}

.intro h2 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "SOFT" 90;
}

.intro .lead {
  margin: 0 auto;
  text-align: center;
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto 0;
  color: var(--copper);
  width: fit-content;
}

.divider::before,
.divider::after {
  content: "";
  width: 64px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.divider svg {
  width: 28px;
  height: 28px;
}

/* ===== Pillars grid (home) ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}

.pillar {
  position: relative;
  grid-column: span 6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  padding: clamp(32px, 4.4vw, 64px);
  overflow: hidden;
  background: var(--paper-warm);
  color: var(--ink);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 320ms var(--ease-out);
}

.pillar:nth-child(2n) {
  border-right: 0;
}

.pillar.dark {
  color: #fff;
}

.pillar.green {
  background:
    linear-gradient(160deg, rgba(20, 42, 35, 0.84), rgba(20, 16, 10, 0.92)),
    url("assets/dish.webp") center/cover;
}

.pillar.wine {
  background:
    linear-gradient(160deg, rgba(94, 29, 41, 0.6), rgba(20, 16, 10, 0.92)),
    url("assets/cocktail-bar.webp") center/cover;
}

.pillar.copper {
  background:
    linear-gradient(160deg, rgba(142, 84, 36, 0.55), rgba(20, 16, 10, 0.92)),
    url("assets/pizza-oven.webp") center/cover;
}

.pillar.alpine {
  background:
    linear-gradient(160deg, rgba(20, 42, 35, 0.55), rgba(20, 16, 10, 0.92)),
    url("assets/fondue.webp") center/cover;
}

.pillar-image {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0.22) 0%, rgba(20, 16, 10, 0.78) 100%),
    url("assets/dish.webp") center/cover;
}

.pillar.with-image .pillar-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pillar > * {
  position: relative;
  z-index: 1;
}

.pillar-number {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}

.pillar.dark .pillar-number {
  color: var(--gold-soft);
}

.pillar-number::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.pillar h3 {
  margin: auto 0 12px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}

.pillar h3 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "SOFT" 90;
}

.pillar.dark h3 em {
  color: var(--gold-soft);
}

.pillar p {
  max-width: 38ch;
  margin-bottom: 26px;
  color: var(--muted);
  line-height: 1.65;
}

.pillar.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.pillar .text-link {
  align-self: flex-start;
}

.pillar.dark .text-link {
  color: var(--gold-soft);
}

/* ===== Moments / image-text alternating ===== */
.moments {
  display: grid;
  gap: 0;
}

.moment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.moment:last-child {
  border-bottom: 0;
}

.moment-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.moment-visual.image {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0) 0%, rgba(20, 16, 10, 0.55) 100%),
    url("assets/dish.webp") center/cover;
}

.moment-visual.image-fondue {
  background:
    linear-gradient(160deg, rgba(20, 42, 35, 0.45), rgba(20, 16, 10, 0.55)),
    url("assets/fondue.webp") center/cover;
}

.moment-visual.image-pizzas {
  background:
    linear-gradient(160deg, rgba(142, 84, 36, 0.28), rgba(20, 16, 10, 0.42)),
    url("assets/pizza-margherita.webp") center/cover;
}

.moment-visual.image-cocktails {
  background:
    linear-gradient(160deg, rgba(94, 29, 41, 0.42), rgba(20, 16, 10, 0.55)),
    url("assets/spritz.webp") center/cover;
}

.moment-visual-label {
  position: absolute;
  left: 28px;
  top: 28px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.moment-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 96px) clamp(28px, 5vw, 72px);
  background: var(--paper);
}

.moment-text h3 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.6vw, 48px);
}

.moment-text h3 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "SOFT" 90;
}

.moment-text p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.moment-text ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.moment-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink);
}

.moment-text ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

.moment.reverse {
  direction: rtl;
}

.moment.reverse > * {
  direction: ltr;
}

/* ===== Menu rows ===== */
.menu-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: start;
}

.menu-wrap > div:first-child {
  position: sticky;
  top: 120px;
}

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.menu-item .menu-cat {
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-item .menu-name {
  font-family: "Fraunces", serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
}

.menu-item .menu-name span {
  display: block;
  margin-top: 6px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}

.menu-item .menu-price {
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--copper);
}

/* ===== Privatisation block ===== */
.privatization {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(20, 42, 35, 0.86) 0%, rgba(20, 16, 10, 0.94) 100%),
    url("assets/private-dinner.webp") center/cover;
}

.privatization .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.privatization::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' /%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.2 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.2;
  pointer-events: none;
}

.privatization h2 em {
  font-style: italic;
  color: var(--gold-soft);
  font-variation-settings: "SOFT" 90;
}

.privatization p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.7;
  max-width: 56ch;
}

.event-card {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.event-card h4 {
  margin: 0 0 28px;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-soft);
}

.event-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.event-card li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 17px;
  font-family: "Fraunces", serif;
  font-weight: 400;
}

.event-card li:last-child {
  border-bottom: 0;
}

.event-card li span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ===== Booking band ===== */
.booking-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 32px clamp(18px, 5vw, 72px);
  background: var(--wine);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.booking-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.6' numOctaves='3' /%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.18 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.booking-band > * {
  position: relative;
}

.booking-band p {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.25;
  font-weight: 400;
}

.booking-band p em {
  font-style: italic;
  color: var(--gold-soft);
}

.booking-band a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: var(--r-pill);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: transform 220ms var(--ease-out), background 220ms var(--ease-out);
}

.booking-band a:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

/* ===== Info cards ===== */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-card {
  position: relative;
  min-height: 360px;
  padding: clamp(32px, 4.4vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper-warm);
  overflow: hidden;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-card.dark {
  background: var(--ink);
  color: var(--paper);
}

.info-card h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 18px;
  line-height: 1.1;
}

.info-card .phone {
  display: inline-block;
  margin: 18px 0 28px;
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--gold-soft);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.info-card .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info-card .socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}

.info-card .socials a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ===== Schedule (hours) ===== */
.schedule {
  display: grid;
  gap: 10px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row strong {
  font-weight: 600;
}

.schedule-row span {
  font-family: "Fraunces", serif;
  color: var(--muted);
}

.schedule-row.today {
  color: var(--copper);
}

.schedule-row.today strong {
  font-weight: 700;
}

.schedule-row.today span {
  color: var(--copper);
  font-weight: 500;
}

/* ===== Quote block ===== */
.quote {
  text-align: center;
  padding: clamp(60px, 8vw, 120px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote::before {
  content: """;
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Fraunces", serif;
  font-size: 320px;
  color: rgba(212, 160, 91, 0.12);
  line-height: 1;
}

.quote blockquote {
  position: relative;
  margin: 0 auto;
  max-width: 24ch;
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 5vw, 64px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.quote blockquote em {
  color: var(--gold-soft);
  font-style: italic;
  font-variation-settings: "SOFT" 90;
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  padding: clamp(60px, 8vw, 100px) clamp(18px, 5vw, 72px) 32px;
  background: #0a0805;
  color: rgba(246, 239, 225, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: 56px;
}

.footer-brand {
  font-family: "Fraunces", serif;
}

.footer-brand strong {
  display: block;
  font-size: 30px;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.footer-brand small {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.footer-brand p {
  margin: 22px 0 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 36ch;
  color: rgba(246, 239, 225, 0.6);
  font-style: italic;
  font-family: "Fraunces", serif;
}

.footer-col h5 {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(246, 239, 225, 0.78);
  transition: color 200ms var(--ease-out);
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 239, 225, 0.1);
  font-size: 12px;
  color: rgba(246, 239, 225, 0.5);
}

.footer-bottom a {
  color: rgba(246, 239, 225, 0.7);
}

.footer-bottom a:hover {
  color: var(--gold-soft);
}

.footer-admin {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 2px 4px;
  vertical-align: -2px;
  color: rgba(246, 239, 225, 0.28) !important;
  transition: color 200ms var(--ease-out);
}

.footer-admin:hover {
  color: var(--gold-soft) !important;
}

.footer-admin svg {
  display: block;
}

/* ===== Mobile sticky CTA ===== */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 35;
  display: none;
  gap: 6px;
  padding: 8px;
  border-radius: var(--r-pill);
  background: rgba(20, 16, 10, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(20, 16, 10, 0.42);
  transform: translateY(120%);
  transition: transform 360ms var(--ease-out);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 6px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.sticky-cta a.primary {
  background: var(--wine);
}

.sticky-cta a.primary:active {
  background: var(--burgundy);
}

.sticky-cta a.outline {
  background: transparent;
  color: var(--gold-soft);
}

.sticky-cta a svg {
  width: 14px;
  height: 14px;
}

/* ===== Form (privatisation) ===== */
.privatize-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--r-md);
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(184, 118, 58, 0.15);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.form-actions p {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ===== Tag chips ===== */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.tag-row .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--paper-warm);
  color: var(--ink);
}

.tag-row.dark .tag {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
}

/* ===== Map (real Google Maps embed) ===== */
.map-card {
  position: relative;
  min-height: 480px;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
  isolation: isolate;
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92);
}

.map-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: clamp(20px, 3vw, 32px) clamp(22px, 3.4vw, 36px);
  background: linear-gradient(to top, rgba(20, 16, 10, 0.96) 0%, rgba(20, 16, 10, 0.86) 60%, rgba(20, 16, 10, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.map-card-info > * {
  pointer-events: auto;
}

.map-card-info h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
}

.map-card-info p {
  margin: 6px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.map-card a.btn.gold {
  flex-shrink: 0;
}

/* ===== Two-col text ===== */
.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.two-col .visual {
  position: relative;
  min-height: 540px;
  border-radius: var(--r-md);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0) 0%, rgba(20, 16, 10, 0.32) 100%),
    url("assets/hero.webp?v=bar-3") center/cover;
}

/* Per-page visuals (each two-col can opt in with a specific class) */
.two-col .visual.restaurant {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0) 0%, rgba(20, 16, 10, 0.42) 100%),
    url("assets/dish.webp") center/cover;
}

.two-col .visual.pizzas {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0) 0%, rgba(20, 16, 10, 0.32) 100%),
    url("assets/pizza-margherita.webp") center/cover;
}

.two-col .visual.cocktails {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0) 0%, rgba(20, 16, 10, 0.55) 100%),
    url("assets/cocktail-bar.webp") center/cover;
}

.two-col .visual.fondue {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0) 0%, rgba(20, 16, 10, 0.42) 100%),
    url("assets/fondue.webp") center/cover;
}

.two-col .visual.private {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0) 0%, rgba(20, 16, 10, 0.55) 100%),
    url("assets/private-dinner.webp") center/cover;
}

/* Legacy tinted visuals — kept as compat, light overlays */
.two-col .visual.gold-tint {
  background:
    linear-gradient(180deg, rgba(212, 160, 91, 0.18) 0%, rgba(20, 16, 10, 0.42) 100%),
    url("assets/hero.webp?v=bar-3") center/cover;
}

.two-col .visual.green-tint {
  background:
    linear-gradient(180deg, rgba(20, 42, 35, 0.45) 0%, rgba(20, 16, 10, 0.55) 100%),
    url("assets/dish.webp") center/cover;
}

.two-col .visual.wine-tint {
  background:
    linear-gradient(180deg, rgba(94, 29, 41, 0.45) 0%, rgba(20, 16, 10, 0.65) 100%),
    url("assets/cocktail-bar.webp") center/cover;
}

.two-col .visual .floating-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(20, 16, 10, 0.78);
  backdrop-filter: blur(12px);
  border-radius: var(--r-pill);
  color: #fff;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 15px;
}

.two-col .visual .floating-badge::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.two-col .body h2 {
  margin-bottom: 22px;
}

.two-col .body h2 em {
  font-style: italic;
  color: var(--copper);
  font-variation-settings: "SOFT" 90;
}

.two-col .body p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

/* ===== Feature cards ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper-warm);
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  margin-bottom: 22px;
}

.feature .icon svg {
  width: 22px;
  height: 22px;
}

.feature h4 {
  margin: 0 0 10px;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== Page hero variant (full image) ===== */
.page-hero-full {
  position: relative;
  height: 70svh;
  min-height: 540px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.page-hero-full .hero-media,
.page-hero-full .hero-overlay {
  z-index: -1;
}

.page-hero-full .hero-overlay {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0.42) 0%, rgba(20, 16, 10, 0.86) 100%);
}

.page-hero-full .page-banner-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 70px;
  padding-top: 140px;
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .pillar {
    grid-column: span 6;
    min-height: 420px;
  }

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

@media (max-width: 920px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

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

  .moment.reverse {
    direction: ltr;
  }

  .moment-visual {
    min-height: 320px;
  }

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

  .pillar {
    grid-column: span 12;
    border-right: 0 !important;
    min-height: 380px;
  }

  .menu-wrap {
    grid-template-columns: 1fr;
  }

  .menu-wrap > div:first-child {
    position: static;
  }

  .privatization .container,
  .two-col {
    grid-template-columns: 1fr;
  }

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

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

  .booking-band {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 78px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 92svh;
  }

  .hero-media img {
    object-position: 56% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(20, 16, 10, 0.4) 0%, rgba(20, 16, 10, 0.94) 100%),
      linear-gradient(90deg, rgba(20, 16, 10, 0.5), rgba(20, 16, 10, 0.32));
  }

  .hero-content {
    min-height: 92svh;
    padding: 112px 0 90px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 80px);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-facts dl {
    gap: 22px 32px;
  }

  .page-banner {
    padding: 140px 0 60px;
  }

  .page-banner h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

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

  .menu-item {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .menu-item .menu-cat {
    grid-column: 1 / -1;
  }

  .menu-item .menu-name {
    grid-column: 1;
  }

  .menu-item .menu-price {
    grid-column: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .quote blockquote {
    font-size: clamp(28px, 8vw, 44px);
  }

  .moment-text {
    padding: 48px 24px;
  }
}

/* Tap targets / focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

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

/* ============================================
   JOURNAL VIVANT — status bar, hero living, marquee, plat du jour
   ============================================ */

/* ===== Status bar (global, fixed at top) ===== */
.status-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #0a0805;
  color: rgba(246, 239, 225, 0.92);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(246, 239, 225, 0.08);
}

.status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(18px, 4vw, 56px);
  height: 32px;
}

.status-state {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
  animation: statusPulse 1.8s var(--ease-in-out) infinite;
}

.status-bar.is-closed .status-dot {
  background: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.18);
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.84); }
}

.status-time {
  color: rgba(246, 239, 225, 0.62);
  font-variant-numeric: tabular-nums;
}

.status-phone {
  color: rgba(246, 239, 225, 0.92);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms var(--ease-out);
}

.status-phone:hover {
  color: var(--gold-soft);
}

.status-phone svg {
  width: 11px;
  height: 11px;
}

/* Push header below status bar */
.site-header {
  top: 32px;
}

@media (max-width: 640px) {
  .status-inner {
    padding-inline: 14px;
    gap: 10px;
  }
  .status-phone {
    display: none;
  }
  .status-state {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }
}

/* ===== Hero living (homepage time-aware) ===== */
.hero.hero-living {
  min-height: 100svh;
}

.hero-living .hero-overlay {
  background:
    linear-gradient(180deg, rgba(20, 16, 10, 0.78) 0%, rgba(20, 16, 10, 0.42) 25%, rgba(20, 16, 10, 0.88) 100%),
    linear-gradient(90deg, rgba(20, 16, 10, 0.74) 0%, rgba(20, 16, 10, 0.22) 50%, rgba(20, 16, 10, 0.42));
}

.hero-living .hero-content {
  padding: calc(132px + 32px) 0 110px;
  min-height: 100svh;
}

.hero-living .eyebrow {
  margin-bottom: 28px;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
}

.hero-living .eyebrow [data-day]::after {
  content: " · ";
  opacity: 0.5;
}

.hero-living h1 {
  font-size: clamp(72px, 13vw, 180px);
  line-height: 0.88;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero-living h1 [data-greeting]::after {
  content: ".";
  color: var(--gold-soft);
}

.hero-living .hero-lead {
  max-width: 22ch;
  margin-bottom: 36px;
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.32;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.94);
}

.hero-living .hero-lead em {
  color: var(--gold-soft);
  font-style: italic;
  font-variation-settings: "SOFT" 90;
}

.hero-living .hero-actions {
  margin-bottom: 36px;
}

/* Featured dish card (plat du jour) */
.featured-dish {
  display: block;
  max-width: 460px;
  margin-bottom: 0;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-md);
  background: rgba(20, 16, 10, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.featured-dish::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.featured-dish .day {
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.featured-dish .dish {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}

.featured-dish .price {
  margin: 10px 0 0;
  font-size: 14px;
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--gold-soft);
}

/* Hero marquee (bottom of hero) */
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 16, 10, 0.64);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  pointer-events: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  animation: marquee 34s linear infinite;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 239, 225, 0.86);
}

.marquee-track span {
  flex-shrink: 0;
  white-space: nowrap;
}

.marquee-track .dot {
  color: var(--gold-soft);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 18px)); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .hero-living h1 {
    font-size: clamp(62px, 18vw, 110px);
  }
  .hero-living .hero-content {
    padding-top: calc(116px + 32px);
    padding-bottom: 92px;
  }
  .featured-dish {
    padding: 18px 22px;
  }
}
