/* ============================================
   BALADNA — Restaurant libanais
   Design system & styles partagés
   ============================================ */

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

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

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --cream: #f4ede1;
  --cream-soft: #ebe2d2;
  --cream-deep: #e1d5be;
  --ink: #2a2520;
  --ink-soft: #4a4138;
  --ink-mute: #7a6f63;
  --terracotta: #b85a3a;
  --terracotta-dark: #9a472b;
  --olive: #5c6647;
  --olive-dark: #3f4731;
  --gold: #b89968;
  --gold-light: #d4b88a;
  --stone: #6e6258;
  --line: rgba(42, 37, 32, 0.12);

  /* Typography */
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-accent: "Amiri", "Cormorant Garamond", serif;

  /* Spacing */
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 10vw, 140px);
  --max-w: 1320px;
  --max-w-narrow: 880px;
}

/* ---------- Typographie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}

h1 {
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400;
}

h3 {
  font-size: clamp(24px, 2.4vw, 34px);
}

p {
  margin: 0 0 1em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 28px;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
}

.arabic {
  font-family: var(--font-accent);
  font-weight: 400;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  position: relative;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

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

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-arrow::after {
  content: "→";
  font-size: 16px;
  letter-spacing: 0;
  transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.3s ease, border 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(244, 237, 225, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px var(--gutter);
  border-bottom-color: var(--line);
}

.site-header.is-light:not(.is-scrolled) {
  color: var(--cream);
}

.site-header.is-scrolled {
  color: var(--ink);
}

.site-header.is-light:not(.is-scrolled) .brand,
.site-header.is-light:not(.is-scrolled) .nav a,
.site-header.is-light:not(.is-scrolled) .nav-reserve {
  color: var(--cream);
}

.site-header.is-light:not(.is-scrolled) .nav-reserve {
  border-color: var(--cream);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.7;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: opacity 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-reserve:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 880px) {
  .nav-links,
  .nav-reserve {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-menu.is-open ~ .site-header .nav-toggle span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  padding: 100px var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

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

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1.15;
  display: block;
  padding: 6px 0;
}

.mobile-menu-foot {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.mobile-menu-foot a {
  font-family: var(--font-body);
  font-size: 13px;
  display: inline;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0.75) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--cream);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0.9;
}

.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-end;
  text-align: right;
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 0.9;
  min-width: 200px;
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 2px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.8;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: var(--cream);
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

@media (max-width: 760px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-meta {
    align-items: flex-start;
    text-align: left;
  }
  .hero-meta strong {
    font-size: 18px;
  }
}

/* ============================================
   STRIP / BANDEAU INFOS
   ============================================ */
.info-strip {
  background: var(--ink);
  color: var(--cream);
  padding: 28px var(--gutter);
  border-top: 1px solid rgba(244, 237, 225, 0.08);
}

.info-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-item span:first-child {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.info-item span:last-child {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 760px) {
  .info-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ============================================
   INTRO / ÀPROPOS
   ============================================ */
.intro {
  padding: var(--section-y) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 32px;
  max-width: 12ch;
}

.intro-text h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.intro-text p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 50ch;
}

.intro-text p + p {
  margin-top: 18px;
}

.intro-text .sig {
  margin-top: 36px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
}

.intro-text .sig small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

.intro-media {
  position: relative;
  aspect-ratio: 4 / 5;
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-media-small {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 50%;
  aspect-ratio: 4 / 5;
  border: 10px solid var(--cream);
}

.intro-media-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 880px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .intro-media-small {
    left: 0;
    bottom: -30px;
    width: 40%;
    border-width: 6px;
  }
}

/* ============================================
   MENU / SPÉCIALITÉS
   ============================================ */
.menu {
  padding: var(--section-y) 0;
  background: var(--cream-soft);
}

.menu-head {
  text-align: center;
  margin-bottom: clamp(50px, 7vw, 90px);
}

.menu-head h2 {
  max-width: 18ch;
  margin: 0 auto;
}

.menu-head h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.menu-head .eyebrow {
  justify-content: center;
}

.menu-head .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.menu-card {
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.menu-card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.05);
}

.menu-card-body {
  padding: 36px;
}

.menu-card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
}

.menu-card-body h3 {
  margin-bottom: 14px;
}

.menu-card-body p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 24px;
}

.menu-card-items {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.menu-card-items li {
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 14px;
  color: var(--ink-soft);
}

.menu-card-items li b {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
  font-size: 16px;
}

.menu-cta {
  text-align: center;
  margin-top: clamp(50px, 7vw, 80px);
}

@media (max-width: 880px) {
  .menu-categories {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================
   STONE / SALLE
   ============================================ */
.stone {
  position: relative;
  padding: var(--section-y) 0;
  color: var(--cream);
  overflow: hidden;
}

.stone-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stone-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stone-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.7));
}

.stone-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--gutter);
}

.stone h2 {
  color: var(--cream);
  margin-bottom: 32px;
}

.stone h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.stone p {
  color: rgba(244, 237, 225, 0.85);
  font-size: 18px;
  max-width: 52ch;
  margin: 0 auto 36px;
}

.stone .eyebrow {
  color: var(--gold-light);
  justify-content: center;
}

.stone .eyebrow::before {
  background: var(--gold-light);
}

.stone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(244, 237, 225, 0.18);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.75;
}

@media (max-width: 680px) {
  .stone-stats { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================
   GALERIE — index preview
   ============================================ */
.gallery-section {
  padding: var(--section-y) 0;
}

.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.gallery-head h2 {
  max-width: 14ch;
}

.gallery-head h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery-grid .g {
  overflow: hidden;
  position: relative;
}

.gallery-grid .g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-grid .g:hover img {
  transform: scale(1.04);
}

.gallery-grid .g1 { grid-column: span 5; aspect-ratio: 4 / 5; }
.gallery-grid .g2 { grid-column: span 7; aspect-ratio: 7 / 5; }
.gallery-grid .g3 { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery-grid .g4 { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery-grid .g5 { grid-column: span 4; aspect-ratio: 1 / 1; }

@media (max-width: 760px) {
  .gallery-head { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .g1,
  .gallery-grid .g2,
  .gallery-grid .g3,
  .gallery-grid .g4,
  .gallery-grid .g5 { grid-column: span 1; aspect-ratio: 1 / 1; }
  .gallery-grid .g2 { grid-column: span 2; aspect-ratio: 16 / 10; }
}

/* ============================================
   QUOTE / CITATION
   ============================================ */
.quote {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: var(--cream);
  text-align: center;
}

.quote-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.quote-arabic {
  font-family: var(--font-accent);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--gold-light);
  margin-bottom: 16px;
  direction: rtl;
}

.quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
  margin: 0 0 30px;
  color: var(--cream);
}

.quote cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================
   AVIS / TESTIMONIALS
   ============================================ */
.reviews {
  padding: var(--section-y) 0;
}

.reviews-head {
  text-align: center;
  margin-bottom: 70px;
}

.reviews-head h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.reviews-head .eyebrow {
  justify-content: center;
}

.reviews-head .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.review {
  background: var(--cream-soft);
  padding: 44px 36px 36px;
  position: relative;
}

.review .stars {
  color: var(--terracotta);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.review p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink);
}

.review-author {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.review-author b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 2px;
}

@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   CTA / RESERVE BAND
   ============================================ */
.cta-band {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
  color: var(--cream);
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.65));
}

.cta-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.cta-band h2 {
  color: var(--cream);
  margin-bottom: 24px;
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-band p {
  color: rgba(244, 237, 225, 0.85);
  font-size: 18px;
  margin-bottom: 36px;
}

.cta-band .btn-primary {
  background: var(--cream);
  color: var(--ink);
}

.cta-band .btn-primary:hover {
  background: var(--terracotta);
  color: var(--cream);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(244, 237, 225, 0.7);
  padding: 80px var(--gutter) 30px;
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244, 237, 225, 0.1);
}

.footer-brand h3 {
  font-size: 38px;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 30ch;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

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

.footer-col a,
.footer-col li {
  font-size: 14px;
  color: rgba(244, 237, 225, 0.7);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

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

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: span 2; }
}

/* ============================================
   SECONDARY PAGES
   ============================================ */
.page-hero {
  padding: 180px var(--gutter) clamp(70px, 8vw, 110px);
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.page-hero-inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(54px, 8vw, 110px);
  margin-bottom: 24px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.page-hero p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 50ch;
}

.page-hero .eyebrow {
  justify-content: center;
}
.page-hero .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--terracotta);
}

.crumbs {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 36px;
}

.crumbs a { color: var(--ink); }
.crumbs span { margin: 0 10px; opacity: 0.5; }

/* ---------- Contact page ---------- */
.contact-section {
  padding: var(--section-y) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 30px;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--terracotta);
}

.contact-info .lede {
  margin-bottom: 50px;
  max-width: 44ch;
}

.contact-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-block h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 14px;
}

.contact-block p,
.contact-block a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
}

.contact-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-block li {
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.contact-block li b {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}

.contact-form {
  background: var(--cream-soft);
  padding: clamp(32px, 4vw, 50px);
}

.contact-form h3 {
  margin-bottom: 8px;
}

.contact-form h3 em { font-style: italic; color: var(--terracotta); }

.contact-form .form-intro {
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 30px;
}

.field {
  margin-bottom: 22px;
}

.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  outline: none;
  transition: border-color 0.2s ease;
  border-radius: 0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--terracotta);
}

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

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

.booking {
  display: flex;
  flex-direction: column;
}

.booking-frame {
  position: relative;
  width: 100%;
  height: 760px;
  margin-top: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.booking-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-wrap {
  margin-top: clamp(60px, 7vw, 90px);
  aspect-ratio: 21 / 9;
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .booking-frame { height: 680px; }
  .contact-blocks { grid-template-columns: 1fr; gap: 28px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Galerie page ---------- */
.gallery-page {
  padding: var(--section-y) 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.gallery-filter {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: transparent;
  transition: all 0.25s ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-masonry .g {
  margin: 0 0 16px;
  break-inside: avoid;
  overflow: hidden;
  position: relative;
}

.gallery-masonry .g img {
  width: 100%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-masonry .g:hover img { transform: scale(1.04); }

.gallery-masonry .g figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
  background: linear-gradient(0deg, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-masonry .g:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .gallery-masonry { columns: 2; }
}

@media (max-width: 560px) {
  .gallery-masonry { columns: 1; }
}

/* ---------- Mentions légales ---------- */
.legal {
  padding: var(--section-y) 0;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.legal-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin: 50px 0 18px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h2 em { font-style: italic; color: var(--terracotta); }

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 1.2em;
  margin: 16px 0;
}

.legal-content a {
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
}

.legal-content strong { color: var(--ink); font-weight: 600; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
