/* Zen Retreat Japan — premium editorial system, July 2026 */
:root {
  --zr-ink: #0b0c0b;
  --zr-ink-soft: #111310;
  --zr-panel: #171814;
  --zr-panel-warm: #1d1915;
  --zr-paper: #f3eee5;
  --zr-paper-deep: #e6dccd;
  --zr-copy: #d9d2c8;
  --zr-muted: #aaa299;
  --zr-line: rgba(231, 218, 199, .16);
  --zr-copper: #d9915f;
  --zr-copper-light: #efbd95;
  --zr-vermillion: #a8412f;
  --zr-moss: #68715d;
  --zr-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --zr-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --zr-radius: 4px;
  --zr-radius-lg: 18px;
  --zr-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

html { scroll-padding-top: 80px; }
body.site-body,
.funnel-body.site-refined {
  margin: 0;
  background: var(--zr-ink);
  color: var(--zr-paper);
  font-family: var(--zr-sans);
  font-size: 18px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

.site-body figure, .site-body h1, .site-body h2, .site-body h3,
.site-body p, .site-body ul, .site-body ol { margin-top: 0; }
.site-body figure { margin-left: 0; margin-right: 0; margin-bottom: 0; }
.site-skip {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-160%);
  background: var(--zr-paper);
  color: var(--zr-ink) !important;
  padding: .65rem .9rem;
}
.site-skip:focus { transform: none; }

.site-body *, .site-body *::before, .site-body *::after,
.site-refined *, .site-refined *::before, .site-refined *::after { box-sizing: border-box; }
.site-body img, .site-refined img { max-width: 100%; }
.site-body a, .site-refined a { text-underline-offset: .2em; }
.site-body h1, .site-body h2, .site-body h3,
.site-refined h1, .site-refined h2, .site-refined h3 {
  color: var(--zr-paper);
  font-family: var(--zr-display);
  font-weight: 500;
  hyphens: none;
  letter-spacing: -.035em;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.site-body h1, .site-refined h1 { font-size: clamp(2.85rem, 5.2vw, 5.25rem); line-height: 1.01; }
.site-body h2, .site-refined h2 { font-size: clamp(1.95rem, 3.5vw, 3.25rem); line-height: 1.08; }
.site-body h3, .site-refined h3 { font-size: clamp(1.25rem, 1.7vw, 1.65rem); line-height: 1.2; }

.site-wrap { width: min(100% - 3rem, 1180px); margin-inline: auto; }
.site-wrap.is-narrow { width: min(100% - 3rem, 780px); }
.site-wrap.is-reading { width: min(100% - 3rem, 760px); }

/* Navigation */
.site-nav {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: .75rem clamp(1.25rem, 2.5vw, 2.25rem);
  border-bottom: 1px solid var(--zr-line);
  background: rgba(11, 12, 11, .92);
  backdrop-filter: blur(18px);
}
.site-brand {
  color: var(--zr-paper);
  font-family: var(--zr-display);
  font-size: 1.25rem;
  letter-spacing: -.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.site-brand span { display: block; color: var(--zr-muted); font-family: var(--zr-sans); font-size: .7rem; letter-spacing: .12em; margin-top: .3rem; text-transform: uppercase; }
.site-nav-links { display: flex; align-items: center; gap: clamp(.75rem, 1.25vw, 1.3rem); white-space: nowrap; }
.site-nav-links > a { color: var(--zr-copy); font-size: .88rem; font-weight: 650; letter-spacing: .005em; text-decoration: none; }
.site-nav-links > a:hover, .site-nav-links > a[aria-current] { color: var(--zr-copper-light); }
.site-nav-links .site-nav-cta { border: 1px solid var(--zr-copper); color: var(--zr-paper); padding: .56rem .82rem; }
.site-mobile-menu { display: none; position: relative; }
.site-mobile-menu summary { display: inline-flex; min-height: 44px; align-items: center; color: var(--zr-paper); cursor: pointer; font-size: .9rem; font-weight: 700; list-style: none; letter-spacing: .025em; }
.site-mobile-menu summary::-webkit-details-marker { display: none; }
.site-mobile-menu summary::before { content: "☰"; color: var(--zr-copper-light); margin-right: .45rem; }
.site-mobile-menu[open] summary::before { content: "×"; }
.site-mobile-panel { position: fixed; z-index: 60; left: 0; right: 0; top: 72px; max-height: calc(100svh - 72px); overflow-y: auto; padding: 1rem clamp(1rem, 4vw, 2rem) 1.5rem; border-bottom: 1px solid var(--zr-line); background: rgba(18,19,16,.99); box-shadow: var(--zr-shadow); }
.site-mobile-panel a { display: block; color: var(--zr-paper); min-height: 48px; padding: .72rem .25rem; font-size: 1rem; text-decoration: none; border-bottom: 1px solid var(--zr-line); }
.site-mobile-panel a:last-child { border-bottom: 0; color: var(--zr-copper-light); }
.site-mobile-panel a[aria-current="page"] { color: var(--zr-copper-light); }
.site-mobile-label { display: block; color: var(--zr-muted); padding: 1rem .25rem .3rem; font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

/* Local orientation on long pages */
.page-index {
  position: sticky;
  z-index: 40;
  top: 72px;
  border-bottom: 1px solid var(--zr-line);
  background: rgba(17, 19, 16, .97);
  backdrop-filter: blur(16px);
}
.page-index-inner {
  display: flex;
  align-items: center;
  gap: .35rem;
  overflow-x: auto;
  scrollbar-width: thin;
}
.page-index strong { flex: 0 0 auto; color: var(--zr-muted); padding-right: .7rem; font-size: .8rem; font-weight: 750; }
.page-index a { flex: 0 0 auto; color: var(--zr-copy); padding: .82rem .72rem; font-size: .86rem; text-decoration: none; }
.page-index a:hover, .page-index a:focus-visible { color: var(--zr-copper-light); }
.site-body section[id], .site-body h2[id], .site-body main[id] { scroll-margin-top: 50px; }
.site-refined section[id] { scroll-margin-top: 0; }

/* Reusable editorial primitives */
.site-kicker { color: var(--zr-copper-light); font-size: .85rem; font-weight: 800; letter-spacing: .13em; line-height: 1.45; margin-bottom: 1.1rem; text-transform: uppercase; }
.site-deck { color: var(--zr-copy); font-size: clamp(1.08rem, 1.45vw, 1.25rem); line-height: 1.65; max-width: 760px; }
.site-note { color: var(--zr-muted); font-size: .9rem; line-height: 1.6; }
.site-rule { width: 72px; height: 1px; border: 0; background: var(--zr-copper); margin: 0 0 2rem; }
.site-section { padding: clamp(4.5rem, 7vw, 7.25rem) 0; border-top: 1px solid var(--zr-line); }
.site-section.is-paper { background: var(--zr-paper); color: #282821; }
.site-section.is-paper h2, .site-section.is-paper h3 { color: #171813; }
.site-section.is-paper .site-kicker { color: #9b5437; }
.site-section.is-paper .site-deck, .site-section.is-paper p { color: #504e46; }
.site-section.is-paper .site-button.is-ghost { color: #24231e !important; border-color: rgba(36,35,30,.35); }
.site-section.is-paper .site-button.is-ghost:hover { background: #24231e; color: var(--zr-paper) !important; }
.site-section.is-paper .article-card h3 { color: var(--zr-paper); }
.site-section.is-paper .article-card p { color: var(--zr-copy); }
.site-section.is-paper .article-card .site-kicker { color: var(--zr-copper-light); }
.site-section.is-warm { background: linear-gradient(135deg, #18130f, #0c0d0b 66%); }
.site-section-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .75fr); gap: clamp(2rem, 6vw, 6rem); align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4.25rem); }
.site-section-head .site-deck { align-self: end; }
.site-section-head > *,
.site-grid-3 > *,
.site-grid-2 > *,
.article-grid > *,
.site-contrast > *,
.site-price > * { min-width: 0; }

.site-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--zr-copper-light);
  background: var(--zr-copper-light);
  color: #1b1612 !important;
  padding: .82rem 1.25rem;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .025em;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-button:hover { background: var(--zr-paper); border-color: var(--zr-paper); transform: translateY(-2px); }
.site-button.is-ghost { background: transparent; color: var(--zr-paper) !important; border-color: var(--zr-line); }
.site-button.is-ghost:hover { border-color: var(--zr-copper-light); }
.site-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

/* Home hero */
.site-hero { min-height: calc(100svh - 72px); display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr); overflow: hidden; }
.site-hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem); }
.site-hero h1 { max-width: 760px; }
.site-hero h1 em { color: var(--zr-copper-light); font-style: normal; }
.site-hero .site-deck { margin-top: 1.6rem; max-width: 680px; }
.site-hero-media { min-height: 610px; position: relative; background: #191a16; }
.site-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.72) contrast(1.02); }
.site-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,12,11,.34), transparent 32%), linear-gradient(0deg, rgba(11,12,11,.48), transparent 42%); }
.site-hero-caption { position: absolute; z-index: 1; left: 1.5rem; right: 1.5rem; bottom: 1.4rem; display: flex; justify-content: space-between; color: #fff; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.site-facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--zr-line); border-bottom: 1px solid var(--zr-line); }
.site-fact { padding: 1.25rem clamp(1rem, 2vw, 2rem); border-right: 1px solid var(--zr-line); }
.site-fact:last-child { border-right: 0; }
.site-fact span { display: block; color: var(--zr-muted); font-size: .82rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.site-fact strong { display: block; color: var(--zr-paper); font-family: var(--zr-display); font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 500; line-height: 1.25; margin-top: .3rem; }

/* Cards, journeys and audience mapping */
.site-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--zr-line); border: 1px solid var(--zr-line); }
.site-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--zr-line); border: 1px solid var(--zr-line); }
.site-card { background: var(--zr-ink-soft); padding: clamp(1.5rem, 3vw, 2.4rem); }
.site-card.is-paper { background: var(--zr-paper); color: #333129; }
.site-card-number { color: var(--zr-copper-light); font-family: var(--zr-display); font-size: 2rem; }
.site-card h3 { margin: 1.4rem 0 .75rem; }
.site-card p { color: var(--zr-copy); font-size: 1rem; }
.site-card.is-paper p { color: #58554c; }
.site-card ul { color: var(--zr-copy); margin: 1rem 0 0 1.1rem; }
.site-card li + li { margin-top: .55rem; }
.site-map-list { list-style: none; margin: 0; border-top: 1px solid var(--zr-line); }
.site-map-list li { display: grid; grid-template-columns: minmax(190px, .7fr) minmax(0, 1.3fr); gap: clamp(1.5rem, 5vw, 5rem); padding: 1.6rem 0; border-bottom: 1px solid var(--zr-line); }
.site-map-list strong { color: var(--zr-paper); font-family: var(--zr-display); font-size: 1.35rem; font-weight: 500; }
.site-map-list p { color: var(--zr-copy); }
.site-map-list p b { color: var(--zr-copper-light); font-weight: 650; }

.site-route { list-style: none; margin: 3rem 0 0; counter-reset: day; }
.site-route li { position: relative; display: grid; grid-template-columns: 105px minmax(0, 1fr); gap: clamp(1rem, 4vw, 3rem); padding: 0 0 2.4rem; counter-increment: day; }
.site-route li::after { content: ""; position: absolute; left: 87px; top: 34px; bottom: 0; width: 1px; background: var(--zr-line); }
.site-route-date { color: var(--zr-copper-light); font-size: .82rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.site-route-copy { padding-left: 1.2rem; }
.site-route-copy h3 { margin-bottom: .55rem; }
.site-route-copy p { color: var(--zr-copy); overflow-wrap: break-word; }
.site-route-copy small { display: block; color: var(--zr-muted); font-size: .88rem; line-height: 1.55; margin-top: .45rem; overflow-wrap: break-word; }

.site-contrast { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 8vw, 8rem); align-items: center; }
.site-contrast-media { position: relative; }
.site-contrast-media img { display: block; width: 100%; max-height: 680px; object-fit: cover; filter: saturate(.76); }
.site-contrast-media::before { content: ""; position: absolute; z-index: 1; inset: 1rem -1rem -1rem 1rem; border: 1px solid rgba(239,189,149,.45); pointer-events: none; }
.site-contrast-copy p { color: var(--zr-copy); margin-top: 1.15rem; }
.site-quote { color: var(--zr-paper); font-family: var(--zr-display); font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.2; letter-spacing: -.025em; }
.site-quote cite { display: block; color: var(--zr-muted); font-family: var(--zr-sans); font-size: .8rem; font-style: normal; letter-spacing: .1em; margin-top: 1.2rem; text-transform: uppercase; }

.site-trust-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem; }
.site-trust-item { border-left: 1px solid var(--zr-copper); padding-left: 1rem; }
.site-trust-item strong { display: block; color: var(--zr-paper); }
.site-trust-item span { color: var(--zr-muted); font-size: .9rem; }

.site-price { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.site-price-value { color: var(--zr-paper); font-family: var(--zr-display); font-size: clamp(3rem, 5.5vw, 5.25rem); line-height: .95; letter-spacing: -.05em; }
.site-price-value span { display: block; color: var(--zr-muted); font-family: var(--zr-sans); font-size: .84rem; letter-spacing: .07em; margin-top: 1rem; text-transform: uppercase; }
.site-checks { list-style: none; }
.site-checks li { position: relative; color: var(--zr-copy); padding: .7rem 0 .7rem 1.7rem; border-bottom: 1px solid var(--zr-line); }
.site-checks li::before { content: "—"; position: absolute; left: 0; color: var(--zr-copper-light); }

/* Page heroes and editorial pages */
.page-hero { padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(3.75rem, 6vw, 5.75rem); border-bottom: 1px solid var(--zr-line); background: radial-gradient(circle at 82% 10%, rgba(168,65,47,.17), transparent 28%); }
.page-hero h1 { max-width: 980px; font-size: clamp(2.65rem, 4.8vw, 4.7rem); }
.page-hero .site-deck { margin-top: 1.5rem; }
.site-breadcrumb { display: flex; flex-wrap: wrap; gap: .55rem; color: var(--zr-muted); font-size: .86rem; margin-bottom: 2.25rem; }
.site-breadcrumb a { color: var(--zr-muted); text-decoration: none; }
.site-breadcrumb span[aria-current] { color: var(--zr-copper-light); }
.page-meta { display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; color: var(--zr-muted); font-size: .88rem; margin-top: 2rem; }

.reading-content { padding: clamp(4rem, 7vw, 6.5rem) 0; }
.reading-content h2 { font-size: clamp(1.85rem, 3vw, 2.65rem); margin: 3.8rem 0 1.2rem; }
.reading-content h3 { margin: 2.4rem 0 .8rem; }
.reading-content p, .reading-content li { color: var(--zr-copy); }
.reading-content p { margin: 1rem 0; }
.reading-content ul, .reading-content ol { margin: 1.2rem 0 1.2rem 1.2rem; }
.reading-content a { color: var(--zr-copper-light); }
.reading-content blockquote { border-left: 2px solid var(--zr-copper); margin: 2.5rem 0; padding: .4rem 0 .4rem 1.4rem; }
.reading-content blockquote p { color: var(--zr-paper); font-family: var(--zr-display); font-size: 1.45rem; line-height: 1.42; }
.reading-content blockquote cite { display: block; color: var(--zr-muted); font-family: var(--zr-sans); font-size: .78rem; font-style: normal; letter-spacing: .08em; margin-top: .9rem; text-transform: uppercase; }
.source-box { margin-top: 3.5rem; padding: 1.25rem; border: 1px solid var(--zr-line); background: var(--zr-panel); }
.source-box h2 { font-family: var(--zr-sans); font-size: .88rem; font-weight: 800; letter-spacing: .1em; margin: 0 0 .8rem; text-transform: uppercase; }
.source-box li { font-size: .9rem; }

.answer-box { margin: 0 0 3rem; padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid rgba(239,189,149,.34); border-left: 3px solid var(--zr-copper-light); background: linear-gradient(135deg, rgba(168,65,47,.13), rgba(217,145,95,.03)); }
.answer-box .site-kicker { margin-bottom: .65rem; }
.answer-box p:last-child { color: var(--zr-paper); font-size: 1.08rem; line-height: 1.65; margin-bottom: 0; }
.article-figure { margin: 3rem 0; }
.article-figure img { display: block; width: 100%; max-height: 560px; object-fit: cover; filter: saturate(.78); }
.article-figure figcaption { color: var(--zr-muted); font-size: .84rem; line-height: 1.55; margin-top: .7rem; }
.term-list { margin: 1.5rem 0 2.5rem; border-top: 1px solid var(--zr-line); }
.term-list > div { display: grid; grid-template-columns: minmax(145px, .55fr) minmax(0, 1.45fr); gap: 1.5rem; padding: 1.05rem 0; border-bottom: 1px solid var(--zr-line); }
.term-list strong { color: var(--zr-paper); font-family: var(--zr-display); font-size: 1.15rem; font-weight: 500; }
.term-list span { color: var(--zr-copy); font-size: .91rem; line-height: 1.65; }
.evidence-list { margin: 2rem 0; border-top: 1px solid var(--zr-line); }
.evidence-item { display: grid; grid-template-columns: 132px minmax(170px, .55fr) minmax(0, 1.45fr); gap: 1.25rem; align-items: start; padding: 1.3rem 0; border-bottom: 1px solid var(--zr-line); }
.evidence-level { display: inline-flex; width: fit-content; padding: .28rem .5rem; border: 1px solid var(--zr-line); color: var(--zr-copper-light); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.evidence-item strong { color: var(--zr-paper); font-family: var(--zr-display); font-size: 1.15rem; font-weight: 500; }
.evidence-item p { color: var(--zr-copy); font-size: .94rem; margin: 0; }
.practice-cycle { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin: 2rem 0; border: 1px solid var(--zr-line); background: var(--zr-line); counter-reset: cycle; }
.practice-step { position: relative; min-height: 190px; padding: 1.35rem; background: var(--zr-panel); counter-increment: cycle; }
.practice-step::before { content: "0" counter(cycle); display: block; color: var(--zr-copper-light); font-size: .75rem; font-weight: 800; letter-spacing: .1em; margin-bottom: 2.8rem; }
.practice-step:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -.63rem; top: 50%; width: 1.25rem; height: 1.25rem; display: grid; place-items: center; border-radius: 50%; background: var(--zr-copper-light); color: #18130f; font-size: .72rem; }
.practice-step strong { display: block; color: var(--zr-paper); font-family: var(--zr-display); font-size: 1.2rem; font-weight: 500; }
.practice-step span { display: block; color: var(--zr-muted); font-size: .88rem; line-height: 1.55; margin-top: .45rem; }
.table-scroll { margin: 2rem 0; overflow-x: auto; border: 1px solid var(--zr-line); }
.editorial-table { width: 100%; min-width: 660px; border-collapse: collapse; }
.editorial-table caption { padding: .8rem 1rem; color: var(--zr-muted); font-size: .84rem; line-height: 1.5; text-align: left; }
.editorial-table th, .editorial-table td { padding: 1rem; border-bottom: 1px solid var(--zr-line); border-right: 1px solid var(--zr-line); color: var(--zr-copy); font-size: .9rem; line-height: 1.55; text-align: left; vertical-align: top; }
.editorial-table th { color: var(--zr-paper); background: var(--zr-panel); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.editorial-table th:last-child, .editorial-table td:last-child { border-right: 0; }
.editorial-table tr:last-child td { border-bottom: 0; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.article-card { min-height: 330px; display: flex; flex-direction: column; padding: 1.5rem; border: 1px solid var(--zr-line); background: var(--zr-panel); }
.article-card .site-kicker { margin-bottom: auto; }
.article-card h3 { margin: 3rem 0 .8rem; }
.article-card p { color: var(--zr-copy); font-size: .96rem; }
.article-card a { color: var(--zr-paper); text-decoration-color: var(--zr-copper); }

.faq-list { border-top: 1px solid var(--zr-line); }
.faq-list details { border-bottom: 1px solid var(--zr-line); }
.faq-list summary { position: relative; cursor: pointer; color: var(--zr-paper); font-family: var(--zr-display); font-size: clamp(1.25rem, 2.5vw, 1.8rem); line-height: 1.25; list-style: none; padding: 1.35rem 2.5rem 1.35rem 0; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .3rem; top: 1.25rem; color: var(--zr-copper-light); font-family: var(--zr-sans); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details > div { max-width: 760px; color: var(--zr-copy); padding: 0 0 1.5rem; }

.site-callout { padding: clamp(2rem, 5vw, 4rem); border: 1px solid rgba(239,189,149,.38); background: linear-gradient(140deg, rgba(168,65,47,.16), rgba(217,145,95,.04)); }
.site-callout h2 { max-width: 820px; }
.site-callout .site-deck { margin-top: 1.2rem; }
.status-badge { display: inline-flex; align-items: center; gap: .45rem; color: var(--zr-copy); font-size: .86rem; }
.status-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--zr-copper); box-shadow: 0 0 0 4px rgba(217,145,95,.13); }

/* Footer */
.site-footer { padding: 4rem 0 6rem; border-top: 1px solid var(--zr-line); }
.site-footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, .7fr); gap: 2rem; }
.site-footer h2 { font-size: 1.65rem; }
.site-footer p { color: var(--zr-muted); font-size: .9rem; margin-top: .65rem; max-width: 320px; }
.site-footer h3 { color: var(--zr-muted); font-family: var(--zr-sans); font-size: .76rem; font-weight: 800; letter-spacing: .1em; margin-bottom: .8rem; text-transform: uppercase; }
.site-footer a { display: block; color: var(--zr-copy); font-size: .9rem; padding: .25rem 0; text-decoration: none; }
.site-footer a:hover { color: var(--zr-copper-light); }
.site-footer-bottom { display: flex; justify-content: space-between; gap: 1rem; color: var(--zr-muted); font-size: .78rem; margin-top: 3rem; padding-top: 1.25rem; border-top: 1px solid var(--zr-line); }

.site-body .consent {
  border-radius: var(--zr-radius);
  border-color: var(--zr-line);
  background: rgba(17, 19, 16, .98);
  box-shadow: var(--zr-shadow);
}
.site-body .consent-text { margin-bottom: 0; }
.site-body .consent-text a { color: var(--zr-copper-light); }
.site-body .consent-btn { border-radius: 0; font-family: var(--zr-sans); }
.site-body .consent-accept { background: var(--zr-copper-light); border-color: var(--zr-copper-light); color: #17130f; }

/* Funnel alignment */
.site-refined .f-nav { position: sticky; top: 0; min-height: 72px; border-bottom: 1px solid var(--zr-line); background: rgba(11,12,11,.94); backdrop-filter: blur(18px); }
.site-refined .f-brand { max-width: none; font-family: var(--zr-display); font-size: 1.1rem; font-weight: 500; white-space: nowrap; }
.site-refined .f-nav-links .f-nav-cta { border-radius: 0; background: var(--zr-copper-light); color: #1b1612; }
.site-refined .f-kicker { color: var(--zr-copper-light); letter-spacing: .16em; }
.site-refined .interest-hero h1,
.site-refined .dossier-hero h1 { font-size: clamp(2.65rem, 4.8vw, 4.7rem); line-height: 1.02; }
.site-refined .f-section h2,
.site-refined .dossier-section h2 { font-size: clamp(1.9rem, 3.3vw, 2.9rem); line-height: 1.1; }
.site-refined .interest-hero h1,
.site-refined .dossier-hero h1,
.site-refined .f-section h2,
.site-refined .dossier-section h2 { font-family: var(--zr-display); font-weight: 500; }
.site-refined .interest-hero,
.site-refined .dossier-hero { background: radial-gradient(circle at 78% 0, rgba(168,65,47,.18), transparent 38%); }
.site-refined .dossier-fact,
.site-refined .interest-journey-card,
.site-refined .interest-card,
.site-refined .stay-card,
.site-refined .appointment-card { border-radius: var(--zr-radius); background: var(--zr-panel); border-color: var(--zr-line); }
.site-refined .f-button { border-radius: 0; background: var(--zr-copper-light); }
.site-refined .dossier-image-band img { border-radius: var(--zr-radius); }
.site-refined .route-copy h3 { font-family: var(--zr-display); font-weight: 500; }

@media (max-width: 1120px) {
  .site-nav-links { display: none; }
  .site-mobile-menu { display: block; }
  .site-hero { grid-template-columns: 1fr; }
  .site-hero-copy { min-height: 72svh; }
  .site-hero-media { min-height: 58svh; order: 0; }
  .site-hero-media::after { background: linear-gradient(0deg, rgba(11,12,11,.62), transparent 48%); }
  .site-section-head, .site-contrast, .site-price { grid-template-columns: 1fr; }
  .site-grid-3, .article-grid { grid-template-columns: 1fr 1fr; }
  .practice-cycle { grid-template-columns: 1fr 1fr; }
  .practice-step:nth-child(2)::after { display: none; }
  .site-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .site-footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 680px) {
  body.site-body, .funnel-body.site-refined { font-size: 17px; }
  .site-wrap, .site-wrap.is-narrow, .site-wrap.is-reading { width: min(100% - 2rem, 1180px); }
  .site-nav { min-height: 66px; padding: .75rem 1rem; }
  .site-brand { font-size: 1rem; }
  .site-brand span { font-size: .68rem; }
  .site-refined .f-nav { gap: .7rem; padding: 1rem; }
  .site-refined .f-brand { max-width: 145px; overflow: hidden; font-size: 1rem; text-overflow: ellipsis; }
  .site-refined .interest-hero h1,
  .site-refined .dossier-hero h1 { font-size: clamp(2.2rem, 9.5vw, 2.75rem); }
  .site-mobile-panel { top: 66px; max-height: calc(100svh - 66px); }
  .page-index { top: 66px; }
  .page-index::after { content: "→"; position: absolute; right: 0; top: 0; bottom: 0; display: grid; width: 2.35rem; place-items: center; color: var(--zr-copper-light); background: linear-gradient(90deg, rgba(17,19,16,0), rgba(17,19,16,.98) 42%); pointer-events: none; }
  .page-index-inner { padding-right: 2.5rem; }
  .page-index strong { display: none; }
  .page-index a { padding: .72rem .62rem; font-size: .84rem; }
  .site-hero { min-height: 0; }
  .site-hero-copy { min-height: 0; padding: 4rem 1rem 4.5rem; }
  .site-hero-media { min-height: 54svh; }
  .site-hero h1, .site-body h1, .site-refined h1 { font-size: clamp(2.35rem, 10vw, 3.35rem); }
  .page-hero h1 { font-size: clamp(2.25rem, 9vw, 3.25rem); hyphens: none; overflow-wrap: anywhere; }
  .site-actions { align-items: stretch; flex-direction: column; }
  .site-button { width: 100%; }
  .site-facts { grid-template-columns: 1fr 1fr; }
  .site-fact:nth-child(2) { border-right: 0; }
  .site-fact:nth-child(-n+2) { border-bottom: 1px solid var(--zr-line); }
  .site-grid-3, .site-grid-2, .article-grid, .site-trust-strip { grid-template-columns: 1fr; }
  .site-map-list li { grid-template-columns: 1fr; gap: .5rem; }
  .site-route li { grid-template-columns: 76px minmax(0, 1fr); gap: .4rem; }
  .site-route li::after { left: 65px; }
  .site-route-copy { padding-left: .6rem; }
  .site-contrast-media::before { inset: .6rem 0 -.6rem .5rem; }
  .site-footer-grid { grid-template-columns: 1fr 1fr; }
  .site-footer-grid > div:first-child { grid-column: 1 / -1; }
  .site-footer-grid > div:last-child { grid-column: auto; }
  .site-footer-bottom { flex-direction: column; }
  .page-hero { padding-top: 3.75rem; }
  .term-list > div { grid-template-columns: 1fr; gap: .35rem; }
  .evidence-item { grid-template-columns: 1fr; gap: .5rem; }
  .practice-cycle { grid-template-columns: 1fr; }
  .practice-step { min-height: 155px; }
  .practice-step::after, .practice-step:nth-child(2)::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .site-button { transition: none; }
}
