/* =========================================================
   Navion — Modern Apple-style design system
   Shared across all pages
   ========================================================= */

:root {
  --bg: #fbfbfd;
  --bg-dark: #000;
  --surface: #ffffff;
  --surface-soft: #f5f5f7;
  --text: #1d1d1f;
  --text-soft: #424245;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #2997ff;
  --accent-hover: #0077ed;
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.18);
  --radius: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1280px;
  --font:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 70px; /* anchors clear the sticky nav */
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  letter-spacing: -0.011em;
  font-size: 17px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  letter-spacing: -0.025em;
  font-weight: 600;
  text-wrap: balance; /* avoid orphan words on headings */
}
p { text-wrap: pretty; } /* better line-break distribution in paragraphs */

/* Selection */
::selection { background: rgba(41, 151, 255, 0.18); color: var(--text); }

/* =================== Sticky mobile CTA =================== */
.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 100;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease;
}
.sticky-cta a:active { transform: scale(0.97); }
.sticky-cta .cta-call {
  background: rgba(255, 255, 255, 0.95);
  color: #1d1d1f;
  flex: 0 0 56px;
  padding: 14px;
}
.sticky-cta .cta-reserve {
  background: var(--accent);
  color: #fff;
}
/* Visible uniquement sur mobile et tablette portrait */
@media (min-width: 861px) {
  .sticky-cta { display: none !important; }
}
/* Cache sur la page de réservation elle-même */
body.is-reserver .sticky-cta { display: none !important; }

/* Skip link (a11y WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--text);
  color: #fff;
  padding: 10px 18px;
  z-index: 9999;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 0 8px 0;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* =================== Helpers utilitaires (réduisent CSS inline) =================== */
.text-center { text-align: center; }
.bg-white { background: #fff !important; }
.bg-soft { background: var(--surface-soft) !important; }
.eyebrow-accent { color: var(--accent); }
.eyebrow-block { display: block; margin-bottom: 18px; }
.section-pt-large { padding-top: 140px; }

/* Title styles */
.h2-large {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 22px;
}

/* Centered narrow text section */
.lead-prose {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
}

/* Tile body padding variants */
.tile-body-comfort { padding: 36px 28px; }
.tile-body-spacious { padding: 40px 30px; }
.tile-body-center { text-align: center; padding: 50px 24px; }

/* Tile decorative number */
.tile-num {
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
}

/* Tile heading sizes */
.tile-h3-md { font-size: 22px; }
.tile-h3-sm { font-size: 18px; }

/* Tile category label */
.tile-cat {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Tile body smaller text */
.tile-body p.sm { font-size: 15px; line-height: 1.55; }
.tile-body p.xs { font-size: 14px; }

/* Footer legal small print */
.footer-legal-fineprint {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

/* Improved focus visibility for keyboard nav */
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* =================== NAV =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 247, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-logo img { height: 28px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.85);
}
.nav-links a {
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}
.nav-links a:hover { opacity: 1; color: var(--text); }
.nav-links a.active { opacity: 1; color: var(--text); font-weight: 500; }
.nav-cta {
  background: #1d1d1f;
  color: #fff !important;
  padding: 7px 16px;
  border-radius: 980px;
  font-weight: 500;
  transition: transform 0.2s ease, background 0.2s ease;
  opacity: 1 !important;
}
.nav-cta:hover { background: #000; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: rgba(245, 245, 247, 0.96);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 18px;
    align-items: flex-start;
    font-size: 17px;
  }
}

/* =================== HERO (cinematic full-bleed) =================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
/* Variante <img> (LCP-optimized) — alternative à .hero-bg en background-image */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 22px 80px;
  max-width: 980px;
}
.eyebrow {
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 500;
  opacity: 0.95;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 22px;
  color: inherit;
}
.hero-sub {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.4;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 36px;
  opacity: 0.95;
}
.hero-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Compact hero (sub-pages) */
.hero-compact { min-height: 60vh; }
.hero-compact .hero-content { padding: 100px 22px 70px; }
.hero-compact .hero-title { font-size: clamp(40px, 5.5vw, 68px); }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: 0;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-dark { background: #1d1d1f; color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.28); }
.btn-link {
  color: var(--accent);
  font-weight: 500;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-link:hover { text-decoration: underline; }
.btn-link::after { content: "›"; font-size: 22px; line-height: 1; transform: translateY(-1px); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  opacity: 0.75;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: bounce 2.6s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* =================== SECTION =================== */
.block { padding: 100px 22px; }
.block-tight { padding: 70px 22px; }
.container { max-width: var(--container); margin: 0 auto; }
.container-narrow { max-width: 880px; margin: 0 auto; }

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}
.section-head .eyebrow { color: var(--accent); }
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 18px;
}
.section-head p {
  font-size: clamp(18px, 1.6vw, 21px);
  color: var(--text-soft);
  margin: 0;
}

/* =================== DARK FEATURE =================== */
.feature-dark {
  background: #000;
  color: #fff;
  padding: 0;
}
.feature-dark .scene {
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.feature-dark .scene-inner {
  max-width: 960px;
  padding: 120px 22px;
}
.feature-dark h2 {
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 18px;
}
.feature-dark p {
  font-size: clamp(18px, 1.6vw, 22px);
  max-width: 720px;
  margin: 0 auto 28px;
  opacity: 0.92;
}

/* =================== BENTO (3-up cards) =================== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tile {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tile-media {
  height: 320px;
  background-size: cover;
  background-position: center;
}
.tile-body {
  padding: 30px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tile-body h3 {
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}
.tile-body p {
  color: var(--text-soft);
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .bento { grid-template-columns: 1fr; }
  .tile-media { height: 260px; }
}

/* 2-up variant */
.bento-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .bento-2 { grid-template-columns: 1fr; } }

/* =================== OFFERS / PRICING =================== */
.offers-section { background: var(--surface-soft); }
.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.offer-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-media {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.offer-body {
  padding: 32px 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.offer-name { font-size: 26px; letter-spacing: -0.02em; font-weight: 600; margin: 0; }
.offer-price { font-size: 17px; color: var(--accent); font-weight: 500; margin: 0; }
.offer-desc { color: var(--text-soft); font-size: 16px; line-height: 1.55; margin: 0; flex: 1; }
.offer-meta { list-style: none; padding: 0; margin: 6px 0 0; font-size: 14px; color: var(--muted); }
.offer-meta li { padding: 3px 0; }
.offer-cta { margin-top: 16px; align-self: flex-start; }
.offer-card.featured { outline: 2px solid var(--accent); outline-offset: -2px; }
.featured-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 6px 12px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}
@media (max-width: 980px) { .offers { grid-template-columns: 1fr; } }

/* =================== EDITORIAL split =================== */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.editorial-text h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 22px;
}
.editorial-text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 16px;
}
.editorial-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.editorial.reverse .editorial-image { order: 2; }
.editorial.reverse .editorial-text { order: 1; }
@media (max-width: 980px) {
  .editorial { grid-template-columns: 1fr; gap: 32px; }
  .editorial-image { aspect-ratio: 4 / 3; }
  .editorial.reverse .editorial-image { order: 0; }
  .editorial.reverse .editorial-text { order: 0; }
}

/* =================== TESTIMONIALS (dark) =================== */
.testimonials-section { background: #000; color: #fff; }
.testimonials-section .section-head h2 { color: #fff; }
.testimonials-section .section-head p { color: rgba(255, 255, 255, 0.78); }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(20px);
}
.stars { color: #f5b301; font-size: 16px; letter-spacing: 0.1em; margin-bottom: 14px; }
.testimonial p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 22px;
}
.testimonial-author { font-size: 14px; color: rgba(255, 255, 255, 0.65); letter-spacing: 0.01em; }
@media (max-width: 980px) { .testimonials { grid-template-columns: 1fr; } }

/* =================== CLOSING CTA =================== */
.closing {
  text-align: center;
  padding: 140px 22px;
  background:
    radial-gradient(circle at 50% 30%, rgba(41, 151, 255, 0.12), transparent 60%),
    var(--surface-soft);
}
.closing h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  max-width: 880px;
  margin: 0 auto 22px;
}
.closing p {
  font-size: 19px;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 32px;
}
.closing .hero-actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* =================== FAQ =================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
}

/* =================== FOOTER =================== */
footer.site-footer {
  background: #f5f5f7;
  color: var(--muted);
  font-size: 13px;
  padding: 44px 22px 32px;
  border-top: 1px solid var(--line);
}
.foot-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.foot-grid h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
}
.foot-grid p, .foot-grid a { color: var(--muted); line-height: 1.6; }
.foot-grid a:hover { color: var(--text); }
.foot-bottom {
  max-width: var(--container);
  margin: 32px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; } }

/* =================== Reveal animation =================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* =================== Marquee =================== */
.marquee {
  overflow: hidden;
  padding: 80px 0;
  background: #000;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 18px;
  animation: scroll 60s linear infinite;
  width: max-content;
}
.marquee-track img { height: 280px; width: auto; border-radius: 18px; object-fit: cover; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 980px) { .marquee-track img { height: 200px; } }

/* =================== Forms =================== */
.form-card {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}
.form-card .field { margin-bottom: 18px; }
.form-card label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  color: var(--text);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(41, 151, 255, 0.12);
}
.form-card textarea { min-height: 140px; resize: vertical; }

/* =================== Gallery grid =================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); opacity: 0.92; }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* =================== Prose (legal pages, journal) =================== */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
}
.prose h1, .prose h2, .prose h3 {
  color: var(--text);
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  line-height: 1.15;
}
.prose h1 { font-size: clamp(34px, 4vw, 48px); margin-top: 0; }
.prose h2 { font-size: clamp(26px, 3vw, 32px); }
.prose h3 { font-size: 22px; }
.prose p { margin: 0 0 1.1em; }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(41, 151, 255, 0.3); }
.prose a:hover { border-bottom-color: var(--accent); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: 0.4em; }
.prose strong { color: var(--text); font-weight: 600; }

/* =================== Editorial paragraph helper =================== */
.lede {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.015em;
  max-width: 720px;
  margin: 0 auto 32px;
}

/* =================== Better section-head paragraph =================== */
.section-head p {
  text-wrap: balance;
  line-height: 1.5;
}

/* =================== Smoother type on hero =================== */
.hero-sub { text-wrap: pretty; }

/* =================== Small caps eyebrow =================== */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
}

/* =================== Better mobile typography =================== */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .block { padding: 70px 22px; }
  .closing { padding: 90px 22px; }
  .section-head { margin-bottom: 44px; }
  .editorial-text p { font-size: 17px; }
  .tile-body { padding: 26px 24px 28px; }
  .offer-body { padding: 26px 24px 28px; }
  .feature-dark .scene-inner { padding: 90px 22px; }
  .closing h2, .feature-dark h2, .hero-title { letter-spacing: -0.025em; }
}

/* =================== Reading width for long-form text =================== */
.read-narrow { max-width: 680px; margin-left: auto; margin-right: auto; }

/* =================== Better contrast for inline links in prose =================== */
.section-text a, .editorial-text a, .tile-body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(41, 151, 255, 0.25);
  transition: border-color 0.2s ease;
}
.section-text a:hover, .editorial-text a:hover, .tile-body a:hover {
  border-bottom-color: var(--accent);
}

/* =================== Stats =================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
.stat-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
