/* ===========================================================
   Chalet RedMount — design system (faithful to original)
   Cream background · warm brown accent · Cardo + Amiri serifs
   =========================================================== */

:root {
  /* palette */
  --bg:        #f4ecd9;   /* cream */
  --bg-soft:   #f8f2e4;   /* lighter cream */
  --surface:   #fffdf8;   /* warm white card */
  --ink:       #212529;
  --ink-2:     #343a40;
  --muted:     #5f584c;
  --faint:     #8a8273;
  --line:      #e4d9c1;
  --accent:    rgb(157, 119, 69);   /* warm brown */
  --accent-dk: rgb(132, 99, 56);
  --accent-grad: linear-gradient(0deg, rgba(158,120,70,0.80) 0%, rgb(157,119,69) 100%);
  --card-brown-grad: linear-gradient(0deg, rgba(158,120,70,0.78) 0%, rgb(158,120,70) 100%);

  /* type */
  --font-title: 'Cardo', Georgia, 'Times New Roman', serif;
  --font-text:  'Amiri', Georgia, 'Times New Roman', serif;
  --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* metrics */
  --wr-max: 1140px;
  --gut: clamp(15px, 4vw, 30px);
  --radius: 20px;
  --radius-sm: 10px;
  --shadow: 0px 4px 12px 0px rgba(0,0,0,0.18);
  --shadow-card: 0px 4px 12px 0px rgba(0,0,0,0.26);
  --shadow-sm: 0px 2px 6px 0px rgba(0,0,0,0.16);

  /* themeable feel (driven by Tweaks) */
  --header-bg: rgba(244,236,217,.88);
  --hero-clip: none;
  --hero-radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-2);
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: anywhere;
}

img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
}

.wr {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gut);
  position: relative;
  max-width: var(--wr-max);
}

.section { position: relative; padding-block: 50px; }
.section--pt0 { padding-top: 0; }
.section--pb0 { padding-bottom: 0; }

.eyebrow {
  color: var(--accent);
  margin: 0 0 .4em;
  font-family: var(--font-text);
  font-size: .95em;
  letter-spacing: .04em;
}

.title { font-family: var(--font-title); color: var(--ink); margin: 0; font-size: 2.5em; }
.lead  { margin: .5em 0 0; font-size: 1.2em; color: var(--muted); }

@media (max-width: 500px) {
  .title { font-size: 2em; }
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-system);
  font-weight: 500;
  font-size: 15px;
  color: #1c1c1c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45em;
  padding: .75em 1.05em;
  border: none;
  cursor: pointer;
  background: #efe7d6;
  box-shadow: var(--shadow-sm);
  border-radius: 8px;
  transition: all .2s ease-in-out;
  text-decoration: none;
}
.btn:hover { background: #e7dcc5; box-shadow: 0px 3px 8px 0px rgba(0,0,0,0.2); text-decoration: none; transform: translateY(-1px); }
.btn .um-arrow { width: 1em; height: 1em; }
.btn.primary {
  color: #fff;
  background: var(--accent-grad);
  box-shadow: 0px 2px 6px 0px rgba(0,0,0,0.18);
}
.btn.primary:hover { background: var(--accent); box-shadow: 0px 6px 11px 0px rgba(0,0,0,0.30); color: #fff; }
.btn.large { font-size: 1.05em; }
.btn svg { flex: none; }

/* ===========================================================
   HEADER
   =========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 99;
  height: 70px;
  display: flex;
  align-items: center;
  background: var(--header-bg);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { margin-right: auto; display: flex; align-items: center; line-height: 0; }
.brand img {
  display: block;
  height: 46px;
  width: auto;
  mix-blend-mode: multiply;
}
.nav { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; font-size: 16px; }
.nav a {
  color: var(--ink-2);
  padding: 10px 14px;
  white-space: nowrap;
  font-family: var(--font-text);
}
.nav a:hover { color: var(--accent); text-decoration: none; }
.header__actions { display: flex; align-items: center; gap: 14px; flex: none; }
.header__actions .btn { white-space: nowrap; }

/* language switch */
.lang { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--surface); }
.lang button {
  font-family: var(--font-system); font-weight: 700; font-size: 12px; letter-spacing: .05em;
  padding: 7px 12px; border: 0; background: transparent; color: var(--faint); cursor: pointer;
  transition: background .2s, color .2s; white-space: nowrap;
}
.lang button.is-active { background: var(--accent); color: #fff; }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); cursor: pointer; position: relative; }
.burger span, .burger span::before, .burger span::after {
  content: ""; position: absolute; left: 50%; width: 22px; height: 3px; background: var(--ink-2); border-radius: 2px; transform: translateX(-50%); transition: .25s;
}
.burger span { top: 50%; margin-top: -1.5px; }
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.burger.is-open span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; top: 70px; left: 0; right: 0; z-index: 98;
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
  padding: 10px var(--gut) 26px; display: none; flex-direction: column;
  box-shadow: var(--shadow);
}
.drawer.is-open { display: flex; }
.drawer a { padding: 14px 4px; font-size: 18px; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.drawer .btn { margin-top: 18px; }

/* ===========================================================
   HERO
   =========================================================== */
.hero { position: relative; overflow: hidden; }
.hero__row { display: flex; align-items: center; gap: 3.5em; }
.hero__col {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 0 90px;
}
.hero h1 { font-size: clamp(2.6em, 5.2vw, 3.6em); }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  align-self: flex-start;
  margin-bottom: 1.1em;
  padding: .5em .95em;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent-dk);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: .82em;
  letter-spacing: .01em;
  line-height: 1.3;
}
.hero__badge::before {
  content: "★";
  color: var(--accent);
  font-size: 1em;
  line-height: 1;
}
.hero h1 .q { color: var(--accent); }
.hero__sub { font-size: 1.25em; max-width: 600px; margin: .6em 0 2em; color: var(--muted); }
.hero__media { flex: 1 1 0; min-width: 0; }
.hero__img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--bg-soft);
  border-radius: var(--hero-radius);
  box-shadow: var(--shadow);
}
@media (max-width: 740px) {
  .hero__row { flex-direction: column; align-items: stretch; gap: 0; }
  .hero__col { width: 100%; padding: 16px 0 0; }
  .hero__media { width: 100%; margin-top: 1.6em; }
  .hero__img { margin-top: 0; border-radius: var(--radius); }
}

/* ===========================================================
   STATS (brown card)
   =========================================================== */
.stats-section { padding-block: 50px; }
.stats {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  background: var(--card-brown-grad);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.4em 1em;
}
.stat__n { font-size: 1.8em; font-weight: 700; font-family: var(--font-text); }
.stat__l { font-size: 1em; opacity: .95; }
@media (max-width: 740px) {
  .stat { flex: 1 1 100%; padding: 1em 1.5em; border-bottom: 1px solid rgba(255,255,255,.25); flex-direction: row; justify-content: space-between; align-items: baseline; }
  .stat:last-child { border-bottom: 0; }
}

/* ===========================================================
   BOOKING (Lodgify)
   =========================================================== */
.booking-head { text-align: center; max-width: 760px; margin: 0 auto 1.6em; }
#lodgify-wrap { max-width: 900px; margin: 0 auto; min-height: 90px; }
#lodgify-book-now-box { width: 100%; }

/* ===========================================================
   FEATURE SPLIT (Charme Alpin) — text left, image right
   =========================================================== */
.split { display: flex; align-items: flex-start; flex-direction: row-reverse; gap: 0; }
.split__body { flex: 1 1 0; display: flex; flex-direction: column; align-items: flex-start; }
.split__media { width: calc(50% - 3em); margin-left: 3em; flex: none; display: flex; flex-direction: column; gap: 1.2em; }
.split__media img { width: 100%; display: block; border-radius: calc(var(--radius) / 2); box-shadow: var(--shadow-sm); }
@media (max-width: 750px) {
  .split { flex-direction: column; }
  .split__media { width: 100%; margin: 2.4em 0 0; }
}
.feature-list { list-style: none; margin: 0 0 1.2em; padding: 0; }
.feature-list li { display: flex; align-items: flex-start; margin-bottom: 1.6em; }
.ic {
  flex: none; width: 1.6em; height: 1.6em; margin-right: 1em;
  color: var(--accent); padding: .4em; box-sizing: content-box;
}
.feature-list .ft { display: flex; flex-direction: column; }
.feature-list .ft b { color: var(--ink); font-weight: 700; font-size: 1.1em; font-family: var(--font-text); }
.feature-list .ft span { color: var(--muted); font-size: .98em; }

/* ===========================================================
   REVIEWS (light cards, brown stars)
   =========================================================== */
.reviews { background: linear-gradient(45deg, #fffdf8 0%, #f3eddf 100%); }
.reviews-grid { display: grid; gap: 3em; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-top: 2em; }
.review {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 3px solid #ece3d0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5em;
}
.stars { --pct: calc(var(--rating, 5) / 5 * 100%); display: inline-block; font-size: 1.2em; font-family: Times, serif; letter-spacing: .05em; }
.stars::before {
  content: "★★★★★";
  background: linear-gradient(90deg, var(--accent) var(--pct), rgba(64,64,64,.25) var(--pct));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.review h4 { color: var(--ink); margin: .3em 0 .1em; font-weight: 700; font-family: var(--font-text); font-size: 1.05em; }
.review__txt { font-size: .95em; padding-bottom: 1em; }
.review__by { display: flex; gap: 6px; font-size: .9em; color: var(--muted); border-top: 1px solid var(--line); margin-top: auto; padding-top: 1em; }
.review__by .by-date::before { content: "·"; margin-right: 6px; }

/* ===========================================================
   GALLERY (masonry columns)
   =========================================================== */
.gallery { column-gap: 10px; column-count: 4; margin-top: 1.6em; }
.gallery figure {
  margin: 0 0 10px; break-inside: avoid; overflow: hidden;
  border-radius: var(--radius); background: var(--bg-soft); cursor: zoom-in;
  box-shadow: var(--shadow-sm);
}
.gallery img { width: 100%; display: block; transition: transform .4s ease; }
.gallery figure:hover img { transform: scale(1.04); }
@media (max-width: 750px) { .gallery { column-count: 2; } }
@media (max-width: 500px) { .gallery { column-count: 1; } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,17,12,.92); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: 22px; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lb-btn:hover { background: rgba(255,255,255,.28); }
.lb-prev { left: 3vw; } .lb-next { right: 3vw; }
.lb-close { top: 4vw; right: 4vw; transform: none; width: 46px; height: 46px; }
.lb-count { position: absolute; bottom: 4vw; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.8); font-size: 14px; letter-spacing: .1em; }

/* ===========================================================
   SIMPLE CTA ROW (light)
   =========================================================== */
.cta-row { display: flex; gap: 15px; align-items: center; justify-content: space-between; }
.cta-row h2 { font-size: 2em; }
@media (max-width: 800px) { .cta-row { flex-direction: column; align-items: flex-start; } }

/* ===========================================================
   DETAILS (icon + title + text columns)
   =========================================================== */
.detail-grid { display: grid; gap: 3em; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 2em; }
.detail { display: flex; flex-direction: column; align-items: flex-start; }
.detail .ic { margin: 0 0 .6em; }
.detail h3 { color: var(--ink); margin: 0 0 .2em; font-weight: 400; font-size: 1.5em; }
.detail p { margin: 0; color: var(--muted); font-size: .98em; }

/* ===========================================================
   LOCATION (brown cards)
   =========================================================== */
.loc-section { background: transparent; }
.loc-grid { display: grid; gap: 3em; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: 2em; }
.loc {
  display: flex; flex-direction: column; align-items: flex-start;
  color: #fff;
  background: var(--card-brown-grad);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  padding: 1.6em 1.6em 0;
}
.loc .ic { color: #fff; margin: 0 0 .6em; }
.loc h3 { color: #fff; margin: 0 0 .5em; font-weight: 400; font-size: 1.5em; }
.loc p { margin: 0 0 1.6em; font-size: .95em; }
.loc .btn { margin-top: auto; margin-bottom: 2em; }

/* ===========================================================
   AROUND (masonry cards with captions)
   =========================================================== */
.around { column-gap: 20px; column-count: 4; margin-top: 1.6em; }
.around figure {
  margin: 0 0 20px; break-inside: avoid; overflow: hidden;
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); display: grid; grid-template-rows: 1fr auto;
}
.around figure img { width: 100%; display: block; }
.around figure.is-logo { background: #fff; }
.around figure.is-logo img { object-fit: contain; padding: 22px; }
.around figcaption { padding: 1.2em; }
.around figcaption span { color: var(--ink); }
@media (max-width: 750px) { .around { column-count: 2; } }
@media (max-width: 500px) { .around { column-count: 1; } }

/* ===========================================================
   MAP
   =========================================================== */
.map-row { display: flex; gap: 2em; align-items: flex-start; }
.map-body { flex: 1 1 0; display: flex; flex-direction: column; }
.map-body h2 { font-size: 2.5em; margin-bottom: .6em; }
.map-addr { display: flex; flex-direction: column; }
.map-addr h4 { color: var(--ink); margin: 0; font-weight: 400; font-size: 1.25em; }
.map-addr span { color: var(--muted); }
.map-addr .a2 { margin-top: 1em; }
.map-cta { align-self: flex-start; margin-top: 2em; }
.map-media { position: relative; width: 100%; max-width: 500px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); flex: none; }
.map-media img { width: 100%; display: block; }
.map-pin { position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%); color: var(--accent); }
.map-attr { position: absolute; right: 6px; bottom: 6px; font-size: 9px; padding: 1px 4px; border-radius: 4px; color: #555; background: rgba(229,229,229,.85); }
@media (max-width: 750px) {
  .map-row { flex-direction: column; align-items: center; text-align: center; }
  .map-body { align-items: center; }
  .map-cta { align-self: center; }
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq-wrap { border: 1px solid var(--line); border-radius: 6px; background: var(--surface); margin-top: 1em; overflow: hidden; }
.faq { border-bottom: 1px solid var(--line); }
.faq:last-child { border-bottom: 0; }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--ink); font-family: var(--font-title); font-size: 1.15em; padding: 1em;
}
.faq__q:hover { color: var(--accent); }
.faq__q .pm { flex: none; width: 22px; height: 22px; position: relative; color: var(--accent); }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; left: 50%; top: 50%; background: currentColor; }
.faq__q .pm::before { width: 13px; height: 2px; transform: translate(-50%,-50%); }
.faq__q .pm::after { width: 2px; height: 13px; transform: translate(-50%,-50%); transition: transform .25s ease; }
.faq.is-open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { margin: 0; padding: 0 1em 1.2em; color: var(--muted); }

/* ===========================================================
   FOOTER (light)
   =========================================================== */
.footer { border-top: 1px solid var(--line); padding: 30px 0 60px; }
.footer__row { display: flex; gap: 40px; justify-content: space-between; }
.footer__brand img { height: 56px; width: auto; mix-blend-mode: multiply; margin-top: 12px; }
.footer__brand .copy { color: var(--ink-2); }
.footer__cols { display: flex; gap: 70px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer__cols h4 { color: var(--ink); margin: 0 0 8px; font-family: var(--font-text); font-weight: 700; font-size: 1em; }
.footer__cols ul { list-style: none; margin: 0; padding: 0; }
.footer__cols li { padding: 5px 0; font-size: .92em; }
.footer__cols a { color: var(--muted); }
.footer__cols a:hover { color: var(--ink); }
@media (max-width: 600px) { .footer__row { flex-direction: column; } }

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---- responsive nav ---- */
@media (max-width: 760px) {
  .nav, .header__actions .desktop-only { display: none; }
  .burger { display: block; }
}

/* ===========================================================
   LEGAL PAGES (Privacy / Cookies / CGV)
   =========================================================== */
.page-hero { padding: 60px 0 30px; border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: .5em; }
.page-hero h1 { font-family: var(--font-title); color: var(--ink); font-size: clamp(2.2em, 5vw, 3.2em); }
.page-hero .updated { margin-top: .6em; color: var(--faint); font-size: .95em; }

.legal { max-width: 820px; margin: 0 auto; padding-block: 50px; }
.legal h2 {
  font-family: var(--font-title); color: var(--ink);
  font-size: 1.6em; font-weight: 400;
  margin: 1.8em 0 .5em;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-family: var(--font-text); color: var(--ink); font-weight: 700; font-size: 1.1em; margin: 1.4em 0 .3em; }
.legal p { margin: 0 0 1em; color: var(--ink-2); }
.legal ul { margin: 0 0 1.2em; padding-left: 1.3em; }
.legal li { margin-bottom: .5em; color: var(--ink-2); }
.legal a { color: var(--accent); }
.legal strong { color: var(--ink); }
.legal .note {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm); padding: 1em 1.2em; margin: 0 0 1.4em; font-size: .96em;
}
.legal .toc { display: flex; flex-wrap: wrap; gap: 8px 14px; margin: 0 0 2.4em; padding-bottom: 1.6em; border-bottom: 1px solid var(--line); }
.legal .toc a { font-size: .92em; color: var(--muted); }
.legal .toc a:hover { color: var(--accent); }
.back-link { display: inline-flex; align-items: center; gap: .4em; color: var(--muted); font-size: .95em; margin-bottom: 1.4em; }
.back-link:hover { color: var(--accent); text-decoration: none; }

/* ===========================================================
   THEMEABLE FEEL — driven by the Tweaks panel
   (data-ambiance · data-type · data-geo on <html>)
   =========================================================== */

/* ---- Ambiance: Chalet du soir (warm evening / dark wood) ---- */
html[data-ambiance="soir"] {
  --bg:        #211b15;
  --bg-soft:   #2a231b;
  --surface:   #2f2820;
  --ink:       #f7f0e3;
  --ink-2:     #ece3d3;
  --muted:     #bcb09c;
  --faint:     #948872;
  --line:      #3c3329;
  --accent:    #d8a85f;
  --accent-dk: #c2914a;
  --accent-grad:      linear-gradient(0deg, rgba(216,168,95,.82) 0%, #d8a85f 100%);
  --card-brown-grad:  linear-gradient(0deg, rgba(120,86,46,.92) 0%, #8a6537 100%);
  --header-bg:        rgba(28,22,17,.82);
}
html[data-ambiance="soir"] .brand img { mix-blend-mode: normal; filter: brightness(0) invert(1); }
html[data-ambiance="soir"] .reviews { background: linear-gradient(45deg, #2f2820 0%, #261f18 100%); }
html[data-ambiance="soir"] .review { border-color: #3c3329; }
html[data-ambiance="soir"] .btn { background: #3a3025; color: #f0e7d6; }
html[data-ambiance="soir"] .btn:hover { background: #463a2c; }

/* ---- Ambiance: Neige fraîche (cool fresh-snow morning) ---- */
html[data-ambiance="neige"] {
  --bg:        #eaf0f5;
  --bg-soft:   #f3f7fa;
  --surface:   #ffffff;
  --ink:       #1f2933;
  --ink-2:     #2b3744;
  --muted:     #586675;
  --faint:     #8593a1;
  --line:      #d7e1ea;
  --accent:    #4a6f93;
  --accent-dk: #3a5876;
  --accent-grad:      linear-gradient(0deg, rgba(74,111,147,.82) 0%, #4a6f93 100%);
  --card-brown-grad:  linear-gradient(0deg, rgba(74,111,147,.82) 0%, #4a6f93 100%);
  --header-bg:        rgba(234,240,245,.85);
}
html[data-ambiance="neige"] .reviews { background: linear-gradient(45deg, #ffffff 0%, #e8eff5 100%); }
html[data-ambiance="neige"] .review { border-color: #dde6ee; }
html[data-ambiance="neige"] .btn { background: #e4ecf3; color: #243040; }
html[data-ambiance="neige"] .btn:hover { background: #d6e1eb; }

/* ---- Typographic voice ---- */
html[data-type="editorial"] {
  --font-title: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-text:  'EB Garamond', Georgia, 'Times New Roman', serif;
}
html[data-type="caractere"] {
  --font-title: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-text:  'Spectral', Georgia, 'Times New Roman', serif;
}

/* ---- Geometry / shape language ---- */
html[data-geo="anguleux"] {
  --radius: 3px;
  --radius-sm: 2px;
  --hero-clip: none;
  --hero-radius: 0px;
}
html[data-geo="doux"] {
  --radius: 30px;
  --radius-sm: 18px;
  --hero-clip: none;
  --hero-radius: 28px;
}
html[data-geo="doux"] .btn { border-radius: 999px; }
html[data-geo="anguleux"] .btn { border-radius: 2px; }
html[data-geo="anguleux"] .lang { border-radius: 3px; }
