/* ─── Le Club 55 — Site styles ──────────────────────────────────────────── */

:root {
  /* palette */
  --paper: #FBF7EE;       /* warm off-white, like watercolour paper */
  --sand:  #EFE6D6;       /* deep sand */
  --sand-2:#E5D9C0;       /* dune shadow */
  --marine:#1F3A5F;       /* ink-blue, the towel embroidery colour */
  --marine-2:#2C4F7C;
  --terra: #C9633E;       /* terracotta — citrus, figs, ramatuelle tiles */
  --pine:  #5C6E4A;
  --ink:   #232323;
  --ink-2: #4A4642;
  --rule:  #D6C9AC;

  /* type */
  --serif:  "EB Garamond", "Cormorant Garamond", Georgia, serif;
  --display:"Cormorant Garamond", "EB Garamond", Georgia, serif;
  --label:  "Cormorant SC", "Cormorant Garamond", serif;

  /* layout */
  --gutter: clamp(20px, 4vw, 64px);
  --max:    1280px;
  --max-wide: 1480px;

  /* shadows / depth — kept very subtle, this is print */
  --shadow-soft: 0 2px 24px rgba(31,58,95,.06);
}

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

body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ─── Typographic primitives ──────────────────────────────────────────── */

.eyebrow {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--marine);
  font-weight: 500;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1.display, .hero-title { font-size: clamp(48px, 7.4vw, 112px); }
h2.display              { font-size: clamp(40px, 5.4vw, 84px); }
h3.display              { font-size: clamp(28px, 3.6vw, 48px); }
.display em { font-style: italic; color: var(--marine); }

.lede {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  font-style: italic;
  color: var(--ink-2);
  max-width: 38em;
  margin: 24px 0 0;
  text-wrap: pretty;
}

p { margin: 0 0 1em; text-wrap: pretty; }
p em { color: var(--marine); font-style: italic; }
.muted { color: var(--ink-2); }
.small { font-size: 13px; letter-spacing: .04em; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 14px 26px;
  background: var(--marine);
  color: var(--paper);
  font-family: var(--label);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--marine);
  border-radius: 0;
  transition: background .25s, color .25s, transform .25s;
}
.btn:hover { background: var(--marine-2); }
.btn-ghost {
  background: transparent;
  color: var(--marine);
  border: 1px solid var(--marine);
}
.btn-ghost:hover { background: var(--marine); color: var(--paper); }

.link-arrow {
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--marine);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
  display: inline-block;
  transition: border-color .25s, color .25s;
}
.link-arrow:hover { border-color: var(--marine); color: var(--terra); }

/* ─── Header ──────────────────────────────────────────────────────────── */

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 18px var(--gutter);
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(31,58,95,0.08);
}
.brand { display: flex; flex-direction: column; gap: 2px; }
.brand-tag {
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--marine);
  margin-left: 4px;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  font-family: var(--label);
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 8px 2px;
  transition: color .25s;
}
.site-nav a:hover { color: var(--marine); }
.site-nav a.active { color: var(--marine); }
.site-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--marine);
}
.nav-cta {
  margin-left: 12px;
  padding: 10px 22px !important;
  border: 1px solid var(--marine);
  color: var(--marine) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--marine); color: var(--paper) !important; }

.menu-toggle {
  display: none;
  background: none; border: 0; padding: 8px;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); }

@media (max-width: 900px) {
  .site-nav {
    position: fixed; inset: 72px 0 0; flex-direction: column;
    background: var(--paper);
    padding: 40px var(--gutter);
    transform: translateX(100%); transition: transform .35s ease;
    align-items: flex-start; gap: 24px;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 22px; letter-spacing: .12em; }
  .menu-toggle { display: flex; }
  .brand-tag { display: none; }
}

/* ─── Hero ────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: clamp(560px, 86vh, 820px);
  display: flex; align-items: flex-end;
  padding: 0 var(--gutter) 80px;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(31,58,95,.55) 0%, rgba(31,58,95,.15) 35%, rgba(31,58,95,0) 70%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: var(--paper); max-width: 880px; }
.hero-content .eyebrow { color: rgba(255,255,255,.85); }
.hero-title {
  font-family: var(--display);
  line-height: 0.96;
  margin: 18px 0 36px;
  color: var(--paper);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.hero-title em { font-style: italic; color: var(--paper); }
.hero-title span { font-style: normal; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn { background: var(--paper); color: var(--marine); border-color: var(--paper); }
.hero-cta .btn:hover { background: transparent; color: var(--paper); }
.hero-cta .btn-ghost { background: transparent; color: var(--paper); border-color: var(--paper); }
.hero-cta .btn-ghost:hover { background: var(--paper); color: var(--marine); }

.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--paper);
  font-family: var(--label);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  opacity: .8;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll i {
  display: block; width: 1px; height: 32px; background: var(--paper);
  animation: dropline 2s ease-in-out infinite;
}
@keyframes dropline {
  0%,100% { transform: scaleY(.4); transform-origin: top; opacity: .5; }
  50%     { transform: scaleY(1);  transform-origin: top; opacity: 1; }
}

/* ─── Section primitives ──────────────────────────────────────────────── */

.section {
  padding: clamp(60px, 9vw, 140px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.section-bleed { padding-left: 0; padding-right: 0; max-width: none; }
.bleed-img {
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.two-col .col-lead { position: sticky; top: 120px; }
.two-col .col-lead .display { margin-top: 16px; }
.two-col .col-body { font-size: 19px; }
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .two-col .col-lead { position: static; }
}

/* page-head — used at top of inner pages */
.page-head {
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(40px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
}
.page-head .display { margin-top: 12px; }

/* ─── Pillars (home) ──────────────────────────────────────────────────── */

.section-pillars { max-width: var(--max-wide); }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
.pillar {
  display: block;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  transition: transform .4s ease;
}
.pillar:hover { transform: translateY(-4px); }
.pillar-img {
  aspect-ratio: 4/5;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  overflow: hidden;
}
.pillar-img img {
  width: 100%; height: 100%; object-fit: contain;
  mix-blend-mode: multiply;
}
.pillar-text { padding: 24px 4px 8px; }
.pillar-text h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  margin: 8px 0 12px;
  font-weight: 400;
}
.pillar-text p { font-size: 17px; color: var(--ink-2); margin-bottom: 16px; }

@media (max-width: 800px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar-img { aspect-ratio: 4/3; }
}

/* ─── Pull quote ──────────────────────────────────────────────────────── */

.pullquote {
  margin: 0; padding: 0;
  text-align: center;
  max-width: 920px; margin-inline: auto;
  position: relative;
}
.pq-mark {
  font-family: var(--display);
  font-size: 120px; line-height: 1;
  color: var(--rule);
  display: block;
}
.pullquote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.pullquote figcaption {
  margin-top: 24px;
  font-family: var(--label);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--marine);
}

.section-quote { background: var(--sand); padding-block: clamp(80px, 10vw, 160px); max-width: none; margin: 0; }

/* ─── Signature strip (full-bleed Girel pano) ─────────────────────────── */

.section-signature {
  max-width: none; margin: 0;
  background: #fff;
  padding: clamp(40px, 5vw, 80px) 0 clamp(20px, 3vw, 40px);
}
.section-signature img {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  mix-blend-mode: multiply;
}
.signature-caption {
  display: flex; justify-content: center; align-items: baseline; gap: 18px;
  padding: 16px var(--gutter);
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-2);
}
.signature-caption em { font-size: 18px; }

/* ─── Practical (home bottom) ─────────────────────────────────────────── */

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.practical-item {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
}
.practical-item:last-child { border-right: 0; }
.practical-value {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-style: italic;
  color: var(--marine);
  margin: 12px 0 8px;
}
@media (max-width: 700px) {
  .practical-grid { grid-template-columns: 1fr; }
  .practical-item { border-right: 0; border-bottom: 1px solid var(--rule); }
  .practical-item:last-child { border-bottom: 0; }
}

/* ─── Restaurant — menu card ──────────────────────────────────────────── */

.section-menu { background: var(--paper); }
.menu-card {
  background: #fff;
  padding: clamp(40px, 6vw, 96px);
  border: 1px solid var(--rule);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.menu-card::before, .menu-card::after {
  content: ""; position: absolute; pointer-events: none;
  width: 60px; height: 60px;
  border: 1px solid var(--rule);
}
.menu-card::before { top: 16px; left: 16px; border-right: 0; border-bottom: 0; }
.menu-card::after  { bottom: 16px; right: 16px; border-left: 0; border-top: 0; }

.menu-card-head { text-align: center; margin-bottom: 56px; }
.menu-card-title {
  font-family: var(--display);
  font-size: clamp(36px, 4.6vw, 64px);
  margin: 12px 0 20px;
  font-weight: 400;
}
.menu-card-title em { font-style: italic; color: var(--marine); }
.menu-card-rule {
  display: block;
  width: 80px; height: 1px;
  background: var(--rule);
  margin: 0 auto;
}

.menu-cols {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1.4fr .8fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.menu-col h4 {
  font-family: var(--label);
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--marine);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-list li {
  display: flex; align-items: baseline;
  gap: 8px;
  padding: 10px 0;
  font-family: var(--display);
  font-size: 19px;
  border-bottom: 1px dotted rgba(31,58,95,.15);
}
.menu-list li:last-child { border-bottom: 0; }
.menu-name { flex: 0 1 auto; }
.menu-dots { flex: 1; min-width: 12px; }
.menu-price {
  font-style: italic;
  color: var(--marine);
  white-space: nowrap;
}

.menu-illu {
  align-self: center;
  padding: 8px;
}
.menu-illu img {
  width: 100%;
  mix-blend-mode: multiply;
}

.menu-card-foot {
  text-align: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.menu-card-foot p { max-width: 560px; margin-inline: auto; }

@media (max-width: 1000px) {
  .menu-cols {
    grid-template-columns: 1fr 1fr;
  }
  .menu-illu { grid-column: span 2; max-width: 220px; margin-inline: auto; }
}
@media (max-width: 600px) {
  .menu-cols { grid-template-columns: 1fr; }
  .menu-illu { grid-column: auto; }
}

/* ─── Portrait section ────────────────────────────────────────────────── */

.section-portrait { background: var(--sand); max-width: none; margin: 0; }
.portrait-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.portrait-img { position: relative; }
.portrait-img img { width: 100%; mix-blend-mode: multiply; }
.portrait-img .caption {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-2);
  font-size: 16px;
  text-align: center;
}
.portrait-text .display { margin: 12px 0 28px; }
.portrait-text .pullquote { margin-top: 32px; text-align: left; }
.portrait-text .pq-mark { font-size: 80px; }
.portrait-text .pullquote blockquote { font-size: 24px; }

@media (max-width: 800px) {
  .portrait-grid { grid-template-columns: 1fr; }
}

/* ─── CTA band ────────────────────────────────────────────────────────── */

.section-cta { padding-top: 0; }
.cta-band {
  background: var(--marine);
  color: var(--paper);
  padding: clamp(60px, 8vw, 110px) clamp(40px, 6vw, 96px);
  text-align: center;
}
.cta-band .display {
  color: var(--paper);
  margin: 0 0 16px;
}
.cta-band .display em { color: #C9D6E6; }
.cta-band p { max-width: 540px; margin: 0 auto 28px; color: rgba(251,247,238,.85); }
.cta-band .btn { background: var(--paper); color: var(--marine); border-color: var(--paper); }
.cta-band .btn:hover { background: transparent; color: var(--paper); }

/* ─── Plage offerings ─────────────────────────────────────────────────── */

.offerings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
}
.offer {
  background: #fff;
  border: 1px solid var(--rule);
}
.offer-img {
  aspect-ratio: 5/4;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
  background: var(--paper);
}
.offer-img img { width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.offer-body { padding: 32px clamp(28px, 3vw, 48px) 40px; }
.offer-body h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  margin: 8px 0 16px;
}
.offer-meta {
  list-style: none; padding: 0; margin: 24px 0;
  border-top: 1px solid var(--rule);
}
.offer-meta li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--display);
}
.offer-meta li > span:last-child {
  font-style: italic;
  color: var(--marine);
}
@media (max-width: 800px) { .offerings { grid-template-columns: 1fr; } }

/* ─── Bar interlude ───────────────────────────────────────────────────── */

.section-bar { background: var(--paper); max-width: none; margin: 0; }
.bar-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.bar-illu img { width: 100%; mix-blend-mode: multiply; }
.bar-text .display { margin: 12px 0 24px; }
.bar-citrus {
  margin-top: 32px;
  display: flex; align-items: center; gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.bar-citrus img { width: 120px; mix-blend-mode: multiply; }
@media (max-width: 800px) { .bar-grid { grid-template-columns: 1fr; } }

/* ─── Domaines — timeline ─────────────────────────────────────────────── */

.section-timeline { padding-top: clamp(20px, 3vw, 40px); }
.timeline { max-width: 880px; margin: 0 auto; }
.timeline-list {
  list-style: none; padding: 0; margin: 32px 0 0;
}
.timeline-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
.timeline-list li:last-child { border-bottom: 1px solid var(--rule); }
.t-year {
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  color: var(--marine);
}
.timeline-list p { margin: 6px 0 0; font-size: 19px; max-width: 50ch; }
@media (max-width: 600px) {
  .timeline-list li { grid-template-columns: 1fr; gap: 8px; }
}

/* ─── Domaines grid ───────────────────────────────────────────────────── */

.section-domaines { background: var(--sand); max-width: none; margin: 0; }
.domaines-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; gap: clamp(48px, 6vw, 96px);
}
.domaine {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.domaine-flipped { grid-template-columns: 1fr 1.2fr; direction: rtl; }
.domaine-flipped > * { direction: ltr; }
.domaine-img {
  background: #fff;
  padding: 32px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule);
}
.domaine-img img { width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.domaine-text h3 {
  font-family: var(--display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  margin: 8px 0 16px;
}
.domaine-text p { font-size: 19px; color: var(--ink-2); }
@media (max-width: 800px) {
  .domaine, .domaine-flipped { grid-template-columns: 1fr; direction: ltr; }
}

/* ─── Girel attribution band ──────────────────────────────────────────── */

.section-girel { background: #fff; max-width: none; margin: 0; }
.girel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px); align-items: center;
}
.girel-illu img { width: 100%; mix-blend-mode: multiply; }
@media (max-width: 800px) { .girel { grid-template-columns: 1fr; } }

/* ─── Contact / Map ───────────────────────────────────────────────────── */

.section-map { padding-top: 0; max-width: var(--max-wide); }
.map-figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--rule);
  padding: clamp(20px, 3vw, 40px);
  text-align: center;
}
.map-figure img { width: 100%; max-width: 1200px; margin: 0 auto; mix-blend-mode: multiply; }
.map-cap {
  display: flex; justify-content: center; align-items: baseline; gap: 18px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--display);
  font-style: italic;
  color: var(--ink-2);
}
.map-cap em { font-size: 18px; }
@media (max-width: 600px) { .map-cap { flex-direction: column; gap: 4px; } }

/* ─── Access cards ────────────────────────────────────────────────────── */

.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.access-card {
  background: var(--paper);
  padding: 0;
  border-top: 1px solid var(--rule);
}
.access-img {
  aspect-ratio: 4/5;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  margin-bottom: 24px;
}
.access-img img { width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.access-card h3 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  margin: 8px 0 16px;
}
.access-card p { color: var(--ink-2); }
@media (max-width: 900px) { .access-grid { grid-template-columns: 1fr; } }

/* ─── Reservation form ────────────────────────────────────────────────── */

.section-reservation { background: var(--sand); max-width: none; margin: 0; padding-block: clamp(80px, 10vw, 140px); }
.reserv-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.reserv-lead .display { margin: 12px 0 24px; }
.reserv-meta {
  list-style: none; padding: 0; margin: 32px 0 0;
}
.reserv-meta li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  gap: 20px;
}
.reserv-meta li:last-child { border-bottom: 1px solid var(--rule); }
.reserv-meta strong {
  font-family: var(--display); font-style: italic;
  font-weight: 400; color: var(--marine); font-size: 20px;
}

.reserv-form {
  background: var(--paper);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--rule);
  display: grid;
  gap: 20px;
}
.reserv-form fieldset {
  border: 0; padding: 0; margin: 0;
}
.reserv-form legend {
  font-family: var(--label);
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--marine);
  margin-bottom: 12px;
}
.seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: #fff;
}
.seg label {
  text-align: center;
  padding: 14px 8px;
  font-family: var(--label);
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer;
  border-right: 1px solid var(--rule);
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.seg label:last-child { border-right: 0; }
.seg label.on { background: var(--marine); color: var(--paper); }
.seg input { display: none; }

.reserv-form label {
  display: grid; gap: 6px;
  font-family: var(--label);
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--marine);
}
.reserv-form input,
.reserv-form select,
.reserv-form textarea {
  font-family: var(--serif);
  font-size: 17px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--rule);
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
  border-radius: 0;
}
.reserv-form input:focus,
.reserv-form select:focus,
.reserv-form textarea:focus {
  outline: 2px solid var(--marine);
  outline-offset: -2px;
}
.form-row {
  display: grid; gap: 16px;
  grid-template-columns: 1fr 1fr 100px;
}
.form-row.two { grid-template-columns: 1fr 1fr; }
.form-row > label:nth-child(2) { grid-column: 2 / 3; }
.reserv-form > .form-row:nth-of-type(2) { grid-template-columns: 1fr 1fr; }
.reserv-form .btn { justify-self: start; margin-top: 12px; }
.reserv-fine { margin-top: -4px; }

.reserv-thanks { padding: 16px 0; }
.reserv-thanks h3 {
  font-family: var(--display);
  font-size: 32px; font-weight: 400; margin: 8px 0 16px;
}
.reserv-thanks .btn-ghost { margin-top: 16px; }

@media (max-width: 900px) {
  .reserv-grid { grid-template-columns: 1fr; }
  .form-row, .reserv-form > .form-row:nth-of-type(2) { grid-template-columns: 1fr; }
}

/* ─── Footer ──────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--marine);
  color: var(--paper);
  padding: clamp(60px, 8vw, 120px) var(--gutter) 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
}
.footer-tag {
  font-family: var(--display);
  font-style: italic;
  color: rgba(251,247,238,.7);
  margin-top: 12px;
}
.site-footer h4 {
  font-family: var(--label);
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(251,247,238,.6);
  margin: 0 0 18px;
  font-weight: 500;
}
.site-footer a {
  display: block;
  font-family: var(--display);
  font-size: 19px;
  padding: 6px 0;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, color .25s;
}
.site-footer a:hover { color: #fff; border-color: rgba(251,247,238,.4); }
.site-footer .muted { color: rgba(251,247,238,.7); margin: 4px 0; font-family: var(--display); font-size: 17px; font-style: italic;}
.footer-rule {
  height: 1px; background: rgba(251,247,238,.18);
  margin: 60px auto 24px;
  max-width: var(--max);
}
.footer-bottom {
  display: flex; justify-content: space-between;
  font-family: var(--label);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(251,247,238,.5);
  max-width: var(--max);
  margin: 0 auto;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* page transition — soft fade-up between routes */
main { animation: fadeUp .5s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Brand text — remplacement du logo cursive */
.brand-text {
  font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #1F3A5F;
  line-height: 1;
  display: inline-block;
}
.brand-text-footer {
  color: #FBF7EE;
  font-size: 1.75rem;
}
