/* ==========================================================================
   Le Resto de la Plage — Bord de mer chic
   ========================================================================== */

:root {
  --bg: #FAF6F0;
  --bg-alt: #F2EBE0;
  --white: #FFFFFF;
  --ink: #0F2A3F;
  --ink-soft: #2B4658;
  --muted: #6B7B85;
  --sand: #C9A876;
  --sand-light: #E8DFD3;
  --line: #E2D7C6;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1280px;
  --container-narrow: 880px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s var(--ease); }
a:hover { opacity: .65; }

/* ============================ Typography ============================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.15; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.3; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.25rem;
  display: inline-block;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================ Layout ============================ */

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; }

section { padding: clamp(4rem, 9vw, 8rem) 0; }

.divider {
  width: 60px; height: 1px;
  background: var(--sand);
  margin: 1.5rem 0;
}

.divider-center { margin: 1.5rem auto; }

/* ============================ Nav ============================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s var(--ease);
}

.nav.scrolled {
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 2rem;
  box-shadow: 0 1px 0 var(--line);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color .35s var(--ease);
}
.nav.scrolled .nav-brand { color: var(--ink); }

.nav-brand-logo {
  display: flex; align-items: center;
  height: 48px;
}
.logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter .35s var(--ease);
}
.nav.scrolled .logo-img { filter: none; }

.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  transition: color .35s var(--ease);
}
.nav.scrolled .nav-links a { color: var(--ink); }

.nav-cta {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border: 1px solid var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  transition: all .35s var(--ease);
}
.nav.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
.nav-cta:hover {
  background: var(--white);
  color: var(--ink) !important;
  opacity: 1;
}
.nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--white) !important; }

/* ===== Language switcher ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 1rem;
  position: relative;
  z-index: 102;
}
@media (max-width: 560px) {
  .lang-switcher { gap: 4px; margin-right: 0.5rem; }
  .lang-btn { padding: 3px; }
  .lang-btn svg { width: 18px; height: 18px; }
}
.lang-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0.45;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang-btn:hover { opacity: 1; transform: translateY(-1px); }
.lang-btn.active { opacity: 1; }
.lang-btn.active svg { box-shadow: 0 0 0 2px var(--sand); border-radius: 50%; }
.lang-btn svg {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35);
  transition: box-shadow .25s var(--ease);
}
.nav.scrolled .lang-btn svg { box-shadow: 0 0 0 1px rgba(15,42,63,0.18); }
.nav.scrolled .lang-btn.active svg { box-shadow: 0 0 0 2px var(--sand); }

.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 28px; height: 1px;
  background: var(--white);
  margin: 7px 0;
  transition: all .3s var(--ease);
}
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* ============================ Hero ============================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 42, 63, 0.45) 0%, rgba(15, 42, 63, 0.55) 100%);
  z-index: -1;
}

.hero-content { max-width: 800px; padding: 0 2rem; }

.hero h1 {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1rem;
}

.hero .eyebrow { color: var(--sand-light); }

.hero-logo {
  width: 110px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 1.5rem 0 0.75rem;
  opacity: 0.95;
}

.hero-address {
  font-family: var(--sans);
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 1.1rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  cursor: pointer;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  transition: all .35s var(--ease);
}
.btn:hover { background: var(--white); color: var(--ink); opacity: 1; }

.btn-primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn-primary:hover { background: transparent; color: var(--white); }

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover { background: transparent; color: var(--ink); }

.hero-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.hero-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: all .3s var(--ease);
}
.hero-social a:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  opacity: 1;
  transform: translateY(-2px);
}
.hero-social svg { width: 17px; height: 17px; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: var(--white);
  margin: 1rem auto 0;
  animation: scrollLine 2.5s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================ Intro ============================ */

.intro { text-align: center; }
.intro .container-narrow > * + * { margin-top: 1.5rem; }
.intro p { font-size: 1.05rem; color: var(--ink-soft); }

/* ============================ Universes (2 spaces) ============================ */

.universes {
  background: var(--white);
}
.universes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 4rem;
}

.universe {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: var(--white);
}
.universe-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.universe-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.universe:hover .universe-bg img { transform: scale(1.04); }
.universe::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 42, 63, 0.1) 40%, rgba(15, 42, 63, 0.85) 100%);
  z-index: 1;
}

.universe-content {
  position: relative; z-index: 2;
  padding: 3rem;
  max-width: 100%;
}
.universe-content h3 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 0.5rem;
}
.universe-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 400px;
}
.universe-link {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 0.4rem;
  display: inline-block;
}

/* ============================ Signatures (dishes) ============================ */

.signatures { text-align: center; }
.signatures-header { margin-bottom: 4rem; }

.signatures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dish-card { text-align: center; }
.dish-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--bg-alt);
}
.dish-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.dish-card:hover .dish-card-img img { transform: scale(1.05); }
.dish-card h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 0.4rem;
}
.dish-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ============================ Quote / Philosophy ============================ */

.philosophy {
  position: relative;
  text-align: center;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.philosophy-bg {
  position: absolute; inset: 0;
  opacity: 0.25;
}
.philosophy-bg img { width: 100%; height: 100%; object-fit: cover; }
.philosophy .container-narrow { position: relative; z-index: 2; }
.philosophy h2 { color: var(--white); font-style: italic; }
.philosophy p { color: rgba(255,255,255,0.85); margin-top: 1.5rem; }

/* ============================ Infos pratiques ============================ */

.infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
  margin-top: 4rem;
}
.info-block h4 {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.info-block p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.info-block .label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
  display: block;
}

/* ============================ Page header (interior pages) ============================ */

.page-header {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  isolation: isolate;
}
.page-header-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.page-header-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15, 42, 63, 0.55);
  z-index: 1;
}
.page-header > div:not(.page-header-bg) {
  position: relative;
  z-index: 2;
}

/* Hero-like full screen header (rooftop, events) */
.page-header-hero {
  min-height: 92vh;
  padding: 6rem 2rem 3rem;
  align-items: flex-end;
}
.page-header-hero::before {
  background: linear-gradient(180deg, rgba(15, 42, 63, 0.35) 0%, rgba(15, 42, 63, 0.1) 35%, rgba(15, 42, 63, 0.1) 55%, rgba(15, 42, 63, 0.85) 100%);
}
.page-header-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
}
.page-header-hero > div:not(.page-header-bg) { max-width: 760px; }

/* Triptych header (3 photos) */
.page-header-triptych .page-header-bg {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.page-header-triptych .page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .page-header-triptych .page-header-bg {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}
.page-header h1 {
  color: var(--white);
  font-style: italic;
  font-weight: 300;
}
.page-header .eyebrow { color: var(--sand-light); }
.page-header p {
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

/* ============================ Menu (Carte) ============================ */

.menu-tabs {
  display: flex; justify-content: center;
  gap: 0;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--line);
}
.menu-tab {
  background: none; border: none;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .3s var(--ease);
}
.menu-tab.active, .menu-tab:hover {
  color: var(--ink);
  border-bottom-color: var(--sand);
}

.menu-section { margin-bottom: 5rem; }
.menu-section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.menu-section-title h2 {
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.menu-section-title .eyebrow { display: block; margin-bottom: 0.5rem; }

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-item {
  border-bottom: 1px dotted var(--line);
  padding-bottom: 1.2rem;
}
.menu-item.has-photo {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem 1.5rem 1.25rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  position: relative;
  transition: all .5s var(--ease);
}
.menu-item.has-photo::before {
  content: '';
  position: absolute;
  left: 0; top: 1.25rem; bottom: 1.25rem;
  width: 2px;
  background: var(--sand);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.menu-item.has-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -22px rgba(15, 42, 63, 0.22);
  border-color: transparent;
}
.menu-item.has-photo:hover::before { opacity: 1; }
.menu-item-photo {
  width: 180px;
  height: 180px;
  overflow: hidden;
  background: var(--bg-alt);
  border-radius: 2px;
}
.menu-item-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.menu-item.has-photo:hover .menu-item-photo img { transform: scale(1.08); }
.menu-item-content { min-width: 0; }
.menu-item.has-photo .menu-item-name {
  font-size: 1.55rem;
  display: block;
  margin-bottom: 0.4rem;
}
.menu-item.has-photo .menu-item-price {
  display: inline-block;
  background: var(--ink);
  color: var(--sand);
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  border-radius: 2px;
}
.menu-item.has-photo .menu-item-head {
  display: block;
  margin-bottom: 0.75rem;
}
.menu-item.has-photo .menu-item-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.menu-item-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.menu-item-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
}
.menu-item-price {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sand);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.menu-formules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
  max-width: 1100px;
}
.formule {
  background: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
}
.formule:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(15,42,63,0.15); }
.formule-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
.formule-price {
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  margin-bottom: 0.4rem;
}
.formule-desc {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2rem;
}
.formule-content {
  text-align: left;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.formule-content strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink);
  margin: 1rem 0 0.3rem;
}

/* ============================ Forms ============================ */

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--sand);
}
.form-group textarea { min-height: 120px; resize: vertical; padding-top: 0.5rem; }

.form-actions { text-align: center; margin-top: 2rem; }

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin-top: 1.5rem;
}

/* ============================ Events ============================ */

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.event-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  color: var(--white);
  display: flex; align-items: flex-end;
}
.event-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.event-card:hover img { transform: scale(1.05); }
.event-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(15,42,63,0.85) 100%);
}
.event-card-content {
  position: relative; z-index: 2;
  padding: 2rem;
}
.event-card h3 {
  color: var(--white);
  font-style: italic;
  margin-bottom: 0.3rem;
}
.event-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ============================ Gallery ============================ */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }

/* ============================ Contact page ============================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}
.contact-info > * + * { margin-top: 2rem; }
.contact-info h4 {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 0.3rem;
}
.contact-info p { color: var(--ink-soft); line-height: 1.7; }
.contact-info .label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 0.4rem;
}

.map-wrap {
  margin-top: 4rem;
  aspect-ratio: 16/6;
  background: var(--bg-alt);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3) contrast(0.95); }

/* ============================ Footer ============================ */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1.5rem;
}
.footer-brand {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer p, .footer a { color: rgba(255,255,255,0.7); line-height: 1.9; }
.footer a:hover { color: var(--white); opacity: 1; }
.footer ul { list-style: none; }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--white); border-color: var(--white); opacity: 1; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ============================ Animations ============================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================ Section heads (réutilisable) ============================ */

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head .eyebrow { display: block; }

/* ============================ Quick facts ============================ */

.quickfacts {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.quickfacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.quickfacts-grid--centered {
  grid-template-columns: repeat(2, minmax(220px, 300px));
  justify-content: center;
}
.quickfact {
  text-align: center;
  padding: 0 1rem;
}
.quickfact-icon {
  width: 44px; height: 44px;
  margin: 0 auto 1.25rem;
  color: var(--sand);
}
.quickfact-icon svg { width: 100%; height: 100%; }
.quickfact h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.quickfact p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================ Universe list ============================ */

.universe-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.universe-list li {
  font-size: 0.9rem;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  opacity: 0.95;
}
.universe-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85rem;
  width: 6px; height: 1px;
  background: var(--sand);
}

/* ============================ Dish cards (with body) ============================ */

.dish-card-body { padding: 0 0.25rem; }
.dish-card-body h4 {
  margin-bottom: 0.5rem;
  font-style: italic;
}
.dish-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
  min-height: 2.7em;
}
.dish-price {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: 0.05em;
}
.signatures-grid {
  grid-template-columns: repeat(4, 1fr);
}
.signatures-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ============================ Menu preview (accueil) ============================ */

.menu-preview { background: var(--bg-alt); }
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-preview-col {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
}
.menu-preview-cat {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.menu-preview-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dotted var(--line);
}
.menu-preview-item:last-child { border-bottom: none; }
.menu-preview-item span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.menu-preview-item em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.88rem;
  color: var(--sand);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================ Dishes marquee (carrousel) ============================ */

.dishes-marquee-section {
  background: var(--bg-alt);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -2rem;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee-scroll 90s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}
.marquee.in .marquee-track { animation-play-state: running; }
.marquee:hover .marquee-track { animation-play-state: paused; }

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

.dish-tile {
  position: relative;
  flex: 0 0 auto;
  width: 320px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  display: block;
  background: var(--ink);
  transition: transform .5s var(--ease);
}
.dish-tile:hover {
  transform: translateY(-6px);
  opacity: 1;
}
.dish-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter .5s var(--ease);
  filter: saturate(0.95);
}
.dish-tile:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}
.dish-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,42,63,0.92) 100%);
  z-index: 1;
}
.dish-tile-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.5rem 1.5rem 1.75rem;
  color: var(--white);
  transform: translateY(8px);
  transition: transform .5s var(--ease);
}
.dish-tile:hover .dish-tile-overlay { transform: translateY(0); }
.dish-tile-name {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.dish-tile-price {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255,255,255,0.25);
}

/* ============================ Menus highlight (accueil) ============================ */

.menus-highlight { background: var(--white); }
.menus-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.menu-hl-card {
  background: var(--bg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .4s var(--ease);
}
.menu-hl-card:hover { transform: translateY(-4px); }
.menu-hl-card-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.menu-hl-card-dark ul li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.15); }
.menu-hl-price {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-style: italic;
  margin-bottom: 0.5rem;
  color: inherit;
}
.menu-hl-card-dark .menu-hl-price { color: var(--white); }
.menu-hl-label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 2rem;
}
.menu-hl-card ul {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
}
.menu-hl-card ul li {
  padding: 0.7rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px dotted var(--line);
}
.menu-hl-card ul li:last-child { border-bottom: none; }

/* ============================ Highlight block (plateau) ============================ */

.highlight-block {
  background: var(--bg-alt);
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.highlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.highlight-card-img {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.highlight-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.highlight-card-body {
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.highlight-card-body h2 {
  font-style: italic;
  margin: 0.5rem 0 1rem;
}
.highlight-desc {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.highlight-prices {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}
.hp-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
}
.hp-line span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
}
.hp-line em {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--sand);
}
.highlight-reservation {
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border-left: 3px solid var(--sand);
}
.highlight-reservation strong { color: var(--sand); }
.highlight-note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* ============================ Extras band (carte) ============================ */

.extras-band {
  background: var(--ink);
  color: var(--white);
  padding: 2.5rem 0;
  text-align: center;
}
.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.extras-col .eyebrow {
  color: var(--sand);
  margin-bottom: 0.6rem;
}
.extras-col p {
  color: rgba(255,255,255,0.85);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}

/* ============================ Info socials (accueil contact block) ============================ */

.info-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
.info-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.info-social:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  opacity: 1;
}
.info-social svg {
  width: 18px; height: 18px;
}

/* ============================ Section with photo background ============================ */

.menu-section--bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.menu-section--bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(245, 240, 231, 0.93);
  z-index: 0;
}
.menu-section--bg > .container { position: relative; z-index: 1; }

@media (max-width: 960px) {
  .menu-section--bg { background-attachment: scroll; }
}

/* ============================ Video band ============================ */

.video-band {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-band video {
  width: 100%;
  height: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}
.video-band-overlay {
  position: absolute;
  bottom: 2.5rem; left: 0; right: 0;
  text-align: center;
  color: var(--white);
  z-index: 2;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  pointer-events: none;
}
.video-band-overlay h2 {
  color: var(--white);
  font-style: italic;
}

/* ============================ Cinematic section ============================ */

.cinematic-section {
  padding: 0;
  background: var(--ink);
}
.cinematic-frame {
  position: relative;
  width: 100%;
  height: 75vh;
  max-height: 720px;
  overflow: hidden;
}
.cinematic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: kenburns 22s ease-in-out infinite alternate;
  transform-origin: center 60%;
}
@keyframes kenburns {
  0%   { transform: scale(1.0) translate3d(0, 0, 0); }
  50%  { transform: scale(1.12) translate3d(-2%, -1%, 0); }
  100% { transform: scale(1.18) translate3d(2%, 1%, 0); }
}
.cinematic-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,42,63,0.2) 0%, rgba(15,42,63,0) 35%, rgba(15,42,63,0) 65%, rgba(15,42,63,0.7) 100%);
  z-index: 1;
}
.cinematic-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 3rem clamp(2rem, 5vw, 5rem);
  color: var(--white);
  text-align: center;
}
.cinematic-overlay h2 {
  color: var(--white);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

/* ============================ Quality band (produits frais + maison) ============================ */

.quality-band {
  background: var(--ink);
  color: var(--white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.quality-item .quality-icon {
  width: 44px; height: 44px;
  margin: 0 auto 1.25rem;
  color: var(--sand);
}
.quality-item .quality-icon svg { width: 100%; height: 100%; }
.quality-item h4 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.quality-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* ============================ Feature cards (rooftop) ============================ */

.features-cards { background: var(--white); padding: clamp(4rem, 8vw, 7rem) 0; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px -25px rgba(15, 42, 63, 0.25);
}
.feature-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-alt);
}
.feature-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.feature-card:hover .feature-card-img img { transform: scale(1.06); }
.feature-card-body { padding: 2rem 2rem 2.25rem; }
.feature-card-body h3 {
  font-style: italic;
  margin: 0.4rem 0 1.25rem;
}
.feature-card-body ul {
  list-style: none;
  padding: 0;
}
.feature-card-body ul li {
  padding: 0.45rem 0 0.45rem 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.feature-card-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 1rem;
  width: 8px; height: 1px;
  background: var(--sand);
}

/* ============================ Gallery section ============================ */

.gallery-section {
  background: var(--white);
  padding-bottom: 0;
}
.gallery-section .gallery { margin-top: 0; }

/* ============================ Events teaser ============================ */

.events-teaser {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: clamp(5rem, 10vw, 9rem) 0;
  overflow: hidden;
}
.events-teaser-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.events-teaser-bg img { width: 100%; height: 100%; object-fit: cover; }
.events-teaser::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,42,63,0.7) 0%, rgba(15,42,63,0.85) 100%);
}
.events-teaser .container-narrow { position: relative; z-index: 2; }
.events-teaser h2 {
  color: var(--white);
  font-style: italic;
  margin: 0.5rem 0;
}
.events-teaser p {
  color: rgba(255,255,255,0.88);
  margin: 1.5rem 0 2.5rem;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.events-teaser .btn { color: var(--white); border-color: var(--white); }
.events-teaser .btn:hover { background: var(--white); color: var(--ink); }

/* ============================ Infos layout ============================ */

.infos-section { background: var(--bg-alt); }
.infos-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: stretch;
}
.infos-text > * + * { margin-top: 2rem; }
.info-line .info-label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  display: block;
  margin-bottom: 0.5rem;
}
.info-line p {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.7;
}
.info-line a {
  color: var(--ink);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 1px;
}
.info-link { border-bottom: 1px solid var(--sand); padding-bottom: 1px; }

.contact-socials { display: flex; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; }
.contact-social {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.contact-social:hover { background: var(--bg-alt); opacity: 1; transform: translateY(-2px); }
.contact-social svg { width: 18px; height: 18px; }

.infos-map {
  min-height: 420px;
  overflow: hidden;
  background: var(--white);
}
.infos-map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(0.95);
  min-height: 420px;
}

/* ============================ Footer logo ============================ */

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* ============================ Responsive ============================ */

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 102; }
  .nav-brand-logo { position: relative; z-index: 102; }

  /* Nav bar quand le menu est ouvert : on retire le backdrop-filter
     (sinon la nav devient bloc conteneur et casse l'overlay fixed) */
  .nav.nav-mobile-open {
    background: var(--bg) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 1.1rem 1.25rem !important;
  }
  .nav.nav-mobile-open .logo-img { filter: none !important; }

  .nav-mobile-open .nav-links {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    height: 100dvh;
    background: var(--bg);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 0.5rem;
    z-index: 101;
  }
  .nav-mobile-open .nav-links li { width: 100%; text-align: center; }
  .nav-mobile-open .nav-links a {
    color: var(--ink) !important;
    font-size: 1.05rem;
    letter-spacing: 0.22em;
    display: block;
    padding: 1.1rem 0;
    width: 100%;
  }
  .nav-mobile-open .nav-toggle span { background: var(--ink) !important; }
  /* Hamburger -> croix */
  .nav-mobile-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-mobile-open .nav-toggle span:nth-child(2) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Bloque le scroll du fond quand le menu est ouvert */
  body.nav-open { overflow: hidden; }

  .universes-grid { grid-template-columns: 1fr; }
  .signatures-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .infos-grid { grid-template-columns: 1fr; gap: 3rem; }
  .quickfacts-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .infos-layout { grid-template-columns: 1fr; gap: 2rem; }
  .menu-preview-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 600px; }
  .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .quality-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cinematic-frame { height: 55vh; }
  .menu-item.has-photo { grid-template-columns: 110px 1fr; gap: 1.25rem; padding: 1rem; }
  .menu-item-photo { width: 110px; height: 110px; }
  .menu-item.has-photo .menu-item-name { font-size: 1.25rem; }
  .menus-highlight-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .highlight-card { grid-template-columns: 1fr; }
  .highlight-card-img { min-height: 320px; }
  .extras-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .dish-tile { width: 240px; }
  .rooftop-split { grid-template-columns: 1fr !important; }
  .infos-map { min-height: 320px; }
  .infos-map iframe { min-height: 320px; }
  .hero-logo { width: 90px; }
  .menu-items { grid-template-columns: 1fr; gap: 1.2rem; }
  .menu-formules { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .universe { min-height: 460px; }
}

@media (max-width: 560px) {
  .container, .container-narrow { padding: 0 1.25rem; }
  .nav { padding: 1rem 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; text-align: center; }
  .signatures-grid { grid-template-columns: 1fr; }
  .quickfacts-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
