:root {
  --white: #ffffff;
  --ivory: #faf7f2;
  --sage: #c7cec2;
  --sage-light: #eef1ec;
  --petrol: #2f4f5e;
  --petrol-deep: #213a46;
  --terracotta: #d9a28f;
  --terracotta-light: #f5e5df;
  --terracotta-text: #a05e49;
  --greige: #e7e1d9;
  --mineral: #747873;
  --gold: #c8b68a;
  --gold-text: #7b6841;
  --ink: #29343a;
  --line: rgba(47, 79, 94, .15);
  --shadow: 0 24px 70px rgba(47, 79, 94, .11);
  --shadow-soft: 0 14px 40px rgba(47, 79, 94, .08);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 13px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Source Sans Pro", "Segoe UI", Arial, sans-serif;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(47, 79, 94, .34); outline-offset: 3px; }
::selection { color: var(--petrol-deep); background: var(--sage); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: white;
  background: var(--petrol);
  border-radius: 0 0 10px 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 850px); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section--ivory { background: var(--ivory); }
.section--sage { background: var(--sage-light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1rem;
  color: var(--petrol);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
h1, h2, h3 { margin: 0; color: var(--petrol-deep); font-family: var(--serif); font-weight: 500; line-height: 1.08; }
h1 { font-size: clamp(3.6rem, 6.7vw, 6.9rem); letter-spacing: -.047em; }
h2 { font-size: clamp(2.5rem, 4.7vw, 4.35rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); letter-spacing: -.015em; }
p { margin: 0 0 1.3rem; }
.lead { color: #4f5d63; font-size: clamp(1.08rem, 1.75vw, 1.32rem); line-height: 1.72; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .91);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 32px rgba(47, 79, 94, .06); }
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { width: min(390px, 39vw); text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.1vw, 2rem); }
.site-nav a { color: #42535b; font-size: .9rem; font-weight: 600; text-decoration: none; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--petrol); }
.nav-cta { padding: .76rem 1.12rem; color: white !important; background: var(--petrol); border-radius: 999px; }
.nav-cta:hover { background: var(--petrol-deep); }
.menu-toggle { display: none; padding: .5rem; color: var(--petrol); background: transparent; border: 0; }
.menu-toggle span { display: block; width: 27px; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 820px; display: flex; align-items: center; padding: 176px 0 110px; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fff 74%, var(--ivory) 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 { max-width: 780px; }
.hero h1 em { display: block; color: var(--terracotta-text); font-weight: 400; }
.hero-copy .lead { max-width: 720px; margin: 2rem 0 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-art { position: relative; margin: 0; padding: 22px; }
.hero-art::before { content: ""; position: absolute; inset: 3% 8% 7% 0; background: var(--sage-light); border-radius: 48% 52% 43% 57% / 48% 42% 58% 52%; }
.hero-art img { position: relative; width: 100%; height: auto; border-radius: 48% 52% 43% 57% / 48% 42% 58% 52%; mix-blend-mode: multiply; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .88rem 1.38rem;
  color: white;
  background: var(--petrol);
  border: 1px solid var(--petrol);
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--petrol-deep); box-shadow: 0 12px 30px rgba(47, 79, 94, .16); }
.button--secondary { color: var(--petrol); background: transparent; border-color: var(--line); }
.button--secondary:hover { color: var(--petrol-deep); background: white; }

.availability { padding: 0 0 36px; background: var(--ivory); }
.availability-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.6rem; align-items: center; padding: 1.45rem 1.7rem; color: var(--petrol-deep); background: white; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); }
.availability-card strong { display: block; margin-bottom: .14rem; font-family: var(--serif); font-size: clamp(1.08rem, 1.8vw, 1.25rem); font-weight: 600; line-height: 1.35; }
.availability-card p { margin: 0; color: #5e696e; font-size: .94rem; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--petrol); font-size: .9rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.split-layout { display: grid; grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr); gap: clamp(3.5rem, 8vw, 7rem); align-items: center; }
.split-layout--image-right { grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); }
.section-copy h2 { margin-bottom: 1.55rem; }
.section-copy > p:last-child { margin-bottom: 0; }
.editorial-art { margin: 0; position: relative; }
.editorial-art img { width: 100%; height: auto; }
.editorial-art--room { padding: 24px; background: white; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow-soft); }
.editorial-art--room img { border-radius: calc(var(--radius-xl) - 16px); }
.editorial-art--portrait img { width: 100%; height: auto; border-radius: 50% 50% 34px 34px; box-shadow: var(--shadow); }
.editorial-art--landscape { padding: 18px; background: rgba(255, 255, 255, .76); border: 1px solid rgba(47, 79, 94, .12); border-radius: 48% 52% 45% 55% / 12% 16% 84% 88%; }
.editorial-art--landscape img { width: 100%; height: auto; min-height: 0; border-radius: 48% 52% 45% 55% / 12% 16% 84% 88%; }

.principles { display: grid; gap: 1rem; margin-top: 2.2rem; }
.principles article { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; padding: 1.2rem 0; border-top: 1px solid var(--line); }
.principles article:last-child { border-bottom: 1px solid var(--line); }
.principles span { color: var(--gold-text); font-family: var(--serif); font-size: 1.15rem; }
.principles h3 { margin-bottom: .55rem; font-size: 1.38rem; }
.principles p { margin: 0; color: #5a666c; font-size: .94rem; }

.feature-list { display: grid; gap: .85rem; margin: 2rem 0 2.2rem; padding: 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 24px 1fr; gap: .8rem; align-items: start; color: #4e5c62; }
.feature-list li::before { content: ""; width: 16px; height: 16px; margin-top: .33rem; background: radial-gradient(circle at center, var(--gold) 0 3px, transparent 4px), var(--sage-light); border-radius: 50%; }
.note { padding: 1rem 1.1rem; color: #5a6468; background: white; border-left: 3px solid var(--gold); border-radius: 0 10px 10px 0; font-size: .86rem; }

.steps-list { counter-reset: steps; display: grid; gap: .8rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.steps-list li { counter-increment: steps; display: grid; grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.15rem; background: rgba(255, 255, 255, .75); border: 1px solid rgba(47, 79, 94, .11); border-radius: var(--radius-md); }
.steps-list li::before { content: "0" counter(steps); display: grid; place-items: center; width: 42px; height: 42px; color: var(--petrol); background: white; border-radius: 14px; font-family: var(--serif); }
.steps-list h3 { margin: .15rem 0 .45rem; font-size: 1.3rem; }
.steps-list p { margin: 0; color: #5d696e; font-size: .92rem; }

/* Accompagnements et tarifs */
.offers-heading { margin-bottom: clamp(3rem, 6vw, 5rem); }
.offers-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.3rem, 3vw, 2rem); align-items: stretch; }
.offer-card { display: flex; flex-direction: column; min-width: 0; padding: clamp(1.55rem, 3.5vw, 2.4rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.offer-card--featured { background: linear-gradient(180deg, #fbfaf7 0%, var(--ivory) 100%); border-color: rgba(47,79,94,.22); }
.offer-card__top { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem; align-items: start; padding-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.offer-card h3 { font-size: clamp(1.75rem, 3vw, 2.45rem); }
.offer-label { margin: 0 0 .42rem; color: var(--petrol); font-size: .72rem; font-weight: 750; letter-spacing: .12em; line-height: 1.35; text-transform: uppercase; }
.offer-price { margin: -.1rem 0 0; color: var(--petrol-deep); font-family: var(--serif); line-height: 1; white-space: nowrap; }
.offer-price strong { font-size: clamp(2rem, 3.2vw, 2.8rem); font-weight: 500; letter-spacing: -.04em; }
.offer-duration { margin: 1.25rem 0 1.25rem; color: var(--terracotta-text); font-weight: 700; }
.offer-card > p:not(.offer-duration):not(.offer-list-title):not(.offer-closing) { color: #4f5d63; }
.offer-list-title { margin: .45rem 0 .65rem; color: var(--petrol-deep); font-weight: 750; }
.offer-list { display: grid; gap: .48rem; margin: 0 0 1.4rem; padding: 0; list-style: none; }
.offer-list li { position: relative; padding-left: 1.35rem; color: #4f5d63; }
.offer-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; background: var(--sage); border-radius: 50%; transform: translateY(-50%); }
.offer-closing { margin: .15rem 0 1.4rem; color: #4f5d63; font-size: .94rem; }
.offer-footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 1.5rem; align-items: end; margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.offer-footer p { margin: 0; }
.offer-footer span { display: block; margin-bottom: .18rem; color: #667177; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.offer-footer strong { color: var(--petrol-deep); font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }

.about-grid { display: grid; grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr); gap: clamp(3.5rem, 8vw, 7rem); align-items: center; }
.portrait-frame { position: relative; margin: 0; padding: 20px 20px 0; overflow: hidden; background: var(--ivory); border: 1px solid var(--line); border-radius: 48% 48% 30px 30px; box-shadow: var(--shadow-soft); }
.portrait-frame::after { content: ""; position: absolute; left: 9%; right: 9%; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.portrait-frame img { width: 100%; height: auto; border-radius: 45% 45% 20px 20px; }
.signature { margin-top: 1.8rem; color: var(--petrol); font-family: var(--serif); font-size: 2rem; font-style: italic; }

.contact-section { overflow: hidden; background: var(--petrol-deep); }
.contact-grid { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.02fr); gap: clamp(3rem, 7vw, 6rem); align-items: start; }
.contact-copy { color: rgba(255,255,255,.73); }
.contact-copy .eyebrow { color: var(--sage); }
.contact-copy h2 { margin-bottom: 1.5rem; color: white; }
.contact-copy .lead { color: rgba(255,255,255,.76); }
.contact-art { width: min(100%, 350px); margin: 2.8rem 0 0; padding: 14px; background: rgba(255,255,255,.95); border-radius: 34px; }
.contact-art img { width: 100%; border-radius: 24px; }
.contact-form { padding: clamp(1.5rem, 4vw, 2.6rem); background: white; border-radius: var(--radius-xl); box-shadow: 0 34px 90px rgba(0,0,0,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.05rem; }
.form-group label { display: block; margin-bottom: .42rem; color: var(--petrol-deep); font-size: .82rem; font-weight: 700; }
.required { color: #a0533d; }
.form-control { width: 100%; min-height: 52px; padding: .8rem .95rem; color: var(--ink); background: var(--ivory); border: 1px solid transparent; border-radius: 12px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
textarea.form-control { min-height: 155px; resize: vertical; }
.form-control:focus { background: white; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(199,206,194,.28); }
.form-control[aria-invalid="true"] { border-color: #b55243; }
.form-error { display: none; margin-top: .35rem; color: #9d4338; font-size: .76rem; }
.form-group.has-error .form-error { display: block; }
.privacy-note { margin: .2rem 0 1.1rem; color: #5f686c; font-size: .78rem; line-height: 1.55; }
.privacy-note a { color: var(--petrol); font-weight: 650; }
.form-note { margin: .85rem 0 0; color: #5f686c; font-size: .76rem; }
.form-status { display: none; margin-bottom: 1rem; padding: .75rem .9rem; border-radius: 10px; font-size: .85rem; }
.form-status.is-error { display: block; color: #7a322a; background: #f9e9e5; }
.hidden { position: absolute !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; border: 0 !important; }

.site-footer { padding: 3rem 0 1.5rem; color: rgba(255,255,255,.66); background: #182c35; }
.footer-top { display: grid; grid-template-columns: 1.4fr .65fr .65fr; gap: 3rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { max-width: 360px; filter: brightness(0) invert(1); opacity: .92; }
.footer-intro { max-width: 480px; margin-top: 1rem; font-size: .84rem; }
.footer-col h3 { margin-bottom: .9rem; color: white; font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: .45rem; }
.footer-links a { color: rgba(255,255,255,.66); font-size: .84rem; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; padding-top: 1.3rem; font-size: .72rem; }

.legal-hero { padding: 160px 0 70px; background: var(--ivory); }
.legal-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 4rem; align-items: center; }
.legal-hero h1 { max-width: 780px; font-size: clamp(3rem, 6vw, 5.3rem); }
.legal-illustration { margin: 0; padding: 16px; background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.legal-illustration img { width: 100%; border-radius: calc(var(--radius-lg) - 10px); }
.legal-content { padding: 80px 0 110px; }
.legal-content h2 { margin: 2.5rem 0 1rem; font-size: 2rem; }
.legal-content h3 { margin: 1.8rem 0 .7rem; font-size: 1.4rem; }
.legal-content p, .legal-content li { color: #536168; }
.legal-content ul { padding-left: 1.3rem; }
.legal-card { margin: 1.5rem 0; padding: 1.5rem; background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius-md); }
.legal-card p:last-child { margin-bottom: 0; }
.simple-header .header-inner { min-height: 82px; }
.simple-header .brand { width: min(360px, 54vw); }

.message-page { min-height: 100vh; display: grid; place-items: center; padding: 118px 20px 44px; background: var(--ivory); }
.message-card { width: min(100%, 820px); padding: clamp(2rem, 6vw, 4.5rem); text-align: center; background: white; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.message-illustration { width: min(100%, 380px); margin: 0 auto 1.7rem; }
.message-illustration img { width: 100%; }
.message-card h1 { margin-bottom: 1.2rem; font-size: clamp(2.8rem, 7vw, 4.8rem); }
.message-card p { max-width: 600px; margin: 0 auto 1.8rem; color: #59666c; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .site-nav { position: fixed; inset: 92px 0 auto; display: grid; gap: 0; padding: 1rem 24px 1.4rem; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); transform: translateY(-125%); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: .85rem 0; }
  .nav-cta { margin-top: .5rem; text-align: center; }
  .menu-toggle { display: block; }
  .brand { width: 330px; max-width: calc(100vw - 105px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-art { width: min(100%, 650px); margin-inline: auto; }
  .split-layout, .split-layout--image-right, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-layout--image-right .section-copy { order: 1; }
  .split-layout--image-right .editorial-art { order: 2; }
  .editorial-art { width: min(100%, 670px); margin-inline: auto; }
  .portrait-frame { width: min(100%, 560px); margin-inline: auto; }
  .contact-art { width: min(100%, 320px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 80px 0; }
  .header-inner { min-height: 76px; }
  .site-nav { top: 76px; }
  .brand { width: 260px; }
  .hero { min-height: auto; padding: 138px 0 82px; }
  h1 { font-size: clamp(3.1rem, 14vw, 4.8rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-art { padding: 12px; }
  .availability-card { grid-template-columns: 1fr; }
  .editorial-art--portrait img { border-radius: 46% 46% 26px 26px; }
  .editorial-art--landscape img { min-height: 0; }
  .principles article { grid-template-columns: 44px 1fr; }
  .steps-list li { grid-template-columns: 44px 1fr; padding: 1rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { border-radius: 24px; }
  .footer-top, .footer-bottom { display: grid; grid-template-columns: 1fr; }
  .footer-bottom { gap: .4rem; }
  .legal-hero { padding-top: 132px; }
  .legal-hero-grid { grid-template-columns: 1fr; gap: 2.3rem; }
  .legal-illustration { width: min(100%, 420px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Preserve the intrinsic proportions of all validated illustrations. */
.hero-art img,
.editorial-art img,
.portrait-frame img,
.contact-art img,
.legal-illustration img,
.message-illustration img {
  height: auto;
  aspect-ratio: auto;
}

/* Locked vertical logo and first-person edition */
.brand {
  width: 172px;
  flex: 0 0 auto;
}
.brand img {
  width: 100%;
  height: auto;
}
.header-inner {
  min-height: 126px;
}
.site-nav {
  margin-left: auto;
}
.footer-brand {
  width: 180px;
  max-width: 100%;
  filter: none;
  opacity: 1;
}
.site-footer {
  color: #5d676b;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.footer-top {
  border-bottom-color: rgba(47, 79, 94, .14);
}
.footer-col h3 {
  color: var(--petrol-deep);
}
.footer-links a {
  color: #5d676b;
}
.footer-links a:hover {
  color: var(--petrol);
}
.simple-header .header-inner {
  min-height: 126px;
}
.simple-header .brand {
  width: 158px;
  max-width: 40vw;
}

@media (max-width: 1040px) {
  .header-inner {
    min-height: 108px;
  }
  .brand {
    width: 145px;
    max-width: calc(100vw - 92px);
  }
  .site-nav {
    inset: 108px 0 auto;
  }
  .simple-header .header-inner {
    min-height: 108px;
  }
  .simple-header .brand {
    width: 142px;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .simple-header .header-inner {
    min-height: 92px;
  }
  .brand,
  .simple-header .brand {
    width: 116px;
    max-width: calc(100vw - 80px);
  }
  .site-nav {
    top: 92px;
  }
  .hero {
    padding-top: 152px;
  }
  .legal-hero {
    padding-top: 150px;
  }
  .footer-brand {
    width: 150px;
  }
}

/* Navigation des pages secondaires : reste accessible sans bouton hamburger. */
@media (max-width: 1040px) {
  .simple-header .site-nav {
    position: static; inset: auto; display: flex; gap: .9rem; margin-left: auto; padding: 0;
    background: transparent; border: 0; box-shadow: none; transform: none; opacity: 1;
    pointer-events: auto; transition: none;
  }
  .simple-header .site-nav a { padding: .65rem .8rem; }
  .simple-header .nav-cta { margin-top: 0; }
}
@media (max-width: 760px) {
  .simple-header .header-inner { flex-wrap: wrap; padding-block: .7rem; }
  .simple-header .site-nav { width: auto; gap: .2rem; }
  .simple-header .site-nav a { font-size: .78rem; padding: .5rem .55rem; }
  .simple-header .nav-cta { padding: .58rem .8rem; }
}

@media (max-width: 800px) {
  .offers-grid { grid-template-columns: 1fr; }
  .offer-card__top { grid-template-columns: 1fr; gap: .7rem; }
  .offer-price { margin-top: 0; }
}
