/* ===========================
   CHÂTEAU DE MARMAGNE
   Feuille de style globale
   Max-width: 1280px | Responsive tablette & mobile
   =========================== */

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

:root {
  --green: #2D4A3E;
  --green-mid: #3D6455;
  --green-light: #8FB5A8;
  --green-pale: #EEF4F1;
  --gold: #B8964A;
  --gold-light: #D4B472;
  --cream: #F8F3EB;
  --linen: #EDE5D6;
  --brown: #4A3520;
  --dark: #1A2820;
  --white: #FDFAF5;
  --max: 1280px;
}

html, body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── WRAPPER ── */
.wrapper {
  max-width: var(--max);
  margin: 0 auto;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(26,40,32,0.97);
  border-bottom: 1px solid rgba(184,150,74,0.2);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 60px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo em { font-style: italic; color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  white-space: nowrap;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 9px 18px;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all .3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(26,40,32,0.99);
  padding: 20px 24px;
  gap: 16px;
}
.nav-mobile a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  border-bottom: 1px solid rgba(143,181,168,0.15);
  padding-bottom: 14px;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--white); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ── GOLD BAR ── */
.gold-bar { height: 2px; background: linear-gradient(90deg, var(--green), var(--gold), var(--green)); }

/* ── STAG ── */
.stag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stag::before { content: ''; width: 22px; height: 1px; background: var(--gold); }
.stag-c { justify-content: center; }
.stag-c::before { display: none; }
.stag-c::after { content: ''; width: 22px; height: 1px; background: var(--gold); }

/* ── TITLES ── */
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--brown);
  line-height: 1.1;
}
.sec-title em { font-style: italic; color: var(--green-mid); }
.sec-sub { font-size: 16px; font-weight: 300; color: #7A6E60; margin-top: 8px; }
.sec-hd { text-align: center; margin-bottom: 40px; }

/* ── PH (page header) ── */
.ph {
  height: 260px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-mid);
  background-size: cover;
  background-position: center;
}
.ph::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,40,32,0.1), rgba(26,40,32,0.7));
}
.ph-content { position: relative; z-index: 2; padding: 0 36px 36px; max-width: var(--max); width: 100%; }
.ph-tag { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 10px; display: block; }
.ph-title { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: white; line-height: 1.05; }
.ph-title em { font-style: italic; color: var(--green-light); }

/* ── HERO ── */
.hero {
  height: 88vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-mid);
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,40,32,0.1), rgba(26,40,32,0.75));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 56px;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}
.hero-eyebrow { font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; display: block; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(53px, 6vw, 86px);
  font-weight: 300;
  line-height: 0.95;
  color: white;
  margin-bottom: 18px;
}
.hero-title em { font-style: italic; color: var(--green-light); display: block; }
.hero-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.75); margin-bottom: 28px; max-width: 440px; line-height: 1.8; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-gold {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: var(--dark); border: none;
  padding: 13px 26px; cursor: pointer; font-family: 'Jost', sans-serif;
  font-weight: 500; text-decoration: none; display: inline-block;
}
.btn-ghost {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 13px 26px; text-decoration: none; display: inline-block;
  font-family: 'Jost', sans-serif;
}
.btn-green {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--green); color: white; border: none;
  padding: 12px 24px; cursor: pointer; font-family: 'Jost', sans-serif;
  text-decoration: none; display: inline-block;
}

/* ── STATS ── */
.stats-bar { background: var(--green); }
.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 22px 16px; text-align: center; border-right: 1px solid rgba(143,181,168,0.2); }
.stat:last-child { border-right: none; }
.stat-n { font-family: 'Cormorant Garamond', serif; font-size: 31px; font-weight: 300; color: white; line-height: 1; margin-bottom: 4px; }
.stat-l { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); }

/* ── INTRO ── */
.intro { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; max-width: var(--max); margin: 0 auto; }
.intro-txt { background: var(--cream); padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.intro-body { font-size: 16px; font-weight: 300; line-height: 1.9; color: #5A5040; margin: 16px 0 22px; }
.intro-img { background: var(--green-mid); background-size: cover; background-position: center; min-height: 300px; }

/* ── FORMULES ── */
.formules { padding: 64px 48px; background: var(--white); }
.fgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; max-width: var(--max); margin: 0 auto; }
.fcard { background: var(--green-pale); padding: 28px 20px; border-top: 3px solid var(--green-mid); }
.fc-icon { font-size: 26px; margin-bottom: 10px; }
.fc-title { font-family: 'Cormorant Garamond', serif; font-size: 23px; color: var(--green); margin-bottom: 8px; }
.fc-desc { font-size: 14px; font-weight: 300; line-height: 1.7; color: #4A6358; margin-bottom: 12px; }
.fc-price { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* ── AVIS ── */
.avis { padding: 56px 48px; background: var(--dark); }
.avis-inner { max-width: var(--max); margin: 0 auto; }
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.avis-card { background: rgba(255,255,255,0.06); padding: 22px; border-top: 2px solid var(--gold); }
.avis-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.avis-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 10px; }
.avis-author { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); }

/* ── CHÂTEAU PAGE ── */
.split { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--max); margin: 0 auto; }
.ch-txt { padding: 52px 48px; background: var(--white); }
.ch-txt h3 { font-family: 'Cormorant Garamond', serif; font-size: 31px; font-weight: 300; color: var(--brown); margin-bottom: 14px; }
.ch-txt h3 em { font-style: italic; color: var(--green-mid); }
.ch-txt p { font-size: 16px; font-weight: 300; line-height: 1.85; color: #5A5040; margin-bottom: 12px; }
.ch-img { background: var(--green-mid); background-size: cover; background-position: center; min-height: 360px; }

/* ── TOILES ── */
.toiles { padding: 56px 48px; background: var(--green-pale); }
.toiles-inner { max-width: var(--max); margin: 0 auto; }
.toiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.toile-card { background: var(--white); border-top: 2px solid var(--gold); }
.toile-photo { height: 180px; background: var(--green-mid); background-size: cover; background-position: center top; }
.toile-info { padding: 16px 18px 18px; }
.toile-num { font-family: 'Cormorant Garamond', serif; font-size: 29px; color: var(--green-light); font-weight: 300; margin-bottom: 5px; }
.toile-title { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--green-mid); margin-bottom: 4px; font-style: italic; }
.toile-attr { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.toile-desc { font-size: 13px; color: #5A5040; line-height: 1.65; }
.toile-card.featured { grid-column: span 2; background: var(--green); }
.toile-card.featured .toile-photo { height: 200px; }
.toile-card.featured .toile-title { color: white; }
.toile-card.featured .toile-attr { color: var(--gold-light); }
.toile-card.featured .toile-desc { color: var(--green-light); }
.toile-card.featured .toile-num { color: rgba(143,181,168,0.4); }

/* ── LABEL ── */
.label-section { padding: 48px; background: var(--dark); }
.label-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 200px 1fr; gap: 40px; align-items: center; }
.label-badge { background: var(--white); padding: 24px; text-align: center; }
.label-badge .icon { font-size: 48px; margin-bottom: 10px; display: block; }
.label-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--brown); margin-bottom: 6px; }
.label-date { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.label-txt h3 { font-family: 'Cormorant Garamond', serif; font-size: 31px; font-weight: 300; color: white; margin-bottom: 12px; line-height: 1.1; }
.label-txt h3 em { font-style: italic; color: var(--green-light); }
.label-txt p { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.62); }

/* ── CHAMBRES ── */
.ch-intro { padding: 52px 48px; background: var(--cream); text-align: center; }
.ch-intro p { font-size: 16px; font-weight: 300; color: #5A5040; max-width: 520px; margin: 14px auto 0; line-height: 1.85; }
.cgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--linen); max-width: var(--max); margin: 0 auto; }
.cc { background: var(--white); }
.cc-img { height: 200px; background: var(--green-mid); background-size: cover; background-position: center; position: relative; }
.cc-badge { position: absolute; top: 12px; left: 12px; background: var(--green); color: white; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; }
.cc-info { padding: 18px 20px; }
.cc-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--brown); margin-bottom: 6px; }
.cc-dets { display: flex; gap: 10px; margin-bottom: 7px; flex-wrap: wrap; }
.cc-det { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--green-mid); }
.cc-desc { font-size: 13px; font-weight: 300; color: #5A5040; line-height: 1.7; }

.equip { padding: 48px; background: var(--green-pale); }
.equip-inner { max-width: var(--max); margin: 0 auto; }
.equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; }
.equip-grid.equip-grid-5 { grid-template-columns: repeat(5, 1fr); }
.equip-item { text-align: center; padding: 20px 10px; background: var(--white); }
.equip-icon { font-size: 26px; margin-bottom: 6px; }
.equip-label { font-size: 12px; color: var(--dark); }

/* ── ÉVÉNEMENTS ── */
.ev-hero { padding: 56px 48px; background: var(--dark); }
.ev-hero-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.ev-title { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 300; color: white; margin-bottom: 14px; line-height: 1.1; }
.ev-title em { font-style: italic; color: var(--green-light); }
.ev-body { font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.62); }
.ev-img { height: 300px; background: var(--green-mid); background-size: cover; background-position: center; }

.ev-types { padding: 56px 48px; background: var(--white); }
.ev-types-inner { max-width: var(--max); margin: 0 auto; }
.ev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.ev-card { border: 1px solid var(--green-light); padding: 24px 20px; }
.ev-icon { font-size: 26px; margin-bottom: 10px; }
.ev-ctitle { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--green-mid); margin-bottom: 7px; }
.ev-cdesc { font-size: 14px; font-weight: 300; color: #4A6358; line-height: 1.7; margin-bottom: 8px; }
.ev-cdet { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }

.espaces { padding: 48px; background: var(--cream); }
.espaces-inner { max-width: var(--max); margin: 0 auto; }
.es-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 32px; }
.es-item { position: relative; height: 200px; background: var(--green-mid); background-size: cover; background-position: center; overflow: hidden; }
.es-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,40,32,0.8), transparent); display: flex; align-items: flex-end; padding: 18px; }
.es-label { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: white; font-weight: 300; }
.es-size { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-top: 2px; }

/* ── ACTIVITÉS SUR SITE ── */
.act-onsite { padding: 56px 48px; background: var(--dark); }
.act-inner { max-width: var(--max); margin: 0 auto; }
.act-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; margin-top: 32px; }
.act-photo-card { position: relative; overflow: hidden; background: var(--green); }
.act-photo-card img { width: 100%; height: 180px; object-fit: cover; display: block; filter: brightness(0.75); }
.act-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,40,32,0.9) 0%, rgba(26,40,32,0.15) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; }
.act-badge-loc { font-size: 8px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.act-photo-title { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: white; margin-bottom: 4px; }
.act-photo-desc { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ── ACTIVITÉS HORS SITE ── */
.act-offsite { padding: 56px 48px; background: var(--white); }
.act-offsite-inner { max-width: var(--max); margin: 0 auto; }
.off-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.off-card { border: 1px solid var(--green-light); padding: 24px 20px; }
.off-icon { font-size: 29px; margin-bottom: 10px; }
.off-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--green-mid); margin-bottom: 10px; }
.off-list { list-style: none; padding: 0; }
.off-list li { font-size: 14px; font-weight: 300; color: #5A5040; line-height: 1.8; padding-left: 14px; position: relative; }
.off-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 11px; }
.off-note { font-size: 13px; font-weight: 300; color: #7A6E60; margin-top: 10px; line-height: 1.7; font-style: italic; }
.off-intro { font-size: 14px; font-weight: 300; color: #5A5040; line-height: 1.8; margin-bottom: 10px; }

/* ── GALERIE ── */
.gal-page { padding: 56px 48px; background: var(--white); }
.gal-inner { max-width: var(--max); margin: 0 auto; }
.gal-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin-top: 32px; }
.gal-full-item { height: 220px; background: var(--green-mid); background-size: cover; background-position: center; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.gal-label { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-style: italic; color: white; padding: 12px; background: linear-gradient(to top, rgba(26,40,32,0.8), transparent); width: 100%; }

/* ── AVENIR ── */
.av-hero { padding: 56px 48px; background: var(--dark); }
.av-hero-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.av-title { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: white; line-height: 1.1; margin-bottom: 14px; }
.av-title em { font-style: italic; color: var(--green-light); }
.av-body { font-size: 16px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,0.65); }
.av-body p { margin-bottom: 10px; }
.av-body p:last-child { margin-bottom: 0; }

.av-nature { padding: 56px 48px; background: var(--green-pale); }
.av-nature-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.av-nature-img { height: 280px; background: var(--green-mid); background-size: cover; background-position: center; }
.av-nature-txt h3 { font-family: 'Cormorant Garamond', serif; font-size: 31px; font-weight: 300; color: var(--brown); margin-bottom: 14px; line-height: 1.1; }
.av-nature-txt h3 em { font-style: italic; color: var(--green-mid); }
.av-nature-txt p { font-size: 16px; font-weight: 300; line-height: 1.85; color: #5A5040; }

.av-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 56px 48px; background: var(--cream); max-width: none; }
.av-cards-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.av-card { background: var(--white); padding: 22px 18px; border-top: 3px solid var(--gold); }
.av-card-icon { font-size: 29px; margin-bottom: 10px; }
.av-card-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--brown); margin-bottom: 7px; }
.av-card-desc { font-size: 13px; font-weight: 300; color: #5A5040; line-height: 1.7; }

/* ── CONTACT ── */
.contact-page { padding: 56px 48px; background: var(--white); }
.contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.ci-title { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 300; color: var(--brown); margin-bottom: 8px; }
.ci-title em { font-style: italic; color: var(--green-mid); }
.ci-body { font-size: 16px; font-weight: 300; color: #5A5040; line-height: 1.85; margin-bottom: 20px; }
.ci-cards { display: flex; flex-direction: column; gap: 8px; }
.ci-card { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--green-pale); border-left: 3px solid var(--gold); }
.ci-icon { font-size: 19px; }
.ci-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1px; }
.ci-val { font-size: 14px; color: var(--brown); }
.map-embed { height: 240px; margin-top: 24px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: none; }
.cf-title { font-family: 'Cormorant Garamond', serif; font-size: 29px; font-weight: 300; color: var(--brown); margin-bottom: 18px; }
.fg { margin-bottom: 10px; }
.fg label { display: block; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 8px 12px; border: 1px solid var(--green-light); background: var(--white); font-family: 'Jost', sans-serif; font-size: 14px; color: var(--dark); outline: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--green-mid); }
.fg textarea { height: 90px; resize: vertical; }
.f-sub { width: 100%; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; background: var(--green); color: white; border: none; padding: 12px; cursor: pointer; margin-top: 6px; font-family: 'Jost', sans-serif; }

/* ── FOOTER ── */
footer { background: var(--brown); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 22px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.f-logo { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--linen); text-decoration: none; }
.f-logo em { font-style: italic; color: var(--gold-light); }
.f-links { display: flex; gap: 16px; flex-wrap: wrap; }
.f-links a { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(237,229,214,0.4); text-decoration: none; font-family: 'Jost', sans-serif; }
.f-links a:hover { color: var(--linen); }
.f-insta { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: color .2s; }
.f-insta:hover { color: var(--white); }
.f-copy { font-size: 10px; color: rgba(237,229,214,0.3); }

/* ══════════════════════════════════════
   TABLETTE — max 1024px
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 24px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 9px; }

  .hero-content { padding: 0 36px 48px; }
  .ph-content { padding: 0 24px 28px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid rgba(143,181,168,0.2); }

  .intro { grid-template-columns: 1fr; }
  .intro-img { min-height: 280px; }
  .intro-txt { padding: 40px 36px; }

  .formules { padding: 48px 36px; }
  .fgrid { grid-template-columns: repeat(2, 1fr); }

  .avis { padding: 48px 36px; }
  .avis-grid { grid-template-columns: repeat(2, 1fr); }

  .split { grid-template-columns: 1fr; }
  .ch-img { min-height: 280px; order: -1; }
  .ch-txt { padding: 40px 36px; }

  .toiles { padding: 48px 36px; }
  .toiles-grid { grid-template-columns: repeat(2, 1fr); }
  .toile-card.featured { grid-column: span 2; }

  .label-inner { grid-template-columns: 160px 1fr; gap: 28px; }
  .label-section { padding: 36px; }

  .ch-intro { padding: 40px 36px; }
  .cgrid { grid-template-columns: repeat(2, 1fr); }

  .equip { padding: 40px 36px; }
  .equip-grid { grid-template-columns: repeat(4, 1fr); }
  .equip-grid.equip-grid-5 { grid-template-columns: repeat(3, 1fr); }

  .ev-hero { padding: 40px 36px; }
  .ev-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .ev-img { height: 240px; }
  .ev-types { padding: 40px 36px; }
  .ev-grid { grid-template-columns: repeat(2, 1fr); }

  .espaces { padding: 40px 36px; }
  .act-onsite { padding: 40px 36px; }
  .act-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .act-offsite { padding: 40px 36px; }
  .off-grid { grid-template-columns: repeat(2, 1fr); }

  .gal-page { padding: 40px 36px; }
  .gal-full-grid { grid-template-columns: repeat(2, 1fr); }

  .av-hero { padding: 40px 36px; }
  .av-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .av-nature { padding: 40px 36px; }
  .av-nature-inner { grid-template-columns: 1fr; }
  .av-nature-img { height: 240px; }
  .av-cards { padding: 40px 36px; }
  .av-cards-inner { grid-template-columns: repeat(2, 1fr); }

  .contact-page { padding: 40px 36px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { padding: 20px 36px; }
  .f-links { gap: 12px; }
}

/* ══════════════════════════════════════
   MOBILE — max 640px
══════════════════════════════════════ */
@media (max-width: 640px) {
  /* Nav mobile */
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-inner { padding: 0 20px; height: 56px; }

  /* Hero */
  .hero { height: 70vh; min-height: 420px; }
  .hero-content { padding: 0 20px 40px; }
  .hero-title { font-size: clamp(43px, 9vw, 62px); }
  .hero-sub { font-size: 16px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-gold, .btn-ghost { text-align: center; padding: 12px 20px; }

  /* PH */
  .ph { height: 180px; }
  .ph-content { padding: 0 20px 24px; }
  .ph-title { font-size: 34px; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  /* Intro */
  .intro-txt { padding: 32px 20px; }

  /* Formules */
  .formules { padding: 36px 20px; }
  .fgrid { grid-template-columns: 1fr; }

  /* Avis */
  .avis { padding: 36px 20px; }
  .avis-grid { grid-template-columns: 1fr; }

  /* Château */
  .ch-txt { padding: 32px 20px; }
  .ch-txt h3 { font-size: 26px; }
  .toiles { padding: 36px 20px; }
  .toiles-grid { grid-template-columns: 1fr; }
  .toile-card.featured { grid-column: span 1; }

  /* Label */
  .label-section { padding: 28px 20px; }
  .label-inner { grid-template-columns: 1fr; }
  .label-badge { max-width: 200px; margin: 0 auto 20px; }

  /* Chambres */
  .ch-intro { padding: 32px 20px; }
  .cgrid { grid-template-columns: 1fr; }
  .equip { padding: 32px 20px; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid.equip-grid-5 { grid-template-columns: repeat(2, 1fr); }

  /* Événements */
  .ev-hero { padding: 32px 20px; }
  .ev-hero-inner { gap: 20px; }
  .ev-title { font-size: 31px; }
  .ev-types { padding: 32px 20px; }
  .ev-grid { grid-template-columns: 1fr; }
  .espaces { padding: 32px 20px; }
  .es-grid { grid-template-columns: 1fr; }

  /* Activités */
  .act-onsite { padding: 32px 20px; }
  .act-photo-grid { grid-template-columns: 1fr 1fr; }
  .act-offsite { padding: 32px 20px; }
  .off-grid { grid-template-columns: 1fr; }

  /* Galerie */
  .gal-page { padding: 32px 20px; }
  .gal-full-grid { grid-template-columns: 1fr; }
  .gal-full-item { height: 200px; }

  /* Avenir */
  .av-hero { padding: 32px 20px; }
  .av-hero-inner { gap: 20px; }
  .av-title { font-size: 31px; }
  .av-nature { padding: 32px 20px; }
  .av-nature-inner { gap: 24px; }
  .av-cards { padding: 32px 20px; }
  .av-cards-inner { grid-template-columns: 1fr; }

  /* Contact */
  .contact-page { padding: 32px 20px; }
  .contact-inner { gap: 32px; }
  .ci-title { font-size: 29px; }

  /* Titres */
  .sec-title { font-size: 31px; }
  .sec-hd { margin-bottom: 28px; }

  /* Footer */
  .footer-inner { padding: 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .f-links { flex-wrap: wrap; gap: 10px; }
}

/* ── FRISE CHRONOLOGIQUE ── */
.frise-section {
  background: var(--dark);
  padding: 64px 48px;
}
.frise-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.frise-header {
  text-align: center;
  margin-bottom: 56px;
}
.frise-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}
.frise-eyebrow::before, .frise-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.timeline {
  position: relative;
}
.tl-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(184,150,74,0.2);
  transform: translateX(-50%);
}
.tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-left  { flex-direction: row; }
.tl-right { flex-direction: row-reverse; }
.tl-content {
  width: calc(50% - 44px);
  flex-shrink: 0;
}
.tl-left  .tl-content { text-align: right; }
.tl-right .tl-content { text-align: left; }
.tl-spacer {
  width: calc(50% - 44px);
  flex-shrink: 0;
}
.tl-dot-wrap {
  width: 88px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 6px;
}
.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark);
  outline: 1px solid var(--gold);
  flex-shrink: 0;
}
.tl-major {
  width: 14px;
  height: 14px;
  outline: 2px solid rgba(184,150,74,0.35);
  outline-offset: 3px;
}
.tl-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 31px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 7px;
}
.tl-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}
.tl-label em { font-style: italic; color: var(--green-light); }
.tl-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.tl-tag {
  display: inline-block;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,74,0.3);
  padding: 2px 8px;
  margin-bottom: 7px;
}

@media (max-width: 1024px) {
  .frise-section { padding: 48px 36px; }
  .tl-date { font-size: 26px; }
  .tl-label { font-size: 18px; }
}

@media (max-width: 640px) {
  .frise-section { padding: 36px 20px; }
  .frise-header { margin-bottom: 36px; }
  .tl-line { left: 20px; }
  .tl-item { flex-direction: row !important; margin-bottom: 32px; }
  .tl-content { width: auto; flex: 1; text-align: left !important; }
  .tl-spacer { display: none; }
  .tl-dot-wrap { width: 48px; flex-shrink: 0; }
  .tl-date { font-size: 24px; }
  .tl-desc { font-size: 13px; }
}

/* ── FEATHER ICONS ── */
.fc-icon i,
.equip-icon i,
.ev-icon i,
.off-icon i,
.av-card-icon i,
.ci-icon i,
.label-badge i,
.act-icon i {
  display: block;
}
.fc-icon { margin-bottom: 12px; }
.equip-icon { margin-bottom: 6px; }
.ev-icon { margin-bottom: 10px; }
.off-icon { margin-bottom: 10px; }
.av-card-icon { margin-bottom: 10px; }
.ci-icon { display: flex; align-items: center; }
