/* ============================================================
   Namhanami — feuille de style
   Palette crème / encre / rosé · esthétique japonisante épurée
   ============================================================ */

:root {
  --cream:      #f6f0e4;
  --cream-deep: #efe7d6;
  --paper:      #faf6ee;
  --ink:        #2f2e2a;
  --ink-soft:   #5b574e;
  --rose:       #c2876f;
  --rose-deep:  #a96b54;
  --taupe:      #9a8d77;
  --line:       rgba(47, 46, 42, 0.14);
  --header-bg:  rgba(246, 240, 228, 0.88);
  --on-dark:    rgba(246, 240, 228, 0.72);
  --accent-soft: rgba(194, 135, 111, 0.12);
  --shadow:     0 18px 50px -28px rgba(47, 46, 42, 0.45);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --gut: clamp(1.25rem, 4vw, 4rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; margin: 0; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--cream);
  padding: .6rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.surtitre {
  font-family: var(--sans); font-weight: 400; text-transform: uppercase;
  letter-spacing: .28em; font-size: .72rem; color: var(--rose-deep);
}

.section { padding: clamp(3.5rem, 9vw, 7rem) var(--gut); }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.center { text-align: center; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }

/* boutons -------------------------------------------------- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 400;
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem;
  padding: 1rem 1.9rem; text-decoration: none; cursor: pointer;
  border: 1px solid var(--ink); transition: all .25s ease; background: transparent;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--rose-deep); border-color: var(--rose-deep); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   En-tête
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s ease;
}
/* Fond + flou sur un pseudo-élément : un backdrop-filter posé directement sur
   le header « emprisonnerait » le panneau mobile (position: fixed) à sa hauteur. */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
}
.site-header.scrolled { box-shadow: 0 12px 32px -20px rgba(47, 46, 42, 0.4); }
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: .9rem var(--gut);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: nowrap;
}
.brand { display: flex; align-items: center; gap: .55rem; text-decoration: none; flex-shrink: 0; }
.brand-cat { width: 30px; height: 30px; color: var(--ink); }
.brand-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; letter-spacing: .02em; }

.main-nav ul {
  list-style: none; display: flex; align-items: center; gap: clamp(.9rem, 1.5vw, 1.6rem);
  margin: 0; padding: 0; flex-wrap: nowrap;
}
.main-nav li { flex-shrink: 0; }
.main-nav a {
  text-decoration: none; text-transform: uppercase; letter-spacing: .14em;
  font-size: .72rem; color: var(--ink-soft); padding: .4rem 0; position: relative;
  white-space: nowrap;
}
.nav-cta a { white-space: nowrap; }
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); }
.main-nav li:not(.nav-cta) a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: var(--rose); transform: scaleX(0); transform-origin: left center;
  transition: transform .3s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.nav-cta a {
  border: 1px solid var(--ink); padding: .65rem 1.2rem !important; color: var(--ink) !important;
}
.nav-cta a:hover { background: var(--ink); color: var(--cream) !important; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0; z-index: 104;
  background: rgba(47, 46, 42, 0.32);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
body.nav-open .nav-overlay { opacity: 1; pointer-events: auto; }
body.nav-open { overflow: hidden; }

/* ============================================================
   Hero
   ============================================================ */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; }
.hero-media { position: relative; background: var(--cream-deep); overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: hero-zoom 12s ease-out both; }
@keyframes hero-zoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-media .placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem; color: var(--taupe);
  background:
    radial-gradient(circle at 30% 30%, var(--accent-soft), transparent 60%),
    var(--cream-deep);
  text-align: center; padding: 2rem; font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
}
.hero-body {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 5.5rem) var(--gut);
}
.hero-surtitre { margin-bottom: 1.6rem; }
.hero-title { font-size: clamp(3rem, 7vw, 5.4rem); letter-spacing: -.01em; }
.hero-title em { font-style: italic; color: var(--rose); }
.hero-sub { margin: 1.6rem 0 0; font-style: italic; font-family: var(--serif); font-size: 1.45rem; color: var(--ink-soft); }
.hero-sub.small { font-size: 1.2rem; margin-top: .2rem; }
.hero-rule { width: 60px; height: 1px; background: var(--rose); margin: 1.8rem 0; }
.hero-text { max-width: 44ch; color: var(--ink-soft); }
.hero-cta { margin-top: 2.2rem; }
.hero-bandeau {
  grid-column: 1 / -1; text-align: center; padding: .9rem;
  background: var(--ink); color: var(--cream); text-transform: uppercase;
  letter-spacing: .2em; font-size: .68rem;
}

/* ============================================================
   Philosophie
   ============================================================ */
.philo { background: var(--paper); }
.philo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.philo h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 1.6rem; }
.philo p { color: var(--ink-soft); margin: 0 0 1.2rem; }
.philo-points { list-style: none; margin: 0; padding: 0; }
.philo-points li {
  position: relative; padding-left: 2.1rem; margin-bottom: 1.1rem; color: var(--ink);
}
.philo-points li::before {
  content: ""; position: absolute; left: 0; top: .75em; width: 20px; height: 1px;
  background: var(--rose);
}

/* ============================================================
   Soins / prestations
   ============================================================ */
.soins-block { margin-top: 3.5rem; }
.soins-head { margin-bottom: 2rem; }
.soins-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: .6rem 0; }
.soins-head p { color: var(--ink-soft); margin: 0; }

.soin-list { display: grid; gap: 1rem; }
.soin-card {
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 1rem 2rem;
  align-items: baseline; padding: 1.7rem; background: var(--paper);
  border: 1px solid var(--line); transition: border-color .25s, transform .25s;
}
.soin-card:hover { border-color: var(--rose); transform: translateY(-2px); }
.soin-main { min-width: 0; }
.soin-name { font-family: var(--serif); font-size: 1.55rem; line-height: 1.1; }
.soin-duree {
  display: inline-block; margin-left: .8rem; font-size: .68rem; text-transform: uppercase;
  letter-spacing: .18em; color: var(--rose-deep); vertical-align: middle;
}
.soin-desc { color: var(--ink-soft); margin: .6rem 0 0; font-size: .98rem; }
.soin-price { font-family: var(--serif); font-size: 1.7rem; white-space: nowrap; color: var(--ink); }
.soins-note { margin-top: 1.6rem; font-style: italic; color: var(--taupe); font-family: var(--serif); font-size: 1.15rem; }

.cadeaux {
  margin-top: 3.5rem; padding: 2.5rem; text-align: center;
  background: var(--cream-deep); border: 1px dashed var(--rose);
}
.cadeaux h3 { font-size: 1.8rem; margin-bottom: .8rem; }
.cadeaux p { color: var(--ink-soft); max-width: 56ch; margin: 0 auto; }

/* ============================================================
   Cadre & confiance
   ============================================================ */
.cadre { background: var(--ink); color: var(--cream); }
.cadre .surtitre { color: var(--rose); }
.cadre h2 { color: var(--cream); font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 3rem; max-width: 22ch; }
.cadre-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.cadre-item .mark { font-size: 1.6rem; color: var(--rose); display: block; margin-bottom: 1rem; }
.cadre-item h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: .8rem; }
.cadre-item p { color: var(--on-dark); font-size: .98rem; margin: 0; }
.citation {
  margin: 4rem auto 0; max-width: 40ch; text-align: center; font-family: var(--serif);
  font-style: italic; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--cream); line-height: 1.3;
}

/* ============================================================
   À propos
   ============================================================ */
.apropos-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.apropos-media { background: var(--cream-deep); aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow); }
.apropos-media img { width: 100%; height: 100%; object-fit: cover; }
.apropos-media .placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: var(--taupe); text-transform: uppercase; letter-spacing: .15em; font-size: .75rem; text-align: center; padding: 2rem;
}
.apropos h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 1.6rem; }
.apropos p { color: var(--ink-soft); margin: 0 0 1.2rem; }
.apropos .signature { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--rose-deep); margin-top: 1.5rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 6vw, 5rem); }
.contact-intro h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 1rem 0; }
.contact-intro > p { color: var(--ink-soft); max-width: 46ch; }

form.contact-form { margin-top: 2rem; }
.field { margin-bottom: 1.3rem; }
.field label { display: block; text-transform: uppercase; letter-spacing: .15em; font-size: .7rem; color: var(--ink-soft); margin-bottom: .5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .9rem 1rem; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: 0; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--taupe); margin-top: 1rem; }
.honeypot { position: absolute; left: -5000px; }

.info-card { background: var(--paper); border: 1px solid var(--line); padding: 2rem; }
.info-card + .info-card { margin-top: 1.2rem; }
.info-block { margin-bottom: 1.6rem; }
.info-block:last-child { margin-bottom: 0; }
.info-block .label { text-transform: uppercase; letter-spacing: .15em; font-size: .68rem; color: var(--rose-deep); margin-bottom: .35rem; }
.info-block .value { font-size: 1.05rem; }
.info-block a { text-decoration: none; }
.info-block a:hover { color: var(--rose-deep); }
.disclaimer-box {
  margin-top: 1.5rem; padding: 1.2rem 1.4rem; background: var(--cream-deep);
  border-left: 3px solid var(--rose); font-size: .9rem; color: var(--ink-soft);
}

.alert { padding: 1rem 1.3rem; margin-bottom: 1.5rem; border: 1px solid; font-size: .95rem; }
.alert-success { background: #eef3ea; border-color: #8aa97e; color: #3f5635; }
.alert-error { background: #f6eae7; border-color: #c98c7a; color: #8a4634; }

/* ============================================================
   Pages légales
   ============================================================ */
.legal { max-width: 820px; }
.legal h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: .5rem; }
.legal .updated { color: var(--taupe); font-size: .85rem; margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--ink); }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { list-style: none; padding-left: 0; }
.legal li { position: relative; padding-left: 1.8rem; margin-bottom: .5rem; }
.legal li::before {
  content: ""; position: absolute; left: 0; top: .8em; width: 16px; height: 1px;
  background: var(--rose);
}

/* ============================================================
   Pied de page
   ============================================================ */
.site-footer { background: var(--cream-deep); border-top: 1px solid var(--line); }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem,6vw,4.5rem) var(--gut);
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-logo { display: flex; align-items: center; gap: .5rem; }
.footer-logo .brand-cat { width: 26px; height: 26px; color: var(--ink); }
.footer-logo span { font-family: var(--serif); font-size: 1.4rem; }
.footer-tag { color: var(--ink-soft); margin: .6rem 0; font-size: .92rem; }
.footer-disclaimer { font-size: .78rem; color: var(--taupe); max-width: 38ch; }
.footer-col h3 { font-family: var(--sans); text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; color: var(--rose-deep); margin-bottom: 1rem; font-weight: 500; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { text-decoration: none; color: var(--ink-soft); font-size: .92rem; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--line); padding: 1.5rem var(--gut); text-align: center; }
.footer-bottom p { margin: 0; font-size: .8rem; color: var(--taupe); }

/* ============================================================
   Responsive — bascule en menu burger dès 1024px (le menu inline
   ne tient pas confortablement en dessous avec plusieurs pages)
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 48vh; order: -1; }
  .philo-grid, .apropos-grid, .contact-grid { grid-template-columns: 1fr; }
  .cadre-grid { grid-template-columns: 1fr; gap: 2rem; }
  .apropos-media { aspect-ratio: 16/10; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: block; position: relative; z-index: 110; }
  .main-nav ul {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); z-index: 105;
    flex-direction: column; align-items: flex-start; gap: 1.6rem;
    background: var(--cream); padding: 6rem 2rem 2rem; box-shadow: var(--shadow);
    transform: translateX(100%); visibility: hidden;
    transition: transform .3s ease, visibility 0s linear .3s;
  }
  .main-nav ul.open { transform: translateX(0); visibility: visible; transition: transform .3s ease; }
  .main-nav a { font-size: 1rem; }
  .nav-cta { width: 100%; margin-top: .5rem; }
  .nav-cta a {
    display: block; text-align: center; white-space: nowrap;
    padding: .9rem 1rem !important; font-size: .85rem;
  }
}

@media (max-width: 560px) {
  .soin-card { grid-template-columns: 1fr; }
  .soin-price { font-size: 1.4rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ============================================================
   Pages personnalisées (moteur de gabarits)
   ============================================================ */
.page-head { padding-bottom: clamp(1.5rem, 4vw, 3rem); }
.page-title { font-size: clamp(2.4rem, 5vw, 3.8rem); }

/* Gabarit éditorial : texte + image en alternance */
.edito { padding-top: clamp(2rem, 5vw, 3.5rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.edito-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.edito-grid.edito-solo { grid-template-columns: 1fr; max-width: 760px; }
.edito-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.edito-text p { color: var(--ink-soft); margin: 0 0 1.1rem; }
.edito-media { overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.edito-media img { width: 100%; height: 100%; object-fit: cover; }
/* image à gauche : on inverse l'ordre des colonnes */
.edito-grid.cote-gauche .edito-text { order: 2; }
.edito-grid.cote-gauche .edito-media { order: 1; }

/* Gabarit événement */
.evt-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }
.evt-grid.evt-solo { grid-template-columns: 1fr; max-width: 720px; }
.evt-media { overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.evt-media img { width: 100%; height: 100%; object-fit: cover; }
.evt-body h1 { margin: 1rem 0; }
.evt-meta { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin: 0 0 1.4rem; font-family: var(--sans); }
.evt-date { font-weight: 500; color: var(--rose-deep); text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; }
.evt-lieu { color: var(--taupe); font-size: .9rem; }
.evt-text p { color: var(--ink-soft); margin: 0 0 1.1rem; }

/* Bandeau d'événement en haut de l'accueil */
.event-banner {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  padding: .85rem 1.4rem; background: var(--rose-deep); color: var(--cream);
  text-decoration: none; text-align: center; transition: background .25s ease;
}
.event-banner:hover { background: var(--ink); }
.event-banner span { font-family: var(--serif); font-size: 1.1rem; }
.event-banner em { font-style: normal; text-transform: uppercase; letter-spacing: .15em; font-size: .7rem; opacity: .92; }

@media (max-width: 820px) {
  .edito-grid, .evt-grid { grid-template-columns: 1fr; }
  .edito-grid.cote-gauche .edito-text { order: 0; }
  .edito-grid.cote-gauche .edito-media { order: 0; }
  .edito-media, .evt-media { aspect-ratio: 16/10; }
}

/* ============================================================
   Gabarit FAQ
   ============================================================ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: .4rem 0; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.1rem 2.2rem 1.1rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.2rem, 2.5vw, 1.5rem); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: .3rem; top: 50%; width: 12px; height: 12px;
  border-right: 1.5px solid var(--rose); border-bottom: 1.5px solid var(--rose);
  transform: translateY(-65%) rotate(45deg); transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item summary:hover { color: var(--rose-deep); }
.faq-reponse { padding: 0 2.2rem 1.3rem 0; }
.faq-reponse p { color: var(--ink-soft); margin: 0 0 1rem; }

/* ============================================================
   Gabarit Témoignages
   ============================================================ */
.temo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}
.temo-card {
  margin: 0; padding: 2rem; background: var(--paper); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 1rem;
}
.temo-card blockquote { margin: 0; position: relative; padding-top: 1.6rem; }
.temo-card blockquote::before {
  content: "\201C"; position: absolute; top: -.6rem; left: -.3rem;
  font-family: var(--serif); font-size: 3.2rem; color: var(--rose); opacity: .5; line-height: 1;
}
.temo-card blockquote p { font-family: var(--serif); font-style: italic; font-size: 1.18rem; color: var(--ink); margin: 0 0 .8rem; }
.temo-card figcaption { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--rose-deep); }

/* ============================================================
   Gabarit Galerie
   ============================================================ */
.gal-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
}
.gal-item { margin: 0; }
.gal-item img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  box-shadow: var(--shadow); transition: transform .35s ease;
}
.gal-item img:hover { transform: translateY(-4px); }
.gal-item figcaption {
  margin-top: .6rem; font-family: var(--serif); font-style: italic;
  color: var(--ink-soft); font-size: 1rem; text-align: center;
}

/* ============================================================
   Gabarit Promo + lien discret
   ============================================================ */
.promo-wrap { max-width: 620px; margin: 0 auto; }
.promo-card {
  text-align: center; padding: clamp(2.2rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--paper); border: 1px solid var(--rose);
  box-shadow: var(--shadow);
}
.promo-discount {
  font-family: var(--serif); font-weight: 600; color: var(--rose-deep);
  font-size: clamp(3rem, 9vw, 5rem); line-height: 1; margin: 0 0 .6rem;
}
.promo-titre { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0 0 1.2rem; }
.promo-cond { color: var(--ink-soft); margin: 0 auto 1.4rem; max-width: 46ch; }
.promo-cond p { margin: 0 0 .8rem; }
.promo-code {
  display: inline-block; margin: 0 0 1.6rem; padding: .5rem 1.1rem;
  border: 1px dashed var(--rose); letter-spacing: .12em; font-size: .9rem; color: var(--ink);
}
.promo-code strong { letter-spacing: .18em; }

/* Lien volontairement très discret dans le pied de page */
.footer-dot {
  display: inline-block; margin-left: .5rem; text-decoration: none;
  color: var(--taupe); opacity: .35; transition: opacity .2s ease;
}
.footer-dot:hover { opacity: .9; }

/* Largeurs desktop intermédiaires : on resserre le menu pour éviter tout débordement */
@media (min-width: 1025px) and (max-width: 1200px) {
  .main-nav a { font-size: .67rem; letter-spacing: .1em; }
  .nav-cta a { padding: .55rem 1rem !important; }
  .brand-name { font-size: 1.35rem; }
}

/* Le chat du footer comme accès discret à la page cachée */
.footer-secret { display: inline-flex; text-decoration: none; color: inherit; cursor: pointer; }
