/* ==========================================================================
   HÔTEL BELVÉDÈRE — Feuille de styles partagée
   ========================================================================== */

:root {
  --ivory: #f3ede0;
  --ivory-deep: #e8dfcc;
  --paper: #faf6ec;
  --ink: #1a1612;
  --ink-soft: #3d342b;
  --mute: #80766a;
  --rule: #d8cfba;
  --terracotta: #b15a36;
  --terracotta-deep: #8e4326;
  --forest: #36473a;
  --grain: rgba(26, 22, 18, 0.025);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, var(--grain) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, var(--grain) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  opacity: 0.6;
}

.display { font-family: 'Fraunces', Georgia, serif; font-weight: 300; letter-spacing: -0.02em; }
.label { font-family: 'Hanken Grotesk', sans-serif; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: var(--mute); }

/* =================================================================
   NAVIGATION
   ================================================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background 0.4s ease, padding 0.4s ease;
  background: rgba(250, 246, 236, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
}

/* Sur la home, on veut une nav transparente au-dessus de l'image */
nav.transparent {
  background: transparent;
  border-bottom: none;
  mix-blend-mode: difference;
  color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
nav.transparent.scrolled {
  mix-blend-mode: normal;
  background: rgba(250, 246, 236, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  padding: 16px 48px;
  border-bottom: 1px solid var(--rule);
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.logo-mark {
  width: 30px; height: 30px;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  font-size: 16px; font-style: italic;
  font-weight: 400;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active::after { width: 100%; }

.btn-book {
  border: 1px solid currentColor;
  padding: 10px 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: inherit;
  font-family: inherit;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-book:hover {
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
  color: var(--paper);
}
.btn-book:hover::after { display: none; }
nav.transparent .btn-book:hover { background: var(--paper); border-color: var(--paper); color: var(--ink); }

/* =================================================================
   HERO PLEIN ÉCRAN (page d'accueil)
   ================================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: #f3ede0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: kenburns 20s ease-out forwards;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 18, 24, 0.45) 0%,
      rgba(15, 18, 24, 0.05) 30%,
      rgba(15, 18, 24, 0.65) 100%);
}
@keyframes kenburns { to { transform: scale(1); } }

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: center;
}
.hero-meta {
  align-self: end;
  padding-top: 140px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.hero-meta .label { color: rgba(243, 237, 224, 0.75); }
.hero-meta .coords {
  text-align: right;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: rgba(243, 237, 224, 0.85);
  line-height: 1.5;
}
.hero-title {
  font-size: clamp(60px, 11vw, 180px);
  line-height: 0.9;
  font-weight: 300;
  margin: 30px 0 24px;
  letter-spacing: -0.04em;
}
.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: 0.2s; }
.hero-title .word:nth-child(2) { animation-delay: 0.45s; font-style: italic; font-weight: 400; }
.hero-tagline {
  font-size: 17px;
  max-width: 520px;
  color: rgba(243, 237, 224, 0.92);
  line-height: 1.55;
  opacity: 0;
  animation: rise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.7s forwards;
  padding-bottom: 80px;
}
.hero-bottom {
  padding-bottom: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(243, 237, 224, 0.25);
  padding-top: 26px;
  font-size: 12px;
  letter-spacing: 0.12em;
  opacity: 0;
  animation: rise 1.2s 0.95s forwards;
  color: rgba(243, 237, 224, 0.85);
}
.scroll-indicator { display: flex; align-items: center; gap: 12px; text-transform: uppercase; }
.scroll-indicator::before {
  content: ''; width: 40px; height: 1px; background: currentColor;
  animation: stretch 2s ease-in-out infinite;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes stretch {
  0%, 100% { width: 20px; opacity: 0.4; }
  50% { width: 50px; opacity: 1; }
}

/* =================================================================
   HERO DE SOUS-PAGE (plus court, image + titre)
   ================================================================= */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  overflow: hidden;
  color: var(--ivory);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: kenburns 16s ease-out forwards;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(15, 18, 24, 0.5) 0%,
      rgba(15, 18, 24, 0.25) 40%,
      rgba(15, 18, 24, 0.7) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
}
.page-hero-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(243, 237, 224, 0.8);
  border-top: 1px solid rgba(243, 237, 224, 0.5);
  padding-top: 12px;
  width: 200px;
  margin-bottom: 30px;
}
.page-hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 1100px;
}
.page-hero-title em { font-style: italic; }
.page-hero-tagline {
  font-size: 17px;
  max-width: 600px;
  color: rgba(243, 237, 224, 0.9);
  margin-top: 24px;
  line-height: 1.55;
}

/* En-tête de page sans image */
.page-header {
  background: var(--paper);
  padding: 220px 48px 100px;
  border-bottom: 1px solid var(--rule);
}
.page-header-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: end;
}
.page-header-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--terracotta);
  border-top: 1px solid var(--terracotta);
  padding-top: 12px;
  letter-spacing: 0.1em;
}
.page-header h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  max-width: 1000px;
}
.page-header h1 em { font-style: italic; color: var(--terracotta-deep); font-weight: 400; }
.page-header-tagline {
  margin-top: 24px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 700px;
  line-height: 1.4;
}

/* =================================================================
   SECTIONS — patterns réutilisables
   ================================================================= */
section { padding: 130px 48px; position: relative; z-index: 2; }
.container { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 880px; margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.section-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  color: var(--terracotta);
  border-top: 1px solid var(--terracotta);
  padding-top: 12px;
  letter-spacing: 0.1em;
}
.section-title {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  font-weight: 300;
  font-family: 'Fraunces', serif;
  max-width: 800px;
  letter-spacing: -0.025em;
}
.section-title em { font-style: italic; color: var(--terracotta-deep); font-weight: 400; }

.bg-ivory { background: var(--ivory); }
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: var(--ivory); }
.bg-ink .section-num { color: var(--terracotta); border-color: var(--terracotta); }
.bg-ink .label { color: rgba(243, 237, 224, 0.55); }

/* =================================================================
   PATTERNS COMMUNS
   ================================================================= */

/* Texte éditorial à 2 colonnes */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.two-col.image-text { gap: 80px; }
.two-col img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
.two-col-image {
  position: relative;
  overflow: hidden;
}
.two-col-image img {
  transition: transform 0.8s ease;
}
.two-col-image:hover img { transform: scale(1.04); }
.two-col-image-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(26, 22, 18, 0.7);
  backdrop-filter: blur(8px);
  color: var(--paper);
  padding: 10px 16px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
}

.prose p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
  max-width: 560px;
}
.prose p.lead {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
}
.prose p.dropcap:first-letter {
  font-family: 'Fraunces', serif;
  font-size: 76px;
  font-weight: 300;
  float: left;
  line-height: 0.85;
  margin: 8px 12px 0 0;
  color: var(--terracotta-deep);
}
.bg-ink .prose p { color: rgba(243, 237, 224, 0.85); }
.bg-ink .prose p.dropcap:first-letter { color: var(--terracotta); }

/* Chiffres clés */
.figures {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 50px;
}
.figure { border-top: 1px solid var(--rule); padding-top: 18px; }
.bg-ink .figure { border-color: rgba(243, 237, 224, 0.2); }
.figure-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
}
.figure-num sup { font-size: 22px; vertical-align: super; color: var(--terracotta); }
.figure-label {
  margin-top: 10px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.45;
}
.bg-ink .figure-label { color: rgba(243, 237, 224, 0.6); }

/* Citation marquante */
.pull-quote {
  max-width: 1000px;
  margin: 100px auto 0;
  padding: 60px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
  color: var(--ink-soft);
}
.pull-quote .attr {
  display: block;
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--mute);
  font-family: 'Hanken Grotesk', sans-serif;
}
.bg-ink .pull-quote { color: rgba(243, 237, 224, 0.92); border-color: rgba(243, 237, 224, 0.18); }

/* Liste de chambres / produits éditoriale */
.room-list { display: flex; flex-direction: column; gap: 120px; }
.room {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.room.reverse { direction: rtl; }
.room.reverse > * { direction: ltr; }
.room-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/4;
}
.room-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.room:hover .room-image img { transform: scale(1.04); }
.room-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.room-name {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.room-name em { font-style: italic; color: var(--terracotta-deep); }
.room-meta-line {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.room-meta-line span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid var(--rule);
}
.room-meta-line span:last-child { border-right: none; }
.room-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 520px;
}
.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  max-width: 520px;
}
.room-price {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.room-price small {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}
.room-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--terracotta-deep);
}
.room-cta::after { content: '→'; transition: transform 0.3s; }
.room-cta:hover::after { transform: translateX(6px); }

/* Grille d'espaces (galerie magazine) */
.espaces-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.espace-card { position: relative; overflow: hidden; }
.espace-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.espace-card:hover img { transform: scale(1.04); }
.espace-card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px;
  background: linear-gradient(0deg, rgba(15, 12, 8, 0.85) 0%, rgba(15, 12, 8, 0.45) 60%, transparent 100%);
  color: var(--paper);
}
.espace-card-content h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.espace-card-content h3 em { font-style: italic; }
.espace-card-content p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(243, 237, 224, 0.85);
  max-width: 460px;
}
.espace-card.large { grid-column: span 7; aspect-ratio: 4/3; }
.espace-card.medium { grid-column: span 5; aspect-ratio: 4/4.5; }
.espace-card.small { grid-column: span 6; aspect-ratio: 5/3; }
.espace-card.tall { grid-column: span 6; aspect-ratio: 5/3; }

/* Liste de services / équipements / features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.feature-item {
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  padding: 36px 30px;
}
.feature-item:nth-child(3n) { border-right: none; }
.feature-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.feature-title em { font-style: italic; color: var(--terracotta-deep); }
.feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Liste de prestations courtes (équipements en ligne) */
.amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  margin-top: 30px;
}
.amenities-list li {
  font-size: 15px;
  color: var(--ink-soft);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.amenities-list li::before {
  content: '—';
  position: absolute;
  left: 0; top: 0;
  color: var(--terracotta);
  font-family: 'Fraunces', serif;
  font-style: italic;
}

/* Cartes d'offres / packages */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  border: 1px solid var(--rule);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  position: relative;
}
.offer-card.featured {
  border-color: var(--terracotta);
  background: var(--ivory);
}
.offer-tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.offer-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.offer-title em { font-style: italic; color: var(--terracotta-deep); }
.offer-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  flex-grow: 1;
  margin-bottom: 30px;
}
.offer-price {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 30px;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.offer-price small {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Hanken Grotesk', sans-serif;
  display: block;
  margin-top: 4px;
}

/* Boutons standardisés */
.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border: none;
  padding: 18px 40px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, letter-spacing 0.3s;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover { background: var(--terracotta-deep); letter-spacing: 0.28em; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 17px 40px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { background: var(--ink); color: var(--ivory); }

/* Formulaire de réservation/contact */
.form-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 56px;
  position: relative;
}
.form-card::before, .form-card::after {
  content: '';
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--terracotta);
}
.form-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.form-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.bg-ivory .form-card { background: var(--paper); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-row.full { grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: border-color 0.3s;
  outline: none;
  border-radius: 0;
  resize: vertical;
}
.field textarea { font-size: 17px; line-height: 1.5; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--terracotta); }
.field input::placeholder, .field textarea::placeholder { color: var(--mute); font-style: italic; }
.field select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2380766a' fill='none' stroke-width='1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px;
  padding-right: 24px;
}
.form-actions {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 13px;
  color: var(--mute);
  max-width: 420px;
  line-height: 1.55;
}
.form-note em { font-style: italic; color: var(--ink-soft); }

/* Menu de restaurant */
.menu-card {
  background: rgba(243, 237, 224, 0.04);
  border: 1px solid rgba(243, 237, 224, 0.14);
  padding: 50px 44px;
  position: relative;
}
.menu-card::before, .menu-card::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--terracotta);
}
.menu-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.menu-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.menu-card.light {
  background: var(--paper);
  border: 1px solid var(--rule);
}
.menu-card-head {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(243, 237, 224, 0.18);
  margin-bottom: 36px;
}
.menu-card.light .menu-card-head { border-bottom-color: var(--rule); }
.menu-card-head h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  margin-bottom: 8px;
}
.menu-card-head p {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 237, 224, 0.6);
}
.menu-card.light .menu-card-head p { color: var(--mute); }
.dish { padding: 22px 0; border-bottom: 1px dashed rgba(243, 237, 224, 0.18); }
.menu-card.light .dish { border-bottom-color: var(--rule); }
.dish:last-child { border-bottom: none; }
.dish-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  margin-bottom: 6px;
}
.dish-desc {
  font-size: 13px;
  color: rgba(243, 237, 224, 0.65);
  line-height: 1.55;
}
.menu-card.light .dish-desc { color: var(--ink-soft); }
.menu-pricing {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid rgba(243, 237, 224, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 13px;
  color: rgba(243, 237, 224, 0.7);
}
.menu-card.light .menu-pricing { border-top-color: var(--rule); color: var(--mute); }
.menu-pricing strong {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--ivory);
  display: block;
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.menu-card.light .menu-pricing strong { color: var(--ink); }

/* CTA Section */
.cta-section {
  background: var(--ink);
  color: var(--ivory);
  padding: 120px 48px;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section h2 em { font-style: italic; color: var(--terracotta); }
.cta-section p {
  font-size: 17px;
  color: rgba(243, 237, 224, 0.8);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-section .btn-primary {
  background: var(--terracotta-deep);
  color: var(--ivory);
}
.cta-section .btn-primary:hover { background: var(--terracotta); }

/* FAQ Accordéon */
.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 22px;
  color: var(--ink);
  text-align: left;
  letter-spacing: -0.015em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.faq-question::after {
  content: '+';
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--terracotta);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 0 28px;
}

/* =================================================================
   FOOTER
   ================================================================= */
footer {
  background: var(--ink);
  color: rgba(243, 237, 224, 0.85);
  padding: 110px 48px 40px;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(243, 237, 224, 0.18);
}
.footer-brand .logo { color: var(--ivory); margin-bottom: 24px; }
.footer-brand p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(243, 237, 224, 0.7);
  max-width: 320px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-col p, .footer-col a {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(243, 237, 224, 0.78);
  text-decoration: none;
  display: block;
}
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  max-width: 1280px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(243, 237, 224, 0.5);
  letter-spacing: 0.05em;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  nav { padding: 18px 28px; }
  nav.transparent.scrolled { padding: 14px 28px; }
  .nav-links { gap: 20px; }
  .nav-links a:not(.btn-book) { display: none; }
  section { padding: 90px 28px; }
  footer { padding: 80px 28px 30px; }
  .page-header { padding: 160px 28px 70px; }
  .page-header-content { grid-template-columns: 1fr; gap: 24px; }
  .page-hero-content { padding: 0 28px 50px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .section-num { padding-top: 8px; }
  .two-col { grid-template-columns: 1fr; gap: 50px; }
  .figures { grid-template-columns: repeat(2, 1fr); }
  .room { grid-template-columns: 1fr; gap: 30px; }
  .room.reverse { direction: ltr; }
  .espaces-grid { grid-template-columns: 1fr; gap: 18px; }
  .espace-card.large, .espace-card.medium, .espace-card.small, .espace-card.tall {
    grid-column: span 1; aspect-ratio: 4/3;
  }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
  .offer-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-card { padding: 36px 28px; }
  .form-row, .form-row.three { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero-content { padding: 0 28px; }
  .hero-tagline { padding-bottom: 40px; }
  .cta-section { padding: 80px 28px; }
  .amenities-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 12px; padding-top: 110px; }
  .hero-meta .coords { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-pricing { flex-direction: column; gap: 18px; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn-primary { width: 100%; }
}
