@font-face {
  font-family: "Or Lemmen";
  src: url("../fonts/or-lemmen-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Or Lemmen";
  src: url("../fonts/or-lemmen-bold-italic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Maison Neue";
  src: url("../fonts/maison-neue-book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Maison Neue";
  src: url("../fonts/maison-neue-book-italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Maison Neue";
  src: url("../fonts/maison-neue-demi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Maison Neue";
  src: url("../fonts/maison-neue-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Maison Neue Mono";
  src: url("../fonts/maison-neue-mono-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #173632;
  --deep: #0d2925;
  --cream: #f3efe8;
  --paper: #ebe5db;
  --coral: #f16f57;
  --yellow: #efd447;
  --sage: #91a78e;
  --magazine-mist: #d7d8d2;
  --line: rgba(23, 54, 50, 0.22);
  --gutter: clamp(22px, 4.2vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "Maison Neue", Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
body, button, input, select, textarea { font-size: 16px; }
main { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; }
h1 { font-family: "Or Lemmen", Georgia, serif; font-weight: 700; letter-spacing: -0.045em; }
h2, h3, blockquote { font-family: "Or Lemmen", Georgia, serif; font-weight: 700; letter-spacing: -0.052em; }
h1, h2, h3, p { text-wrap: pretty; }
em { font-family: "Or Lemmen", Georgia, serif; font-weight: 700; }
h1 em { font-family: "Or Lemmen", Georgia, serif; font-weight: 700; font-style: italic; }
::selection { color: var(--deep); background: var(--yellow); }

.section-shell { padding: clamp(90px, 10vw, 160px) var(--gutter); }
.dark-section { color: var(--cream); background: var(--deep); }
.overline { display: inline-block; text-transform: uppercase; font-size: 9px; line-height: 1.2; letter-spacing: 0.15em; }
.overline.light { color: rgba(243, 239, 232, 0.72); }
.primary-button, .outline-button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 260px; padding: 17px 18px 15px; border: 1px solid var(--ink); text-transform: uppercase; font-size: 9px; letter-spacing: 0.12em; cursor: pointer; transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease; }
.primary-button { color: var(--cream); background: var(--ink); }
.primary-button span, .outline-button span { margin-left: 28px; font-size: 16px; line-height: 0; }
.primary-button:hover, .outline-button:hover { transform: translateY(-4px); }
.primary-button.full, .outline-button.full { width: 100%; }
.coral-button { color: var(--ink); background: var(--coral); border-color: var(--coral); }
.cream-button { color: var(--ink); background: var(--cream); border-color: var(--cream); }
.underlined-link { display: inline-flex; align-items: center; gap: 28px; padding-bottom: 7px; border-bottom: 1px solid currentColor; text-transform: uppercase; font-size: 9px; letter-spacing: 0.12em; transition: gap 0.25s ease; }
.underlined-link:hover { gap: 39px; }
.underlined-link.light { color: var(--cream); }
.round-link { width: 58px; height: 58px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; font-size: 22px; transition: 0.25s ease; }
.round-link:hover { color: var(--cream); background: var(--ink); transform: rotate(8deg); }
.section-title-row { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.55fr) auto; align-items: end; gap: clamp(35px, 7vw, 110px); margin-bottom: clamp(60px, 8vw, 120px); }
.section-title-row h2 { margin: 28px 0 0; font-size: clamp(53px, 7vw, 108px); line-height: 0.9; }
.section-title-row h2 em { font-style: italic; }
.section-title-row > p { margin: 0 0 8px; font-size: 17px; line-height: 1.5; }
.reveal { opacity: 1; transform: none; transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1); }
.mf-js .reveal { opacity: 0; transform: translateY(34px); }
.mf-js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Navigation */
.scroll-progress { position: fixed; inset: 0 auto auto 0; z-index: 200; height: 3px; background: var(--coral); pointer-events: none; transition: width 0.08s linear; }
.global-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 82px; padding: 0 var(--gutter); display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 30px; color: var(--ink); background: rgba(243, 239, 232, 0.96); border-bottom: 1px solid var(--line); transition: 0.35s ease; }
.global-header.is-overlay:not(.is-scrolled) { color: var(--cream); background: transparent; border-color: rgba(243, 239, 232, 0.28); }
.global-header.is-recipe-split:not(.is-scrolled) { background: linear-gradient(90deg,rgba(243,239,232,.97) 0%,rgba(243,239,232,.97) 59%,rgba(243,239,232,0) 59%,rgba(243,239,232,0) 100%); border-color: transparent; }
.global-header.is-scrolled { height: 68px; box-shadow: 0 8px 30px rgba(13, 41, 37, 0.08); backdrop-filter: blur(12px); }
.global-brand { width: 170px; height: 55px; display: flex; align-items: center; overflow: hidden; }
.global-brand img { width: 100%; height: auto; }
.global-header.is-overlay:not(.is-scrolled) .global-brand img { filter: brightness(0) invert(1); }
.global-nav { display: flex; justify-content: center; align-items: center; gap: clamp(15px, 2vw, 34px); }
.global-nav .nav-item { position: relative; display: flex; align-items: center; }
.global-nav a { position: relative; padding: 9px 0; font-family: "Maison Neue", Arial, sans-serif; font-size: 14px; font-weight: 600; letter-spacing: -0.015em; }
.global-nav a::after { content: ""; position: absolute; inset: auto 0 3px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.25s ease; }
.global-nav a:hover::after, .global-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.global-nav small { position: absolute; top: -11px; right: -19px; padding: 3px 6px; color: var(--ink); background: var(--coral); font-family: "Maison Neue", Arial, sans-serif; font-size: 6px; letter-spacing: .06em; text-transform: uppercase; transform: rotate(4deg); }
.global-nav .nav-submenu { position: absolute; top: calc(100% + 10px); left: 50%; width: 170px; padding: 8px 14px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); box-shadow: 0 18px 35px rgba(13,41,37,.12); opacity: 0; visibility: hidden; transform: translate(-50%,-7px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.global-nav .nav-submenu::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
.global-nav .nav-item:hover .nav-submenu,.global-nav .nav-item:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.global-nav .nav-submenu a { display: block; padding: 9px 0; font-size: 12px; }
.global-nav .nav-submenu a::after { bottom: 5px; }
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-account,.header-club { padding: 9px 10px 8px; border: 1px solid currentColor; text-transform: uppercase; font-size: 11px; letter-spacing: 0.09em; transition: 0.2s; white-space: nowrap; }
.header-account span,.header-club span { margin-left: 12px; font-size: 10px; }
.header-account:hover,.header-club:hover { color: var(--ink); background: var(--cream); }
.header-account { background: rgba(243,239,232,.12); }
.menu-button { display: none; width: 43px; height: 43px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-button i { display: block; height: 1px; margin: 7px 0; background: currentColor; transition: 0.25s; }
.menu-button.active { color: var(--cream); }
.menu-button.active i:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button.active i:last-child { transform: translateY(-4px) rotate(-45deg); }
.menu-overlay { position: fixed; inset: 0; z-index: 90; padding: 120px var(--gutter) 45px; display: flex; flex-direction: column; justify-content: space-between; color: var(--cream); background: var(--deep); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: 0.35s ease; }
.menu-overlay.open { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-number { color: rgba(243, 239, 232, 0.45); font-size: 9px; letter-spacing: 0.14em; }
.menu-overlay nav a { display: grid; grid-template-columns: 42px 1fr auto; align-items: baseline; padding: 10px 0; border-bottom: 1px solid rgba(243, 239, 232, 0.2); font-family: "Or Lemmen", Georgia, serif; font-size: clamp(42px, 9vw, 92px); letter-spacing: -0.05em; }
.menu-overlay nav span { font-family: "Maison Neue", Arial, sans-serif; font-size: 8px; letter-spacing: 0.13em; }
.menu-overlay nav .menu-link-label { display: flex; align-items: center; gap: 12px; font-family: "Or Lemmen", Georgia, serif; font-size: clamp(42px, 9vw, 92px); letter-spacing: -0.05em; }
.menu-link-label small { padding: 4px 6px; color: var(--ink); background: var(--coral); font-family: "Maison Neue", Arial, sans-serif; font-size: 7px; letter-spacing: .08em; text-transform: uppercase; transform: rotate(3deg); }
.menu-overlay nav b { font-size: 20px; font-weight: 400; }
.menu-overlay nav .mobile-submenu-link { padding: 7px 0 7px 42px; grid-template-columns: 42px 1fr auto; }
.menu-overlay nav .mobile-submenu-link .mobile-submenu-label { font-family: "Maison Neue",Arial,sans-serif; font-size: clamp(18px,4vw,28px); font-weight: 600; letter-spacing: -.02em; }
.menu-foot { display: flex; justify-content: space-between; gap: 25px; color: rgba(243, 239, 232, 0.55); font-size: 10px; }

/* Home */
.home-hero { position: relative; min-height: 760px; height: 100svh; color: var(--cream); background: var(--deep); overflow: hidden; }
.home-hero > img { object-fit: cover; animation: heroImage 12s ease-out both; }
.home-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 29, 25, 0.72), rgba(7, 29, 25, 0.1) 67%), linear-gradient(0deg, rgba(7, 29, 25, 0.7), transparent 58%); }
.hero-grain { position: absolute; inset: 0; opacity: 0.13; background-image: radial-gradient(rgba(255,255,255,.45) .5px, transparent .5px); background-size: 5px 5px; mix-blend-mode: soft-light; }
.home-hero-inner { position: relative; z-index: 2; height: 100%; padding: clamp(130px, 17vh, 180px) var(--gutter) 52px; display: flex; flex-direction: column; justify-content: space-between; }
.home-hero-top { display: flex; justify-content: space-between; align-items: flex-start; }
.edition-note { padding-right: 14vw; text-transform: uppercase; font-size: 8px; line-height: 1.5; letter-spacing: 0.12em; }
.hero-pretitle { margin: 0 0 8px; padding-left: 7px; text-transform: uppercase; font-size: 9px; letter-spacing: 0.17em; opacity: 0; animation: textUp 0.7s 0.25s forwards; }
.home-title-wrap h1 { margin: 0; font-size: clamp(88px, 15.1vw, 238px); line-height: 0.68; opacity: 0; transform: translateY(38px); animation: textUp 1s 0.4s forwards; }
.home-title-wrap h1 span, .home-title-wrap h1 em { display: block; }
.home-title-wrap h1 em { padding-left: min(22vw, 360px); font-style: italic; }
.home-hero-bottom { display: flex; justify-content: flex-end; align-items: end; gap: clamp(50px, 9vw, 160px); }
.home-hero-bottom > p { margin: 0; font-family: "Or Lemmen", Georgia, serif; font-size: clamp(20px, 2vw, 30px); line-height: 1.05; }
.hero-ctas { display: flex; align-items: center; gap: 28px; }
.scroll-cue { position: absolute; z-index: 2; left: 24px; bottom: 32px; display: flex; align-items: center; gap: 12px; transform: rotate(-90deg) translateX(100%); transform-origin: left bottom; text-transform: uppercase; font-size: 7px; letter-spacing: 0.15em; }
.scroll-cue i { width: 50px; height: 1px; background: currentColor; animation: scrollLine 1.8s ease-in-out infinite; transform-origin: left; }
.home-intro, .experience-manifesto, .journal-intro { display: grid; grid-template-columns: 0.35fr 1.4fr 0.65fr; gap: clamp(40px, 7vw, 115px); align-items: end; }
.intro-index { align-self: start; display: flex; align-items: baseline; gap: 17px; }
.intro-index span { font-family: "Or Lemmen", Georgia, serif; font-size: 52px; }
.intro-index p { margin: 0; text-transform: uppercase; font-size: 8px; letter-spacing: 0.13em; }
.intro-statement h2, .experience-manifesto-title h2, .journal-intro-title h2 { margin: 0; font-size: clamp(56px, 7.6vw, 116px); line-height: 0.88; }
.intro-copy p, .experience-manifesto-copy p, .journal-intro-copy p { margin: 0 0 20px; font-size: 17px; line-height: 1.52; }
.intro-copy .underlined-link { margin-top: 28px; }
.two-worlds { display: grid; grid-template-columns: 1fr 1fr; min-height: 850px; }
.world-card { position: relative; min-height: 850px; padding: var(--gutter); display: flex; flex-direction: column; justify-content: space-between; color: var(--cream); overflow: hidden; }
.world-card > img { object-fit: cover; transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1); }
.world-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 29, 25, 0.82), rgba(7, 29, 25, 0.04) 70%); transition: background 0.4s; }
.world-card:hover > img { transform: scale(1.045); }
.world-card:hover::after { background: linear-gradient(0deg, rgba(7, 29, 25, 0.9), rgba(7, 29, 25, 0.12) 80%); }
.world-number, .world-card > div { position: relative; z-index: 1; }
.world-number { width: fit-content; padding: 8px 10px; border: 1px solid rgba(243,239,232,.65); text-transform: uppercase; font-size: 8px; letter-spacing: 0.12em; }
.world-card p { margin: 0 0 17px; text-transform: uppercase; font-size: 8px; letter-spacing: 0.14em; }
.world-card h2 { margin: 0 0 35px; font-size: clamp(58px, 6vw, 95px); line-height: 0.87; }
.world-link { display: inline-flex; padding-bottom: 6px; border-bottom: 1px solid currentColor; text-transform: uppercase; font-size: 9px; letter-spacing: 0.13em; }
.featured-story { position: relative; display: grid; grid-template-columns: 0.8fr 1.4fr 0.65fr; grid-template-rows: auto 1fr; gap: 50px clamp(35px, 5vw, 90px); align-items: end; overflow: hidden; }
.featured-story-head { grid-column: 1 / 3; display: flex; align-items: end; gap: clamp(45px, 10vw, 170px); }
.featured-story-head h2 { margin: 0; font-size: clamp(76px, 10vw, 155px); line-height: 0.75; }
.featured-story-media { position: relative; grid-column: 1 / 3; min-height: 630px; overflow: hidden; }
.featured-story-media img { object-fit: cover; transition: transform 0.8s ease; }
.featured-story-media:hover img { transform: scale(1.025); }
.image-caption { position: absolute; left: 22px; bottom: 20px; padding: 8px 10px; color: var(--ink); background: var(--yellow); text-transform: uppercase; font-size: 7px; letter-spacing: 0.12em; }
.featured-story-aside { align-self: end; padding-bottom: 28px; }
.featured-story-aside > p { font-size: 17px; line-height: 1.5; }
.featured-story-aside dl { margin: 35px 0; border-top: 1px solid rgba(243,239,232,.25); }
.featured-story-aside dl div { padding: 12px 0; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(243,239,232,.25); }
.featured-story-aside dt { color: rgba(243,239,232,.55); text-transform: uppercase; font-size: 8px; letter-spacing: 0.12em; }
.featured-story-aside dd { margin: 0; font-size: 11px; }
.home-agenda { background: var(--paper); }
.xp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 70px 20px; }
.xp-card { min-width: 0; height: 100%; display: flex; flex-direction: column; }
.xp-card-image { position: relative; aspect-ratio: 4 / 5; display: block; background: var(--sage); overflow: hidden; }
.xp-card-image img { object-fit: cover; transition: transform 0.7s cubic-bezier(.2,.7,.2,1); }
.xp-card:hover .xp-card-image img { transform: scale(1.045); }
.xp-label { position: absolute; z-index: 1; left: 14px; top: 14px; padding: 8px 10px 6px; color: var(--ink); background: var(--cream); text-transform: uppercase; font-size: 7px; letter-spacing: 0.11em; }
.xp-label.yellow { background: var(--yellow); }
.xp-label.coral { background: var(--coral); }
.xp-label.sage { color: var(--cream); background: var(--sage); }
.xp-arrow { position: absolute; right: 14px; bottom: 14px; width: 43px; height: 43px; display: grid; place-items: center; color: var(--cream); background: rgba(13,41,37,.72); border: 1px solid rgba(243,239,232,.5); border-radius: 50%; transition: 0.25s; }
.xp-card:hover .xp-arrow { color: var(--ink); background: var(--cream); transform: rotate(8deg); }
.xp-card-meta { margin-top: 16px; padding-bottom: 10px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; border-bottom: 1px solid var(--line); text-transform: uppercase; font-size: 14px; letter-spacing: 0.08em; }
.xp-card-meta span:first-child { color: var(--coral); }
.xp-card-meta span:last-child { text-align: right; }
.xp-card h3 { margin: 16px 0 10px; font-size: clamp(31px, 3vw, 47px); line-height: 0.92; }
.xp-card > p { min-height: 59px; margin: 0; color: rgba(23,54,50,.67); font-size: 13px; line-height: 1.5; }
.xp-card-foot { min-height: 46px; margin-top: auto; padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--ink); background: transparent; border: 1px solid var(--coral); text-transform: uppercase; font-size: 12px; letter-spacing: 0.07em; white-space: nowrap; transition: color .22s ease,background .22s ease,transform .22s ease; }
.xp-card-foot strong { font-weight: 400; }
.xp-card-foot:hover,.xp-card-foot:focus-visible { color: var(--ink); background: var(--coral); outline: 0; transform: translateY(-2px); }
.club-teaser { min-height: 850px; padding: clamp(80px, 10vw, 150px) var(--gutter); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(70px, 10vw, 170px); color: var(--cream); background: var(--sage); overflow: hidden; }
.club-cover-stack { position: relative; min-height: 630px; }
.club-cover-stack img { position: absolute; left: 50%; top: 50%; width: min(500px, 74%); height: auto; box-shadow: 0 35px 65px rgba(13,41,37,.26); }
.club-cover-stack img:nth-child(1) { transform: translate(-63%, -50%) rotate(-12deg); }
.club-cover-stack img:nth-child(2) { transform: translate(-43%, -49%) rotate(8deg); }
.club-cover-stack img:nth-child(3) { transform: translate(-52%, -52%) rotate(-2deg); animation: coverFloat 5s ease-in-out infinite; }
.club-copy h2 { margin: 28px 0; font-size: clamp(59px, 6.5vw, 96px); line-height: 0.87; }
.club-copy > p { max-width: 590px; margin: 0; font-size: 18px; line-height: 1.5; }
.club-details { margin: 38px 0; display: flex; flex-wrap: wrap; gap: 9px; }
.club-details span { padding: 7px 9px; border: 1px solid rgba(243,239,232,.45); text-transform: uppercase; font-size: 7px; letter-spacing: 0.1em; }
.home-journal { background: var(--cream); }
.story-row { display: grid; grid-template-columns: 1.15fr 0.85fr 0.7fr; gap: 25px; align-items: start; }
.story-tile-image { position: relative; aspect-ratio: 4/3; display: block; overflow: hidden; }
.story-2 .story-tile-image, .story-3 .story-tile-image { aspect-ratio: 3/4; }
.story-tile-image img { object-fit: cover; transition: transform 0.6s; }
.story-tile:hover img { transform: scale(1.035); }
.story-tile-image span { position: absolute; left: 12px; bottom: 12px; padding: 7px 9px; color: var(--ink); background: var(--cream); text-transform: uppercase; font-size: 7px; letter-spacing: 0.1em; }
.story-tile h3 { margin: 18px 0 10px; font-size: clamp(29px, 3.3vw, 52px); line-height: 0.94; }
.story-tile p { margin: 0; color: rgba(23,54,50,.68); font-size: 13px; line-height: 1.45; }

/* Shared newsletter and footer */
.global-newsletter { position: relative; min-height: 720px; padding: 110px var(--gutter); display: grid; place-items: center; color: var(--cream); background: var(--coral); overflow: hidden; }
.global-newsletter-copy { position: relative; z-index: 1; width: min(900px, 100%); text-align: center; }
.global-newsletter h2 { margin: 30px 0 23px; font-size: clamp(63px, 8.2vw, 125px); line-height: 0.82; }
.global-newsletter-copy > p { width: min(600px, 100%); margin: 0 auto 46px; font-size: 17px; line-height: 1.5; }
.global-newsletter form { width: min(680px, 100%); margin: auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; border-bottom: 1px solid var(--cream); }
.global-newsletter label { text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }
.global-newsletter input { min-width: 0; padding: 18px; color: var(--cream); background: transparent; border: 0; outline: 0; text-align: center; }
.global-newsletter input::placeholder { color: rgba(243,239,232,.6); }
.global-newsletter button { padding: 15px 0 13px 15px; color: var(--cream); background: transparent; border: 0; text-transform: uppercase; font-size: 8px; letter-spacing: 0.11em; cursor: pointer; }
.global-newsletter button span { margin-left: 16px; font-size: 16px; }
.form-success { width: fit-content; margin: 22px auto 0; padding: 8px 10px; color: var(--ink); background: var(--yellow); text-transform: uppercase; font-size: 8px; letter-spacing: 0.1em; }
.global-footer { padding: 74px var(--gutter) 28px; color: var(--cream); background: var(--deep); }
.footer-top { display: grid; grid-template-columns: 1.2fr 0.7fr 0.8fr 0.55fr; gap: 55px; align-items: end; padding-bottom: 70px; }
.footer-brand { width: min(350px, 26vw); }
.footer-brand img { width: 100%; height: auto; filter: brightness(0) invert(1); }
.footer-top > p { margin: 0; color: rgba(243,239,232,.55); font-family: "Or Lemmen", Georgia, serif; font-size: 21px; line-height: 1.05; }
.footer-links, .footer-social { display: flex; flex-direction: column; gap: 11px; text-transform: uppercase; font-size: 8px; letter-spacing: 0.12em; }
.footer-social span { margin-bottom: 7px; color: rgba(243,239,232,.4); }
.footer-bottom { padding-top: 18px; display: grid; grid-template-columns: 1fr 1fr auto auto; gap: 30px; color: rgba(243,239,232,.42); border-top: 1px solid rgba(243,239,232,.18); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }

.mini-contact { padding: clamp(60px,7vw,95px) var(--gutter); display: grid; grid-template-columns: .72fr 1.28fr; align-items: end; gap: clamp(45px,8vw,130px); color: var(--cream); background: #788f77; border-bottom: 1px solid rgba(243,239,232,.45); }
.mini-contact > div > span { color: var(--cream); text-transform: uppercase; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.mini-contact h2 { margin: 13px 0 10px; font-size: clamp(40px,4.5vw,68px); line-height: .86; letter-spacing: -.025em; white-space: nowrap; }
.mini-contact p { max-width: 450px; margin: 0; color: rgba(243,239,232,.92); font-size: 14px; line-height: 1.55; }
.mini-contact form { display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 17px; }
.mini-contact label { display: flex; flex-direction: column; gap: 9px; color: var(--cream); text-transform: uppercase; font-size: 9px; font-weight: 700; letter-spacing: .09em; }
.mini-contact .contact-message { grid-column: 1 / 3; }
.mini-contact input,.mini-contact textarea { width: 100%; padding: 13px 0; color: var(--cream); background: transparent; border: 0; border-bottom: 2px solid rgba(243,239,232,.88); border-radius: 0; outline: 0; resize: vertical; font-size: 14px; font-weight: 400; }
.mini-contact input::placeholder,.mini-contact textarea::placeholder { color: rgba(243,239,232,.82); opacity: 1; }
.mini-contact input:focus,.mini-contact textarea:focus { border-color: var(--cream); box-shadow: 0 3px 0 rgba(243,239,232,.18); }
.mini-contact button { grid-column: 3; grid-row: 1 / 3; min-width: 145px; height: 100%; min-height: 82px; padding: 17px; display: flex; align-items: end; justify-content: space-between; color: var(--cream); background: var(--deep); border: 1px solid var(--deep); text-transform: uppercase; font-size: 8px; letter-spacing: .11em; cursor: pointer; transition: transform .25s,background .25s,color .25s; }
.mini-contact button:hover { color: var(--ink); background: var(--cream); transform: translateY(-3px); }
.mini-contact button span { font-size: 17px; }
.mini-contact-success { min-height: 135px; padding: 28px; display: flex; flex-direction: column; justify-content: center; color: var(--ink); background: var(--cream); transform: rotate(-1deg); }
.mini-contact-success strong { font-family: "Or Lemmen",Georgia,serif; font-size: 35px; font-weight: 700; }
.mini-contact-success span { margin-top: 7px; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }

/* Magazine */
.interior-hero { position: relative; min-height: 820px; overflow: hidden; }
.magazine-hero { min-height: 900px; padding: 155px var(--gutter) 90px; display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 70px; color: var(--cream); background: var(--deep); }
.magazine-hero-copy { position: relative; z-index: 2; }
.magazine-hero h1 { margin: 29px 0; font-size: clamp(72px, 8vw, 124px); line-height: .81; animation: textUp .9s .2s both; }
.magazine-hero-copy > p { max-width: 520px; font-size: 18px; line-height: 1.5; }
.magazine-hero .hero-ctas { margin-top: 40px; }
.magazine-hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; background: var(--sage); overflow: hidden; }
.magazine-hero-visual::before { content: "N°1"; position: absolute; left: -5%; bottom: -11%; color: rgba(243,239,232,.16); font-family: "Or Lemmen",Georgia,serif; font-size: 27vw; line-height: 1; }
.magazine-hero-visual > img { position: relative; z-index: 2; width: min(535px, 72%); height: auto; box-shadow: 0 40px 75px rgba(13,41,37,.35); transform: rotate(-4deg); animation: coverFloat 5s ease-in-out infinite; }
.cover-shadow { position: absolute; width: 55%; height: 55%; border-radius: 50%; background: rgba(13,41,37,.32); filter: blur(55px); }
.paper-note { position: absolute; z-index: 3; padding: 11px 14px; color: var(--ink); background: var(--yellow); font-family: "Or Lemmen",Georgia,serif; font-size: 18px; line-height: 1; transform: rotate(5deg); }
.note-a { left: 6%; top: 12%; }
.note-b { right: 7%; bottom: 14%; color: var(--cream); background: var(--coral); transform: rotate(-5deg); }
.vertical-folio { position: absolute; left: 18px; bottom: 45px; writing-mode: vertical-rl; transform: rotate(180deg); color: rgba(243,239,232,.45); font-size: 7px; letter-spacing: .14em; }
.issue-intro { display: grid; grid-template-columns: .45fr 1fr .65fr; gap: clamp(45px, 7vw, 110px); align-items: end; }
.issue-number { display: flex; flex-direction: column; }
.issue-number > span, .issue-number > small { text-transform: uppercase; font-size: 8px; letter-spacing: 0.13em; }
.issue-number strong { font-family: "Or Lemmen",Georgia,serif; font-size: clamp(100px, 13vw, 200px); font-weight: 700; line-height: .8; }
.issue-title h2 { margin: 26px 0 0; font-size: clamp(63px, 7vw, 106px); line-height: .87; }
.issue-copy p { font-size: 17px; line-height: 1.5; }
.reader-preview { position: relative; padding: clamp(100px, 10vw, 160px) var(--gutter); }
.reader-head { display: grid; grid-template-columns: 1fr 1fr .55fr; gap: 55px; align-items: end; margin-bottom: 80px; }
.reader-head h2 { margin: 0; font-size: clamp(63px, 7vw, 108px); line-height: .86; }
.reader-head p { margin: 0; color: rgba(243,239,232,.68); line-height: 1.5; }
.spread-stage { width: min(1160px, 100%); margin: auto; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 38px 85px rgba(0,0,0,.25); }
.fake-page { position: relative; aspect-ratio: 3/4; color: var(--ink); background: #f8f5ee; }
.fake-page > span { position: absolute; right: 18px; bottom: 16px; font-size: 8px; }
.page-left { padding: clamp(35px, 6vw, 85px); display: flex; flex-direction: column; justify-content: center; }
.page-left h3 { margin: 0 0 35px; font-size: clamp(48px, 5.6vw, 85px); line-height: .86; }
.page-left p { width: 80%; line-height: 1.5; }
.page-left small { margin-top: auto; text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }
.page-photo img { object-fit: cover; }
.reader-controls { width: min(1160px,100%); margin: 20px auto 0; display: flex; justify-content: center; align-items: center; gap: 25px; }
.reader-controls button { width: 42px; height: 42px; color: var(--cream); background: transparent; border: 1px solid rgba(243,239,232,.4); border-radius: 50%; cursor: pointer; }
.reader-controls span { text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }
.contents-section { background: var(--paper); }
.contents-list { border-top: 1px solid var(--line); }
.content-row { min-height: 112px; display: grid; grid-template-columns: 55px 1.1fr 1fr 90px 40px; align-items: center; gap: 25px; border-bottom: 1px solid var(--line); }
.content-row > span, .content-row > b { text-transform: uppercase; font-size: 8px; letter-spacing: .11em; font-weight: 400; }
.content-row strong { font-family: "Or Lemmen",Georgia,serif; font-size: clamp(29px, 3vw, 46px); font-weight: 700; letter-spacing: -.04em; }
.content-row p { color: rgba(23,54,50,.62); font-size: 13px; }
.content-row i { font-style: normal; font-size: 18px; transition: transform .2s; }
.content-row:hover i { transform: rotate(8deg) translateY(-3px); }
.magazine-mosaic { display: grid; grid-template-columns: 1fr .8fr 1fr; min-height: 780px; }
.mosaic-image { position: relative; min-height: 630px; overflow: hidden; }
.mosaic-image.tall { min-height: 780px; }
.mosaic-image img { object-fit: cover; }
.mosaic-image > span { position: absolute; left: 16px; bottom: 16px; padding: 8px 10px; background: var(--cream); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.mosaic-quote { padding: 50px; display: flex; flex-direction: column; justify-content: center; color: var(--cream); background: var(--coral); }
.mosaic-quote > span { font-family: "Or Lemmen",Georgia,serif; font-size: 100px; line-height: .6; }
.mosaic-quote blockquote { margin: 40px 0; font-size: clamp(38px,4vw,60px); line-height: .92; }
.mosaic-quote small { text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }
.object-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(65px,10vw,160px); align-items: center; }
.object-visual { min-height: 650px; display: grid; place-items: center; background: var(--yellow); overflow: hidden; }
.object-visual img { width: min(520px,72%); height: auto; transform: rotate(6deg); box-shadow: 0 35px 70px rgba(23,54,50,.2); }
.object-copy h2 { margin: 27px 0; font-size: clamp(59px,6.5vw,100px); line-height: .87; }
.object-copy > p { font-size: 17px; line-height: 1.5; }
.object-copy dl { margin: 35px 0; border-top: 1px solid var(--line); }
.object-copy dl div { padding: 13px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.object-copy dt { text-transform: uppercase; font-size: 8px; letter-spacing: .1em; }
.object-copy dd { margin: 0; font-size: 12px; }

/* Experiences */
.experiences-hero { min-height: 930px; padding: 145px var(--gutter) 70px; color: var(--cream); background: var(--deep); }
.xp-hero-image { position: absolute; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.18); }
.xp-hero-image img { object-fit: cover; }
.image-a { right: 5%; top: 15%; width: 31%; height: 63%; transform: rotate(3deg); }
.image-b { right: 34%; top: 9%; width: 20%; height: 40%; transform: rotate(-5deg); }
.image-c { right: 27%; bottom: 7%; width: 22%; height: 35%; transform: rotate(5deg); }
.experiences-hero-copy { position: relative; z-index: 5; width: 64%; padding-top: 13vh; }
.experiences-hero h1 { margin: 30px 0; font-size: clamp(75px,9.5vw,145px); line-height: .79; animation: textUp .9s .2s both; }
.experiences-hero-copy > p { width: min(540px,80%); font-size: 18px; line-height: 1.5; }
.experiences-hero .primary-button { margin-top: 34px; }
.xp-hero-ticket { position: absolute; z-index: 6; right: 9%; bottom: 7%; width: 145px; height: 145px; padding: 25px; display: flex; flex-direction: column; justify-content: center; color: var(--ink); background: var(--yellow); border-radius: 50%; transform: rotate(-8deg); text-align: center; }
.xp-hero-ticket span, .xp-hero-ticket small { text-transform: uppercase; font-size: 6px; letter-spacing: .1em; }
.xp-hero-ticket strong { margin: 7px 0; font-family: "Or Lemmen",Georgia,serif; font-size: 25px; font-weight: 700; }
.formats-section { display: grid; grid-template-columns: repeat(3,1fr); min-height: 790px; }
.format-card { position: relative; min-height: 790px; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; color: var(--cream); overflow: hidden; }
.format-card > img { object-fit: cover; transition: transform .8s; }
.format-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,29,25,.88), rgba(7,29,25,.06) 70%); }
.format-card:hover > img { transform: scale(1.045); }
.format-card > span, .format-card > div { position: relative; z-index: 2; }
.format-card > span { text-transform: uppercase; font-size: 8px; letter-spacing: .12em; }
.format-card h2 { margin: 0 0 22px; font-size: clamp(48px,4.8vw,74px); line-height: .87; }
.format-card p { min-height: 62px; font-size: 13px; line-height: 1.5; }
.format-card a { display: inline-flex; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid currentColor; text-transform: uppercase; font-size: 8px; letter-spacing: .11em; }
.agenda-section { background: var(--paper); }
.explorer-tools { margin-bottom: 45px; padding-bottom: 18px; display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 35px; border-bottom: 1px solid var(--line); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-tabs button { padding: 10px 12px; background: transparent; border: 1px solid var(--line); text-transform: uppercase; font-size: 8px; letter-spacing: .1em; cursor: pointer; }
.filter-tabs button.active { color: var(--cream); background: var(--ink); }
.filter-tabs span { margin-left: 12px; opacity: .55; }
.region-select { display: flex; flex-direction: column; gap: 5px; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.region-select select { min-width: 180px; padding: 9px 26px 9px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--ink); outline: 0; }
.result-count { text-transform: uppercase; font-size: 8px; letter-spacing: .11em; }
.no-results { padding: 80px 0; text-align: center; }
.how-it-works { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px,10vw,160px); }
.how-heading h2 { margin: 30px 0 0; font-size: clamp(65px,7vw,105px); line-height: .87; }
.how-steps { border-top: 1px solid rgba(243,239,232,.24); }
.how-steps article { padding: 27px 0; display: grid; grid-template-columns: 45px 1fr 1fr; gap: 25px; border-bottom: 1px solid rgba(243,239,232,.24); }
.how-steps article > span { color: var(--coral); font-size: 9px; }
.how-steps h3 { margin: 0; font-size: 27px; letter-spacing: -.04em; }
.how-steps p { margin: 0; color: rgba(243,239,232,.62); font-size: 13px; line-height: 1.5; }
.regions-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(65px,10vw,160px); }
.regions-copy h2 { margin: 30px 0; font-size: clamp(65px,7vw,105px); line-height: .87; }
.regions-copy > p { max-width: 560px; font-size: 17px; line-height: 1.5; }
.region-list { margin-top: 38px; border-top: 1px solid var(--line); }
.region-list span { padding: 12px 0; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); font-family: "Or Lemmen",Georgia,serif; font-size: 27px; }
.region-list b { font-family: "Maison Neue",Arial,sans-serif; font-size: 9px; font-weight: 400; }
.region-poster { position: relative; aspect-ratio: 4/5; padding: 45px; display: grid; place-items: center; color: var(--cream); background: var(--sage); overflow: hidden; }
.region-poster > span { font-family: "Or Lemmen",Georgia,serif; font-size: clamp(60px,8vw,120px); line-height: .72; text-align: center; transform: rotate(-8deg); opacity: .6; }
.region-poster > strong { position: absolute; right: 9%; bottom: 9%; width: 130px; height: 130px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; font-family: "Or Lemmen",Georgia,serif; font-size: 40px; font-weight: 700; line-height: .6; text-align: center; }
.region-poster strong small { text-transform: uppercase; font-family: "Maison Neue",Arial,sans-serif; font-size: 6px; letter-spacing: .1em; }
.region-poster .dot { position: absolute; width: 11px; height: 11px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 6px rgba(241,111,87,.18); }
.dot-1 { left: 25%; top: 23%; }.dot-2 { right: 28%; top: 35%; }.dot-3 { left: 37%; bottom: 27%; }.dot-4 { right: 18%; bottom: 42%; }
.gift-section { min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; color: var(--cream); background: var(--coral); }
.gift-image { position: relative; min-height: 650px; }
.gift-image img { object-fit: cover; }
.gift-copy { padding: clamp(70px,9vw,140px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.gift-copy h2 { margin: 28px 0; font-size: clamp(63px,7vw,105px); line-height: .87; }
.gift-copy p { font-size: 17px; line-height: 1.5; }
.gift-copy .primary-button { margin-top: 30px; }

/* Experience detail */
.detail-hero { position: relative; min-height: 900px; color: var(--cream); background: var(--deep); }
.detail-hero > img { object-fit: cover; animation: heroImage 10s ease-out both; }
.detail-hero-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,25,21,.82), rgba(5,25,21,.08) 72%), linear-gradient(90deg, rgba(5,25,21,.5), transparent 65%); }
.detail-back { position: absolute; z-index: 2; left: var(--gutter); top: 120px; padding-bottom: 5px; border-bottom: 1px solid currentColor; text-transform: uppercase; font-size: 8px; letter-spacing: .1em; }
.detail-hero-copy { position: absolute; z-index: 2; left: var(--gutter); right: 32%; bottom: 78px; }
.detail-hero h1 { margin: 23px 0; font-size: clamp(85px,12vw,185px); line-height: .76; animation: textUp .9s .2s both; }
.detail-hero-copy > p { max-width: 620px; font-size: 18px; line-height: 1.45; }
.detail-quickfacts { position: absolute; z-index: 2; right: var(--gutter); bottom: 80px; display: flex; flex-direction: column; gap: 8px; align-items: flex-end; text-transform: uppercase; font-size: 8px; letter-spacing: .11em; }
.detail-quickfacts strong { margin-top: 9px; font-family: "Or Lemmen",Georgia,serif; font-size: 30px; font-weight: 700; letter-spacing: -.03em; }
.detail-intro { display: grid; grid-template-columns: 1fr .7fr; gap: clamp(70px,12vw,190px); align-items: start; }
.detail-lead h2 { margin: 30px 0 0; font-size: clamp(65px,8vw,120px); line-height: .86; }
.detail-story { padding-top: 100px; }
.detail-story > p { font-size: 17px; line-height: 1.55; }
.detail-story blockquote { margin: 50px 0 0; padding-top: 28px; border-top: 1px solid var(--line); font-size: 31px; line-height: 1; }
.detail-layout { padding-top: 20px; display: grid; grid-template-columns: minmax(0,1fr) 370px; gap: clamp(45px,7vw,100px); align-items: start; }
.detail-photo-wide { position: relative; min-height: 650px; overflow: hidden; }
.detail-photo-wide img { object-fit: cover; }
.detail-photo-wide > span { position: absolute; left: 15px; bottom: 15px; padding: 8px 9px; background: var(--cream); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.program-section { padding-top: 100px; }
.program-section > h2 { margin: 30px 0 65px; font-size: clamp(61px,7vw,100px); line-height: .87; }
.program-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.program-list li { padding: 28px 0; display: grid; grid-template-columns: 100px 1fr; gap: 35px; border-bottom: 1px solid var(--line); }
.program-list time { color: var(--coral); font-family: "Or Lemmen",Georgia,serif; font-size: 28px; }
.program-list h3 { margin: 0 0 8px; font-size: 29px; }
.program-list p { margin: 0; color: rgba(23,54,50,.64); line-height: 1.5; }
.booking-card { position: sticky; top: 98px; padding: 32px; background: var(--paper); }
.booking-card .xp-label { position: static; display: inline-block; }
.booking-card h2 { margin: 28px 0; font-size: 56px; line-height: .85; }
.booking-card dl { margin: 0 0 28px; border-top: 1px solid var(--line); }
.booking-card dl div { padding: 11px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.booking-card dt { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.booking-card dd { margin: 0; font-size: 10px; text-align: right; }
.booking-card > small { display: block; margin-top: 13px; color: rgba(23,54,50,.55); font-size: 8px; line-height: 1.4; }
.drawer-backdrop { position: fixed; inset: 0; z-index: 300; display: flex; justify-content: flex-end; background: rgba(5,25,21,.7); backdrop-filter: blur(5px); }
.booking-drawer { width: min(570px,100%); height: 100%; color: var(--ink); background: var(--cream); overflow-y: auto; animation: drawerIn .35s ease; }
.drawer-head { height: 70px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); text-transform: uppercase; font-size: 8px; letter-spacing: .11em; }
.drawer-head button, .round-close { width: 38px; height: 38px; display: grid; place-items: center; color: var(--cream); background: var(--ink); border: 0; border-radius: 50%; font-size: 21px; cursor: pointer; }
.drawer-body { padding: 55px 45px; }
.drawer-body h2 { margin: 24px 0; font-size: 65px; line-height: .83; }
.drawer-intro { color: rgba(23,54,50,.65); line-height: 1.5; }
.drawer-dates { margin: 30px 0; display: grid; gap: 7px; }
.drawer-dates button { padding: 14px; display: flex; justify-content: space-between; color: var(--ink); background: transparent; border: 1px solid var(--line); cursor: pointer; }
.drawer-dates button.selected { background: var(--yellow); border-color: var(--yellow); }
.drawer-dates button:disabled { opacity: .4; cursor: not-allowed; }
.drawer-dates small { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.guest-selector { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; border-block: 1px solid var(--line); }
.guest-selector > span { text-transform: uppercase; font-size: 8px; letter-spacing: .1em; }
.guest-selector div { display: flex; align-items: center; gap: 15px; }
.guest-selector button { width: 32px; height: 32px; background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.drawer-total { padding: 24px 0; display: flex; justify-content: space-between; }
.drawer-total span { text-transform: uppercase; font-size: 8px; }
.drawer-total strong { font-family: "Or Lemmen",Georgia,serif; font-size: 27px; font-weight: 700; }
.confirmation-step { min-height: calc(100vh - 70px); display: flex; flex-direction: column; justify-content: center; }
.confirmation-mark { width: 70px; height: 70px; margin-bottom: 30px; display: grid; place-items: center; background: var(--yellow); border-radius: 50%; font-size: 25px; }
.booking-recap { margin: 30px 0; padding: 18px; display: flex; flex-direction: column; gap: 10px; background: var(--paper); }
.booking-recap strong { font-family: "Or Lemmen",Georgia,serif; font-size: 28px; font-weight: 700; }
.text-button { margin-top: 18px; padding: 8px; background: transparent; border: 0; text-decoration: underline; cursor: pointer; }
.hosts-section { padding-top: 130px; padding-bottom: 130px; }
.hosts-head { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 70px; }
.hosts-head h2 { margin: 0; font-size: clamp(65px,8vw,120px); line-height: .85; }
.host-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.host-card > div { position: relative; aspect-ratio: 4/5; margin-bottom: 17px; overflow: hidden; }
.host-card img { object-fit: cover; }
.host-card > span { color: var(--coral); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.host-card h3 { margin: 12px 0; font-size: 35px; line-height: .95; }
.host-card p { margin: 0; color: rgba(243,239,232,.58); font-size: 13px; line-height: 1.5; }
.included-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: end; }
.included-title h2 { margin: 30px 0 0; font-size: clamp(63px,7vw,105px); line-height: .87; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.included-grid div { min-height: 105px; padding: 20px; display: grid; grid-template-columns: 32px 1fr; gap: 15px; align-items: start; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.included-grid span { color: var(--coral); font-size: 9px; }
.included-grid p { margin: 0; line-height: 1.4; }
.detail-gallery { position: relative; min-height: 820px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; background: var(--deep); }
.gallery-one, .gallery-two { position: relative; overflow: hidden; }
.detail-gallery img { object-fit: cover; }
.gallery-caption { position: absolute; z-index: 2; left: 50%; top: 50%; padding: 23px 30px; color: var(--ink); background: var(--yellow); font-family: "Or Lemmen",Georgia,serif; font-size: clamp(35px,4vw,56px); line-height: .9; transform: translate(-50%,-50%) rotate(-4deg); }
.related-section { background: var(--paper); }

/* Subscriptions */
.subscription-hero { min-height: 930px; padding: 145px var(--gutter) 80px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; background: var(--cream); }
.subscription-hero h1 { margin: 30px 0; font-size: clamp(75px,8.5vw,132px); line-height: .8; animation: textUp .9s .2s both; }
.subscription-hero-copy > p { max-width: 560px; font-size: 18px; line-height: 1.5; }
.subscription-hero .primary-button { margin-top: 35px; }
.subscription-cover-scene { position: relative; min-height: 690px; background: var(--yellow); overflow: hidden; }
.subscription-cover-scene img { position: absolute; left: 50%; top: 50%; width: min(520px,73%); height: auto; box-shadow: 0 35px 70px rgba(23,54,50,.22); }
.cover-one { transform: translate(-64%,-50%) rotate(-13deg); }.cover-two { transform: translate(-38%,-47%) rotate(10deg); }.subscription-cover-scene .cover-three { transform: translate(-52%,-52%) rotate(-2deg); animation: coverFloat 5s ease-in-out infinite; }
.subscription-cover-scene > span { position: absolute; right: 5%; bottom: 6%; width: 120px; height: 120px; display: grid; place-items: center; color: var(--cream); background: var(--coral); border-radius: 50%; font-family: "Or Lemmen",Georgia,serif; font-size: 17px; text-align: center; transform: rotate(8deg); }
.club-benefits { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.club-benefits-head h2 { margin: 30px 0 0; font-size: clamp(65px,7vw,105px); line-height: .87; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(243,239,232,.22); }
.benefit-grid article { padding: 32px 25px 35px 0; border-right: 1px solid rgba(243,239,232,.22); border-bottom: 1px solid rgba(243,239,232,.22); }
.benefit-grid article:nth-child(even) { padding-left: 25px; border-right: 0; }
.benefit-grid article > span { color: var(--coral); font-size: 8px; }
.benefit-grid h3 { margin: 20px 0 10px; font-size: 30px; }
.benefit-grid p { margin: 0; color: rgba(243,239,232,.58); font-size: 13px; line-height: 1.5; }
.plans-section { background: var(--paper); }
.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); align-items: stretch; gap: 16px; }
.plan-card { position: relative; min-height: 650px; padding: 35px 30px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--cream); }
.plan-card.featured-plan { color: var(--cream); background: var(--deep); transform: translateY(-22px); }
.plan-badge { position: absolute; top: -15px; left: 50%; padding: 8px 11px; color: var(--ink); background: var(--yellow); transform: translateX(-50%); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; white-space: nowrap; }
.plan-index { text-transform: uppercase; font-size: 8px; letter-spacing: .1em; }
.plan-card > p { margin: 70px 0 10px; text-transform: uppercase; font-size: 8px; letter-spacing: .11em; }
.plan-card h3 { margin: 0; font-size: clamp(43px,4vw,61px); line-height: .9; }
.plan-price { margin: 30px 0; padding-bottom: 25px; border-bottom: 1px solid currentColor; }
.plan-price strong { font-family: "Or Lemmen",Georgia,serif; font-size: 37px; font-weight: 700; }
.plan-price span { margin-left: 7px; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.plan-card ul { margin: 0 0 35px; padding: 0; list-style: none; }
.plan-card li { position: relative; padding: 10px 0 10px 20px; border-bottom: 1px solid rgba(23,54,50,.12); font-size: 12px; }
.featured-plan li { border-color: rgba(243,239,232,.14); }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--coral); }
.plan-card .primary-button, .plan-card .outline-button { margin-top: auto; }
.featured-plan .primary-button { color: var(--ink); background: var(--coral); border-color: var(--coral); }
.subscription-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; background: rgba(5,25,21,.75); backdrop-filter: blur(5px); }
.subscription-modal-card { position: relative; width: min(620px,100%); max-height: calc(100vh - 40px); padding: 58px; background: var(--cream); overflow-y: auto; animation: modalIn .28s ease; }
.subscription-modal-card .round-close { position: absolute; right: 18px; top: 18px; }
.subscription-modal-card h2 { margin: 24px 0; font-size: 67px; line-height: .84; }
.selected-plan { margin: 25px 0; padding: 17px; display: flex; justify-content: space-between; background: var(--yellow); }
.selected-plan strong { font-weight: 400; }
.subscription-modal-card label { margin: 15px 0; display: flex; flex-direction: column; gap: 7px; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.subscription-modal-card input { padding: 13px 0; background: transparent; border: 0; border-bottom: 1px solid var(--line); outline: 0; text-transform: none; font-size: 15px; }
.subscription-modal-card .primary-button { margin-top: 25px; }
.subscription-modal-card > small { display: block; margin-top: 12px; color: rgba(23,54,50,.55); }
.comparison-section { background: var(--cream); }
.comparison-head { display: grid; grid-template-columns: .6fr 1fr; align-items: end; margin-bottom: 60px; }
.comparison-head h2 { margin: 30px 0 0; grid-column: 2; font-size: clamp(63px,7vw,105px); line-height: .87; }
.comparison-table { border-top: 1px solid var(--line); }
.comparison-row { min-height: 67px; display: grid; grid-template-columns: 1.4fr repeat(3,1fr); align-items: center; border-bottom: 1px solid var(--line); text-align: center; }
.comparison-row > span { padding-left: 15px; text-align: left; }
.comparison-row b, .comparison-row strong { padding: 22px 10px; border-left: 1px solid var(--line); font-size: 12px; font-weight: 400; }
.comparison-row b { color: var(--coral); }
.table-head { text-transform: uppercase; font-size: 8px; letter-spacing: .1em; }
.subscription-gift { min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; color: var(--cream); background: var(--sage); }
.subscription-gift-image { position: relative; min-height: 700px; }
.subscription-gift-image img { object-fit: cover; }
.subscription-gift-copy { padding: clamp(70px,9vw,140px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.subscription-gift-copy h2 { margin: 28px 0; font-size: clamp(63px,7vw,105px); line-height: .87; }
.subscription-gift-copy p { font-size: 17px; line-height: 1.5; }
.subscription-gift-copy .primary-button { margin-top: 30px; }
.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq-title h2 { margin: 30px 0 0; font-size: clamp(58px,6vw,92px); line-height: .87; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 25px 0; display: flex; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-family: "Or Lemmen",Georgia,serif; font-size: 24px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: "Maison Neue",Arial,sans-serif; font-size: 18px; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 45px 25px 0; color: rgba(23,54,50,.65); line-height: 1.5; }

/* Journal */
.journal-hero { min-height: 930px; color: var(--cream); background: var(--deep); }
.journal-hero-image { position: absolute; inset: 0; }
.journal-hero-image img { object-fit: cover; animation: heroImage 12s ease-out both; }
.journal-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,29,25,.78), rgba(7,29,25,.09) 78%), linear-gradient(0deg, rgba(7,29,25,.56), transparent 60%); }
.journal-hero-copy { position: absolute; z-index: 2; left: var(--gutter); bottom: 80px; width: min(900px,78%); }
.journal-hero h1 { margin: 28px 0; font-size: clamp(78px,10vw,155px); line-height: .77; animation: textUp .9s .2s both; }
.journal-hero-copy > p { width: min(600px,80%); font-size: 18px; line-height: 1.48; }
.journal-hero .underlined-link { margin-top: 30px; }
.journal-issue-tag { position: absolute; z-index: 2; right: 8%; bottom: 11%; width: 125px; height: 125px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; text-align: center; transform: rotate(7deg); font-family: "Or Lemmen",Georgia,serif; }
.journal-issue-tag strong { font-size: 34px; font-weight: 400; }
.journal-library { background: var(--paper); }
.article-count { align-self: end; text-transform: uppercase; font-size: 8px; letter-spacing: .1em; }
.journal-filters { margin-bottom: 42px; display: flex; flex-wrap: wrap; gap: 8px; }
.journal-filters button { padding: 10px 13px; background: transparent; border: 1px solid var(--line); text-transform: uppercase; font-size: 8px; letter-spacing: .1em; cursor: pointer; }
.journal-filters button.active { color: var(--cream); background: var(--ink); }
.journal-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 75px 22px; }
.journal-card.large { grid-column: 1 / -1; display: grid; grid-template-columns: 1.35fr .65fr; column-gap: 45px; }
.journal-card-image { position: relative; aspect-ratio: 4/3; display: block; overflow: hidden; }
.journal-card.large .journal-card-image { grid-row: 1 / 5; aspect-ratio: 16/10; }
.journal-card-image img { object-fit: cover; transition: transform .6s; }
.journal-card:hover img { transform: scale(1.035); }
.journal-card-image > span { position: absolute; right: 14px; bottom: 14px; padding: 9px 11px; color: var(--cream); background: var(--ink); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; opacity: 0; transform: translateY(8px); transition: .25s; }
.journal-card:hover .journal-card-image > span { opacity: 1; transform: translateY(0); }
.journal-card-meta { margin-top: 15px; padding-bottom: 10px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.journal-card-meta span:first-child { color: var(--coral); }
.journal-card h3 { margin: 16px 0 11px; font-size: clamp(38px,4vw,63px); line-height: .92; }
.journal-card.large h3 { font-size: clamp(52px,5vw,76px); }
.journal-card > p { margin: 0; color: rgba(23,54,50,.62); line-height: 1.5; }
.recipe-feature { min-height: 800px; display: grid; grid-template-columns: 1.1fr .9fr; }
.recipe-image { position: relative; min-height: 720px; }
.recipe-image img { object-fit: cover; }
.recipe-copy { padding: clamp(65px,8vw,125px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.recipe-copy h2 { margin: 28px 0; font-size: clamp(63px,7vw,105px); line-height: .87; }
.recipe-copy > p { color: rgba(243,239,232,.68); font-size: 17px; line-height: 1.5; }
.recipe-copy dl { width: 100%; margin: 32px 0; border-top: 1px solid rgba(243,239,232,.2); }
.recipe-copy dl div { padding: 11px 0; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(243,239,232,.2); }
.recipe-copy dt { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.recipe-copy dd { margin: 0; font-size: 11px; }
.address-book { background: var(--cream); }
.address-book-head { display: grid; grid-template-columns: .4fr 1fr .55fr; gap: 60px; align-items: end; margin-bottom: 80px; }
.address-book-head h2 { margin: 0; font-size: clamp(63px,7vw,105px); line-height: .87; }
.address-book-head p { line-height: 1.5; }
.address-list { border-top: 1px solid var(--line); }
.address-row { min-height: 110px; display: grid; grid-template-columns: .55fr 1fr 1fr .45fr; align-items: center; gap: 30px; border-bottom: 1px solid var(--line); }
.address-row > span, .address-row > b { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; font-weight: 400; }
.address-row strong { font-family: "Or Lemmen",Georgia,serif; font-size: 31px; font-weight: 700; }
.address-row p { color: rgba(23,54,50,.62); font-size: 13px; }
.address-row b { text-align: right; }

/* Commerce-first V4 */
.section-kicker { display: inline-block; margin-bottom: 22px; text-transform: uppercase; font-size: 18px; letter-spacing: .14em; }
.section-kicker.light { color: rgba(243,239,232,.7); }
.clear-section-heading { max-width: 980px; margin-bottom: clamp(55px,7vw,100px); }
.clear-section-heading h2 { margin: 0 0 24px; font-size: clamp(58px,7.2vw,108px); line-height: .9; }
.clear-section-heading > p { max-width: 700px; margin: 0; font-size: 17px; line-height: 1.55; }

.commerce-hero .home-hero-inner { justify-content: flex-end; gap: 52px; }
.commerce-hero .home-hero-top { position: absolute; left: var(--gutter); right: var(--gutter); top: 120px; }
.commerce-hook { max-width: 1220px; }
.commerce-hook h1 { max-width: 1180px; margin: 0; font-size: clamp(76px,10.5vw,162px); line-height: .92; animation: textUp .9s .15s both; }
.commerce-hook h1 em { font-style: italic; word-spacing: .1em; }
.commerce-hook p { max-width: 670px; margin: 32px 0 0; font-size: clamp(17px,1.4vw,21px); line-height: 1.5; }
.commerce-actions { display: flex; gap: 10px; }
.hero-secondary { color: var(--cream); background: rgba(13,41,37,.35); border-color: rgba(243,239,232,.65); backdrop-filter: blur(5px); }

.daily-section { background: var(--cream); }
.daily-heading { margin-bottom: 65px; display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 70px; }
.daily-heading h2 { margin: 20px 0 0; font-size: clamp(62px,8vw,120px); line-height: .83; }
.daily-heading > p { margin: 0 0 7px; font-size: 16px; line-height: 1.55; }
.live-dot { display: inline-flex; align-items: center; gap: 9px; text-transform: uppercase; font-size: 8px; letter-spacing: .12em; }
.live-dot::before { content: ""; width: 8px; height: 8px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 5px rgba(241,111,87,.15); }
.daily-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.daily-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; background: var(--paper); }
.daily-card-1 { grid-row: span 2; display: flex; flex-direction: column; }
.daily-card-1 .daily-image { min-height: 500px; }
.daily-card-1 .daily-copy { flex: 1; }
.daily-image { position: relative; min-height: 310px; overflow: hidden; }
.daily-image img { object-fit: cover; }
.daily-copy { padding: clamp(25px,3vw,44px); }
.daily-copy > span { color: var(--coral); text-transform: uppercase; font-size: 8px; letter-spacing: .12em; }
.daily-copy h3 { margin: 18px 0; font-size: clamp(30px,3.4vw,52px); line-height: .93; }
.daily-copy p { margin: 0; color: rgba(23,54,50,.72); font-size: 13px; line-height: 1.58; }
.daily-card-2, .daily-card-3, .daily-card-4 { grid-template-columns: .72fr 1.28fr; min-height: 285px; }
.daily-card-2 .daily-image, .daily-card-3 .daily-image, .daily-card-4 .daily-image { min-height: 285px; }

.home-magazine-offer { min-height: 850px; padding: clamp(80px,10vw,150px) var(--gutter); display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(70px,10vw,170px); background: var(--magazine-mist); }
.home-magazine-visual { min-height: 620px; display: grid; place-items: center; overflow: visible; }
.home-magazine-visual img { width: min(1584px,231%); max-width: none; height: auto; clip-path: polygon(33.6% 8.9%,70.8% 11.4%,67.7% 87.6%,30.5% 81.3%); filter: drop-shadow(0 28px 24px rgba(23,54,50,.24)); }
.home-magazine-copy h2 { margin: 0 0 28px; font-size: clamp(58px,6.4vw,96px); line-height: .9; }
.home-magazine-copy > p { max-width: 630px; font-size: 17px; line-height: 1.55; }
.home-magazine-copy ul { margin: 40px 0; padding: 0; display: grid; grid-template-columns: repeat(3,1fr); list-style: none; border-block: 1px solid rgba(23,54,50,.32); }
.home-magazine-copy li { padding: 22px 13px; border-right: 1px solid rgba(23,54,50,.32); }
.home-magazine-copy li:last-child { border: 0; }
.home-magazine-copy li strong, .home-magazine-copy li span { display: block; }
.home-magazine-copy li strong { font-family: "Or Lemmen",Georgia,serif; font-size: 28px; font-weight: 700; }
.home-magazine-copy li span { margin-top: 6px; font-size: 11px; line-height: 1.3; }
.offer-actions { display: flex; align-items: center; gap: 28px; }

.home-box-offer { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px,9vw,140px); align-items: center; }
.home-box-copy h2 { margin: 0 0 25px; font-size: clamp(62px,7vw,104px); line-height: .88; }
.home-box-copy > p { max-width: 600px; color: rgba(243,239,232,.72); font-size: 17px; line-height: 1.55; }
.home-box-copy .box-stock { margin: 38px 0; }
.home-box-visual { position: relative; min-height: 700px; overflow: hidden; }
.home-box-visual img { object-fit: cover; }
.home-box-visual > span { position: absolute; right: 22px; bottom: 22px; width: 135px; height: 135px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; text-align: center; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.home-box-visual strong { display: block; font-family: "Or Lemmen",Georgia,serif; font-size: 38px; font-weight: 700; }

.box-stock { width: 100%; }
.stock-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 13px; text-transform: uppercase; font-size: 9px; letter-spacing: .1em; }
.stock-head strong { margin-right: 3px; font-family: "Or Lemmen",Georgia,serif; font-size: 24px; font-weight: 700; letter-spacing: -.03em; }
.stock-track { height: 32px; padding: 5px; border: 2px solid currentColor; border-radius: 99px; background: repeating-linear-gradient(90deg,transparent 0,transparent calc(10% - 1px),rgba(243,239,232,.2) calc(10% - 1px),rgba(243,239,232,.2) 10%); overflow: visible; }
.stock-track > span { position: relative; display: block; height: 100%; min-width: 18px; background: var(--coral); border-radius: 99px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.24); transition: width .45s ease; }
.stock-track > span::after { content: ""; position: absolute; right: -7px; top: 50%; width: 16px; height: 16px; background: var(--cream); border: 4px solid var(--coral); border-radius: 50%; box-shadow: 0 3px 12px rgba(13,41,37,.28); transform: translateY(-50%); }
.stock-scale { margin-top: 7px; display: flex; justify-content: space-between; opacity: .52; text-transform: uppercase; font-size: 6px; letter-spacing: .1em; }
.box-stock > p { margin: 17px 0 26px; color: rgba(243,239,232,.65); font-size: 12px; line-height: 1.5; }
.box-stock.compact .stock-track { height: 18px; padding: 3px; border-width: 1px; }
.box-stock.compact .stock-track > span::after { right: -5px; width: 10px; height: 10px; border-width: 3px; }
.box-buy-row { display: grid; grid-template-columns: auto 1fr; gap: 13px; }
.quantity-control { padding: 0 10px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(243,239,232,.38); }
.quantity-control button { width: 30px; height: 40px; color: inherit; background: transparent; border: 0; cursor: pointer; }
.quantity-control strong { font-weight: 400; }
.box-confirmation { margin-top: 12px; padding: 11px; color: var(--ink); background: var(--yellow); font-size: 11px; }
.home-experiences { background: var(--paper); }
.experience-types { margin-bottom: 70px; display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line); }
.experience-types > div { padding: 25px 25px 25px 0; border-right: 1px solid var(--line); }
.experience-types > div:not(:first-child) { padding-left: 25px; }
.experience-types > div:last-child { border: 0; }
.experience-types strong, .experience-types span { display: block; }
.experience-types strong { margin-bottom: 8px; font-family: "Or Lemmen",Georgia,serif; font-size: 25px; font-weight: 700; }
.experience-types span { color: rgba(23,54,50,.65); font-size: 12px; line-height: 1.45; }
.centered-action { margin-top: 65px; display: flex; justify-content: center; }
.home-reassurance, .magazine-facts, .subscription-benefits-bar { display: grid; grid-template-columns: repeat(4,1fr); background: var(--cream); border-block: 1px solid var(--line); }
.home-reassurance > div, .magazine-facts > div, .subscription-benefits-bar > div { padding: 30px var(--gutter); border-right: 1px solid var(--line); }
.home-reassurance > div:last-child, .magazine-facts > div:last-child, .subscription-benefits-bar > div:last-child { border: 0; }
.home-reassurance strong, .home-reassurance span, .magazine-facts strong, .magazine-facts span, .subscription-benefits-bar strong, .subscription-benefits-bar span { display: block; }
.home-reassurance strong, .magazine-facts strong, .subscription-benefits-bar strong { font-family: "Or Lemmen",Georgia,serif; font-size: 21px; font-weight: 700; }
.home-reassurance span, .magazine-facts span, .subscription-benefits-bar span { margin-top: 6px; color: rgba(23,54,50,.6); font-size: 9px; line-height: 1.35; }
.xp-arrow { width: auto; min-width: 50px; padding: 0 12px; border-radius: 22px; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }

/* Box */
.box-hero { min-height: 900px; padding: 125px var(--gutter) 70px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; background: var(--cream); }
.box-hero h1 { margin: 0 0 30px; font-size: clamp(90px,11vw,170px); line-height: .72; }
.box-hero-copy > p { max-width: 570px; font-size: 18px; line-height: 1.55; }
.box-price { margin: 33px 0; display: flex; align-items: baseline; gap: 17px; }
.box-price strong { font-family: "Or Lemmen",Georgia,serif; font-size: 38px; font-weight: 700; }
.box-price span { text-transform: uppercase; font-size: 8px; letter-spacing: .1em; }
.box-hero-image { position: relative; min-height: 690px; overflow: hidden; }
.box-hero-image img { object-fit: cover; }
.box-hero-count { position: absolute; left: 20px; bottom: 20px; width: 140px; height: 140px; display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--ink); background: var(--yellow); border-radius: 50%; }
.box-hero-count strong { font-family: "Or Lemmen",Georgia,serif; font-size: 50px; font-weight: 700; }
.box-hero-count span { text-transform: uppercase; font-size: 7px; line-height: 1.35; letter-spacing: .1em; }
.box-intro { background: var(--paper); }
.box-products { display: grid; grid-template-columns: repeat(2,1fr); gap: 25px; }
.box-product { min-height: 430px; display: grid; grid-template-columns: .9fr 1.1fr; background: var(--cream); }
.box-product:last-child { grid-column: 1 / -1; grid-template-columns: .45fr .55fr; }
.box-product-image { position: relative; min-height: 380px; overflow: hidden; }
.box-product-image img { object-fit: cover; }
.box-product-image > span { position: absolute; left: 12px; top: 12px; width: 34px; height: 34px; display: grid; place-items: center; color: var(--cream); background: var(--ink); border-radius: 50%; font-size: 8px; }
.box-product-copy { padding: clamp(25px,3vw,45px); display: flex; flex-direction: column; justify-content: center; }
.box-product-copy > span, .box-product-copy > small { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.box-product-copy > span { color: var(--coral); }
.box-product-copy h3 { margin: 18px 0; font-size: clamp(34px,3.7vw,56px); line-height: .92; }
.box-product-copy p { color: rgba(23,54,50,.65); font-size: 13px; line-height: 1.5; }
.box-product-copy small { margin-top: 18px; }
.box-order-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px,10vw,150px); align-items: start; }
.box-order-copy h2 { margin: 0 0 25px; font-size: clamp(65px,7vw,105px); line-height: .87; }
.box-order-copy p { color: rgba(243,239,232,.7); font-size: 16px; line-height: 1.55; }
.box-order-panel { padding: 35px; color: var(--ink); background: var(--cream); }
.order-panel-head { margin-bottom: 35px; padding-bottom: 20px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); }
.order-panel-head strong { font-family: "Or Lemmen",Georgia,serif; font-size: 27px; font-weight: 700; }
.box-order-panel .box-stock > p { color: rgba(23,54,50,.62); }
.box-order-panel .quantity-control { border-color: var(--line); }
.box-order-panel ul { margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; list-style: none; border-top: 1px solid var(--line); }
.box-order-panel li { padding: 13px 15px 13px 19px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 11px; }
.box-order-panel li::before { content: "✓"; margin-right: 8px; color: var(--coral); }
.box-method-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.box-method-grid article { padding: 30px 25px 30px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.box-method-grid article:not(:first-child) { padding-left: 25px; }
.box-method-grid article:last-child { border-right: 0; }
.box-method-grid strong { color: var(--coral); font-size: 9px; }
.box-method-grid h3 { margin: 25px 0 10px; font-size: 32px; }
.box-method-grid p { margin: 0; color: rgba(23,54,50,.65); font-size: 12px; line-height: 1.5; }

/* Digital magazine reader */
.magazine-commerce-hero .magazine-hero-copy { max-width: 720px; }
.magazine-commerce-hero .magazine-hero-copy h1 { font-size: clamp(64px,7.3vw,112px); line-height: .87; }
.clean-cover::before, .clean-cover .cover-shadow { display: none; }
.clean-cover > img { transform: rotate(-2deg); animation: none; }
.magazine-facts { background: var(--paper); }
.magazine-facts span { font-size: 13.5px; }
.digital-reading-section .clear-section-heading { max-width: 850px; }
.digital-reader { position: relative; width: min(1260px,100%); margin: auto; color: var(--ink); background: #161d1b; box-shadow: 0 35px 90px rgba(0,0,0,.28); }
.digital-reader.expanded { position: fixed; inset: 0; z-index: 500; width: 100%; height: 100vh; padding: 14px; display: flex; flex-direction: column; background: #0b1412; }
.digital-reader-bar { height: 62px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; color: var(--cream); background: var(--ink); }
.digital-reader-bar div { display: flex; align-items: baseline; gap: 14px; }
.digital-reader-bar strong { font-family: "Or Lemmen",Georgia,serif; font-size: 20px; font-weight: 700; }
.digital-reader-bar span { color: rgba(243,239,232,.55); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.digital-reader-bar button { padding: 8px 12px; color: var(--cream); background: transparent; border: 1px solid rgba(243,239,232,.35); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; cursor: pointer; }
.reader-spread { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.expanded .reader-spread { min-height: 0; flex: 1; width: min(1120px,100%); margin: auto; }
.reader-page { position: relative; aspect-ratio: 3/4; padding: clamp(35px,5vw,78px); display: flex; flex-direction: column; justify-content: center; background: #f8f5ee; overflow: hidden; }
.expanded .reader-page { aspect-ratio: auto; }
.reader-page:nth-child(2) { box-shadow: inset 11px 0 22px rgba(23,54,50,.08); }
.reader-page > img { object-fit: cover; }
.reader-page-copy { position: relative; z-index: 2; }
.reader-page-copy > span { color: var(--coral); text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }
.reader-page-copy h3 { margin: 20px 0 25px; font-size: clamp(42px,5vw,76px); line-height: .87; }
.reader-page-copy p { font-family: Georgia,serif; font-size: clamp(13px,1.1vw,16px); line-height: 1.72; }
.reader-page-copy ol { margin: 25px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.reader-page-copy li { padding: 11px 0; border-bottom: 1px solid var(--line); font-family: Georgia,serif; font-size: 14px; }
.reader-page > small { position: absolute; right: 18px; bottom: 15px; z-index: 2; font-size: 8px; }
.reader-page-cover, .reader-page-photo, .reader-page-end { color: var(--cream); }
.reader-page-cover::after, .reader-page-photo::after, .reader-page-end::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(7,29,25,.8),rgba(7,29,25,.05) 65%); }
.reader-page-cover .reader-page-copy, .reader-page-photo .reader-page-copy, .reader-page-end .reader-page-copy { margin-top: auto; }
.reader-page-cover .reader-page-copy h3, .reader-page-photo .reader-page-copy h3, .reader-page-end .reader-page-copy h3 { font-size: clamp(48px,5vw,78px); }
.digital-reader-controls { min-height: 66px; padding: 12px 20px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 18px; color: var(--cream); background: var(--ink); }
.digital-reader-controls button { padding: 9px 12px; color: var(--cream); background: transparent; border: 1px solid rgba(243,239,232,.28); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; cursor: pointer; }
.digital-reader-controls button:disabled { opacity: .3; cursor: not-allowed; }
.reader-progress { height: 4px; background: rgba(243,239,232,.16); }
.reader-progress span { display: block; height: 100%; background: var(--coral); transition: width .3s ease; }
.digital-reader-controls > span { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; white-space: nowrap; }

/* Public magazine flipbook */
.pdf-flipbook { width: min(1260px,100%); margin: 0 auto; color: var(--cream); background: var(--ink); border: 1px solid rgba(243,239,232,.22); box-shadow: 0 34px 80px rgba(0,0,0,.2); }
.pdf-flipbook-bar { min-height: 62px; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-bottom: 1px solid rgba(243,239,232,.18); }
.pdf-flipbook-bar > div { display: flex; align-items: baseline; gap: 14px; }
.pdf-flipbook-bar strong { font-family: "Or Lemmen",Georgia,serif; font-size: 22px; font-weight: 700; }
.pdf-flipbook-bar span { color: rgba(243,239,232,.58); font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.pdf-flipbook-bar button,.pdf-flipbook-controls button { padding: 9px 12px; color: var(--cream); background: transparent; border: 1px solid rgba(243,239,232,.28); font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
.pdf-flipbook button:disabled { opacity: .28; cursor: default; }
.pdf-book-stage { position: relative; padding: 18px; background: radial-gradient(circle at 50% 42%,#214640 0,#173632 54%,#102e29 100%); }
.pdf-book-view { position: relative; height: clamp(500px,57vw,760px); perspective: 2200px; outline: 0; overflow: hidden; }
.pdf-book-view:focus-visible { box-shadow: inset 0 0 0 2px var(--coral); }
.pdf-paper { position: absolute; top: 50%; height: calc(100% - 42px); display: none; align-items: center; justify-content: center; background: #f7f3eb; box-shadow: 0 22px 45px rgba(0,0,0,.25); overflow: hidden; backface-visibility: hidden; transition: transform .23s ease,opacity .23s ease,filter .23s ease; }
.pdf-paper.is-visible { display: flex; }
.pdf-paper-left { right: 50%; width: min(46%,550px); transform: translateY(-50%); transform-origin: right center; }
.pdf-paper-right { left: 50%; width: min(46%,550px); transform: translateY(-50%); transform-origin: left center; }
.pdf-paper-wide { left: 50%; width: min(92%,1100px); transform: translate(-50%,-50%); transform-origin: left center; }
.pdf-paper-wide.is-cover { left: 53%; width: min(43%,490px); }
.pdf-paper canvas { max-width: 100%; max-height: 100%; display: block; background: #fff; }
.pdf-paper-left::after,.pdf-paper-right::before { content: ""; position: absolute; top: 0; bottom: 0; z-index: 2; width: 28px; pointer-events: none; }
.pdf-paper-left::after { right: 0; background: linear-gradient(90deg,transparent,rgba(13,41,37,.13)); }
.pdf-paper-right::before { left: 0; background: linear-gradient(90deg,rgba(13,41,37,.14),transparent); }
.pdf-book-view.is-turning-next .pdf-paper-right.is-visible { transform: translateY(-50%) rotateY(-88deg); opacity: .38; filter: brightness(.78); }
.pdf-book-view.is-turning-next .pdf-paper-wide.is-visible { transform: translate(-50%,-50%) rotateY(-88deg); opacity: .38; filter: brightness(.78); }
.pdf-book-view.is-turning-prev .pdf-paper-left.is-visible { transform: translateY(-50%) rotateY(88deg); opacity: .38; filter: brightness(.78); }
.pdf-book-view.is-turning-prev .pdf-paper-wide.is-visible { transform: translate(-50%,-50%) rotateY(88deg); opacity: .38; filter: brightness(.78); }
.pdf-page-hit { position: absolute; top: 0; bottom: 0; z-index: 5; width: 50%; padding: 0; display: flex; align-items: center; color: var(--cream); background: transparent; border: 0; cursor: pointer; }
.pdf-page-hit-prev { left: 0; justify-content: flex-start; }
.pdf-page-hit-next { right: 0; justify-content: flex-end; }
.pdf-page-hit span { width: 44px; height: 44px; margin: 18px; display: grid; place-items: center; background: rgba(13,41,37,.76); border: 1px solid rgba(243,239,232,.48); border-radius: 50%; font-size: 19px; opacity: .58; transition: opacity .2s,transform .2s,background .2s; }
.pdf-page-hit:hover span,.pdf-page-hit:focus-visible span { background: var(--coral); opacity: 1; transform: scale(1.06); }
.pdf-page-hit:disabled span { opacity: 0; }
.pdf-reader-status { position: absolute; inset: 50% auto auto 50%; z-index: 6; margin: 0; color: rgba(243,239,232,.72); font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; transform: translate(-50%,-50%); }
.pdf-flipbook-controls { min-height: 66px; padding: 12px 20px; display: grid; grid-template-columns: auto minmax(100px,1fr) auto auto; align-items: center; gap: 18px; border-top: 1px solid rgba(243,239,232,.18); }
.pdf-flipbook-progress { height: 3px; background: rgba(243,239,232,.15); }
.pdf-flipbook-progress span { width: 0; height: 100%; display: block; background: var(--coral); transition: width .3s ease; }
.pdf-flipbook-controls > span { font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.magazine-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px 24px; }
.magazine-content-grid article > div { position: relative; min-height: 480px; overflow: hidden; }
.magazine-content-grid img { object-fit: cover; }
.magazine-content-grid article > span { display: block; margin-top: 16px; color: var(--coral); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.magazine-content-grid h3 { margin: 13px 0; font-size: clamp(37px,4vw,58px); line-height: .92; }
.magazine-content-grid p { max-width: 600px; color: rgba(23,54,50,.65); line-height: 1.5; }
.magazine-subscribe-cta { min-height: 750px; padding: clamp(80px,9vw,140px) var(--gutter); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px,10vw,160px); align-items: center; color: var(--cream); background: var(--sage); }
.magazine-subscribe-cover { display: grid; place-items: center; }
.magazine-subscribe-cover img { width: min(500px,82%); height: auto; transform: rotate(-3deg); box-shadow: 0 35px 70px rgba(23,54,50,.22); }
.magazine-subscribe-copy h2 { margin: 0 0 25px; font-size: clamp(60px,7vw,105px); line-height: .87; }
.magazine-subscribe-copy > p { max-width: 620px; font-size: 17px; line-height: 1.55; }
.subscribe-prices { margin: 35px 0; display: flex; gap: 12px; }
.subscribe-prices span { padding: 13px 16px; border: 1px solid rgba(243,239,232,.42); text-transform: uppercase; font-size: 8px; }
.subscribe-prices strong { font-family: "Or Lemmen",Georgia,serif; font-size: 24px; font-weight: 700; }
.magazine-subscription-section { background: var(--paper); }
.magazine-subscription-section .clear-section-heading { margin-bottom: 65px; }
.subscription-start-note { grid-column: 1 / -1; margin-top: 24px; padding: 18px 20px; display: grid; grid-template-columns: minmax(210px,.45fr) 1fr; gap: 25px; align-items: center; color: var(--cream); background: var(--ink); }
.subscription-start-note strong { font-family: "Or Lemmen",Georgia,serif; font-size: 24px; font-weight: 700; }
.subscription-start-note span { color: rgba(243,239,232,.78); font-size: 12px; line-height: 1.5; }

/* Subscription configurator */
.subscription-commerce-hero .subscription-hero-copy h1 { font-size: clamp(66px,7.5vw,114px); line-height: .87; }
.clean-subscription-cover { display: grid; place-items: center; background: var(--yellow); }
.clean-subscription-cover img { position: static; width: min(540px,78%); height: auto; transform: rotate(-3deg); box-shadow: 0 36px 75px rgba(23,54,50,.2); }
.subscription-benefits-bar { background: var(--paper); }
.subscription-builder { background: var(--cream); }
.subscription-configurator { width: min(1050px,100%); margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.subscription-choice { padding: 30px; background: var(--paper); }
.subscription-choice:nth-child(2) { grid-row: span 2; }
.choice-label { display: block; margin-bottom: 20px; text-transform: uppercase; font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.billing-toggle, .recipient-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.billing-toggle button, .recipient-toggle button { min-height: 68px; padding: 12px; color: var(--ink); background: transparent; border: 1px solid var(--line); cursor: pointer; }
.billing-toggle button.active, .recipient-toggle button.active { color: var(--cream); background: var(--ink); border-color: var(--ink); }
.billing-toggle strong, .billing-toggle small { display: block; }
.billing-toggle strong { font-family: "Or Lemmen",Georgia,serif; font-size: 23px; font-weight: 700; }
.billing-toggle small { margin-top: 4px; text-transform: uppercase; font-size: 6px; letter-spacing: .1em; }
.recipient-toggle button { min-height: 48px; text-align: left; text-transform: uppercase; font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.format-choice { margin-top: 8px; padding: 19px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; border: 1px solid var(--line); cursor: pointer; }
.format-choice.selected { background: var(--cream); border-color: var(--ink); }
.format-choice input { width: 18px; height: 18px; accent-color: var(--ink); }
.format-choice span strong, .format-choice span small { display: block; }
.format-choice span strong { font-family: "Or Lemmen",Georgia,serif; font-size: 21px; font-weight: 700; }
.format-choice span small { margin-top: 5px; color: rgba(23,54,50,.58); font-size: 9px; }
.format-choice > b { text-align: right; font-size: 9px; font-weight: 400; }
.gift-note { margin: 15px 0 0; color: rgba(23,54,50,.62); font-size: 11px; line-height: 1.5; }
.subscription-summary { grid-column: 1 / -1; min-height: 104px; padding: 18px 22px; display: grid; grid-template-columns: minmax(0,1fr) minmax(245px,.42fr); align-items: center; gap: 24px; color: var(--cream); background: var(--ink); }
.subscription-summary > [data-selected-product-inputs] { display: none; }
.subscription-summary > div { min-width: 0; display: flex; align-items: baseline; gap: 14px; white-space: nowrap; }
.subscription-summary div span, .subscription-summary div small { display: block; }
.subscription-summary div span { font-family: "Or Lemmen",Georgia,serif; font-size: 24px; }
.subscription-summary div small { margin-top: 0; color: rgba(243,239,232,.65); font-size: 9px; }
.subscription-summary > strong { justify-self: start; font-family: "Or Lemmen",Georgia,serif; font-size: 40px; font-weight: 700; white-space: nowrap; }
.subscription-summary > strong small { font-family: "Maison Neue",Arial,sans-serif; font-size: 7px; text-transform: uppercase; letter-spacing: .1em; }
.subscription-summary .primary-button { width: 100%; min-height: 62px; padding: 14px 20px; color: var(--ink); background: var(--coral); border-color: var(--coral); white-space: nowrap; }
.subscription-summary button.primary-button { font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 18px; font-weight: 700; }
.subscription-modal-card h2 { font-size: clamp(45px,5vw,67px); }
.paper-digital-section { min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; }
.paper-digital-image { position: relative; min-height: 680px; }
.paper-digital-image img { object-fit: cover; }
.paper-digital-copy { padding: clamp(70px,8vw,130px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.paper-digital-copy h2 { margin: 0 0 25px; font-size: clamp(58px,6.5vw,96px); line-height: .9; }
.paper-digital-copy > p { color: rgba(243,239,232,.7); font-size: 16px; line-height: 1.55; }
.paper-digital-copy ul { margin: 28px 0 35px; padding: 0; list-style: none; border-top: 1px solid rgba(243,239,232,.22); }
.paper-digital-copy li { padding: 11px 0; border-bottom: 1px solid rgba(243,239,232,.22); font-size: 11px; }
.paper-digital-copy li::before { content: "✓"; margin-right: 9px; color: var(--coral); }
.gift-subscription-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(70px,10vw,160px); align-items: center; }
.gift-subscription-copy h2 { margin: 0 0 25px; font-size: clamp(60px,7vw,104px); line-height: .87; }
.gift-subscription-copy > p { max-width: 620px; font-size: 17px; line-height: 1.55; }
.gift-subscription-copy .primary-button { margin-top: 28px; }
.gift-subscription-image { min-height: 600px; display: grid; place-items: center; background: var(--coral); }
.gift-subscription-image img { width: min(500px,75%); height: auto; transform: rotate(5deg); box-shadow: 0 35px 70px rgba(23,54,50,.2); }

/* Clear experiences */
.experience-clear-hero { position: relative; min-height: 860px; color: var(--cream); background: var(--deep); }
.experience-clear-hero > img { object-fit: cover; }
.experience-clear-shade { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(7,29,25,.83),rgba(7,29,25,.08) 78%),linear-gradient(0deg,rgba(7,29,25,.55),transparent 60%); }
.experience-clear-copy { position: absolute; z-index: 2; left: var(--gutter); bottom: 85px; width: min(900px,75%); }
.experience-clear-copy h1 { margin: 25px 0; font-size: clamp(75px,9vw,140px); line-height: .8; }
.experience-clear-copy > p { max-width: 650px; font-size: 18px; line-height: 1.5; }
.experience-clear-copy .primary-button { margin-top: 25px; }
.experience-offers { background: var(--cream); }
.experience-offer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.experience-offer-grid article > div { position: relative; min-height: 430px; margin-bottom: 18px; overflow: hidden; }
.experience-offer-grid img { object-fit: cover; }
.experience-offer-grid article > span { color: var(--coral); text-transform: uppercase; font-size: 8px; letter-spacing: .11em; }
.experience-offer-grid h3 { min-height: 104px; margin: 16px 0; font-size: clamp(30px,3vw,45px); line-height: .94; }
.experience-offer-grid ul { margin: 0 0 24px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.experience-offer-grid li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.experience-offer-grid li::before { content: "✓"; margin-right: 8px; color: var(--coral); }
.experience-offer-grid article > a { display: inline-flex; padding-bottom: 5px; border-bottom: 1px solid currentColor; text-transform: uppercase; font-size: 8px; letter-spacing: .1em; }
.booking-explained { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(70px,10vw,150px); }
.booking-steps { border-top: 1px solid rgba(243,239,232,.22); }
.booking-steps article { padding: 27px 0; display: grid; grid-template-columns: 60px 1fr; gap: 20px; border-bottom: 1px solid rgba(243,239,232,.22); }
.booking-steps article > strong { color: var(--coral); font-family: "Or Lemmen",Georgia,serif; font-size: 36px; font-weight: 700; }
.booking-steps h3 { margin: 0 0 8px; font-size: 30px; }
.booking-steps p { margin: 0; color: rgba(243,239,232,.62); font-size: 13px; line-height: 1.5; }
.experience-membership { min-height: 720px; display: grid; grid-template-columns: 1fr 1fr; color: var(--cream); background: var(--sage); }
.experience-membership-image { position: relative; min-height: 650px; }
.experience-membership-image img { object-fit: cover; }
.experience-membership-copy { padding: clamp(70px,8vw,130px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.experience-membership-copy h2 { margin: 0 0 25px; font-size: clamp(56px,6.5vw,96px); line-height: .9; }
.experience-membership-copy p { color: rgba(243,239,232,.72); font-size: 16px; line-height: 1.55; }
.experience-membership-copy .primary-button { margin-top: 28px; }

@media (max-width: 1100px) {
  .daily-grid { grid-template-columns: 1fr; }
  .daily-card-1 { grid-row: auto; }
  .daily-card-1 .daily-image { min-height: 440px; }
  .home-magazine-offer, .home-box-offer { gap: 55px; }
  .box-product { grid-template-columns: 1fr; }
  .box-product:last-child { grid-template-columns: 1fr 1fr; }
  .box-product-image { min-height: 320px; }
  .box-order-section, .booking-explained { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .clear-section-heading h2 { font-size: clamp(49px,14vw,72px); }
  .commerce-hero .home-hero-inner { gap: 35px; }
  .commerce-hero .home-hero-top { top: 95px; }
  .commerce-hook h1 { font-size: 15.5vw; line-height: .88; }
  .commerce-hook p { margin-top: 22px; font-size: 15px; }
  .commerce-actions { align-items: stretch; flex-direction: column; }
  .commerce-actions .primary-button { width: 100%; }
  .daily-heading { grid-template-columns: 1fr; gap: 25px; }
  .daily-card, .daily-card-2, .daily-card-3, .daily-card-4 { grid-template-columns: 1fr; }
  .daily-image, .daily-card-1 .daily-image, .daily-card-2 .daily-image, .daily-card-3 .daily-image, .daily-card-4 .daily-image { min-height: 320px; }
  .home-magazine-offer, .home-box-offer { grid-template-columns: 1fr; }
  .home-magazine-visual { min-height: 500px; }
  .home-magazine-visual img { width: min(900px,145%); max-width: none; }
  .home-magazine-copy ul { grid-template-columns: 1fr; }
  .home-magazine-copy li { border-right: 0; border-bottom: 1px solid rgba(23,54,50,.32); }
  .offer-actions { align-items: flex-start; flex-direction: column; }
  .home-box-visual { min-height: 500px; }
  .experience-types { grid-template-columns: 1fr; }
  .experience-types > div, .experience-types > div:not(:first-child) { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-reassurance, .magazine-facts, .subscription-benefits-bar { grid-template-columns: 1fr 1fr; }
  .home-reassurance > div, .magazine-facts > div, .subscription-benefits-bar > div { padding: 23px; border-bottom: 1px solid var(--line); }
  .box-hero { min-height: auto; padding-top: 120px; grid-template-columns: 1fr; }
  .box-hero-image { min-height: 500px; }
  .box-products { grid-template-columns: 1fr; }
  .box-product, .box-product:last-child { grid-column: auto; grid-template-columns: 1fr; }
  .box-buy-row { grid-template-columns: 1fr; }
  .quantity-control { min-height: 50px; justify-content: center; }
  .box-order-panel { padding: 24px; }
  .box-order-panel ul, .box-method-grid { grid-template-columns: 1fr; }
  .box-method-grid article, .box-method-grid article:not(:first-child) { padding: 25px 0; border-right: 0; }
  .reader-spread { grid-template-columns: 1fr; }
  .reader-page { aspect-ratio: 3/4; }
  .digital-reader-controls { grid-template-columns: 1fr 1fr; }
  .reader-progress { grid-column: 1 / -1; grid-row: 1; }
  .digital-reader-controls > span { display: none; }
	.pdf-flipbook-bar { align-items: flex-start; }
	.pdf-flipbook-bar > div { display: block; }
	.pdf-flipbook-bar span { display: block; margin-top: 4px; }
	.pdf-book-stage { padding: 8px; }
	.pdf-book-view { height: min(72svh,650px); }
	.pdf-paper { height: calc(100% - 24px); }
	.pdf-paper-left,.pdf-paper-right { width: 48%; }
	.pdf-paper-wide { width: 96%; }
	.pdf-paper-wide.is-cover { left: 50%; width: min(76%,430px); }
	.pdf-page-hit span { width: 36px; height: 36px; margin: 8px; font-size: 16px; }
	.pdf-flipbook-controls { grid-template-columns: 1fr 1fr; }
	.pdf-flipbook-progress { grid-column: 1 / -1; grid-row: 1; }
	.pdf-flipbook-controls > span { display: none; }
  .magazine-content-grid { grid-template-columns: 1fr; }
  .magazine-content-grid article > div { min-height: 380px; }
  .magazine-subscribe-cta { grid-template-columns: 1fr; }
  .magazine-subscribe-cover { min-height: 500px; }
  .subscription-configurator { grid-template-columns: 1fr; }
  .subscription-choice:nth-child(2) { grid-row: auto; }
  .subscription-summary { grid-column: auto; grid-template-columns: 1fr; }
  .format-choice { grid-template-columns: auto 1fr; }
  .format-choice > b { grid-column: 2; text-align: left; }
  .paper-digital-section, .gift-subscription-section { grid-template-columns: 1fr; }
  .paper-digital-image, .gift-subscription-image { min-height: 500px; }
  .experience-clear-hero { min-height: 760px; }
  .experience-clear-copy { width: auto; right: var(--gutter); bottom: 55px; }
  .experience-clear-copy h1 { font-size: 16vw; }
  .experience-offer-grid { grid-template-columns: 1fr; gap: 55px; }
  .experience-offer-grid article > div { min-height: 400px; }
  .experience-offer-grid h3 { min-height: 0; }
  .experience-membership { grid-template-columns: 1fr; }
  .experience-membership-image { min-height: 500px; }
}

/* Motion */
@keyframes heroImage { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes textUp { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLine { 0%,100% { transform: scaleX(.25); } 50% { transform: scaleX(1); } }
@keyframes float { 0%,100% { transform: rotate(9deg) translateY(0); } 50% { transform: rotate(6deg) translateY(-10px); } }
@keyframes coverFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
@keyframes seal { to { transform: rotate(360deg); } }
@keyframes drawerIn { from { transform: translateX(100%); } }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.98); } }
@keyframes mapCardIn { from { opacity: 0; transform: translateY(18px) scale(.97); } }

@media (max-width: 1100px) {
  .global-header { grid-template-columns: 160px 1fr auto; }
  .global-nav { gap: 18px; }
  .global-nav small { display: none; }
  .header-club { display: none; }
  .section-title-row { grid-template-columns: 1fr .6fr auto; }
  .home-title-wrap h1 { font-size: 15vw; }
  .hero-sticker { width: 100px; height: 100px; }
  .home-intro, .experience-manifesto, .journal-intro { grid-template-columns: .25fr 1.2fr .65fr; gap: 40px; }
  .two-worlds, .world-card { min-height: 700px; }
  .featured-story { grid-template-columns: 1.4fr .6fr; }
  .featured-story-head, .featured-story-media { grid-column: 1 / 2; }
  .featured-story-aside { grid-column: 2; grid-row: 1 / 3; }
  .rotating-seal { display: none; }
  .xp-grid { grid-template-columns: repeat(2,1fr); }
  .home-xp-grid .xp-card:last-child { display: none; }
  .club-teaser { gap: 55px; }
  .footer-top { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-brand { width: 300px; }
  .reader-head { grid-template-columns: .3fr 1fr .6fr; }
  .issue-intro { grid-template-columns: .35fr 1fr .65fr; }
  .formats-section { min-height: 660px; }
  .format-card { min-height: 660px; }
  .how-it-works, .club-benefits, .faq-section { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: minmax(0,1fr) 330px; gap: 35px; }
  .booking-card { padding: 25px; }
  .booking-card h2 { font-size: 49px; }
  .address-book-head { grid-template-columns: .25fr 1fr .6fr; }
}

@media (max-width: 780px) {
  .section-shell { padding-top: 82px; padding-bottom: 82px; }
  .global-header { height: 68px; grid-template-columns: 1fr auto; }
  .global-brand { width: 145px; }
  .global-nav { display: none; }
  .header-actions { display: none; }
  .menu-button { display: block; }
  .global-header.is-overlay:not(.is-scrolled) .menu-button { color: var(--cream); }
  .menu-overlay { padding-top: 100px; }
  .menu-overlay nav a { grid-template-columns: 30px 1fr auto; font-size: clamp(39px,12vw,66px); }
  .menu-foot { flex-direction: column; }
  .section-title-row { grid-template-columns: 1fr; gap: 26px; margin-bottom: 55px; }
  .section-title-row > p { width: 100%; }
  .section-title-row .round-link { display: none; }
  .home-hero { min-height: 690px; }
  .home-hero-inner { padding-top: 120px; padding-bottom: 36px; }
  .edition-note { display: none; }
  .home-title-wrap h1 { font-size: 21vw; line-height: .73; }
  .home-title-wrap h1 em { padding-left: 13vw; }
  .home-hero-bottom { align-items: flex-start; flex-direction: column; gap: 26px; }
  .home-hero-bottom > p { font-size: 18px; }
  .hero-ctas { align-items: flex-start; flex-direction: column; gap: 18px; }
  .scroll-cue { display: none; }
  .hero-sticker { right: 5%; top: 18%; width: 85px; height: 85px; }
  .hero-sticker strong { font-size: 29px; }
  .hero-sticker small { bottom: 11px; }
  .home-intro, .experience-manifesto, .journal-intro { grid-template-columns: 1fr; gap: 45px; }
  .intro-index { margin-bottom: 10px; }
  .intro-copy, .experience-manifesto-copy, .journal-intro-copy { padding-left: 18vw; }
  .two-worlds { grid-template-columns: 1fr; }
  .world-card { min-height: 620px; }
  .featured-story { display: block; }
  .featured-story-head { display: block; margin-bottom: 40px; }
  .featured-story-head .overline { margin-bottom: 24px; }
  .featured-story-media { min-height: 470px; }
  .featured-story-aside { margin-top: 40px; }
  .xp-grid { grid-template-columns: 1fr; }
  .home-xp-grid .xp-card:last-child { display: block; }
  .xp-card > p { min-height: 0; }
  .club-teaser { grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 80px; }
  .club-cover-stack { min-height: 480px; }
  .story-row { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 20px; }
  .story-tile { min-width: 82vw; scroll-snap-align: start; }
  .story-2 .story-tile-image, .story-3 .story-tile-image { aspect-ratio: 4/3; }
  .global-newsletter { min-height: 630px; padding: 80px 22px; }
  .global-newsletter form { grid-template-columns: 1fr; gap: 10px; border: 0; }
  .global-newsletter input { border-bottom: 1px solid var(--cream); }
  .global-newsletter button { padding: 16px; color: var(--cream); background: var(--ink); }
  .footer-top { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { width: 250px; }
  .footer-bottom { grid-template-columns: 1fr 1fr; gap: 16px; }
  .magazine-hero { min-height: auto; padding-top: 130px; grid-template-columns: 1fr; }
  .magazine-hero-visual { min-height: 500px; }
  .magazine-hero .hero-ctas { align-items: flex-start; }
  .issue-intro { grid-template-columns: 1fr; gap: 45px; }
  .issue-number { width: 150px; }
  .reader-head { grid-template-columns: 1fr; gap: 30px; }
  .spread-stage { overflow-x: auto; }
  .fake-page { min-width: 78vw; }
  .content-row { padding: 22px 0; grid-template-columns: 35px 1fr 30px; min-height: 90px; }
  .content-row p, .content-row b { display: none; }
  .magazine-mosaic { grid-template-columns: 1fr; }
  .mosaic-image, .mosaic-image.tall { min-height: 540px; }
  .mosaic-quote { min-height: 500px; }
  .object-section { grid-template-columns: 1fr; }
  .object-visual { min-height: 500px; }
  .experiences-hero { min-height: 870px; }
  .experiences-hero-copy { width: 100%; padding-top: 20vh; }
  .experiences-hero h1 { font-size: 18vw; }
  .experiences-hero-copy > p { width: 90%; }
  .xp-hero-image.image-a { right: -6%; top: 13%; width: 55%; height: 35%; }
  .xp-hero-image.image-b { left: -8%; right: auto; top: 10%; width: 43%; height: 28%; }
  .xp-hero-image.image-c { display: none; }
  .xp-hero-ticket { width: 110px; height: 110px; right: 5%; bottom: 4%; }
  .formats-section { grid-template-columns: 1fr; }
  .format-card { min-height: 620px; }
  .explorer-tools { grid-template-columns: 1fr; }
  .region-select { width: 100%; }
  .region-select select { width: 100%; }
  .how-steps article { grid-template-columns: 35px 1fr; }
  .how-steps article p { grid-column: 2; }
  .regions-section { grid-template-columns: 1fr; }
  .gift-section { grid-template-columns: 1fr; }
  .gift-image { min-height: 490px; }
  .detail-hero { min-height: 780px; }
  .detail-back { top: 98px; }
  .detail-hero-copy { right: var(--gutter); bottom: 120px; }
  .detail-hero h1 { font-size: 18vw; }
  .detail-quickfacts { left: var(--gutter); right: auto; bottom: 35px; align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  .detail-quickfacts strong { width: 100%; margin: 0; }
  .detail-intro { grid-template-columns: 1fr; gap: 20px; }
  .detail-story { padding-top: 20px; padding-left: 16vw; }
  .detail-layout { grid-template-columns: 1fr; padding-left: 0; padding-right: 0; }
  .detail-main { padding: 0 var(--gutter); }
  .detail-photo-wide { min-height: 470px; }
  .booking-card { position: static; margin: 0 var(--gutter); }
  .host-grid { grid-template-columns: 1fr; gap: 55px; }
  .hosts-head { align-items: flex-start; flex-direction: column; }
  .included-section { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .detail-gallery { min-height: auto; grid-template-columns: 1fr; }
  .gallery-one, .gallery-two { min-height: 480px; }
  .gallery-caption { width: 80%; text-align: center; }
  .subscription-hero { min-height: auto; padding-top: 125px; grid-template-columns: 1fr; }
  .subscription-cover-scene { min-height: 520px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .benefit-grid article:nth-child(even) { padding: 28px 0; border-right: 0; }
  .plan-grid { grid-template-columns: 1fr; gap: 30px; }
  .plan-card.featured-plan { transform: none; }
  .plan-card { min-height: 570px; }
  .comparison-section { overflow-x: auto; }
  .comparison-head { grid-template-columns: 1fr; }
  .comparison-head h2 { grid-column: 1; }
  .comparison-table { min-width: 690px; }
  .subscription-gift { grid-template-columns: 1fr; }
  .subscription-gift-image { min-height: 520px; }
  .subscription-modal-card { padding: 50px 25px 30px; }
  .faq-section { gap: 55px; }
  .journal-hero { min-height: 780px; }
  .journal-hero-copy { width: auto; right: var(--gutter); bottom: 70px; }
  .journal-hero h1 { font-size: 17vw; }
  .journal-hero-copy > p { width: 100%; }
  .journal-issue-tag { width: 95px; height: 95px; right: 5%; bottom: 5%; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card.large { grid-column: auto; display: block; }
  .journal-card.large .journal-card-image { aspect-ratio: 4/3; }
  .recipe-feature { grid-template-columns: 1fr; }
  .recipe-image { min-height: 520px; }
  .address-book-head { grid-template-columns: 1fr; gap: 30px; }
  .address-row { padding: 20px 0; grid-template-columns: 1fr auto; gap: 12px; }
  .address-row strong, .address-row p { grid-column: 1 / -1; }
  .address-row b { grid-column: 2; grid-row: 1; }
  .booking-drawer { width: 100%; }
  .drawer-body { padding: 42px 24px; }
  .drawer-body h2 { font-size: 54px; }
}

/* Editorial renewal V7 */
.news-led-hero { min-height: 850px; }
.news-led-hero .home-hero-shade { background: linear-gradient(90deg,rgba(7,29,25,.82),rgba(7,29,25,.2) 72%),linear-gradient(0deg,rgba(7,29,25,.84),transparent 64%); }
.news-led-hero .home-hero-inner { padding-top: 112px; padding-bottom: 30px; justify-content: flex-end; }
.news-hero-layout { width: 100%; margin-top: auto; display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,365px); align-items: end; gap: clamp(35px,5vw,85px); }
.news-hero-main { min-width: 0; }
.news-led-hero .commerce-hook h1 { max-width: 1040px; font-size: clamp(68px,8.2vw,132px); line-height: .92; }
.news-led-hero .commerce-hook p { max-width: 690px; margin-top: 24px; font-size: clamp(15px,1.25vw,19px); }
.news-led-hero .commerce-actions { margin-top: 28px; }
.today-glance { color: var(--ink); background: rgba(243,239,232,.95); border: 1px solid rgba(243,239,232,.62); box-shadow: 0 26px 80px rgba(5,25,21,.24); backdrop-filter: blur(14px); animation: textUp .8s .45s both; }
.today-glance-head, .today-glance-foot { padding: 15px 17px; display: flex; align-items: center; justify-content: space-between; text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }
.today-glance-head { color: var(--cream); background: var(--coral); }
.today-glance-head strong { font-family: "Or Lemmen",Georgia,serif; font-size: 22px; font-weight: 700; letter-spacing: -.03em; }
.today-glance article { padding: 16px 17px 17px; border-bottom: 1px solid var(--line); }
.today-glance article > span { color: var(--coral); text-transform: uppercase; font-size: 7px; letter-spacing: .11em; }
.today-glance article h2 { margin: 7px 0 0; font-size: clamp(22px,2vw,29px); line-height: .95; letter-spacing: -.04em; }
.today-glance-foot { color: rgba(23,54,50,.6); }
.today-glance-foot b { color: var(--ink); font-size: 17px; font-weight: 400; }

.daily-meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.daily-meta span, .daily-meta time { text-transform: uppercase; font-size: 7px; letter-spacing: .11em; }
.daily-meta span { color: var(--coral); }
.daily-meta time { color: rgba(23,54,50,.45); }
.daily-copy > small { display: block; margin-top: 22px; padding-top: 12px; color: rgba(23,54,50,.46); border-top: 1px solid var(--line); text-transform: uppercase; font-size: 6px; letter-spacing: .1em; }

.home-box-clues { margin: 25px 0 0; display: flex; flex-wrap: wrap; gap: 7px; }
.home-box-clues span { padding: 8px 10px; color: rgba(243,239,232,.76); border: 1px solid rgba(243,239,232,.26); text-transform: uppercase; font-size: 7px; letter-spacing: .09em; }
.home-box-visual img { object-position: center; }
.stock-edition { margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.stock-edition span { color: var(--coral); }
.stock-edition strong { font-weight: 400; opacity: .68; }
.home-about-teaser { min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; color: var(--cream); background: var(--sage); }
.home-about-portrait { position: relative; min-height: 700px; overflow: hidden; }
.home-about-portrait img { object-fit: cover; object-position: center 34%; }
.home-about-copy { padding: clamp(70px,8vw,130px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.home-about-copy h2 { margin: 0 0 25px; font-size: clamp(60px,7vw,108px); line-height: .86; }
.home-about-copy p { max-width: 640px; margin: 0; color: rgba(243,239,232,.78); font-size: 17px; line-height: 1.55; }
.home-about-copy .primary-button { margin-top: 32px; }

/* Surprise box */
.surprise-box-hero { grid-template-columns: 1fr 1fr; background: var(--paper); }
.surprise-box-hero h1 { font-size: clamp(72px,8.5vw,130px); line-height: .82; }
.surprise-box-hero .box-hero-image { box-shadow: 0 35px 80px rgba(23,54,50,.14); }
.surprise-box-hero .box-hero-image img { object-position: center; }
.surprise-concept { background: var(--cream); }
.surprise-steps { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.surprise-steps article { min-height: 440px; padding: 32px 32px 35px 0; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.surprise-steps article:not(:first-child) { padding-left: 32px; }
.surprise-steps article:last-child { border-right: 0; }
.surprise-steps article > strong { color: var(--coral); font-family: "Or Lemmen",Georgia,serif; font-size: 62px; font-weight: 700; }
.surprise-steps article > span { margin-top: 42px; color: rgba(23,54,50,.5); text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }
.surprise-steps h3 { margin: 14px 0; font-size: clamp(34px,3.3vw,50px); line-height: .92; }
.surprise-steps p { margin: auto 0 0; color: rgba(23,54,50,.65); font-size: 13px; line-height: 1.55; }
.box-clues { color: var(--ink); background: var(--coral); }
.box-clues-title { margin-bottom: 65px; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 50px; }
.box-clues-title .section-kicker { grid-column: 1 / -1; margin: 0; }
.box-clues-title h2 { margin: 0; font-size: clamp(66px,8vw,118px); line-height: .82; }
.box-clues-title p { max-width: 420px; margin: 0 0 7px; font-size: 17px; line-height: 1.55; }
.box-clue-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(23,54,50,.34); }
.box-clue-grid article { min-height: 350px; padding: 27px 25px 30px 0; border-right: 1px solid rgba(23,54,50,.34); border-bottom: 1px solid rgba(23,54,50,.34); }
.box-clue-grid article:not(:first-child) { padding-left: 25px; }
.box-clue-grid article:last-child { border-right: 0; }
.box-clue-grid article > span { font-size: 8px; }
.box-clue-grid article > strong { display: block; margin: 28px 0 4px; font-family: "Or Lemmen",Georgia,serif; font-size: 96px; line-height: .75; font-weight: 700; }
.box-clue-grid h3 { margin: 15px 0; font-size: 31px; line-height: .95; }
.box-clue-grid p { color: rgba(23,54,50,.68); font-size: 12px; line-height: 1.5; }
.box-calendar { background: var(--paper); }
.box-calendar-line { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.box-calendar-line::before { content: ""; position: absolute; left: 0; right: 0; top: 22px; height: 1px; background: var(--ink); }
.box-calendar-line article { position: relative; padding: 52px 40px 20px 0; }
.box-calendar-line article:not(:first-child) { padding-left: 40px; border-left: 1px solid var(--line); }
.box-calendar-line article::before { content: ""; position: absolute; z-index: 1; left: 0; top: 17px; width: 11px; height: 11px; background: var(--cream); border: 1px solid var(--ink); border-radius: 50%; }
.box-calendar-line article:not(:first-child)::before { left: 40px; }
.box-calendar-line article.current::before { background: var(--coral); box-shadow: 0 0 0 7px rgba(241,111,87,.18); }
.box-calendar-line article > span { text-transform: uppercase; font-size: 7px; letter-spacing: .11em; }
.box-calendar-line article > strong { display: block; margin: 18px 0 23px; font-family: "Or Lemmen",Georgia,serif; font-size: clamp(50px,5vw,76px); line-height: .8; font-weight: 700; }
.box-calendar-line h3 { margin: 0 0 12px; font-size: 29px; }
.box-calendar-line p { color: rgba(23,54,50,.62); font-size: 12px; line-height: 1.5; }
.box-faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(60px,9vw,140px); }
.box-faq .faq-title h2 { color: var(--cream); }
.box-faq .faq-list { color: var(--cream); }
.box-faq .faq-list details { border-color: rgba(243,239,232,.25); }
.box-faq .faq-list p { color: rgba(243,239,232,.67); }

/* About */
.about-hero { min-height: 900px; padding: 125px var(--gutter) 70px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(60px,9vw,145px); background: var(--cream); }
.about-hero-copy h1 { max-width: 920px; margin: 0 0 30px; font-size: clamp(78px,9vw,140px); line-height: .8; }
.about-hero-copy > p { max-width: 650px; font-size: 18px; line-height: 1.55; }
.about-hero-copy .primary-button { margin-top: 25px; }
.about-hero-visual { position: relative; min-height: 690px; display: grid; place-items: center; background: var(--coral); overflow: hidden; }
.about-hero-visual::before { content: "M"; position: absolute; left: -7%; bottom: -21%; color: rgba(23,54,50,.12); font-family: "Or Lemmen",Georgia,serif; font-size: 590px; line-height: 1; }
.about-plate { position: relative; z-index: 1; width: min(420px,70%); aspect-ratio: 4/5; overflow: hidden; box-shadow: 0 38px 75px rgba(23,54,50,.22); transform: rotate(-5deg); }
.about-plate img { object-fit: cover; }
.about-hero-visual > span { position: absolute; z-index: 2; right: 25px; bottom: 22px; padding: 12px 14px; color: var(--ink); background: var(--yellow); text-transform: uppercase; font-size: 7px; line-height: 1.5; letter-spacing: .12em; transform: rotate(4deg); }
.about-mission { display: grid; grid-template-columns: .25fr 1.1fr .75fr; align-items: start; gap: clamp(45px,7vw,110px); background: var(--paper); }
.about-mission-index { display: flex; flex-direction: column; gap: 12px; }
.about-mission-index strong { font-family: "Or Lemmen",Georgia,serif; font-size: 65px; font-weight: 700; }
.about-mission-index span { text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }
.about-mission-title h2 { margin: 0; font-size: clamp(62px,7.2vw,110px); line-height: .86; }
.about-mission-copy p { margin: 0 0 24px; font-size: 16px; line-height: 1.65; }
.founder-section { min-height: 850px; display: grid; grid-template-columns: 1fr 1fr; color: var(--cream); background: var(--deep); }
.founder-photo { position: relative; min-height: 800px; overflow: hidden; }
.founder-photo img { object-fit: cover; object-position: center 32%; }
.founder-photo > span { position: absolute; left: 20px; bottom: 20px; padding: 11px 13px; color: var(--ink); background: var(--yellow); text-transform: uppercase; font-size: 7px; line-height: 1.5; letter-spacing: .1em; }
.founder-copy { padding: clamp(70px,8vw,130px); display: flex; flex-direction: column; justify-content: center; }
.founder-copy h2 { margin: 0 0 32px; font-size: clamp(67px,7.6vw,116px); line-height: .84; }
.founder-copy p { max-width: 700px; margin: 0 0 20px; color: rgba(243,239,232,.72); font-size: 15px; line-height: 1.65; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.values-grid article { min-height: 380px; padding: 30px 35px 35px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid article:not(:first-child) { padding-left: 35px; }
.values-grid article:last-child { border-right: 0; }
.values-grid strong { color: var(--coral); font-size: 9px; }
.values-grid h3 { margin: 65px 0 18px; font-size: clamp(42px,4.5vw,66px); line-height: .88; }
.values-grid p { color: rgba(23,54,50,.65); font-size: 13px; line-height: 1.55; }
.about-ecosystem-head { max-width: 960px; margin-bottom: 75px; }
.about-ecosystem-head h2 { margin: 0; font-size: clamp(65px,7.5vw,113px); line-height: .85; }
.ecosystem-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(243,239,232,.25); }
.ecosystem-grid a { min-height: 390px; padding: 28px 28px 30px 0; display: flex; flex-direction: column; border-right: 1px solid rgba(243,239,232,.25); border-bottom: 1px solid rgba(243,239,232,.25); transition: background .3s,padding .3s; }
.ecosystem-grid a:not(:first-child) { padding-left: 28px; }
.ecosystem-grid a:last-child { border-right: 0; }
.ecosystem-grid a:hover { padding-left: 28px; background: rgba(243,239,232,.07); }
.ecosystem-grid span { color: var(--coral); font-size: 8px; }
.ecosystem-grid h3 { margin: 55px 0 18px; font-size: clamp(35px,3.5vw,52px); line-height: .9; }
.ecosystem-grid p { margin: 0; color: rgba(243,239,232,.62); font-size: 12px; line-height: 1.5; }
.ecosystem-grid b { margin-top: auto; text-transform: uppercase; font-size: 7px; font-weight: 400; letter-spacing: .12em; }
.team-section { background: var(--cream); }
.team-heading { margin-bottom: 75px; display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: 70px; }
.team-heading h2 { margin: 0; font-size: clamp(70px,8vw,120px); line-height: .82; }
.team-heading p { margin: 0 0 8px; color: rgba(23,54,50,.62); font-size: 15px; line-height: 1.55; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 55px 18px; }
.team-card.is-founder { grid-column: span 2; }
.team-portrait { position: relative; aspect-ratio: 1/1; background: var(--paper); overflow: hidden; }
.team-portrait img { object-fit: cover; }
.team-card.is-founder .team-portrait { aspect-ratio: 2/1; }
.team-card.is-founder .team-portrait img { object-position: center 33%; }
.team-card.is-sketch .team-portrait { background: #ded7ca; isolation: isolate; }
.team-card.is-sketch .team-portrait::before { content: ""; position: absolute; inset: 0; z-index: 2; background: radial-gradient(circle at 50% 40%,transparent 25%,rgba(23,54,50,.13) 120%),repeating-linear-gradient(168deg,rgba(23,54,50,.12) 0 1px,transparent 1px 6px); mix-blend-mode: multiply; pointer-events: none; }
.team-card.is-sketch .team-portrait::after { content: ""; position: absolute; inset: 0; z-index: 3; border: 1px solid rgba(23,54,50,.2); box-shadow: inset 0 0 45px rgba(243,239,232,.35); pointer-events: none; }
.team-card.is-sketch .team-portrait img { filter: grayscale(1) contrast(1.55) brightness(1.08); mix-blend-mode: multiply; opacity: .88; }
.team-caption { position: relative; padding: 17px 0 0 35px; }
.team-caption > span { position: absolute; left: 0; top: 20px; color: var(--coral); font-size: 7px; }
.team-caption h3 { margin: 0; font-size: clamp(26px,2.4vw,37px); line-height: .94; }
.team-caption p { margin: 7px 0 0; color: rgba(23,54,50,.58); text-transform: uppercase; font-size: 7px; line-height: 1.4; letter-spacing: .09em; }
.about-contact { min-height: 620px; padding: clamp(80px,10vw,150px) var(--gutter) 35px; display: flex; flex-direction: column; justify-content: space-between; color: var(--cream); background: var(--sage); }
.about-contact-copy { max-width: 1100px; }
.about-contact h2 { margin: 0 0 25px; font-size: clamp(75px,10vw,152px); line-height: .76; }
.about-contact p { max-width: 640px; font-size: 17px; line-height: 1.55; }
.about-contact .primary-button { margin-top: 28px; min-width: min(390px,100%); }
.about-contact-facts { padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(243,239,232,.28); text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }

@media (max-width: 1100px) {
  .news-hero-layout { grid-template-columns: minmax(0,1fr) 310px; gap: 30px; }
  .news-led-hero .commerce-hook h1 { font-size: clamp(64px,8.3vw,96px); }
  .news-led-hero .commerce-actions { flex-wrap: wrap; }
  .surprise-steps article { min-height: 400px; }
  .box-clue-grid { grid-template-columns: repeat(2,1fr); }
  .box-clue-grid article:nth-child(2) { border-right: 0; }
  .box-clue-grid article:nth-child(3) { padding-left: 0; }
  .about-mission { grid-template-columns: .25fr 1fr; }
  .about-mission-copy { grid-column: 2; }
  .ecosystem-grid { grid-template-columns: repeat(2,1fr); }
  .ecosystem-grid a:nth-child(2) { border-right: 0; }
  .ecosystem-grid a:nth-child(3) { padding-left: 0; }
  .team-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 780px) {
  .news-led-hero { height: auto; min-height: 960px; }
  .news-led-hero .home-hero-inner { min-height: 960px; padding-top: 105px; padding-bottom: 22px; }
  .news-led-hero .home-hero-top { top: 88px; }
  .news-hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .news-led-hero .commerce-hook h1 { font-size: 13.5vw; line-height: .94; }
  .news-led-hero .commerce-hook p { margin-top: 17px; font-size: 14px; }
  .news-led-hero .commerce-actions { margin-top: 20px; }
  .news-led-hero .commerce-actions .primary-button { padding-top: 14px; padding-bottom: 13px; }
  .today-glance article { padding: 13px 15px; }
  .today-glance article:nth-of-type(n+2) { display: none; }
  .today-glance article h2 { font-size: 23px; }
  .daily-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
  .home-about-teaser { grid-template-columns: 1fr; }
  .home-about-portrait { min-height: 520px; }
  .home-box-clues { margin-bottom: 4px; }
  .stock-edition { align-items: flex-start; flex-direction: column; gap: 5px; }
  .surprise-box-hero { grid-template-columns: 1fr; }
  .surprise-box-hero h1 { font-size: 17vw; }
  .surprise-steps { grid-template-columns: 1fr; border-bottom: 0; }
  .surprise-steps article, .surprise-steps article:not(:first-child) { min-height: 350px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .surprise-steps article > span { margin-top: 20px; }
  .box-clues-title { grid-template-columns: 1fr; gap: 25px; }
  .box-clues-title .section-kicker { grid-column: auto; }
  .box-clue-grid { grid-template-columns: 1fr; }
  .box-clue-grid article, .box-clue-grid article:not(:first-child), .box-clue-grid article:nth-child(3) { min-height: 280px; padding: 25px 0; border-right: 0; }
  .box-calendar-line { grid-template-columns: 1fr; }
  .box-calendar-line::before { left: 5px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .box-calendar-line article, .box-calendar-line article:not(:first-child) { padding: 20px 0 35px 38px; border: 0; }
  .box-calendar-line article::before, .box-calendar-line article:not(:first-child)::before { left: 0; top: 23px; }
  .box-faq { grid-template-columns: 1fr; }
  .about-hero { min-height: auto; padding-top: 120px; grid-template-columns: 1fr; gap: 55px; }
  .about-hero-copy h1 { font-size: 17vw; }
  .about-hero-visual { min-height: 560px; }
  .about-mission { grid-template-columns: 1fr; gap: 40px; }
  .about-mission-copy { grid-column: auto; }
  .founder-section { grid-template-columns: 1fr; }
  .founder-photo { min-height: 600px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article, .values-grid article:not(:first-child) { min-height: 300px; padding: 28px 0; border-right: 0; }
  .values-grid h3 { margin-top: 40px; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .ecosystem-grid a, .ecosystem-grid a:not(:first-child), .ecosystem-grid a:nth-child(3) { min-height: 310px; padding: 25px 0; border-right: 0; }
  .ecosystem-grid a:hover { padding-left: 15px; }
  .team-heading { grid-template-columns: 1fr; gap: 25px; }
  .team-grid { grid-template-columns: repeat(2,1fr); gap: 40px 12px; }
  .team-card.is-founder { grid-column: span 2; }
  .team-caption { padding-left: 23px; }
  .team-caption h3 { font-size: 24px; }
  .about-contact-facts { align-items: flex-start; flex-direction: column; }
}

/* V8 · atelier unique, carte et communauté */
.agenda-first { background: var(--paper); }
.atelier-format-pill { display: flex; flex-direction: column; gap: 4px; }
.atelier-format-pill strong { font-family: "Or Lemmen", Georgia, serif; font-size: 25px; font-weight: 700; letter-spacing: -.035em; }
.atelier-format-pill span { color: rgba(23,54,50,.58); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.atelier-three-times article > p { min-height: 65px; margin: 0; color: rgba(23,54,50,.67); font-size: 13px; line-height: 1.55; }
.atelier-promise { margin-top: 55px; padding: 24px 0; display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr; align-items: baseline; gap: 16px 25px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.atelier-promise span { color: rgba(23,54,50,.5); text-transform: uppercase; font-size: 7px; letter-spacing: .11em; }
.atelier-promise strong { font-family: "Or Lemmen",Georgia,serif; font-size: clamp(24px,2.4vw,36px); font-weight: 700; }

.brigade-join { width: 100%; margin-top: 14px; color: var(--ink); }
.brigade-join.is-inverse { color: var(--cream); }
.brigade-trigger { width: 100%; min-height: 74px; padding: 13px 16px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3px 18px; color: inherit; background: transparent; border: 1px solid currentColor; text-align: left; cursor: pointer; transition: background .25s,color .25s,transform .25s; }
.brigade-trigger span { grid-column: 1; opacity: .62; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.brigade-trigger strong { grid-column: 1; font-family: "Or Lemmen",Georgia,serif; font-size: clamp(17px,1.7vw,24px); line-height: 1; font-weight: 700; }
.brigade-trigger b { grid-column: 2; grid-row: 1 / 3; font-size: 22px; font-weight: 400; }
.brigade-trigger:hover { color: var(--cream); background: var(--ink); transform: translateY(-3px); }
.brigade-join.is-inverse .brigade-trigger:hover { color: var(--ink); background: var(--cream); }
.brigade-form { padding: 17px; display: grid; grid-template-columns: minmax(0,1fr) minmax(310px,.9fr); align-items: end; gap: 20px; border: 1px solid currentColor; }
.brigade-form label { display: block; margin-bottom: 6px; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.brigade-form p { max-width: 540px; margin: 0; opacity: .62; font-size: 10px; line-height: 1.45; }
.brigade-field { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid currentColor; }
.brigade-field input { min-width: 0; padding: 12px 5px; color: inherit; background: transparent; border: 0; outline: 0; }
.brigade-field input::placeholder { color: currentColor; opacity: .45; }
.brigade-field button { padding: 10px 0 9px 12px; color: inherit; background: transparent; border: 0; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; cursor: pointer; }
.brigade-field button span { margin-left: 10px; font-size: 14px; }
.brigade-success { min-height: 74px; padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; gap: 3px; color: var(--ink); background: var(--yellow); border: 1px solid var(--yellow); }
.brigade-success strong { font-family: "Or Lemmen",Georgia,serif; font-size: 22px; font-weight: 700; }
.brigade-success span { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.subscription-brigade { grid-column: 1 / -1; }
.booking-card > .brigade-join { margin-top: 12px; }

.community-hub { padding: clamp(90px,10vw,155px) var(--gutter); color: var(--ink); background: var(--coral); }
.community-heading { margin-bottom: 64px; display: grid; grid-template-columns: 1.15fr .55fr; align-items: end; gap: 60px; }
.community-heading .section-kicker { margin-bottom: 18px; color: rgba(23,54,50,.62); font-size: 13.5px; }
.community-heading h2 { margin: 0; font-size: clamp(52px,5.2vw,96px); line-height: .84; }
.community-heading h2 span { display: block; white-space: nowrap; }
.community-heading-copy { max-width: 470px; align-self: end; }
.community-heading-copy p { margin: 0 0 7px; font-size: 16px; line-height: 1.55; }
.community-options { display: grid; grid-template-columns: 1.08fr .92fr; }
.community-options article { min-height: 590px; padding: clamp(28px,3.5vw,52px); display: flex; flex-direction: column; }
.community-whatsapp { color: var(--cream); background: var(--deep); }
.community-newsletter { background: var(--cream); }
.community-option-copy { margin-top: 0; }
.community-option-copy > span { text-transform: uppercase; font-size: 14px; letter-spacing: .08em; }
.community-option-copy h3 { margin: 18px 0; font-size: clamp(53px,5.2vw,82px); line-height: .82; }
.community-option-copy p { max-width: 530px; opacity: .68; font-size: 13px; line-height: 1.55; }
.community-options .brigade-join, .community-newsletter-signup, .community-newsletter form, .community-success { margin-top: auto; }
.community-newsletter-signup { width: 100%; color: var(--ink); }
.newsletter-trigger strong { max-width: 100%; white-space: nowrap; font-size: clamp(14px,1.55vw,24px); letter-spacing: -.025em; }
.community-action-icon { grid-column: 2; grid-row: 1 / 3; width: 36px; height: 36px; padding: 6px; object-fit: contain; background: var(--ink); border-radius: 50%; }
.community-newsletter-form { width: 100%; }
.community-newsletter form label { display: block; margin-bottom: 12px; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.community-newsletter form > div { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--ink); }
.community-newsletter input { min-width: 0; padding: 15px 0; color: var(--ink); background: transparent; border: 0; outline: 0; }
.community-newsletter form button { padding: 15px 0 13px 16px; color: var(--ink); background: transparent; border: 0; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; cursor: pointer; }
.community-newsletter form button span { margin-left: 14px; font-size: 14px; }
.community-success { padding: 17px; display: flex; flex-direction: column; gap: 4px; background: var(--yellow); }
.community-success strong { font-family: "Or Lemmen",Georgia,serif; font-size: 24px; font-weight: 700; }
.community-success span { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.newsletter-popup { position: fixed; inset: 0; z-index: 2300; padding: clamp(14px,4vw,70px); display: grid; place-items: center; }
.newsletter-popup-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; background: rgba(8,30,27,.84); border: 0; cursor: pointer; backdrop-filter: blur(8px); }
.newsletter-popup-card { position: relative; z-index: 1; width: min(760px,100%); max-height: calc(100svh - 28px); padding: clamp(42px,6vw,82px); color: var(--ink); background: var(--cream); border-top: 9px solid var(--coral); box-shadow: 0 35px 100px rgba(0,0,0,.34); overflow: auto; }
.newsletter-popup-close { position: absolute; right: 18px; top: 18px; width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); background: transparent; border: 1px solid var(--ink); border-radius: 50%; font-size: 27px; line-height: 1; cursor: pointer; }
.newsletter-popup h2 { margin: 22px 0 25px; font-size: clamp(54px,7vw,92px); line-height: .82; }
.newsletter-popup-card > p { max-width: 570px; margin: 0 0 38px; color: rgba(23,54,50,.68); font-size: 15px; line-height: 1.55; }
.newsletter-popup-form form label { display: block; margin-bottom: 10px; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.newsletter-popup-form .mf-newsletter-placeholder > div { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--ink); }
.newsletter-popup-form input { min-width: 0; width: 100%; padding: 15px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--ink); outline: 0; }
.newsletter-popup-form .mf-newsletter-placeholder input { border-bottom: 0; }
.newsletter-popup-form button[type="submit"] { padding: 15px 0 13px 16px; color: var(--ink); background: transparent; border: 0; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; cursor: pointer; }
.newsletter-popup-form .mailpoet_paragraph { margin: 0; }
.newsletter-popup-form .mailpoet_submit { margin-top: 12px; padding: 14px 16px; color: var(--cream); background: var(--ink); border: 1px solid var(--ink); text-align: center; }
.home-map-section { background: var(--paper); }
.home-map-section .centered-action { margin-top: 38px; }
.romandie-map { color: var(--ink); }
.map-filters { margin-bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.map-filters button { padding: 11px 13px; display: flex; align-items: center; gap: 9px; color: rgba(23,54,50,.5); background: transparent; border: 1px solid rgba(23,54,50,.22); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; cursor: pointer; transition: color .2s,background .2s; }
.map-filters button.active { color: var(--cream); background: var(--ink); }
.map-filters i { width: 9px; height: 9px; background: var(--sage); border-radius: 50%; }
.map-filters .acheter i { background: var(--coral); }
.map-stage { position: relative; min-height: 650px; padding: 25px; background: #d9ded5; overflow: hidden; }
.map-stage::before { content: "SUISSE ROMANDE"; position: absolute; left: 18px; bottom: -20px; color: rgba(23,54,50,.08); font-family: "Or Lemmen",Georgia,serif; font-size: clamp(70px,10vw,150px); letter-spacing: -.06em; }
.map-stage svg { position: relative; z-index: 1; width: 100%; height: 600px; }
.map-land { fill: var(--cream); stroke: var(--ink); stroke-width: 2; }
.map-canton { fill: none; stroke: rgba(23,54,50,.16); stroke-width: 1; stroke-dasharray: 4 6; }
.map-lake { fill: #a6c0b8; stroke: var(--ink); stroke-width: 1; }
.map-labels { fill: rgba(23,54,50,.38); font-family: "Maison Neue",Arial,sans-serif; font-size: 9px; letter-spacing: .12em; }
.map-marker { cursor: pointer; outline: none; }
.map-marker > circle:first-child { fill: var(--sage); stroke: var(--cream); stroke-width: 3; transition: transform .2s; }
.map-marker.acheter > circle:first-child { fill: var(--coral); }
.map-marker-core { fill: var(--ink); pointer-events: none; }
.map-marker:hover > circle:first-child, .map-marker:focus > circle:first-child, .map-marker.selected > circle:first-child { transform: scale(1.35); }
.map-place-card { position: absolute; z-index: 3; right: 24px; bottom: 24px; width: min(330px,calc(100% - 48px)); padding: 22px; color: var(--cream); background: var(--ink); box-shadow: 0 20px 55px rgba(13,41,37,.2); }
.map-place-card > span { color: var(--yellow); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.map-place-card.artisan > span { color: #b8c7b2; }
.map-place-card.acheter > span { color: var(--coral); }
.map-place-card h3 { margin: 25px 0 6px; font-size: 36px; line-height: .9; }
.map-place-card strong { font-size: 9px; font-weight: 400; text-transform: uppercase; letter-spacing: .1em; }
.map-place-card p { margin: 20px 0 0; padding-top: 12px; color: rgba(243,239,232,.6); border-top: 1px solid rgba(243,239,232,.2); font-size: 11px; }
.map-note { padding: 15px 0; display: grid; grid-template-columns: auto 1fr; gap: 25px; border-bottom: 1px solid var(--line); }
.map-note span { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.map-note p { max-width: 620px; margin: 0; color: rgba(23,54,50,.58); font-size: 11px; }
.map-page-hero { padding-top: 150px; background: var(--paper); }
.map-page-intro { margin-bottom: 65px; display: grid; grid-template-columns: 1.2fr .55fr; align-items: end; gap: 70px; }
.map-page-intro .section-kicker { grid-column: 1 / -1; }
.map-page-intro h1 { margin: 0; font-size: clamp(78px,10vw,150px); line-height: .78; }
.map-page-intro p { margin: 0 0 8px; font-size: 17px; line-height: 1.55; }

@media (max-width: 1250px) {
  .header-club { display: none; }
  .global-header { grid-template-columns: 180px 1fr; }
}

@media (max-width: 900px) {
  .community-heading, .map-page-intro { grid-template-columns: 1fr; gap: 25px; }
  .community-heading .section-kicker, .map-page-intro .section-kicker { grid-column: auto; }
  .community-options { grid-template-columns: 1fr; }
  .community-options article { min-height: 520px; }
  .brigade-form { grid-template-columns: 1fr; }
  .atelier-promise { grid-template-columns: auto 1fr auto 1fr; }
  .mini-contact { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .global-header { grid-template-columns: 150px 1fr; }
  .global-nav { display: none; }
  .atelier-promise { grid-template-columns: auto 1fr; }
  .atelier-three-times article > p { min-height: 0; }
  .community-heading { margin-bottom: 38px; }
	.community-heading h2 { font-size: clamp(24px,8vw,52px); }
  .community-options article { min-height: 510px; padding: 26px 22px; }
	.community-option-copy { margin-top: 0; }
	.newsletter-trigger { padding-left: 12px; padding-right: 12px; gap: 3px 8px; }
	.newsletter-trigger strong { font-size: clamp(12px,3.55vw,16px); }
	.newsletter-popup-card { padding: 58px 23px 34px; }
	.newsletter-popup h2 { font-size: clamp(48px,15vw,66px); }
	.newsletter-popup-form .mf-newsletter-placeholder > div { grid-template-columns: 1fr; }
	.newsletter-popup-form button[type="submit"] { padding-left: 0; text-align: left; }
  .brigade-field, .community-newsletter form > div { grid-template-columns: 1fr; }
  .brigade-field button, .community-newsletter form button { padding-left: 0; text-align: left; }
  .mini-contact form { grid-template-columns: 1fr; }
  .mini-contact .contact-message,.mini-contact button { grid-column: auto; grid-row: auto; }
  .mini-contact button { min-height: 62px; }
  .map-stage { min-height: 540px; padding: 0; }
  .map-stage svg { height: 480px; transform: scale(1.23); }
  .map-place-card { right: 12px; bottom: 12px; width: calc(100% - 24px); padding: 16px; }
  .map-place-card h3 { margin-top: 16px; font-size: 29px; }
  .map-note { grid-template-columns: 1fr; gap: 7px; }
  .map-page-hero { padding-top: 120px; }
  .map-page-intro h1 { font-size: 17vw; }
}

/* Cette semaine · V9 */
.weekly-rendezvous {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.weekly-card {
  min-width: 0;
  background: var(--paper);
  border-top: 1px solid var(--ink);
}
.weekly-card-3 { background: #e2e4de; }
.weekly-card-open {
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.weekly-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.weekly-image img {
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.weekly-card-open:hover .weekly-image img { transform: scale(1.045); }
.weekly-copy {
  position: relative;
  flex: 1;
  padding: clamp(24px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
}
.weekly-index {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 7px;
  letter-spacing: .11em;
}
.weekly-index span { color: var(--coral); }
.weekly-index strong { font-weight: 400; }
.weekly-index time { color: rgba(23,54,50,.48); }
.weekly-copy h3 {
  margin: 25px 0 16px;
  font-size: clamp(35px, 3.7vw, 58px);
  line-height: .9;
}
.weekly-copy p {
  margin: 0;
  color: rgba(23,54,50,.7);
  font-size: 13px;
  line-height: 1.55;
}
.weekly-card-3 .weekly-copy p {
  max-height: 62px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(#000 35%, transparent);
  mask-image: linear-gradient(#000 35%, transparent);
}
.weekly-action {
  position: relative;
  z-index: 1;
  margin-top: auto;
  min-height: 46px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--coral);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .07em;
  white-space: nowrap;
  transition: color .22s ease,background .22s ease,transform .22s ease;
}
.weekly-action b {
  font-size: 18px;
  font-weight: 400;
  transition: transform .25s ease;
}
.weekly-card-open:hover .weekly-action,.weekly-card-open:focus-visible .weekly-action { background: var(--coral); transform: translateY(-2px); }
.weekly-card-open:hover .weekly-action b { transform: translate(3px,-3px) rotate(7deg); }

.article-archive { padding-top: clamp(105px, 11vw, 175px); }
.article-archive-heading {
  margin-bottom: 55px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr .55fr;
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  border-bottom: 1px solid var(--line);
}
.article-archive-heading h3 {
  margin: 0;
  font-size: clamp(56px, 7vw, 106px);
  line-height: .86;
}
.article-archive-heading p {
  max-width: 480px;
  margin: 0 0 8px;
  color: rgba(23,54,50,.68);
  font-size: 15px;
  line-height: 1.55;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 55px 18px;
}
.article-card {
  min-width: 0;
  padding: 0 0 16px;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}
.article-card.is-new { border-bottom-color: var(--coral); }
.article-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
}
.article-card-image img {
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.article-card:hover .article-card-image img { transform: scale(1.05); }
.article-card-image > span {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 7px 9px 6px;
  color: var(--cream);
  background: var(--coral);
  text-transform: uppercase;
  font-size: 6px;
  letter-spacing: .12em;
}
.article-card-meta,
.article-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  text-transform: uppercase;
  font-size: 7px;
  letter-spacing: .1em;
}
.article-card-meta { margin-top: 14px; }
.article-card-meta span { color: var(--coral); }
.article-card-meta time,
.article-card-foot span { color: rgba(23,54,50,.48); }
.article-card h4 {
  margin: 15px 0 10px;
  font-family: "Or Lemmen", Georgia, serif;
  font-size: clamp(28px, 2.55vw, 40px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.045em;
}
.article-card > p {
  margin: 0;
  color: rgba(23,54,50,.67);
  font-size: 12px;
  line-height: 1.5;
}
.article-card-foot {
  margin-top: 22px;
  align-items: center;
}
.article-card-foot b {
  font-size: 18px;
  font-weight: 400;
  transition: transform .25s ease;
}
.article-card:hover .article-card-foot b { transform: translate(3px,-3px) rotate(7deg); }

.article-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: clamp(16px, 4vw, 60px);
  display: grid;
  place-items: center;
  background: rgba(7,29,25,.82);
  backdrop-filter: blur(8px);
}
.article-modal {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100svh - 32px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  color: var(--ink);
  background: var(--cream);
  box-shadow: 0 40px 110px rgba(0,0,0,.35);
  overflow: auto;
}
.article-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "Or Lemmen", Georgia, serif;
  font-size: 25px;
  cursor: pointer;
}
.article-modal-image {
  position: sticky;
  top: 0;
  min-height: min(760px, calc(100svh - 32px));
}
.article-modal-image img { object-fit: cover; }
.article-modal-copy { padding: clamp(48px, 6vw, 92px); }
.article-modal-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  text-transform: uppercase;
  font-size: 7px;
  letter-spacing: .11em;
}
.article-modal-meta span { color: var(--coral); }
.article-modal-meta time { color: rgba(23,54,50,.5); }
.article-modal h2 {
  margin: 27px 0 22px;
  font-size: clamp(50px, 5.4vw, 83px);
  line-height: .86;
}
.article-modal-lead {
  margin: 0 0 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  font-family: "Or Lemmen", Georgia, serif;
  font-size: 22px;
  line-height: 1.2;
}
.article-modal-text {
  position: relative;
  color: rgba(23,54,50,.78);
  font-size: 15px;
  line-height: 1.72;
}
.article-modal-text.is-gated {
  max-height: 145px;
  overflow: hidden;
}
.article-modal-text.is-gated::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 105px;
  background: linear-gradient(transparent, var(--cream) 88%);
}
.article-gate {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}
.article-gate > strong {
  display: block;
  font-family: "Or Lemmen", Georgia, serif;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}
.article-gate > p {
  margin: 15px 0 27px;
  color: rgba(23,54,50,.66);
  font-size: 13px;
  line-height: 1.5;
}
.article-gate > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1100px) {
  .weekly-rendezvous { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .weekly-card-3 { grid-column: 1 / -1; }
  .weekly-card-3 .weekly-card-open { display: grid; grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 780px) {
  .weekly-rendezvous { grid-template-columns: 1fr; }
  .weekly-card-3 { grid-column: auto; }
  .weekly-card-3 .weekly-card-open { display: flex; }
  .article-archive-heading { grid-template-columns: 1fr; gap: 24px; }
  .article-grid { grid-template-columns: 1fr; row-gap: 42px; }
  .article-card h4 { font-size: 38px; }
  .article-modal-backdrop { padding: 10px; }
  .article-modal { max-height: calc(100svh - 20px); grid-template-columns: 1fr; }
  .article-modal-image { position: relative; min-height: 280px; }
  .article-modal-copy { padding: 36px 23px 42px; }
  .article-modal-meta { padding-right: 45px; flex-direction: column; gap: 6px; }
  .article-modal h2 { font-size: 51px; }
  .article-modal-lead { font-size: 19px; }
  .article-gate > div { align-items: flex-start; flex-direction: column; }
}

@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; }
}

/* Millefeuille V10 */
.global-nav { gap: clamp(13px,1.45vw,25px); }
.news-led-hero { height: min(100svh,820px); min-height: 760px; }
.news-led-hero .commerce-hook h1 { max-width: 820px; font-size: clamp(72px,7.8vw,120px); }
.news-led-hero .commerce-hook p { max-width: 540px; }

/* Les Provisions */
.box-hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 27px; }
.surprise-box-hero .box-hero-image img { object-fit: cover; }
.box-hero-count { left: 28px; bottom: 28px; color: var(--cream); background: var(--sage); box-shadow: 0 14px 38px rgba(13,41,37,.2); }
.box-inline-cta { margin-top: 45px; display: flex; justify-content: flex-end; }
.box-product-gallery { background: var(--coral); }
.provision-product-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; align-items: center; }
.provision-product-grid article { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--cream); box-shadow: 0 18px 44px rgba(13,41,37,.16); }
.provision-product-grid article.product-up { transform: translateY(-28px); }
.provision-product-grid img { object-fit: cover; transition: transform .65s ease; }
.provision-product-grid article:hover img { transform: scale(1.045); }
.provision-product-grid span { position: absolute; left: 12px; bottom: 12px; padding: 8px 10px; color: var(--cream); background: var(--deep); text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }
.product-gallery-note { max-width: 610px; margin: 40px 0 0; font-size: 13px; line-height: 1.5; }
.box-product-gallery .box-inline-cta { margin-top: -30px; }
.box-order-section { grid-template-columns: 1fr; gap: 54px; }
.box-order-copy { max-width: 1050px; }
.box-order-panel { width: 100%; }
.box-order-panel .box-stock { display: grid; grid-template-columns: 1fr; }
.stock-edition { margin-bottom: 20px; display: flex; justify-content: space-between; gap: 30px; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.stock-edition strong { color: var(--coral); font-weight: 400; }

/* Expériences */
.experience-v10-hero { min-height: min(860px,100svh); }
.experience-v10-hero > img { object-position: 50% center; }
.experience-v10-hero .experience-clear-copy { bottom: clamp(105px,13vh,145px); width: min(1120px,calc(100% - (2 * var(--gutter)))); }
.experience-v10-hero .experience-clear-copy h1 { margin: 0 0 20px; font-size: clamp(55px,6.4vw,98px); }
.experience-v10-hero .experience-clear-copy > p { max-width: 720px; margin: 0; }
.experience-choice-panel { width: fit-content; max-width: 100%; margin-top: 24px; display: grid; grid-template-columns: max-content max-content; color: var(--ink); background: var(--coral); }
.experience-choice-panel a { min-height: 62px; padding: 13px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 17px; font-weight: 600; line-height: 1.1; white-space: nowrap; transition: color .22s ease,background .22s ease; }
.experience-choice-panel a + a { border-left: 1px solid rgba(23,54,50,.35); }
.experience-choice-panel a:hover,.experience-choice-panel a:focus-visible { color: var(--cream); background: var(--ink); outline: 0; }
.experience-choice-panel b { font-size: 24px; font-weight: 400; }
.experience-detail-block { padding-top: clamp(78px,8vw,118px); background: var(--paper); }
.experience-detail-block .explorer-tools { grid-template-columns: 1fr auto; align-items: center; }
.experience-format-tabs button { min-width: 150px; }
.experience-format-tabs button[aria-pressed="true"] { color: var(--cream); background: var(--ink); }
.experience-format-selector { background: var(--cream); }
.experience-format-intro { margin-bottom: 65px; display: grid; grid-template-columns: 1fr .55fr; gap: 70px; align-items: end; }
.experience-format-intro .section-kicker { grid-column: 1 / -1; }
.experience-format-intro h2 { margin: 0; font-size: clamp(70px,8vw,122px); line-height: .82; }
.experience-format-intro > p { margin: 0 0 8px; font-size: 17px; line-height: 1.55; }
.experience-format-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.experience-format-card { min-width: 0; color: var(--ink); background: var(--paper); transition: transform .35s ease; }
.experience-format-card:hover { transform: translateY(-9px); }
.experience-format-card.is-selected { outline: 3px solid var(--coral); outline-offset: -3px; }
.experience-format-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.experience-format-image img { object-fit: cover; transition: transform .7s ease; }
.experience-format-card:hover img { transform: scale(1.05); }
.experience-format-content { min-height: 350px; padding: 28px; display: flex; flex-direction: column; }
.experience-format-content > span { color: var(--coral); text-transform: uppercase; font-size: 7px; letter-spacing: .11em; }
.experience-format-content h2 { margin: 24px 0 14px; font-size: clamp(48px,4.8vw,72px); line-height: .86; }
.experience-format-content p { margin: 0; color: rgba(23,54,50,.67); font-size: 13px; line-height: 1.5; }
.experience-format-content > strong { margin-top: auto; padding-top: 25px; display: flex; justify-content: space-between; border-bottom: 1px solid var(--ink); text-transform: uppercase; font-size: 8px; font-weight: 400; letter-spacing: .11em; }
.experience-format-content > strong b { font-size: 17px; font-weight: 400; }
.experience-detail-heading { margin-bottom: 55px; display: grid; grid-template-columns: 1fr .8fr; gap: 80px; align-items: end; }
.experience-detail-heading h2 { margin: 0; font-size: clamp(72px,8vw,118px); line-height: .78; }
.experience-detail-heading > div:last-child > p { margin: 0; font-size: 17px; line-height: 1.6; }
.experience-detail-facts { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 7px; }
.experience-detail-facts span { padding: 9px 11px; border: 1px solid var(--line); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.atelier-rhythm { margin-bottom: 100px; display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line); }
.atelier-rhythm article { min-height: 250px; padding: 27px 27px 27px 0; border-right: 1px solid var(--line); }
.atelier-rhythm article:not(:first-child) { padding-left: 27px; }
.atelier-rhythm article:last-child { border: 0; }
.atelier-rhythm strong { color: var(--coral); font-family: "Or Lemmen",Georgia,serif; font-size: 48px; font-weight: 700; }
.atelier-rhythm h3 { margin: 30px 0 12px; font-size: 31px; }
.atelier-rhythm p { margin: 0; color: rgba(23,54,50,.65); font-size: 12px; line-height: 1.5; }
.atelier-dates-title { margin-top: 0; }
.festin-section { min-height: 820px; display: grid; grid-template-columns: 1fr 1fr; }
.festin-visual { position: relative; min-height: 700px; overflow: hidden; }
.festin-visual img { object-fit: cover; }
.festin-copy { padding: clamp(70px,8vw,125px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.festin-copy h2 { margin: 0 0 28px; font-size: clamp(62px,7vw,105px); line-height: .84; }
.festin-copy > p { color: rgba(243,239,232,.72); font-size: 16px; line-height: 1.6; }
.festin-copy ul { width: 100%; margin: 30px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; list-style: none; border-top: 1px solid rgba(243,239,232,.22); }
.festin-copy li { padding: 13px 0; border-bottom: 1px solid rgba(243,239,232,.22); font-size: 11px; }
.festin-price-line { width: 100%; margin-bottom: 35px; padding: 17px 0; display: flex; flex-direction: column; gap: 7px; border-bottom: 1px solid rgba(243,239,232,.22); }
.festin-price-line span { color: var(--coral); text-transform: uppercase; font-size: 7px; letter-spacing: .11em; }
.festin-price-line strong { font-family: "Or Lemmen",Georgia,serif; font-size: 27px; font-weight: 700; }
.private-meal-section { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(60px,9vw,140px); align-items: center; }
.private-meal-copy h2 { margin: 0 0 28px; font-size: clamp(65px,7vw,105px); line-height: .85; }
.private-meal-copy > p { max-width: 700px; font-size: 17px; line-height: 1.55; }
.private-meal-grid { margin: 35px 0; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.private-meal-grid article { padding: 22px 20px 22px 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.private-meal-grid article:not(:first-child) { padding-left: 20px; }
.private-meal-grid article:last-child { border-right: 0; }
.private-meal-grid span { color: var(--coral); font-size: 8px; }
.private-meal-grid h3 { margin: 19px 0 10px; font-size: 26px; }
.private-meal-grid p { margin: 0; color: rgba(23,54,50,.64); font-size: 11px; line-height: 1.45; }
.private-meal-visual { position: relative; min-height: 680px; overflow: hidden; }
.private-meal-visual img { object-fit: cover; }
.private-meal-visual > span { position: absolute; left: 20px; bottom: 20px; width: 155px; height: 155px; display: grid; place-content: center; color: var(--cream); background: var(--sage); border-radius: 50%; text-align: center; text-transform: uppercase; font-size: 7px; letter-spacing: .1em; transform: rotate(-5deg); }
.private-meal-visual > span strong { display: block; margin: 7px 0; font-family: "Or Lemmen",Georgia,serif; font-size: 21px; font-weight: 700; text-transform: none; letter-spacing: -.03em; }
.private-meal-visual > span small { font-size: 6px; }

/* Livres */
.books-hero { min-height: 670px; padding-top: 170px; display: grid; grid-template-columns: 1.2fr .55fr; gap: 80px; align-items: end; background: var(--paper); }
.books-hero-title .section-kicker { margin-bottom: 35px; }
.books-hero h1 { margin: 0; font-size: clamp(90px,11vw,170px); line-height: .73; }
.books-hero > p { margin: 0 0 15px; font-size: 18px; line-height: 1.6; }
.book-feature { min-height: 920px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px,9vw,145px); align-items: center; }
.book-feature-sweet { background: var(--cream); }
.book-cover-stage { position: relative; min-height: 710px; display: grid; place-items: center; background: var(--sage); overflow: hidden; }
.book-cover-stage > img { position: relative !important; z-index: 2; width: min(520px,76%) !important; height: auto !important; max-height: 610px; object-fit: contain; filter: drop-shadow(0 35px 38px rgba(13,41,37,.25)); transform: rotate(-3deg); }
.book-cover-backdrop { position: absolute; left: -2%; bottom: -5%; color: rgba(243,239,232,.14); font-family: "Or Lemmen",Georgia,serif; font-size: clamp(100px,15vw,230px); line-height: .7; letter-spacing: -.06em; writing-mode: vertical-rl; transform: rotate(180deg); }
.book-copy h2 { margin: 0 0 28px; font-size: clamp(68px,7vw,108px); line-height: .83; }
.book-lead { font-family: "Or Lemmen",Georgia,serif; font-size: 23px !important; line-height: 1.2 !important; }
.book-copy > p { font-size: 15px; line-height: 1.65; }
.book-chef-list { margin: 30px 0; padding: 0; display: flex; align-items: center; flex-wrap: wrap; gap: 11px 0; list-style: none; }
.book-chef-list li { display: inline-flex; align-items: center; color: var(--coral); font-family: "Maison Neue",Arial,sans-serif; font-size: 15px; font-weight: 400; line-height: 1.35; letter-spacing: .035em; text-transform: uppercase; }
.book-chef-list li:not(:last-child)::after { content: ""; width: 2px; height: 17px; margin: 0 13px; display: inline-block; flex: 0 0 2px; background: var(--ink); }
.book-chef-list.inverse li:not(:last-child)::after { background: #234a45; }
.book-facts { margin: 35px 0; display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line); }
.book-facts > div { padding: 18px 12px 18px 0; border-right: 1px solid var(--line); }
.book-facts > div:not(:first-child) { padding-left: 12px; }
.book-facts > div:last-child { border: 0; }
.book-facts strong,.book-facts span { display: block; }
.book-facts strong { font-family: "Or Lemmen",Georgia,serif; font-size: 35px; font-weight: 700; }
.book-facts span { margin-top: 6px; font-size: 8px; line-height: 1.35; }
.book-facts.inverse { border-color: rgba(243,239,232,.25); }
.book-facts.inverse > div { border-color: rgba(243,239,232,.25); }
.book-order-line { margin: 0; display: flex; align-items: baseline; gap: 14px; }
.book-order-line strong { font-family: "Or Lemmen",Georgia,serif; font-size: 38px; font-weight: 700; }
.book-order-line span { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.book-feature-chefs .book-cover-stage { background: var(--coral); }
.book-feature-chefs .book-cover-stage > img { max-height: 650px; }
.book-feature-chefs .book-copy > p { color: rgba(243,239,232,.72); }
.book-purchase-row { margin-top: 30px; display: grid; grid-template-columns: max-content max-content minmax(170px,1fr); align-items: center; gap: 20px; }
.book-purchase-row .primary-button { width: auto; min-width: 0; min-height: 52px; padding: 12px 18px; white-space: nowrap; }
.book-purchase-row .payment-availability { margin: 0; line-height: 1.35; }
.book-purchase-row-editions { grid-template-columns: minmax(0,1fr) minmax(120px,.35fr); }
.book-editions { margin-top: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.book-editions a { min-height: 112px; padding: 15px; display: flex; flex-direction: column; border: 1px solid rgba(243,239,232,.35); transition: background .25s,color .25s; }
.book-editions a:hover { color: var(--ink); background: var(--cream); }
.book-editions span { text-transform: uppercase; font-size: 10.5px; font-weight: 700; line-height: 1.25; letter-spacing: .1em; }
.book-editions strong { margin: 10px 0; font-family: "Or Lemmen",Georgia,serif; font-size: 30px; font-weight: 700; }
.book-editions b { margin-top: auto; font-size: 8px; font-weight: 400; text-transform: uppercase; letter-spacing: .1em; }
/* Digital subscription */
.digital-configurator { grid-template-columns: 1.25fr .75fr; }
.digital-configurator .format-main-choice { grid-row: span 3; }
.digital-configurator .subscription-step-card { min-width: 0; }
.digital-configurator .subscription-choice:nth-child(2) { grid-row: auto; }
.subscription-gift-box-choice .gift-box-toggle button { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; text-align: left; }
.subscription-gift-box-choice .gift-box-toggle small { color: rgba(23,54,50,.65); font-size: 9px; font-weight: 700; letter-spacing: .05em; }
.subscription-gift-box-choice .gift-box-toggle button.active small { color: rgba(243,239,232,.68); }
.subscription-format-card { width: 100%; min-height: 110px; margin-top: 9px; padding: 18px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 17px; color: var(--ink); background: transparent; border: 1px solid var(--line); text-align: left; cursor: pointer; }
.subscription-format-card.active { color: var(--cream); background: var(--ink); border-color: var(--ink); }
.subscription-format-card > i { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 8px; font-style: normal; }
.subscription-format-card span strong,.subscription-format-card span small { display: block; }
.subscription-format-card span strong { font-family: "Or Lemmen",Georgia,serif; font-size: 24px; font-weight: 700; }
.subscription-format-card span small { margin-top: 6px; color: rgba(23,54,50,.64); font-size: 10px; line-height: 1.4; }
.subscription-format-card.active span small { color: rgba(243,239,232,.58); }
.subscription-format-card > b { font-family: "Or Lemmen",Georgia,serif; font-size: 19px; font-weight: 700; white-space: nowrap; }
.subscription-issue-choice { margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.subscription-issue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.subscription-issue-option { min-height: 96px; padding: 15px; display: flex; flex-direction: column; justify-content: center; color: var(--ink); border: 1px solid var(--line); transition: color .2s,background .2s,border-color .2s; }
button.subscription-issue-option { width: 100%; font: inherit; text-align: left; background: transparent; cursor: pointer; appearance: none; }
button.subscription-issue-option:hover,button.subscription-issue-option:focus-visible,button.subscription-issue-option.active { color: var(--cream); background: var(--ink); border-color: var(--ink); outline: 0; }
.subscription-issue-option strong,.subscription-issue-option small { display: block; }
.subscription-issue-option strong { font-family: "Or Lemmen",Georgia,serif; font-size: 20px; line-height: 1; }
.subscription-issue-option small { margin-top: 10px; font-size: 9px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.subscription-issue-option.unavailable { color: rgba(23,54,50,.48); background: rgba(23,54,50,.035); cursor: not-allowed; }
.subscription-summary .primary-button.is-disabled,.subscription-summary .primary-button:disabled { opacity: .5; pointer-events: none; cursor: not-allowed; }
.digital-access-story { min-height: 850px; display: grid; grid-template-columns: 1fr 1fr; }
.digital-access-image { position: relative; min-height: 760px; overflow: hidden; }
.digital-access-image img { object-fit: cover; }
.digital-access-copy { padding: clamp(70px,8vw,125px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.digital-access-copy h2 { margin: 0 0 25px; font-size: clamp(62px,7vw,105px); line-height: .84; }
.digital-access-copy > p { color: rgba(243,239,232,.72); font-size: 16px; line-height: 1.6; }
.digital-mail-card { width: 100%; margin: 30px 0; padding: 18px; display: grid; grid-template-columns: 94px 1fr; align-items: center; gap: 18px; color: var(--ink); background: var(--cream); transform: rotate(-1deg); box-shadow: 0 16px 38px rgba(0,0,0,.16); }
.pdf-attachment { width: 78px; height: 94px; padding: 12px 10px 9px; display: flex; flex-direction: column; justify-content: space-between; color: var(--cream); background: var(--coral); border: 1px solid var(--ink); box-shadow: 7px 7px 0 var(--ink); transform: rotate(2deg); }
.digital-mail-card .pdf-attachment span { color: var(--cream); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.pdf-attachment b { align-self: flex-end; font-family: "Or Lemmen",Georgia,serif; font-size: 27px; font-weight: 700; line-height: 1; }
.digital-mail-card span,.digital-mail-card strong,.digital-mail-card small { display: block; }
.digital-mail-card span { color: var(--coral); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.digital-mail-card strong { margin: 9px 0; font-family: "Or Lemmen",Georgia,serif; font-size: 27px; font-weight: 700; }
.digital-mail-card small { color: rgba(23,54,50,.58); font-size: 8px; }
.digital-access-copy ol { width: 100%; margin: 0 0 33px; padding: 0; list-style: none; border-top: 1px solid rgba(243,239,232,.22); }
.digital-access-copy li { padding: 12px 0; display: grid; grid-template-columns: 35px 1fr; border-bottom: 1px solid rgba(243,239,232,.22); }
.digital-access-copy li span { color: var(--coral); font-size: 8px; }
.digital-access-copy li p { margin: 0; color: rgba(243,239,232,.72); font-size: 12px; line-height: 1.45; }

/* Real geographic map */
.real-romandie-map { border-top: 1px solid var(--line); }
.map-command-bar { padding: 22px 0; display: grid; grid-template-columns: auto minmax(240px,1fr); gap: 16px 38px; align-items: end; }
.map-filter-title { align-self: center; display: flex; flex-direction: column; gap: 4px; }
.map-filter-title span { text-transform: uppercase; font-size: 7px; letter-spacing: .11em; }
.map-filter-title strong { font-family: "Or Lemmen",Georgia,serif; font-size: 22px; font-weight: 700; }
.map-search { grid-column: 2; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 14px; border-bottom: 1px solid var(--ink); }
.map-search span { text-transform: uppercase; font-size: 7px; letter-spacing: .1em; }
.map-search input { min-width: 0; padding: 13px 0; color: var(--ink); background: transparent; border: 0; outline: 0; }
.map-command-bar .map-filters { grid-column: 1 / -1; margin: 4px 0 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.map-command-bar .map-filters button { min-height: 55px; justify-content: flex-start; padding: 14px 16px; color: var(--ink); background: var(--cream); border-color: var(--line); font-size: 8px; }
.map-command-bar .map-filters button.active { color: var(--cream); background: var(--ink); }
.map-command-bar .map-filters button b { margin-left: auto; font-family: "Or Lemmen",Georgia,serif; font-size: 19px; font-weight: 700; }
.real-map-shell { position: relative; min-height: 700px; border: 1px solid var(--ink); background: #d7ddd4; overflow: hidden; }
.real-map-stage { position: absolute; inset: 0; z-index: 1; min-height: 700px; }
.leaflet-container { position: relative; overflow: hidden; outline: 0; }
.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane > svg,.leaflet-pane > canvas,.leaflet-zoom-box,.leaflet-image-layer { position: absolute; left: 0; top: 0; }
.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow { user-select: none; -webkit-user-drag: none; }
.leaflet-tile-pane { z-index: 200; filter: sepia(.12) saturate(.62) hue-rotate(85deg) brightness(1.04); }
.leaflet-overlay-pane { z-index: 400; }.leaflet-shadow-pane { z-index: 500; }.leaflet-marker-pane { z-index: 600; }.leaflet-tooltip-pane { z-index: 650; }.leaflet-popup-pane { z-index: 700; }
.leaflet-zoom-animated { transform-origin: 0 0; }
.leaflet-zoom-hide { visibility: hidden; }
.leaflet-container .leaflet-control-attribution { position: absolute; z-index: 800; right: 8px; bottom: 5px; padding: 3px 5px; color: rgba(23,54,50,.55); background: rgba(243,239,232,.82); font-size: 7px; }
.leaflet-control-attribution a { text-decoration: underline; }
.mf-map-marker-wrap { background: transparent; border: 0; }
.mf-map-dot { width: 34px; height: 34px; display: grid; place-items: center; background: var(--sage); border: 3px solid var(--cream); border-radius: 50%; box-shadow: 0 7px 18px rgba(13,41,37,.26); transition: transform .2s; }
.mf-map-dot.artisan { background: var(--sage); }
.mf-map-dot.acheter { background: var(--coral); }
.mf-map-dot.selected { transform: scale(1.38); }
.mf-map-dot i { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; }
.mf-map-dot-pair { width: 52px; height: 38px; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.mf-map-dot-pair .mf-map-dot { width: 30px; height: 30px; margin: 0 -3px; border-width: 2px; }
.mf-map-dot-pair .mf-map-dot.acheter { z-index: 1; }
.mf-map-dot-pair.selected { transform: scale(1.25); }
.map-zoom-controls { position: absolute; z-index: 5; left: 16px; top: 16px; display: flex; flex-direction: column; border: 1px solid var(--ink); }
.map-zoom-controls button { width: 42px; height: 42px; color: var(--ink); background: var(--cream); border: 0; border-bottom: 1px solid var(--ink); font-size: 23px; cursor: pointer; }
.map-zoom-controls button:last-child { border: 0; }
.real-map-shell .map-place-card { right: 20px; bottom: 20px; width: min(360px,calc(100% - 40px)); }
.real-map-shell .map-place-card { padding: 28px 26px 23px; background: linear-gradient(145deg,#173632 0 72%,#24463f 72%); border: 1px solid rgba(243,239,232,.35); box-shadow: 0 25px 65px rgba(13,41,37,.28); animation: mapCardIn .28s ease both; overflow: hidden; }
.real-map-shell .map-place-card::after { content: ""; position: absolute; right: -34px; bottom: -44px; width: 130px; height: 130px; border: 18px double rgba(243,239,232,.07); border-radius: 50%; pointer-events: none; }
.map-place-card .map-card-close { position: absolute; z-index: 2; right: 8px; top: 8px; width: 26px; height: 26px; padding: 0; display: grid; place-items: center; color: var(--cream); background: rgba(13,41,37,.54); border: 1px solid rgba(243,239,232,.35); border-radius: 50%; font-size: 17px; line-height: 1; cursor: pointer; }
.map-place-card address { margin-top: 9px; color: rgba(243,239,232,.58); font-size: 10px; font-style: normal; }
.map-place-card > small { display: block; margin-top: 28px; padding-top: 18px; color: var(--coral); border-top: 1px solid rgba(243,239,232,.2); font-family: "Or Lemmen",Georgia,serif; font-size: 14px; line-height: 1.15; }
.map-place-card.artisan > small { color: #b8c7b2; }
.map-place-card .map-card-action { width: 100%; margin-top: 14px; padding: 12px 0 7px; display: flex; justify-content: space-between; color: var(--cream); background: transparent; border: 0; border-top: 1px solid rgba(243,239,232,.2); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; cursor: pointer; }
.map-place-card.acheter > small { display: none !important; }
.real-map-shell .map-place-card.acheter { padding-bottom: 16px; }
.map-place-card.acheter .map-card-action { margin-top: 8px; border-top: 0; }
.map-place-card .map-card-action b { font-size: 15px; font-weight: 400; }
.map-selection-hint { position: absolute; z-index: 3; left: 50%; bottom: 22px; padding: 11px 14px; color: var(--cream); background: rgba(13,41,37,.88); border: 1px solid rgba(243,239,232,.35); text-transform: uppercase; font-size: 7px; letter-spacing: .1em; transform: translateX(-50%); pointer-events: none; white-space: nowrap; }
.map-results { margin-top: 18px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--line); }
.map-results button { min-width: 0; min-height: 83px; padding: 15px 14px; display: grid; grid-template-columns: 23px minmax(0,1fr) auto; align-items: center; gap: 10px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line); text-align: left; cursor: pointer; }
.map-results button:not(:nth-child(4n)) { border-right: 1px solid var(--line); }
.map-results button.active { background: rgba(145,167,142,.14); }
.map-result-dots { display: flex; align-items: center; gap: 3px; }
.map-results i { width: 10px; height: 10px; flex: 0 0 10px; background: var(--sage); border-radius: 50%; }
.map-results i.acheter { background: var(--coral); }
.map-results strong,.map-results small { display: block; }
.map-results strong { font-family: "Or Lemmen",Georgia,serif; font-size: 19px; font-weight: 700; }
.map-results small { margin-top: 4px; color: rgba(23,54,50,.55); font-size: 8px; }
.map-results em { display: block; margin-top: 9px; color: rgba(23,54,50,.72); font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 7px; font-style: normal; letter-spacing: .11em; text-transform: uppercase; }
.map-results b { font-size: 16px; font-weight: 400; }

@media (max-width: 1000px) {
	.map-results { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.map-results button { border-right: 0; }
	.map-results button:nth-child(odd) { border-right: 1px solid var(--line); }
  .provision-product-grid { grid-template-columns: repeat(3,1fr); }
  .experience-choice-panel { grid-template-columns: max-content max-content; }
  .experience-format-grid { grid-template-columns: 1fr; }
  .experience-format-card { display: grid; grid-template-columns: .8fr 1.2fr; }
  .experience-format-image { aspect-ratio: auto; min-height: 390px; }
  .festin-section,.digital-access-story { grid-template-columns: 1fr; }
  .festin-visual,.digital-access-image { min-height: 620px; }
  .private-meal-section,.book-feature { grid-template-columns: 1fr; }
  .book-feature-chefs .book-copy { order: 2; }
  .book-feature-chefs .book-cover-stage { order: 1; }
  .book-cover-stage { min-height: 620px; }
}

@media (max-width: 780px) {
  .news-led-hero { height: auto; min-height: 820px; }
  .box-hero-actions { align-items: flex-start; flex-direction: column; }
  .box-inline-cta { justify-content: flex-start; }
  .provision-product-grid { grid-template-columns: 1fr 1fr; }
  .provision-product-grid article.product-up { transform: none; }
  .box-product-gallery .box-inline-cta { margin-top: 35px; }
  .experience-v10-hero { min-height: 720px; }
  .experience-v10-hero .experience-clear-copy { bottom: 42px; }
  .experience-v10-hero .experience-clear-copy h1 { margin: 16px 0 18px; font-size: 16vw; }
  .experience-v10-hero .experience-clear-copy > p { font-size: 14px; line-height: 1.45; }
	.experience-choice-panel { width: 100%; margin-top: 18px; grid-template-columns: 1fr; }
	.experience-choice-panel a { min-width: 0; min-height: 50px; padding: 10px 13px; font-size: 13px; }
	.experience-choice-panel a + a { border-top: 1px solid rgba(23,54,50,.35); border-left: 0; }
  .experience-detail-block .explorer-tools { grid-template-columns: 1fr; }
  .experience-format-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .experience-format-tabs button { min-width: 0; }
  .experience-format-intro,.experience-detail-heading,.books-hero { grid-template-columns: 1fr; gap: 26px; }
  .experience-format-intro .section-kicker { grid-column: auto; }
  .experience-format-card { grid-template-columns: 1fr; }
  .experience-format-image { min-height: 300px; }
  .atelier-rhythm,.private-meal-grid { grid-template-columns: 1fr; }
  .atelier-rhythm article,.atelier-rhythm article:not(:first-child),.private-meal-grid article,.private-meal-grid article:not(:first-child) { min-height: auto; padding: 24px 0; border-right: 0; }
  .festin-visual,.digital-access-image { min-height: 470px; }
  .festin-copy,.digital-access-copy { padding: 70px 23px; }
  .private-meal-visual { min-height: 520px; }
  .books-hero { min-height: auto; padding-top: 130px; }
  .books-hero h1 { font-size: 19vw; }
  .book-cover-stage { min-height: 520px; }
  .book-feature { min-height: auto; }
  .book-editions { grid-template-columns: 1fr; }
  .book-purchase-row,.book-purchase-row-editions { grid-template-columns: 1fr; align-items: start; }
  .book-purchase-row .primary-button { width: fit-content; }
  .digital-configurator { grid-template-columns: 1fr; }
  .subscription-start-note { grid-template-columns: 1fr; gap: 8px; }
  .subscription-format-card { grid-template-columns: 45px 1fr; }
  .subscription-format-card > b { grid-column: 2; }
  .digital-mail-card { grid-template-columns: 75px 1fr; }
  .pdf-attachment { width: 65px; height: 82px; }
  .map-command-bar { grid-template-columns: 1fr; }
  .map-search,.map-command-bar .map-filters { grid-column: auto; }
  .map-command-bar .map-filters { grid-template-columns: 1fr; }
  .real-map-shell,.real-map-stage { min-height: 610px; }
  .real-map-shell .map-place-card { right: 12px; bottom: 12px; width: calc(100% - 24px); }
  .map-selection-hint { left: 12px; right: 12px; width: auto; text-align: center; transform: none; white-space: normal; }
  .map-results { grid-template-columns: 1fr; }
  .map-results button:nth-child(odd) { border-right: 0; }
}

/* Homepage structure · carousel, weekly accordion and payment choices */
.home-carousel-media { position: absolute; inset: 0; }
.home-carousel-media img { object-fit: cover; object-position: center 46%; opacity: 0; transform: scale(1.035); transition: opacity .8s ease, transform 6.8s ease; }
.home-carousel-media img.is-active { opacity: 1; transform: scale(1); }
.carousel-controls { margin-top: 25px; display: flex; align-items: center; gap: 12px; color: var(--cream); }
.carousel-controls button { width: 39px; height: 39px; display: grid; place-items: center; color: inherit; background: rgba(13,41,37,.32); border: 1px solid rgba(243,239,232,.58); border-radius: 50%; cursor: pointer; }
.carousel-controls span { min-width: 54px; text-align: center; text-transform: uppercase; font-size: 7px; letter-spacing: .12em; }

.weekly-accordion .today-glance-head { gap: 14px; }
.weekly-accordion .today-glance-head strong { font-family: "Maison Neue",Arial,sans-serif; font-size: 8px; font-weight: 400; letter-spacing: .08em; text-align: right; }
.weekly-accordion article { padding: 0; }
.weekly-accordion article > button { width: 100%; padding: 14px 17px; display: flex; align-items: center; justify-content: space-between; color: inherit; background: transparent; border: 0; text-align: left; cursor: pointer; }
.weekly-accordion article > button span { color: var(--coral); text-transform: uppercase; font-size: 7px; letter-spacing: .11em; }
.weekly-accordion article > button b { font-family: "Or Lemmen",Georgia,serif; font-size: 19px; font-weight: 700; }
.weekly-accordion-panel { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .32s ease, opacity .32s ease; }
.weekly-accordion-panel h2 { min-height: 0; margin: 0; padding: 0 17px; overflow: hidden; font-size: clamp(22px,2vw,29px); line-height: .95; letter-spacing: -.04em; transition: padding .32s ease; }
.weekly-accordion article.is-open .weekly-accordion-panel { grid-template-rows: 1fr; opacity: 1; }
.weekly-accordion article.is-open .weekly-accordion-panel h2 { padding-bottom: 18px; }

.home-experiences { background: var(--paper); }
.home-experiences-heading { margin-bottom: clamp(55px,8vw,105px); display: grid; grid-template-columns: 1.15fr .55fr; align-items: end; gap: clamp(45px,9vw,145px); }
.home-experiences-heading h2 { margin: 0; font-size: clamp(62px,8vw,120px); line-height: .84; }
.home-experiences-heading p { margin: 0 0 28px; font-size: 17px; line-height: 1.55; }

.payment-choice { margin: 20px 0 8px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.payment-choice button { min-height: 70px; padding: 12px 14px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 5px; color: var(--ink); background: transparent; border: 1px solid var(--line); text-align: left; cursor: pointer; }
.payment-choice button.active { color: var(--cream); background: var(--ink); border-color: var(--ink); }
.payment-choice strong { text-transform: uppercase; font-size: 8px; font-weight: 400; letter-spacing: .1em; }
.payment-choice small { opacity: .65; font-size: 9px; }
.payment-choice-dark button { color: var(--cream); border-color: rgba(243,239,232,.3); }
.payment-choice-dark button.active { color: var(--ink); background: var(--cream); border-color: var(--cream); }
.payment-availability { margin: 18px 0 0 !important; color: rgba(23,54,50,.58); font-size: 9px !important; line-height: 1.4 !important; text-transform: uppercase; letter-spacing: .08em; }
.payment-availability-light { color: rgba(243,239,232,.62); }

.map-page-hero { padding-top: 108px; }
.map-page-intro { margin-bottom: 22px; grid-template-columns: 1fr minmax(280px,.45fr); gap: 18px 70px; }
.map-page-intro h1 { font-size: clamp(55px,7.2vw,108px); line-height: .82; }
.map-page-intro h1 span { display: block; white-space: nowrap; }
.map-page-intro p { font-size: 14px; line-height: 1.48; }
.map-page-hero .map-command-bar { padding-top: 15px; }

@media (max-width: 900px) {
  .home-experiences-heading { grid-template-columns: 1fr; gap: 28px; }
  .map-page-intro { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .news-led-hero.home-carousel { min-height: 900px; }
  .news-led-hero.home-carousel .home-hero-inner { min-height: 900px; }
  .weekly-accordion article:nth-of-type(n+2) { display: block; }
  .weekly-accordion .today-glance-head { align-items: flex-start; }
  .home-experiences-heading h2 { font-size: 15vw; }
  .payment-choice { grid-template-columns: 1fr; }
  .map-page-hero { padding-top: 90px; }
  .map-page-intro { margin-bottom: 12px; gap: 14px; }
  .map-page-intro h1 { font-size: 12.5vw; }
  .map-page-intro h1 span { white-space: nowrap; }
  .map-page-intro p { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-carousel-media img, .weekly-accordion-panel, .weekly-accordion-panel h2 { transition: none; }
}

/* WordPress integration */
.home-carousel-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.global-brand img, .footer-brand img { width: 100%; height: auto; }
.xp-card-image > img, .weekly-image > img { width: 100%; height: 100%; object-fit: cover; }
.global-nav ul, .footer-links ul { margin: 0; padding: 0; display: contents; list-style: none; }
.global-nav .current-menu-item > a::after { transform: scaleX(1); }
.menu-overlay nav ul { margin: 0; padding: 0; list-style: none; }
.menu-overlay nav li a { display: grid; grid-template-columns: 1fr auto; }
.admin-bar .global-header { top: 32px; }
.editorial-page { min-height: 70vh; padding-top: 150px; background: var(--paper); }
.editorial-page-header { max-width: 1050px; margin-bottom: 65px; }
.editorial-page-header h1 { margin: 20px 0; font-size: clamp(65px,9vw,135px); line-height: .82; }
.editorial-content { max-width: 880px; font-size: 17px; line-height: 1.7; }
.editorial-content > *:first-child { margin-top: 0; }
.post-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 55px 20px; }
.post-card-image { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--sage); }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card h2 { margin: 18px 0 10px; font-size: clamp(30px,3vw,45px); line-height: .92; }
.post-card p { color: rgba(23,54,50,.68); font-size: 13px; line-height: 1.55; }
.single-experience-hero { position: relative; min-height: 780px; color: var(--cream); background: var(--deep); }
.single-experience-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.single-experience-copy { position: absolute; z-index: 2; left: var(--gutter); right: var(--gutter); bottom: 70px; }
.single-experience-copy h1 { max-width: 1000px; margin: 20px 0; font-size: clamp(70px,10vw,150px); line-height: .8; }
.experience-purchase { padding: 30px; background: var(--paper); }
.experience-purchase .price { font-family: "Or Lemmen",Georgia,serif; font-size: 34px; }
.woocommerce-page main { padding-top: 120px; }
.woocommerce-page main#contenu > .woocommerce { padding: 40px var(--gutter) 100px; }

@media (max-width: 780px) {
  .admin-bar .global-header { top: 46px; }
  .post-grid { grid-template-columns: 1fr; }
  .editorial-page { padding-top: 110px; }
}

/* Typographic system from the Millefeuille brand charter */
.overline,.section-kicker,.choice-label,.primary-button,.outline-button,.underlined-link,
.xp-card-meta,.xp-card-foot,.weekly-index,.weekly-action,.footer-links,.footer-social,
.footer-bottom,.header-account,.header-club,.menu-index,.map-filter-title,.map-search,.map-filters,
.payment-availability,.stock-edition,.stock-scale,.result-count,.region-select,
.experience-choice-label,.experience-choice-panel a,.experience-format-tabs button {
  font-family: "Maison Neue Mono", "Maison Neue", monospace;
}

/* WordPress reproduces Next/Image fill behaviour with ordinary image tags. */
.experience-clear-hero > img,.detail-hero > img,.detail-photo-wide > img,
.experience-format-image > img,.festin-visual > img,.private-meal-visual > img,
.founder-photo > img,.about-plate > img,.team-portrait > img,.host-card > div > img,
.gallery-one > img,.gallery-two > img,.digital-access-image > img,
.magazine-content-grid article > div > img,.provision-product-grid article > img,
.book-cover-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-cover-stage > img,.provision-product-grid article > img { object-fit: contain; }
.box-hero-image > img { width: 100%; height: 100%; object-fit: contain; }
.detail-gallery img,.founder-section img { width: 100%; height: 100%; object-fit: cover; }

/* Reader controls and progressive disclosure. */
.reader-spreads { position: relative; }
.reader-spread { display: none; }
.reader-spread.is-active { display: grid; }
.digital-reader.expanded { position: fixed; inset: 0; z-index: 1000; padding: 18px; overflow: auto; background: var(--deep); }
.digital-reader.expanded .reader-spread { min-height: calc(100vh - 140px); }

/* WooCommerce and plugin fallbacks keep the same visual language. */
.brigade-trigger { text-decoration: none; }
.community-newsletter-form { margin-top: auto; }
.community-newsletter .mailpoet_form { margin-top: 0; }
.community-newsletter .mailpoet_paragraph { margin: 0; }
.community-newsletter .mailpoet_text,.community-newsletter .mailpoet_submit {
  width: 100%;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
}
.community-newsletter .mailpoet_submit { margin-top: 12px; padding: 14px 16px; color: var(--cream); background: var(--ink); border: 1px solid var(--ink); cursor: pointer; text-align: center; text-transform: uppercase; letter-spacing: .1em; }
.community-newsletter .mailpoet_submit:hover { color: var(--ink); background: var(--cream); }
[hidden] { display: none !important; }

/* Millefeuille 1.1 · editable content models and final layout adjustments */
.weekly-accordion .today-glance-head { padding: 15px 17px; font-size: 11px; letter-spacing: .06em; }
.weekly-accordion .today-glance-head strong { font-size: 11px; letter-spacing: .03em; }
.weekly-accordion article > button { padding: 11px 17px; }
.weekly-accordion article > button span,
.weekly-accordion-panel h2 { font-size: 15px; line-height: 1.08; letter-spacing: -.015em; }
.weekly-accordion article > button span { font-family: "Maison Neue",Arial,sans-serif; font-weight: 600; text-transform: none; }
.weekly-accordion-panel h2 { font-family: "Maison Neue",Arial,sans-serif; font-weight: 600; }
.weekly-accordion article.is-open .weekly-accordion-panel h2 { padding-bottom: 13px; }

.home-xp-grid,.home-feed-grid,.related-xp-grid,.experience-archive-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 48px 16px; }
.home-xp-grid .xp-card:last-child { display: block; }
.xp-card-meta { grid-template-columns: 1fr; gap: 4px; }
.xp-card-meta span:nth-child(2) { color: rgba(23,54,50,.62); }
.weekly-rendezvous { grid-template-columns: repeat(4,minmax(0,1fr)); }
.weekly-index { grid-template-columns: 1fr auto; font-size: 8px; }
.weekly-index strong { color: var(--coral); }
.weekly-copy h3 { font-size: clamp(31px,3vw,48px); }
.centered-action { margin-top: 42px; text-align: center; }

.feed-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 58px 18px; }
.feed-card > a { height: 100%; display: flex; flex-direction: column; }
.feed-card-meta { margin-top: 14px; display: flex; justify-content: space-between; gap: 12px; font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 8px; text-transform: uppercase; }
.feed-card-meta strong { color: var(--coral); font-weight: 400; }
.feed-card-meta time { color: rgba(23,54,50,.55); }
.feed-card-action { min-height: 46px; margin-top: auto; padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; color: var(--ink); background: transparent; border: 1px solid var(--coral); font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 12px; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; transition: color .22s ease,background .22s ease,transform .22s ease; }
.feed-card-action b { font-size: 20px; font-weight: 400; }
.feed-card-open:hover .feed-card-action,.feed-card-open:focus-visible .feed-card-action,.feed-card > a:hover .feed-card-action,.feed-card > a:focus-visible .feed-card-action { background: var(--coral); transform: translateY(-2px); }
.feed-card--recipe p { margin-top: auto; margin-bottom: 12px; }
.feed-card--recipe .feed-card-action { margin-top: 0; }
.recipe-grid .recipe-card-byline { width: 100%; margin-top: auto; margin-bottom: 12px; display: flex; align-items: baseline; justify-content: space-between; gap: 5px 18px; color: rgba(23,54,50,.62); font-family: "Maison Neue",Arial,sans-serif; font-size: 13px; line-height: 1.45; text-align: left; }
.recipe-grid .recipe-card-byline time { margin-left: auto; color: inherit; font: inherit; text-align: right; white-space: nowrap; }
.weekly-card--recipe .weekly-copy p { margin-top: auto; margin-bottom: 12px; }
.weekly-card--recipe .weekly-action { margin-top: 0; }
.article-archive-heading h1 { margin: 0; font-size: clamp(68px,8vw,120px); line-height: .82; }
.recipe-archive { padding-top: 0; overflow: hidden; }
.recipe-archive-opening { display: grid; grid-template-columns: minmax(0,59%) minmax(0,41%); align-items: stretch; }
.recipe-archive-opening-copy { min-width: 0; padding: 150px clamp(28px,4vw,72px) 0 var(--gutter); }
.recipe-archive-visual { position: relative; min-width: 0; min-height: 100%; margin: 0; overflow: hidden; background: var(--sage); }
.recipe-archive-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; }
.recipe-archive-results { padding-top: clamp(70px,8vw,120px); padding-bottom: clamp(80px,9vw,140px); }
.recipe-archive-heading { display: block; margin-bottom: clamp(38px,5vw,72px); border-bottom: 0; }
.recipe-archive-title { padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.recipe-archive-intro { max-width: none; padding-top: 22px; font-size: clamp(17px,1.4vw,21px); line-height: 1.48; }
.recipe-archive-intro p { margin: 0 0 28px; }
.recipe-archive-description { font-weight: 700; }
.empty-editorial-feed { grid-column: 1/-1; max-width: 660px; font-size: 18px; line-height: 1.6; }

.detail-quickfacts { max-width: 560px; gap: 5px; text-transform: none; font-family: "Or Lemmen",Georgia,serif; font-size: clamp(18px,1.8vw,27px); line-height: 1; letter-spacing: -.025em; }
.detail-quickfacts strong { margin-top: 0; font-size: inherit; line-height: inherit; }
.detail-hero h1 { max-width: 1160px; max-height: 2.4em; margin: 20px 0 0; display: -webkit-box; overflow: hidden; font-size: clamp(64px,9vw,138px); line-height: .8; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.detail-hero h1.is-long { font-size: clamp(58px,7.7vw,118px); }
.detail-hero h1.is-very-long { font-size: clamp(52px,6.7vw,102px); }
.detail-hero-copy > p { margin: clamp(25px,3vh,38px) 0 0; }
.experience-summary { display: grid; grid-template-columns: minmax(0,1fr) 390px; align-items: start; gap: clamp(55px,8vw,125px); background: var(--cream); }
.experience-summary-copy h2 { max-width: 1000px; margin: 28px 0 35px; font-size: clamp(65px,7.7vw,116px); line-height: .87; }
.experience-summary-copy .editorial-content { max-width: 850px; font-size: clamp(17px,1.35vw,21px); line-height: 1.6; }
.experience-summary .booking-card { position: sticky; top: 98px; }
.booking-card h2 { font-size: 59px; }
.booking-card dt,.booking-card dd { font-size: 10px; }
.booking-card > small { font-size: 9px; }
.booking-card > small a { text-decoration: underline; }
.meal-program { padding-top: clamp(70px,8vw,120px); }
.meal-program > h2 { max-width: 1100px; font-size: clamp(62px,7vw,104px); }
.meal-program .program-list li { grid-template-columns: minmax(190px,220px) minmax(0,1fr); gap: 55px; }
.meal-program .program-list time { overflow-wrap: anywhere; line-height: .95; }
.meal-program .program-list li > div { min-width: 0; padding-left: 8px; }
.program-list time { font-size: 32px; }
.program-list h3 { font-size: 32px; }
.program-list p { font-size: 17px; }
.related-heading { display: block; }
.related-heading > div { max-width: 1500px; }
.two-formats { grid-template-columns: repeat(2,minmax(0,1fr)); }

.provision-product-grid article { overflow: visible; background: transparent; box-shadow: none; }
.provision-product-grid span { left: 50%; right: auto; bottom: -6px; padding: 0; color: var(--ink); background: transparent; font-family: "Or Lemmen",Georgia,serif; font-size: clamp(23px,2vw,31px); font-weight: 700; letter-spacing: -.035em; text-transform: none; text-align: center; transform: translateX(-50%); white-space: nowrap; }
.box-hero-count span { font-size: 9px; }
.box-hero-count strong { font-size: 58px; }

.magazine-commerce-hero .magazine-hero-copy h1 { max-width: 760px; font-size: clamp(56px,6.2vw,94px); line-height: .91; }
.magazine-hero-visual.clean-cover { background: transparent; }
.magazine-hero-visual.clean-cover::before { display: none; }
.magazine-hero-visual.clean-cover > img { transform: none; box-shadow: 0 30px 65px rgba(0,0,0,.23); }
.pdf-preview-shell { width: min(1180px,100%); margin: 0 auto; }
.pdf-preview-shell iframe { width: 100%; height: min(900px,78vh); display: block; margin-bottom: 24px; background: var(--cream); border: 0; }

.map-page-hero { padding-top: 92px; }
.map-page-intro { margin-bottom: 12px; }
.map-page-intro h1 { max-width: 980px; font-size: clamp(52px,6.5vw,98px); line-height: .88; }
.map-filter-title span,.map-filter-title strong,.map-search span,.map-search input { font-family: "Maison Neue",Arial,sans-serif; }
.map-filter-title span,.map-search span { font-size: 12px; font-weight: 600; letter-spacing: 0; text-transform: none; }
.map-filter-title strong { font-size: 18px; letter-spacing: 0; }
.map-search input { font-size: 15px; }
.map-command-bar .map-filters button { min-height: 68px; font-family: "Maison Neue",Arial,sans-serif; font-size: 14px; letter-spacing: 0; text-transform: none; }
.map-command-bar .map-filters button b { font-size: 22px; }
.real-map-shell,.real-map-stage { min-height: 680px; }

.about-hero-copy h1 { font-size: clamp(67px,7.8vw,116px); line-height: .86; }
.team-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 58px 24px; }
.team-card.is-founder { grid-column: auto; }
.team-portrait,.team-card.is-founder .team-portrait { width: min(240px,100%); aspect-ratio: 1/1; margin: 0 auto; border-radius: 50%; background: var(--paper); }
.team-card.is-founder .team-portrait img { object-position: center; }
.team-caption { padding: 18px 0 0; text-align: center; }
.team-caption h3 { font-size: clamp(25px,2.2vw,34px); }
.team-caption p { font-size: 8px; }
.legal-footer { grid-template-columns: 1fr auto auto auto auto auto auto; align-items: center; }

@media (max-width: 1100px) {
  .home-xp-grid,.home-feed-grid,.related-xp-grid,.experience-archive-grid,.feed-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .weekly-rendezvous { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .experience-summary { grid-template-columns: minmax(0,1fr) 340px; gap: 38px; }
  .team-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .legal-footer { grid-template-columns: repeat(4,auto); justify-content: start; }
}

@media (max-width: 780px) {
	.recipe-archive-heading { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .weekly-accordion article > button span,.weekly-accordion-panel h2 { font-size: 14px; }
  .home-xp-grid,.home-feed-grid,.related-xp-grid,.experience-archive-grid,.feed-grid,.weekly-rendezvous,.two-formats { grid-template-columns: 1fr; }
  .experience-summary { grid-template-columns: 1fr; gap: 45px; }
  .experience-summary .booking-card { position: static; }
  .detail-quickfacts { font-size: 17px; }
  .detail-hero h1 { font-size: clamp(48px,14vw,78px); }
  .detail-hero h1.is-long { font-size: clamp(44px,12.5vw,70px); }
  .detail-hero h1.is-very-long { font-size: clamp(40px,11vw,62px); }
  .detail-hero-copy > p { margin-top: 20px; font-size: 15px; }
  .program-list li,.meal-program .program-list li { grid-template-columns: minmax(155px,.75fr) minmax(0,1.25fr); gap: 28px; }
  .program-list time,.program-list h3 { font-size: 25px; }
  .meal-program .program-list li > div { padding-left: 0; }
  .program-list p { font-size: 14px; }
  .team-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .legal-footer { grid-template-columns: repeat(2,1fr); }
  .map-command-bar .map-filters button { font-size: 13px; }
}

/* Millefeuille 1.1.6 · home navigation, editorial modals and recipes */
#experiences-home,#magazine-home,#provisions-home,#actualites { scroll-margin-top: 82px; }
.home-discover-nav { width: fit-content; max-width: 100%; margin-top: 30px; color: var(--ink); background: var(--coral); }
.home-discover-nav > strong { padding: 18px 22px 16px; display: block; font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 9px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.home-discover-nav > div { display: grid; grid-template-columns: repeat(3,max-content); border-top: 1px solid rgba(23,54,50,.35); }
.home-discover-nav a { min-height: 54px; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; border-right: 1px solid rgba(23,54,50,.35); font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 12px; font-weight: 600; line-height: 1.1; white-space: nowrap; }
.home-discover-nav a::after { content: "↓"; margin-left: 12px; font-family: "Maison Neue Mono",monospace; font-size: 15px; font-weight: 400; }
.home-discover-nav a:last-child { border-right: 0; }
.home-discover-nav a:hover { color: var(--cream); background: var(--ink); }
.hero-article-open { padding: 0; color: inherit; background: transparent; border: 0; font: inherit; text-align: left; cursor: pointer; }
.home-experiences-more { margin-top: 45px; display: flex; justify-content: flex-end; }

.home-provisions-offer { min-height: 820px; padding: clamp(85px,10vw,150px) var(--gutter); display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(60px,10vw,155px); color: var(--cream); background: var(--deep); }
.home-provisions-copy { max-width: 720px; }
.home-provisions-copy h2 { max-width: 820px; margin: 0 0 30px; font-size: clamp(60px,7vw,108px); line-height: .87; }
.home-provisions-copy > p { max-width: 650px; color: rgba(243,239,232,.76); font-size: clamp(16px,1.35vw,20px); line-height: 1.58; }
.home-provisions-copy blockquote { max-width: 690px; margin: 42px 0; padding: 24px 0 24px 30px; border-left: 5px solid var(--coral); font-family: "Or Lemmen",Georgia,serif; font-size: clamp(28px,3vw,45px); font-weight: 700; line-height: 1.02; }
.home-provisions-copy .coral-button { color: var(--ink); background: var(--coral); border-color: var(--coral); }
.home-magazine-copy > .section-kicker,
.home-provisions-copy > .section-kicker,
.home-experiences-heading .section-kicker,
.daily-heading .section-kicker { font-size: 18px; }
.home-provisions-visual { position: relative; min-height: 650px; display: grid; place-items: center; background: rgba(243,239,232,.06); overflow: hidden; }
.home-provisions-visual img { width: min(600px,90%); max-height: 620px; object-fit: contain; }
.home-provisions-visual > span { position: absolute; right: 22px; bottom: 22px; width: 145px; height: 145px; display: grid; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; text-align: center; text-transform: uppercase; font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 7px; line-height: 1.35; letter-spacing: .08em; }
.home-provisions-visual strong { display: block; font-family: "Or Lemmen",Georgia,serif; font-size: 48px; line-height: .65; }

.weekly-card,.weekly-card-3 { background: var(--paper); }
.feed-card-open { width: 100%; height: 100%; padding: 0; display: flex; flex-direction: column; color: inherit; background: transparent; border: 0; font: inherit; text-align: left; cursor: pointer; }
.feed-card > a.feed-card-open,.feed-card > button.feed-card-open { height: 100%; display: flex; flex-direction: column; }

.article-modal[hidden] { display: none; }
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  width: auto;
  max-height: none;
  padding: clamp(18px,4vw,70px);
  display: grid;
  grid-template-columns: none;
  place-items: center;
  color: inherit;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.article-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  display: block;
  background: rgba(8,30,27,.82);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.article-modal-card { position: relative; z-index: 1; width: min(1120px,100%); max-height: min(850px,calc(100vh - 36px)); display: grid; grid-template-columns: .9fr 1.1fr; color: var(--ink); background: var(--paper); box-shadow: 0 35px 100px rgba(0,0,0,.34); overflow: auto; }
.article-modal-close { position: absolute; z-index: 3; right: 18px; top: 18px; width: 46px; height: 46px; display: grid; place-items: center; color: var(--ink); background: var(--coral); border: 0; border-radius: 50%; font-size: 28px; line-height: 1; cursor: pointer; }
.article-modal-image {
  position: sticky;
  top: 0;
  align-self: start;
  height: min(850px,calc(100vh - 36px));
  min-height: 650px;
  padding: clamp(32px,4vw,64px);
  display: grid;
  place-items: center;
  background: var(--paper);
}
.article-modal-image img {
  width: min(82%,420px);
  height: auto;
  max-height: min(560px,calc(100vh - 180px));
  object-fit: contain;
}
.article-modal-copy { padding: clamp(45px,6vw,88px); }
.article-modal-copy h2 { margin: 8px 0 24px; font-size: clamp(48px,5.5vw,82px); line-height: .88; }
.article-modal-lead { margin: 0 0 28px; font-family: "Or Lemmen",Georgia,serif; font-size: clamp(22px,2vw,30px); font-weight: 700; line-height: 1.12; }
.article-modal-body { font-size: 16px; line-height: 1.7; }
.article-modal-body > *:first-child { margin-top: 0; }
.article-modal-copy .primary-button { margin-top: 28px; }
body.mf-modal-open { overflow: hidden; }

.recipe-detail { background: var(--cream); }
.recipe-detail-hero { padding-top: clamp(125px,12vw,180px); padding-bottom: clamp(65px,8vw,120px); display: grid; grid-template-columns: minmax(0,1fr) minmax(420px,.8fr); align-items: center; gap: clamp(55px,9vw,145px); background: var(--paper); }
.recipe-detail-heading h1 { max-width: 850px; margin: 15px 0 28px; font-size: clamp(58px,7.2vw,108px); line-height: .88; }
.recipe-detail-heading > p { max-width: 700px; margin: 0; font-family: "Or Lemmen",Georgia,serif; font-size: clamp(24px,2.5vw,38px); font-weight: 500; line-height: 1.16; }
.recipe-detail-image { min-height: 610px; margin: 0; overflow: hidden; background: var(--sage); }
.recipe-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.recipe-facts { padding-top: clamp(55px,7vw,90px); padding-bottom: clamp(55px,7vw,90px); display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); background: var(--cream); }
.recipe-facts > div { min-width: 0; padding: 8px clamp(16px,2.2vw,34px); display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-items: center; gap: 2px 14px; border-right: 1px solid var(--line); }
.recipe-facts > div:first-child { padding-left: 0; }
.recipe-facts > div:last-child { padding-right: 0; border-right: 0; }
.recipe-fact-icon { grid-row: 1/3; width: 46px; height: 46px; display: grid; place-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: 50%; font-size: 20px; }
.recipe-facts small { color: rgba(23,54,50,.58); font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.recipe-facts strong { overflow-wrap: anywhere; font-family: "Or Lemmen",Georgia,serif; font-size: clamp(20px,1.8vw,29px); line-height: 1; }
.recipe-fact-servings strong { overflow-wrap: normal; white-space: nowrap; font-size: clamp(18px,1.55vw,26px); }
.recipe-method { padding-top: clamp(70px,9vw,130px); padding-bottom: clamp(70px,9vw,130px); display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: clamp(28px,4vw,64px); background: var(--paper); }
.recipe-panel { min-height: 100%; border: 1px solid rgba(23,54,50,.25); }
.recipe-panel h2 { margin: 0; padding: 20px clamp(25px,3vw,44px); color: var(--ink); background: var(--coral); font-size: clamp(38px,4vw,61px); line-height: .9; }
.recipe-panel ul,.recipe-panel ol,.recipe-panel > p,.recipe-panel > .editorial-content { margin: 0; padding: clamp(32px,4vw,58px); }
.recipe-panel ul,.recipe-panel ol { list-style: none; }
.recipe-panel li { position: relative; padding: 14px 0 14px 30px; border-bottom: 1px solid rgba(23,54,50,.18); font-size: clamp(15px,1.25vw,18px); line-height: 1.52; }
.recipe-panel li:last-child { border-bottom: 0; }
.recipe-panel ul li::before { content: "•"; position: absolute; left: 2px; color: var(--coral); font-size: 25px; line-height: .8; }
.recipe-panel ol { counter-reset: recipe-step; }
.recipe-panel ol li { counter-increment: recipe-step; }
.recipe-panel ol li::before { content: counter(recipe-step,decimal-leading-zero); position: absolute; left: 0; top: 15px; color: var(--coral); font-family: "Maison Neue Mono",monospace; font-size: 8px; }
.recipe-tip { margin-top: clamp(35px,5vw,70px); margin-bottom: clamp(35px,5vw,70px); padding-top: clamp(40px,5vw,70px); padding-bottom: clamp(40px,5vw,70px); color: var(--ink); background: var(--coral); }
.recipe-tip p { max-width: 1050px; margin: 0; font-family: "Or Lemmen",Georgia,serif; font-size: clamp(32px,4.2vw,64px); font-weight: 700; line-height: .98; }
.recipe-chef { grid-column: 1/-1; padding: clamp(34px,4.5vw,65px); display: flex; align-items: center; gap: clamp(28px,4vw,58px); background: var(--cream); }
.recipe-chef > img { width: clamp(130px,16vw,230px); aspect-ratio: 1/1; object-fit: cover; border-radius: 50%; }
.recipe-chef h2 { margin: 0 0 18px; font-size: clamp(28px,3vw,48px); line-height: .96; }
.recipe-chef p { margin: 0; font-size: 17px; }
.editorial-article-cta { margin-top: 35px; }

@media (max-width: 980px) {
  .home-provisions-offer,.recipe-detail-hero { grid-template-columns: 1fr; }
  .home-provisions-visual { min-height: 520px; }
  .recipe-detail-image { min-height: 520px; }
  .recipe-facts { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px 0; }
  .recipe-facts > div,.recipe-facts > div:first-child,.recipe-facts > div:last-child { padding: 8px 20px; border-right: 1px solid var(--line); }
  .recipe-facts > div:nth-child(even) { border-right: 0; }
  .recipe-method { grid-template-columns: 1fr; }
  .article-modal-card { grid-template-columns: 1fr; }
  .article-modal-image { position: relative; height: auto; min-height: 360px; }
}

@media (max-width: 780px) {
	.home-discover-nav { width: 100%; }
  .home-discover-nav > div { grid-template-columns: 1fr; }
  .home-discover-nav a,.home-discover-nav a:last-child { border-right: 0; border-bottom: 1px solid rgba(23,54,50,.35); }
  .home-discover-nav a:last-child { border-bottom: 0; }
  .home-experiences-more { justify-content: flex-start; }
  .home-provisions-offer { min-height: auto; gap: 48px; }
  .home-provisions-copy blockquote { padding-left: 20px; }
  .home-provisions-visual { min-height: 400px; }
  .home-provisions-visual > span { width: 110px; height: 110px; }
  .article-modal { padding: 10px; }
  .article-modal-card { max-height: calc(100vh - 20px); }
  .article-modal-image { min-height: 260px; }
  .article-modal-copy { padding: 40px 24px; }
  .article-modal-close { right: 10px; top: 10px; }
  .recipe-detail-hero { gap: 42px; }
  .recipe-detail-image { min-height: 390px; }
  .recipe-facts { grid-template-columns: 1fr; }
  .recipe-facts > div,.recipe-facts > div:first-child,.recipe-facts > div:last-child,.recipe-facts > div:nth-child(even) { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .recipe-facts > div:last-child { border-bottom: 0; }
  .recipe-chef { align-items: flex-start; flex-direction: column; }
}

/* Millefeuille 1.1.22 · recipe navigation, filters and section headings */
.recipe-filter-panel {
	margin: clamp(28px,3vw,46px) 0 0;
	padding: clamp(24px,3vw,40px);
	color: var(--cream);
	background: var(--deep);
}
.recipe-filter-header {
	margin-bottom: clamp(25px,3vw,38px);
}
.recipe-filter-header h2 { margin: 0; font-size: clamp(39px,4vw,60px); line-height: .9; }
.recipe-filter-tools { display: flex; align-items: baseline; justify-content: flex-end; gap: clamp(16px,2vw,28px); }
.recipe-filter-result { margin: 0; display: flex; align-items: baseline; gap: 8px; font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 9px; letter-spacing: .09em; text-transform: uppercase; white-space: nowrap; }
.recipe-filter-result strong { color: var(--coral); font-family: "Or Lemmen",Georgia,serif; font-size: 31px; line-height: .8; letter-spacing: -.04em; }
.recipe-filter-groups { display: grid; grid-template-columns: 1fr; gap: clamp(20px,2.3vw,30px); }
.recipe-filter-group { min-width: 0; padding: 0; border: 0; }
.recipe-filter-label { margin-bottom: 12px; display: block; color: var(--coral); font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.recipe-filter-buttons { display: flex; flex-wrap: wrap; gap: 6px; }
.recipe-filter-buttons form { margin: 0; }
.recipe-filter-button { min-height: 36px; padding: 7px 12px; color: var(--cream); background: transparent; border: 1px solid rgba(243,239,232,.48); border-radius: 999px; font-family: "Maison Neue",Arial,sans-serif; font-size: 11px; font-weight: 600; line-height: 1.1; cursor: pointer; transition: color .18s ease,background .18s ease,border-color .18s ease,transform .18s ease; }
.recipe-filter-button:hover,.recipe-filter-button:focus-visible { color: var(--ink); background: var(--paper); border-color: var(--paper); transform: translateY(-1px); }
.recipe-filter-button.active { color: var(--ink); background: var(--coral); border-color: var(--coral); }
.recipe-filter-reset { margin: 0; display: inline-flex; align-items: center; gap: 8px; color: var(--cream); border-bottom: 1px solid rgba(243,239,232,.65); font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 8px; letter-spacing: .11em; text-transform: uppercase; white-space: nowrap; }
.recipe-filter-reset span { color: var(--coral); font-size: 18px; line-height: .7; }
.recipe-filter-summary { margin-top: clamp(28px,3vw,40px); display: flex; align-items: baseline; justify-content: flex-start; flex-wrap: wrap; gap: 16px 28px; }

.recipe-panel .recipe-groups { padding: clamp(32px,4vw,58px); }
.recipe-panel .recipe-groups ul,.recipe-panel .recipe-groups ol { margin: 0; padding: 0; list-style: none; }
.recipe-panel .recipe-subtitle { margin: 36px 0 8px; padding: 0 0 13px; color: var(--ink); background: transparent; border-bottom: 2px solid var(--coral); font-family: "Or Lemmen",Georgia,serif; font-size: clamp(25px,2.35vw,37px); font-weight: 700; line-height: 1; }
.recipe-panel .recipe-subtitle:first-child { margin-top: 0; }
.recipe-panel .recipe-groups ol { counter-reset: recipe-step var(--recipe-step-offset,0); }

@media (max-width: 780px) {
	.global-header.is-recipe-split:not(.is-scrolled) { color: var(--cream); background: transparent; border-color: rgba(243,239,232,.3); }
	.global-header.is-recipe-split:not(.is-scrolled) .global-brand img { filter: brightness(0) invert(1); }
	.recipe-archive-opening { grid-template-columns: 1fr; }
	.recipe-archive-opening-copy { grid-row: 2; padding: 55px var(--gutter) 0; }
	.recipe-archive-visual { grid-row: 1; min-height: min(640px,72svh); }
	.recipe-archive-visual::after { content: ""; position: absolute; inset: 0 0 auto; height: 150px; background: linear-gradient(rgba(8,30,27,.5),transparent); }
	.recipe-filter-panel { margin-top: 28px; padding: 28px 20px; }
	.recipe-filter-header { align-items: flex-start; flex-direction: column; }
	.recipe-filter-tools { justify-content: flex-start; flex-wrap: wrap; }
	.recipe-filter-groups { grid-template-columns: 1fr; }
	.recipe-filter-button { min-height: 38px; }
	.recipe-panel .recipe-subtitle { margin-top: 30px; }
}

/* Millefeuille 1.1.23 · shared entry heroes for Magazine, Livres and Provisions */
.commerce-entry-hero { position: relative; min-height: min(860px,100svh); color: var(--cream); background: var(--deep); overflow: hidden; }
.commerce-entry-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.commerce-entry-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,rgba(8,30,27,.91) 0%,rgba(8,30,27,.72) 42%,rgba(8,30,27,.2) 76%),linear-gradient(0deg,rgba(8,30,27,.55) 0%,transparent 55%); }
.commerce-entry-copy { position: absolute; z-index: 2; left: var(--gutter); bottom: clamp(82px,10vh,120px); width: min(1320px,calc(100% - (2 * var(--gutter)))); }
.commerce-entry-title { max-width: 1280px; margin: 0 0 20px; font-size: clamp(55px,6.4vw,98px); line-height: .88; letter-spacing: -.04em; }
.commerce-entry-title span { display: block; white-space: nowrap; }
.commerce-entry-copy > p { max-width: 820px; margin: 0; font-size: clamp(15px,1.25vw,19px); line-height: 1.48; }
.commerce-entry-actions { width: fit-content; max-width: 100%; margin-top: 26px; display: inline-grid; color: var(--ink); background: var(--coral); }
.commerce-entry-actions-two { grid-template-columns: max-content max-content; }
.commerce-entry-actions-one { grid-template-columns: max-content; }
.commerce-entry-actions a { min-width: 0; min-height: 62px; padding: 13px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 17px; font-weight: 600; line-height: 1.1; white-space: nowrap; transition: color .22s ease,background .22s ease; }
.commerce-entry-actions a + a { border-left: 1px solid rgba(23,54,50,.35); }
.commerce-entry-actions a:hover,.commerce-entry-actions a:focus-visible { color: var(--cream); background: var(--ink); outline: 0; }
.commerce-entry-actions b { flex: 0 0 auto; font-size: 24px; font-weight: 400; }
.magazine-entry-hero .commerce-entry-image { object-position: center center; }
.magazine-entry-print-note { display: block; }
.books-entry-hero .commerce-entry-image { object-position: 56% center; }
.provisions-entry-hero .commerce-entry-image { object-position: 58% center; }
#lecture,#abonnement,#romandie-sucree,#romandie-des-chefs,#commander { scroll-margin-top: 78px; }

/* Millefeuille 1.1.26 · voiles des grands visuels atténués de 25 % */
.home-hero-shade,
.journal-hero-shade,
.experience-clear-shade,
.detail-hero-shade,
.commerce-entry-shade { opacity: .5; }

@media (max-width: 780px) {
	.commerce-entry-hero { min-height: 720px; }
	.commerce-entry-copy { bottom: 38px; width: calc(100% - (2 * var(--gutter))); }
	.commerce-entry-title,.experience-v10-hero .experience-clear-copy h1 { margin-bottom: 16px; font-size: clamp(27px,7vw,42px); line-height: .92; }
	.commerce-entry-copy > p { font-size: 14px; line-height: 1.42; }
	.commerce-entry-actions { width: 100%; margin-top: 20px; display: grid; }
	.commerce-entry-actions-two,.commerce-entry-actions-one { grid-template-columns: 1fr; }
	.commerce-entry-actions a { min-height: 50px; padding: 10px 13px; font-size: 13px; }
	.commerce-entry-actions a + a { border-top: 1px solid rgba(23,54,50,.35); border-left: 0; }
	.magazine-entry-hero .commerce-entry-image { object-position: 73% center; }
	.books-entry-hero .commerce-entry-image { object-position: 55% center; }
	.provisions-entry-hero .commerce-entry-image { object-position: 61% center; }
}

/* Millefeuille 1.1.35 · Provisions command panel and experience filters */
.provisions-entry-subtitle span { display: block; }
.box-order-section { gap: 38px; }
.box-order-copy { max-width: none; }
.box-order-copy h2 { margin-bottom: 18px; font-size: clamp(16px,4.1vw,66px); line-height: .95; white-space: nowrap; }
.box-order-copy .provisions-explainer { max-width: none; margin: 0; display: grid; gap: 12px; color: var(--cream); font-size: clamp(16px,1.3vw,21px); line-height: 1.4; }
.box-order-copy .provisions-explainer p { margin: 0; display: flex; align-items: baseline; gap: 12px; color: inherit; font: inherit; white-space: nowrap; }
.box-order-copy .provisions-explainer p::before { content: "→"; flex: 0 0 auto; color: var(--coral); font-family: "Maison Neue Mono",monospace; font-size: .8em; }
.box-order-panel .box-stock-note { max-width: 850px; margin: 13px 0 18px; color: rgba(23,54,50,.62); font-size: 14px; line-height: 1.5; text-align: left; }
.box-order-panel { padding: 28px; }
.order-panel-head { margin-bottom: 22px; padding-bottom: 17px; }
.order-panel-head strong { font-size: 27px; }
.box-order-panel .stock-edition { margin-bottom: 17px; justify-content: flex-end; font-size: 11px; }
.box-order-panel .stock-edition strong { opacity: 1; }
.box-order-panel .stock-head { margin-bottom: 12px; font-size: 13px; }
.box-order-panel .stock-head strong { font-size: 30px; }
.box-order-panel .box-buy-row { margin-top: 22px; }
.box-order-panel .box-buy-row .primary-button { justify-content: flex-start; font-size: 14px; text-align: left; }
.box-order-panel .box-buy-row .primary-button span { margin-left: .35em; font-size: inherit; line-height: inherit; }
.box-order-panel ul { margin-top: 24px; grid-template-columns: repeat(4,minmax(0,1fr)); border: 1px solid var(--line); }
.box-order-panel li { min-height: 66px; padding: 14px 18px; display: flex; align-items: center; justify-content: center; border: 0; border-right: 1px solid var(--line); font-size: 14px; line-height: 1.3; text-align: center; white-space: normal; }
.box-order-panel li:last-child { border-right: 0; }
.box-order-panel li::before { content: none; margin: 0; }
.box-order-panel .provision-feature-icon { flex: 0 0 auto; margin-right: 10px; font-size: 21px; line-height: 1; }
.experience-format-tabs button { padding: 12px 15px; color: var(--ink); background: var(--coral); border-color: var(--coral); font-size: 10px; }
.experience-format-tabs button[aria-pressed="true"] { color: var(--ink); background: var(--coral); border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }

@media (max-width: 1100px) {
	.box-order-copy .provisions-explainer p { white-space: normal; }
	.box-order-panel ul { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.box-order-panel li { font-size: 14px; white-space: normal; }
	.box-order-panel li:nth-child(2) { border-right: 0; }
	.box-order-panel li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 780px) {
	.box-order-copy h2 { font-size: clamp(16px,4.1vw,22px); }
	.order-panel-head { align-items: flex-start; flex-direction: column; gap: 9px; }
	.order-panel-head strong { font-size: 22px; }
	.box-order-panel .stock-edition { justify-content: flex-start; font-size: 10px; }
	.box-order-panel .stock-head { align-items: flex-start; flex-direction: column; gap: 8px; }
	.box-order-panel ul { grid-template-columns: 1fr; }
	.box-order-panel li,.box-order-panel li:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); white-space: normal; }
	.box-order-panel li:last-child { border-bottom: 0; }
}

/* Millefeuille 1.1.38 · principe des Provisions compact */
.surprise-concept { padding-top: clamp(62px,7vw,94px); padding-bottom: clamp(62px,7vw,94px); }
.surprise-concept .clear-section-heading { max-width: none; margin-bottom: 38px; }
.surprise-concept .section-kicker { margin-bottom: 22px; font-size: 9px; }
.surprise-concept .principle-title { margin-bottom: 18px; font-size: clamp(18px,4.8vw,74px); line-height: .95; letter-spacing: -.035em; white-space: nowrap; }
.surprise-concept .principle-title span { display: inline; }
.surprise-concept .principle-intro span { display: block; }
.surprise-concept .principle-intro { max-width: 760px; }
.surprise-steps { gap: clamp(22px,4vw,64px); border: 0; }
.surprise-steps article,.surprise-steps article:not(:first-child) { min-height: 0; padding: 0; align-items: center; border: 0; text-align: center; }
.surprise-steps article > .surprise-step-verb { margin-top: 42px; font-size: clamp(17px,1.4vw,21px); font-weight: 700; }
.surprise-steps h3 { margin: 14px 0 0; }
.surprise-steps h3 span { display: block; }
.surprise-steps p { margin: 14px 0 0; font-size: 13px; }
.surprise-concept .box-inline-cta { margin-top: 34px; }

@media (max-width: 780px) {
	.surprise-concept .clear-section-heading { margin-bottom: 32px; }
	.surprise-steps { gap: 0; }
	.surprise-steps article,.surprise-steps article:not(:first-child) { min-height: 0; padding: 28px 0; border: 0; }
}

/* Millefeuille 1.1.40 · FAQ, CGV–CGU et footer éditorial */
.info-page-hero { padding: clamp(150px,15vw,220px) var(--gutter) clamp(65px,8vw,110px); color: var(--ink); background: var(--paper); }
.info-page-hero .section-kicker { display: block; margin-bottom: 30px; }
.info-page-hero h1 { max-width: 1250px; margin: 0; font-size: clamp(58px,8.5vw,130px); line-height: .84; }
.info-page-hero p { margin: 34px 0 0; color: rgba(23,54,50,.68); font-size: clamp(16px,1.6vw,23px); }
.faq-page-content,.legal-page-content { background: var(--cream); }
.faq-page-group { padding: clamp(42px,5.4vw,78px) 0; display: grid; grid-template-columns: minmax(180px,.55fr) minmax(0,1.45fr); gap: clamp(35px,7vw,120px); border-top: 1px solid var(--line); }
.faq-page-group:first-child { border-top: 0; }
.faq-page-group h2 { max-width: 310px; margin: 0; font-family: "Or Lemmen",Georgia,serif; font-size: clamp(31px,3.5vw,52px); line-height: .94; }
.faq-page-list { border-top: 1px solid var(--ink); }
.faq-page-item { border-bottom: 1px solid var(--line); }
.faq-page-item summary { min-height: 74px; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 28px; cursor: pointer; list-style: none; font-size: clamp(15px,1.3vw,19px); font-weight: 700; line-height: 1.25; }
.faq-page-item summary::-webkit-details-marker { display: none; }
.faq-page-item summary b { position: relative; width: 25px; height: 25px; flex: 0 0 25px; border: 1px solid var(--ink); border-radius: 50%; }
.faq-page-item summary b::before,.faq-page-item summary b::after { content: ""; position: absolute; left: 6px; right: 6px; top: 11px; height: 1px; background: currentColor; }
.faq-page-item summary b::after { top: 6px; bottom: 6px; left: 11px; width: 1px; height: auto; transition: transform .2s ease,opacity .2s ease; }
.faq-page-item[open] summary b::after { opacity: 0; transform: rotate(90deg); }
.faq-page-answer { max-width: 860px; padding: 0 53px 28px 0; color: rgba(23,54,50,.76); font-size: 14px; line-height: 1.65; }
.faq-page-answer p { margin: 0 0 13px; }
.faq-page-answer p:last-child { margin-bottom: 0; }
.faq-page-answer a,.legal-page-content a { text-decoration: underline; text-underline-offset: 3px; }
.legal-page-content { padding-top: clamp(45px,6vw,90px); padding-bottom: clamp(80px,10vw,150px); }
.legal-page-note { max-width: 1020px; margin: 0 auto clamp(45px,6vw,80px); padding: 16px 20px; color: var(--ink); background: var(--coral); font-size: 13px; }
.legal-page-section { max-width: 1020px; margin: 0 auto; padding: clamp(34px,4.2vw,60px) 0; border-top: 1px solid var(--line); }
.legal-page-section h2 { max-width: 900px; margin: 0 0 25px; font-size: clamp(35px,4vw,56px); line-height: .95; }
.legal-page-section h3 { margin: 34px 0 11px; font-family: "Maison Neue",Arial,sans-serif; font-size: 17px; line-height: 1.25; }
.legal-page-section p,.legal-page-section li { font-size: 15px; line-height: 1.7; }
.legal-page-section p { margin: 0 0 15px; }
.legal-page-section ul { margin: 16px 0 18px; padding-left: 22px; }

.global-footer { padding-top: 55px; }
.footer-top { grid-template-columns: minmax(235px,1.05fr) minmax(0,3fr) auto; gap: clamp(28px,3.5vw,60px); align-items: end; padding-bottom: 48px; }
.footer-brand-block { align-self: start; }
.footer-brand { width: min(300px,22vw); display: block; }
.footer-brand-block p { margin: 13px 0 0; color: var(--cream); font-family: "Maison Neue",Arial,sans-serif; font-size: 13px; line-height: 1.3; }
.footer-links { min-width: 0; flex-direction: row; flex-wrap: wrap; align-items: center; align-content: flex-end; gap: 9px clamp(11px,1.15vw,19px); }
.footer-links a { white-space: nowrap; }
.footer-social { align-items: flex-start; gap: 10px; }
.footer-social span { margin: 0; color: rgba(243,239,232,.65); }
.footer-social-icons { display: flex; gap: 8px; }
.footer-social-icons a { width: 36px; height: 36px; display: grid; place-items: center; color: var(--cream); border: 1px solid rgba(243,239,232,.72); border-radius: 50%; transition: color .2s,background .2s,border-color .2s; }
.footer-social-icons a:hover { color: var(--deep); background: var(--cream); border-color: var(--cream); }
.footer-social-icons svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.footer-social-icons circle:last-child { fill: currentColor; stroke: none; }
.footer-bottom { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 14px 28px; }
.footer-bottom > span:first-child { margin-right: auto; }

@media (max-width: 980px) {
	.footer-top { grid-template-columns: 1fr auto; }
	.footer-links { grid-column: 1 / -1; grid-row: 2; }
	.footer-social { grid-column: 2; grid-row: 1; }
}

@media (max-width: 780px) {
	.info-page-hero { padding-top: 120px; }
	.info-page-hero h1 { font-size: clamp(46px,15vw,74px); }
	.faq-page-group { grid-template-columns: 1fr; gap: 28px; }
	.faq-page-group h2 { max-width: none; }
	.faq-page-item summary { min-height: 65px; padding: 15px 0; }
	.faq-page-answer { padding-right: 0; }
	.legal-page-section h3 { margin-top: 28px; }
	.footer-top { grid-template-columns: 1fr; gap: 30px; }
	.footer-brand { width: min(265px,75vw); }
	.footer-links,.footer-social { grid-column: 1; grid-row: auto; }
	.footer-links { gap: 10px 16px; }
	.footer-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 18px; }
	.footer-bottom > span:first-child { grid-column: 1 / -1; margin: 0 0 5px; }
}

/* Millefeuille 1.1.41 · footer dense sur deux lignes */
.global-footer { padding-top: 20px; padding-bottom: 16px; }
.footer-top { min-height: 58px; padding-bottom: 15px; gap: clamp(20px,2.5vw,42px); align-items: center; }
.footer-brand-block { align-self: center; }
.footer-brand { width: min(235px,18vw); }
.footer-links { align-content: center; gap: 7px clamp(9px,1vw,16px); font-size: 7px; }
.footer-social { align-items: flex-end; gap: 6px; }
.footer-social span { font-size: 7px; }
.footer-social-icons a { width: 31px; height: 31px; }
.footer-social-icons svg { width: 15px; height: 15px; }
.footer-bottom { padding-top: 12px; gap: 10px 23px; }

@media (max-width: 980px) {
	.footer-top { grid-template-columns: auto 1fr auto; }
	.footer-links { grid-column: 2; grid-row: 1; }
	.footer-social { grid-column: 3; grid-row: 1; }
}

@media (max-width: 780px) {
	.global-footer { padding-top: 17px; padding-bottom: 14px; }
	.footer-top { min-height: 0; grid-template-columns: minmax(105px,.65fr) minmax(0,1.35fr) auto; gap: 10px 14px; padding-bottom: 12px; }
	.footer-brand { width: min(155px,31vw); }
	.footer-links { grid-column: 2; grid-row: 1; gap: 4px 10px; font-size: 6px; }
	.footer-social { grid-column: 3; grid-row: 1; }
	.footer-social span { display: none; }
	.footer-social-icons { gap: 5px; }
	.footer-social-icons a { width: 27px; height: 27px; }
	.footer-social-icons svg { width: 13px; height: 13px; }
	.footer-bottom { padding-top: 10px; grid-template-columns: auto repeat(2,auto); align-items: center; gap: 8px 14px; font-size: 6px; }
	.footer-bottom > span:first-child { grid-column: auto; margin: 0 auto 0 0; }
}

/* Millefeuille 1.1.42 · footer ultra-compact */
.global-footer { padding-top: 0; padding-bottom: 0; }
.footer-top { min-height: 0; padding-top: 7px; padding-bottom: 7px; gap: clamp(12px,1.6vw,26px); }
.footer-bottom { padding-top: 6px; padding-bottom: 6px; gap: 7px 17px; }

@media (max-width: 780px) {
	.global-footer { padding-top: 0; padding-bottom: 0; }
	.footer-top { min-height: 0; gap: 6px 10px; padding-top: 6px; padding-bottom: 6px; }
	.footer-bottom { padding-top: 5px; padding-bottom: 5px; gap: 5px 10px; }
}

/* Millefeuille 1.1.43 · envoi de contact sobre */
.mini-contact button {
	grid-column: 3;
	grid-row: 2;
	min-width: 0;
	min-height: 0;
	height: auto;
	padding: 13px 0;
	display: block;
	align-self: end;
	justify-self: end;
	color: var(--cream);
	background: transparent;
	border: 0;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .09em;
	text-align: right;
}
.mini-contact button:hover { color: var(--cream); background: transparent; opacity: .65; transform: none; }

@media (max-width: 780px) {
	.mini-contact button { grid-column: 1; grid-row: auto; justify-self: start; min-height: 0; padding: 8px 0; text-align: left; }
}

/* Aperçu Magazine · choix de lecture côte à côte */
.magazine-subscription-section { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(650px,1.28fr); align-items: start; gap: clamp(48px,6vw,105px); }
.magazine-subscription-section .clear-section-heading { margin-bottom: 0; }
.magazine-subscription-section > .digital-configurator { width: 100%; margin: 0; }
.magazine-subscription-section .subscription-start-note { display: none; }
.magazine-subscription-section .subscription-choice { padding: 0; background: transparent; }
.magazine-subscription-section .subscription-step-card { padding-left: 18px; border-left: 1px solid var(--line); }
.subscription-format-card { grid-template-columns: 68px minmax(0,1fr) auto; }
.subscription-format-card > .format-pictogram { width: 54px; height: 48px; display: flex; align-items: center; justify-content: center; gap: 2px; }
.subscription-format-card > .format-pictogram svg { width: 37px; height: 37px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.subscription-format-card > .format-pictogram-combined svg { width: 29px; height: 29px; }
.magazine-subscription-section .subscription-format-card > b { grid-column: 2; margin-top: 2px; text-align: left; }

@media (max-width: 1280px) {
	.magazine-subscription-section { grid-template-columns: 1fr; }
	.magazine-subscription-section .clear-section-heading { max-width: 850px; }
	.magazine-subscription-section > .digital-configurator { max-width: 1050px; }
}

@media (max-width: 780px) {
	.magazine-subscription-section { gap: 38px; }
	.digital-configurator .format-main-choice { grid-row: auto; }
	.magazine-subscription-section .subscription-step-card { padding: 24px 0 0; border-top: 1px solid var(--line); border-left: 0; }
	.subscription-summary > div { display: block; white-space: normal; }
	.subscription-summary div small { margin-top: 5px; }
	.subscription-format-card { grid-template-columns: 58px minmax(0,1fr); }
	.subscription-format-card > b { grid-column: 2; }
	.subscription-format-card > .format-pictogram { width: 46px; }
	.subscription-format-card > .format-pictogram svg { width: 32px; height: 32px; }
	.subscription-format-card > .format-pictogram-combined svg { width: 24px; height: 24px; }
}

/* Prochaine version · entrée éditoriale et grille de la page Recettes */
#recettes { scroll-margin-top: 78px; }
.recipes-entry-hero { background: var(--deep); }
.recipes-entry-hero .commerce-entry-image {
	left: 0;
	right: 0;
	width: 100%;
	object-position: center center;
}

/* Millefeuille 1.1.56 · hero Cette semaine et nouvelle image Recettes */
#selection { scroll-margin-top: 78px; }
.weekly-entry-hero { background: var(--deep); }
.weekly-entry-hero .commerce-entry-image { object-position: center center; }
.weekly-entry-hero .commerce-entry-shade {
	background: linear-gradient(90deg,rgba(8,30,27,.93) 0%,rgba(8,30,27,.76) 38%,rgba(8,30,27,.18) 76%),linear-gradient(0deg,rgba(8,30,27,.48) 0%,transparent 56%);
}
.weekly-entry-hero .commerce-entry-copy > p { max-width: 720px; }
.weekly-feed-section { padding-top: clamp(70px,8vw,120px); padding-bottom: clamp(80px,9vw,140px); background: var(--paper); }
.recipes-entry-hero .commerce-entry-shade {
	background: linear-gradient(90deg,rgba(8,30,27,1) 0%,rgba(8,30,27,.96) 30%,rgba(8,30,27,.67) 49%,rgba(8,30,27,.12) 82%),linear-gradient(0deg,rgba(8,30,27,.5) 0%,transparent 56%);
}
.recipes-entry-hero .commerce-entry-copy > p { max-width: 690px; }
.recipes-entry-subtitle span { display: block; }
.recipe-catalog { padding-top: clamp(70px,8vw,120px); padding-bottom: clamp(80px,9vw,140px); background: var(--paper); }
.recipe-catalog-grid { grid-template-columns: repeat(4,minmax(0,1fr)); align-items: stretch; grid-auto-flow: row; }
.recipe-filter-panel-catalog {
	grid-column: span 2;
	grid-row: span 1;
	min-width: 0;
	min-height: 100%;
	margin: 0;
}
.recipe-catalog-grid .empty-editorial-feed { grid-column: 3/-1; align-self: start; }

@media (max-width: 1100px) {
	.recipe-catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
	.recipe-filter-panel-catalog { grid-column: 1/-1; grid-row: auto; min-height: 0; }
	.recipe-catalog-grid .empty-editorial-feed { grid-column: 1/-1; }
}

@media (max-width: 780px) {
	.recipes-entry-hero .commerce-entry-image { left: 0; width: 100%; object-position: 72% center; }
	.recipes-entry-hero .commerce-entry-shade { background: linear-gradient(90deg,rgba(8,30,27,.88),rgba(8,30,27,.3)),linear-gradient(0deg,rgba(8,30,27,.78) 0%,rgba(8,30,27,.18) 75%); }
	.recipes-entry-hero .commerce-entry-title { font-size: clamp(25px,6.6vw,40px); }
	.weekly-entry-hero .commerce-entry-image { object-position: 69% center; }
	.weekly-entry-hero .commerce-entry-shade { background: linear-gradient(90deg,rgba(8,30,27,.84),rgba(8,30,27,.2)),linear-gradient(0deg,rgba(8,30,27,.78) 0%,rgba(8,30,27,.16) 75%); }
	.weekly-entry-hero .commerce-entry-title { font-size: clamp(28px,7.4vw,44px); }
	.recipe-catalog-grid { grid-template-columns: 1fr; }
	.recipe-filter-panel-catalog { grid-column: 1; padding: 28px 20px; }
}

/* Millefeuille 1.1.68 · nouvelle page À propos */
#millefeuille,#fondateur,#equipe,#partenaires { scroll-margin-top: 78px; }
.about-entry-hero .commerce-entry-image { object-position: 68% center; }
.about-entry-hero .commerce-entry-shade { opacity: .42; }
.about-entry-title { max-width: 940px; white-space: pre-line; }
.commerce-entry-actions-three { grid-template-columns: repeat(3,max-content); }

.about-profile-section {
	min-height: 760px;
	display: grid;
	grid-template-columns: minmax(0,1.05fr) minmax(360px,.75fr);
	align-items: center;
	gap: clamp(55px,8vw,130px);
	background: var(--cream);
}
.about-profile-copy h2 {
	max-width: 900px;
	margin: 0 0 34px;
	font-size: clamp(62px,7.2vw,108px);
	line-height: .86;
}
.about-profile-copy h3 {
	margin: -8px 0 30px;
	color: var(--coral);
	font-family: "Maison Neue Mono","Maison Neue",monospace;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.about-profile-text { max-width: 770px; }
.about-profile-text p { margin: 0 0 24px; font-size: clamp(16px,1.25vw,20px); line-height: 1.63; }
.about-profile-actions {
	width: 52%;
	max-width: 560px;
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(2,minmax(0,1fr));
	gap: 10px;
}
.about-profile-actions a,
.about-profile-actions button {
	min-height: 50px;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	color: var(--ink);
	background: transparent;
	border: 1px solid rgba(23,54,50,.42);
	font-family: "Maison Neue Mono","Maison Neue",monospace;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: .07em;
	text-align: left;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: color .2s ease,background .2s ease,border-color .2s ease;
}
.about-profile-actions a:hover,
.about-profile-actions a:focus-visible,
.about-profile-actions button:hover,
.about-profile-actions button:focus-visible {
	color: var(--cream);
	background: var(--ink);
	border-color: var(--ink);
	outline: 0;
}
.about-profile-actions span { font-size: 16px; font-weight: 400; line-height: 1; }
.about-profile-image { position: relative; width: 100%; max-height: 690px; aspect-ratio: 4/5; margin: 0; overflow: hidden; background: var(--paper); }
.about-profile-image img { width: 100%; height: 100%; object-fit: cover; }
.about-profile-section-founder { color: var(--cream); background: var(--deep); }
.about-profile-section-founder .about-profile-text { color: rgba(243,239,232,.75); }
.about-profile-section-founder .about-profile-image img { object-position: center 36%; }

.about-team-section { background: var(--paper); }
.about-section-heading {
	margin-bottom: clamp(55px,7vw,90px);
	display: grid;
	grid-template-columns: minmax(0,1fr) minmax(280px,.48fr);
	align-items: end;
	gap: clamp(45px,8vw,125px);
}
.about-section-heading h2 { margin: 0; font-size: clamp(68px,8vw,120px); line-height: .82; }
.about-section-heading > p { max-width: 590px; margin: 0 0 8px; font-size: clamp(15px,1.2vw,19px); line-height: 1.58; }
.about-team-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: clamp(46px,5vw,72px) 24px; }
.about-team-card { min-width: 0; text-align: center; }
.about-team-portrait {
	position: relative;
	width: min(258px,100%);
	aspect-ratio: 1/1;
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(23,54,50,.14);
	border-radius: 50%;
}
.about-team-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--portrait-x,50%) var(--portrait-y,20%);
	transform: translate(var(--portrait-shift-x,0),var(--portrait-shift-y,0)) scale(var(--portrait-scale,1));
	transform-origin: var(--portrait-x,50%) var(--portrait-y,20%);
}
.portrait-frame-01 { --portrait-y: 18%; --portrait-scale: 1.02; }
.portrait-frame-02 { --portrait-x: 46%; --portrait-y: 10%; --portrait-scale: 1.02; }
.portrait-frame-03 { --portrait-y: 7%; --portrait-scale: .92; }
.portrait-frame-04 { --portrait-y: 16%; --portrait-scale: 1.08; }
.portrait-frame-05 { --portrait-y: 14%; --portrait-scale: .95; }
.portrait-frame-06 { --portrait-y: 14%; --portrait-scale: 1.03; }
.portrait-frame-07 { --portrait-x: 54%; --portrait-y: 16%; --portrait-scale: 1.08; }
.portrait-frame-08 { --portrait-y: 16%; --portrait-scale: 1.08; }
.portrait-frame-09 { --portrait-x: 53%; --portrait-y: 43%; --portrait-scale: 1.13; --portrait-shift-y: 4%; }
.portrait-frame-10 { --portrait-y: 43%; --portrait-scale: 1.22; --portrait-shift-y: 1%; }
.portrait-frame-11 { --portrait-y: 17%; --portrait-scale: 1.03; }
.portrait-frame-12 { --portrait-y: 12%; --portrait-scale: 1.04; }
.about-team-caption { padding-top: 18px; }
.about-team-caption h3 { margin: 0; font-size: clamp(24px,2.1vw,32px); line-height: .95; }
.about-team-caption p { margin: 8px 0 0; color: rgba(23,54,50,.58); font-size: 10px; line-height: 1.35; text-transform: uppercase; letter-spacing: .08em; }

.about-partners-section { position: relative; overflow: hidden; }
.about-partners-section .about-section-heading > p { color: rgba(243,239,232,.7); }
.about-partners-controls { margin: -34px 0 28px auto; display: flex; justify-content: flex-end; gap: 9px; }
.about-partners-controls button {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	color: var(--cream);
	background: transparent;
	border: 1px solid rgba(243,239,232,.4);
	font-size: 22px;
	cursor: pointer;
	transition: color .2s ease,background .2s ease;
}
.about-partners-controls button:hover,.about-partners-controls button:focus-visible { color: var(--ink); background: var(--coral); outline: 0; }
.about-partners-track {
	margin-right: calc(-1 * var(--gutter));
	padding-right: var(--gutter);
	display: flex;
	align-items: center;
	gap: clamp(44px,4vw,76px);
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.about-partners-track::-webkit-scrollbar { display: none; }
.about-partner-card {
	flex: 0 0 auto;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(243,239,232,.68);
	background: transparent;
	border: 0;
	scroll-snap-align: start;
	transition: opacity .22s ease;
}
.about-partner-card:hover { opacity: .72; }
.about-partner-card img { display: block; width: auto; height: auto; max-width: 240px; max-height: 82px; object-fit: contain; filter: none; }
.about-partner-card span { font-family: "Maison Neue Mono","Maison Neue",monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 1100px) {
	.about-profile-section { grid-template-columns: minmax(0,1fr) minmax(320px,.7fr); gap: 45px; }
	.about-profile-actions { width: 100%; }
	.about-team-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 780px) {
	.about-entry-hero .commerce-entry-image { object-position: 68% center; }
	.about-entry-title { font-size: clamp(31px,9.6vw,51px); }
	.commerce-entry-actions-three { grid-template-columns: 1fr; }
	.about-profile-section { min-height: 0; grid-template-columns: 1fr; gap: 42px; }
	.about-profile-actions { width: 100%; grid-template-columns: 1fr; }
	.about-profile-image { max-height: 560px; }
	.about-profile-section-founder .about-profile-copy { order: 1; }
	.about-profile-section-founder .about-profile-image { order: 2; }
	.about-section-heading { grid-template-columns: 1fr; align-items: start; gap: 26px; }
	.about-team-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 42px 14px; }
	.about-team-caption h3 { font-size: 22px; }
	.about-team-caption p { font-size: 8px; }
	.about-partners-controls { margin-top: -10px; }
}

/* Le panier reste textuel : les visuels produits sont volontairement masqués. */
.woocommerce-cart-form th.product-thumbnail,
.woocommerce-cart-form td.product-thumbnail,
.woocommerce-cart-form .product-thumbnail,
.wp-block-woocommerce-cart .wc-block-cart-items__header-image,
.wp-block-woocommerce-cart .wc-block-cart-item__image,
.wp-block-woocommerce-cart .wc-block-components-product-image,
.wc-block-cart-item__image,
.wc-block-components-product-image,
.wc-block-components-order-summary-item__image,
.wc-block-components-order-summary-item__product-image {
	display: none !important;
}
.woocommerce-cart-form .shop_table .product-name,
.wp-block-woocommerce-cart .wc-block-cart-item__product,
.wc-block-cart-item__product {
	padding-left: 0 !important;
}

/* Panier compact : informations prioritaires, contrôles rapprochés. */
.wp-block-woocommerce-cart .wc-block-cart-items__row td,
.woocommerce-cart-form .shop_table.cart td {
	padding-top: 24px !important;
	padding-bottom: 24px !important;
}
.wp-block-woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-name,
.woocommerce-cart-form .shop_table.cart .product-name > a {
	display: inline-block;
	font-size: clamp(18px,1.25vw,22px) !important;
	font-weight: 700 !important;
	line-height: 1.25 !important;
}
.wp-block-woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-price,
.wp-block-woocommerce-cart .wc-block-cart-item__product .wc-block-components-product-price__value,
.woocommerce-cart-form .shop_table.cart .product-price {
	font-size: clamp(17px,1.1vw,20px) !important;
	font-weight: 400 !important;
}
.wp-block-woocommerce-cart .wc-block-cart-item__total .wc-block-components-product-price,
.wp-block-woocommerce-cart .wc-block-cart-item__total .wc-block-components-product-price__value,
.wp-block-woocommerce-cart .wc-block-cart-item__total .wc-block-formatted-money-amount,
.woocommerce-cart-form .shop_table.cart .product-subtotal {
	font-size: clamp(17px,1.1vw,20px) !important;
	font-weight: 700 !important;
}
.wp-block-woocommerce-cart .wc-block-components-product-metadata,
.wp-block-woocommerce-cart .wc-block-components-product-details,
.woocommerce-cart-form .shop_table.cart .variation {
	display: none !important;
}
.wp-block-woocommerce-cart .wc-block-cart-item__quantity {
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	margin-top: 12px !important;
}
.wp-block-woocommerce-cart .wc-block-components-quantity-selector {
	width: 118px !important;
	min-width: 118px !important;
	height: 44px !important;
	margin: 0 !important;
}
.wp-block-woocommerce-cart .wc-block-cart-item__remove-link,
.wp-block-woocommerce-cart .wc-block-cart-item__remove-link-button {
	position: static !important;
	margin: 0 !important;
	min-width: 36px !important;
	min-height: 36px !important;
}

/* Le champ du code promo et son action forment un ensemble pétrole. */
.wp-block-woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input input,
.wp-block-woocommerce-cart .wc-block-components-totals-coupon input[type="text"] {
	color: var(--cream) !important;
	background: var(--ink) !important;
	border-color: var(--ink) !important;
	border-radius: 0 !important;
}
.wp-block-woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-text-input label {
	color: var(--cream) !important;
}
.wp-block-woocommerce-cart .wc-block-components-totals-coupon__button,
.wp-block-woocommerce-cart .wc-block-components-totals-coupon button[type="submit"] {
	color: var(--cream) !important;
	background: var(--ink) !important;
	border-color: var(--ink) !important;
	border-radius: 0 !important;
	font-weight: 700 !important;
}

/* La TVA reste calculée dans WooCommerce, seul son détail visuel est retiré. */
.wc-block-components-totals-footer-item-tax,
.wc-block-components-totals-item__tax,
.wc-block-components-totals-item__tax-value,
.wc-block-components-totals-item__description:has(abbr[title*="tax" i]),
.wc-block-components-totals-item__description:has(abbr[title*="TVA" i]),
.woocommerce .includes_tax {
	display: none !important;
}

/* Le montant final doit toujours rester visible, même après les mises à jour AJAX. */
.wp-block-woocommerce-cart .wc-block-components-totals-footer-item {
	display: grid !important;
	grid-template-columns: minmax(0,1fr) auto !important;
	align-items: baseline !important;
}
.wp-block-woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wp-block-woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-formatted-money-amount,
.wp-block-woocommerce-cart .wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	color: var(--ink) !important;
	font-weight: 700 !important;
}
.wp-block-woocommerce-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__description {
	grid-column: 1 / -1;
}

@media (max-width: 620px) {
	.wp-block-woocommerce-cart .wc-block-cart-items__row td { padding-top: 18px !important; padding-bottom: 18px !important; }
	.wp-block-woocommerce-cart .wc-block-components-quantity-selector { width: 108px !important; min-width: 108px !important; }
}
.subscription-summary {
  grid-template-rows: auto auto;
  column-gap: 24px;
  row-gap: 4px;
}
.subscription-summary > strong { grid-column: 1; grid-row: 1; }
.subscription-payment-note {
  grid-column: 1;
  grid-row: 2;
  display: block;
  color: rgba(243, 239, 232, .78);
  font-family: "Maison Neue Mono", monospace;
  font-size: 8px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.subscription-summary .primary-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  padding-right: clamp(24px, 4vw, 68px);
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
}
.home-provisions-visual { place-items: stretch; background: transparent; }
.home-provisions-visual img { width: 100%; height: 100%; max-height: none; object-fit: cover; display: block; }
.home-provisions-visual > span { display: flex; flex-direction: column; align-items: center; justify-content: center; font-weight: 700; }
.home-provisions-visual strong { font-size: 72px; line-height: .78; }
@media (max-width: 980px) {
  .subscription-summary > strong,
  .subscription-payment-note,
  .subscription-summary .primary-button { grid-column: 1; grid-row: auto; }
}
@media (max-width: 680px) {
  .home-provisions-visual strong { font-size: 56px; }
}

/* Derniers ajustements de la version 1.1.80. */
.home-magazine-visual img {
  transform: scale(2);
  transform-origin: center;
}
.home-magazine-copy li span {
  font-size: 13px;
}
@media (min-width: 981px) {
  .footer-links {
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(12px, 1.25vw, 22px);
    font-size: 8px;
  }
}
@media (max-width: 980px) {
  .home-magazine-visual img {
    transform: scale(1.35);
  }
}
