/* =====================================================
   Rising Health — Premium Editorial Design System
   Deep navy. Warm off white. Book blue and gold accents, used sparingly.
   Editorial serif for headlines. General Sans for body.
   ===================================================== */

:root {
  /* Palette */
  --ink: #0E2A47;       /* deep navy from Back in Ten, replaces black */
  --ink-soft: #1B3D63;
  --ink-muted: #5B6778;
  --paper: #f7f3ec;
  --paper-warm: #ecdfd1;
  --paper-cool: #e9e6df;
  --line: rgba(14, 42, 71, 0.10);
  --line-strong: rgba(14, 42, 71, 0.20);
  --gold: #C9A34E;       /* Back in Ten gold: accents on dark sections */
  --gold-soft: #D9BA6E;
  --blue: #0B5FD0;       /* BODY cover blue: accents on light sections */
  --accent: var(--gold);
  --accent-ink: #0E2A47;

  /* Type */
  --serif: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Scale (fluid) */
  --step--1: clamp(0.85rem, 0.83rem + 0.1vw, 0.9rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1:  clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --step-2:  clamp(1.4rem, 1.2rem + 1vw, 1.75rem);
  --step-3:  clamp(1.8rem, 1.4rem + 2vw, 2.5rem);
  --step-4:  clamp(2.4rem, 1.8rem + 3vw, 3.6rem);
  --step-5:  clamp(3rem, 2rem + 5vw, 5.2rem);
  --step-6:  clamp(3.5rem, 2rem + 8vw, 7.5rem);

  /* Rhythm */
  --gap:  clamp(1rem, 2vw, 1.75rem);
  --gap-lg: clamp(1.5rem, 4vw, 3rem);
  --pad-section: clamp(4.5rem, 6vw + 3rem, 8.5rem);
  --pad-x: clamp(1.25rem, 4vw, 2.75rem);
  --radius: 4px;
  --radius-lg: 8px;

  /* Motion */
  --easing: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea, button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em 0; }
em { font-style: italic; }
::selection { background: var(--blue); color: #fff; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper); padding: .75rem 1rem;
  z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Type styles */
.display {
  font-family: var(--serif);
  font-size: var(--step-6);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0 0 0.6em 0;
  color: var(--ink);
}
.display-md {
  font-size: clamp(2.4rem, 1.8rem + 3.5vw, 4.4rem);
  line-height: 1.02;
}
.display em {
  font-style: italic;
  color: var(--ink);
  position: relative;
}
.h2 {
  font-family: var(--serif);
  font-size: var(--step-4);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 0.5em 0;
}
.h2 em { font-style: italic; }
.h2-light { color: var(--paper); }
.h3 {
  font-family: var(--serif);
  font-size: var(--step-2);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 0.5em 0;
}
.h3 em { font-style: italic; font-weight: 400; }
.h4 {
  font-family: var(--serif);
  font-size: var(--step-1);
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 .5rem 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0 0 1.5rem 0;
}
.eyebrow-light { color: rgba(247,243,236,0.65); }

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 40ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .3s var(--easing), background .3s var(--easing), color .3s var(--easing), border-color .3s var(--easing);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1.15rem 1.9rem; font-size: 1rem; }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--ink-soft); }
.btn-primary-light {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-primary-light:hover { background: var(--gold-soft); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: transparent; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  transition: gap .3s var(--easing), border-color .3s var(--easing);
}
.link-arrow::after { content: '→'; transition: transform .3s var(--easing); }
.link-arrow:hover { gap: 0.9rem; }
.link-arrow:hover::after { transform: translateX(3px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.85);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--easing), background .3s var(--easing);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.15rem;
  padding-bottom: 1.15rem;
  gap: 2rem;
}
.brand-mark { height: 26px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.site-nav a.btn.btn-primary { color: var(--paper); }
.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width .3s var(--easing);
}
.site-nav a:not(.btn):hover::after { width: 100%; }
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--easing), opacity .3s var(--easing);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem var(--pad-x) 2rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-nav a { font-family: var(--serif); font-size: 1.35rem; }

/* HERO */
.hero {
  padding-top: clamp(3rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.hero-copy .display { margin-top: 0.5rem; }
.hero-copy .lede { margin: 1.5rem 0 2rem; max-width: 44ch; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Typographic hero panel (replaces portrait) */
.hero-mark {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(2rem, 3vw, 3rem);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-mark::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(14, 42, 71, 0.9) 0%, rgba(14, 42, 71, 0.55) 22%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}
.hero-mark-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
}
.hero-mark-motto {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--step-3);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin: 0;
}
.hero-mark-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: var(--step-2);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.hero-mark-list li {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(247, 243, 236, 0.15);
}
.hero-mark-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hero-mark-foot {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.55);
  margin: 0;
}
.caption-name { font-family: var(--serif); font-size: 1.15rem; letter-spacing: -0.01em; }
.caption-role { opacity: 0.85; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.15rem; }

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0;
  flex-shrink: 0;
}
.trust-list {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--step-1);
  color: var(--ink);
}
.trust-list li { position: relative; }
.trust-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.25rem; top: 50%;
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Section shell */
.section {
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
}
.section-head {
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  text-align: center;
}
.section-head .eyebrow { margin: 0 0 1.25rem; }
.section-head .h2 { text-wrap: balance; }
.section-lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 1.25rem auto 0;
  max-width: 60ch;
}

/* WORK GRID */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2vw, 1.75rem);
}
.work-card {
  padding: clamp(1.75rem, 3vw, 2.75rem);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .5s var(--easing), background .5s var(--easing), border-color .5s var(--easing);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 320px;
}
.work-card:hover {
  background: #fff;
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.work-number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink-muted);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.work-card .h3 { margin: 0 0 0.5rem; }
.work-card p { color: var(--ink-soft); flex: 1; }
.work-card .link-arrow { margin-top: auto; align-self: flex-start; }

/* TEAM */
.team {
  background: var(--paper-cool);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.team-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.team-role {
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--easing), background .4s var(--easing);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.team-role:hover {
  background: #fff;
  transform: translateY(-3px);
}
.team-role-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 0 0 0.5rem 0;
}
.team-role .h3 {
  font-size: var(--step-2);
  margin-bottom: 0.5rem;
}
.team-role p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}
.team-note {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.team-note p { margin: 0; }

/* BODY IN 10 */
.body10 {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.body10::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 15% 0%, rgba(201, 163, 78, 0.10), transparent 60%),
    radial-gradient(500px 500px at 90% 100%, rgba(201, 163, 78, 0.06), transparent 60%);
  pointer-events: none;
}
.body10-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.body10-headline {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--step-3);
  line-height: 1.05;
  color: var(--accent);
  margin: 0.5rem 0 1.5rem;
  letter-spacing: -0.02em;
}
.body10-headline em { font-style: italic; }
.body10-lede {
  color: rgba(247, 243, 236, 0.75);
  font-size: var(--step-1);
  max-width: 60ch;
  margin: 0 auto 3rem;
  line-height: 1.5;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.pillar {
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(247, 243, 236, 0.2);
  border-radius: var(--radius);
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--step-1);
  letter-spacing: -0.01em;
  transition: background .3s var(--easing), border-color .3s var(--easing), color .3s var(--easing);
}
.pillar:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}
.body10-cta { margin-top: 1rem; }

/* FOUNDER & CEO */
.founder-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.founder-image {
  position: relative;
  aspect-ratio: 2/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-warm);
}
.founder-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.founder-image::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 35%;
  background: linear-gradient(to top, rgba(14, 42, 71, 0.75), transparent);
  pointer-events: none;
}
.founder-image figcaption { z-index: 1; }
.founder-image figcaption {
  position: absolute;
  left: 1.5rem; bottom: 1.5rem;
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  display: flex; flex-direction: column;
  font-size: 0.85rem;
}
.founder-copy .lede { margin: 1rem 0 1.25rem; max-width: 52ch; }
.founder-copy p { color: var(--ink-soft); max-width: 60ch; }
.founder-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.5rem;
}
.link-arrow-alt {
  border-bottom-color: var(--ink-muted);
  color: var(--ink-soft);
}
.link-arrow-alt:hover { border-bottom-color: var(--ink); color: var(--ink); }

/* BOOKS */
.books-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.book-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}
.book-cover {
  aspect-ratio: 2 / 3;
  border-radius: 2px;
  box-shadow:
    0 20px 40px -20px rgba(14, 42, 71,0.35),
    0 4px 10px -4px rgba(14, 42, 71,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  position: relative;
  overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform .5s var(--easing);
}
.book-card:hover .book-cover { transform: rotate(0deg) translateY(-4px); }
.book-cover-inner {
  display: flex; flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  color: var(--ink);
}
.book-cover-title {
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.book-cover-sub {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}
.book-cover-author {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(14, 42, 71,0.15);
}
.book-body {
  background: var(--accent);
}
.book-body .book-cover-inner { color: var(--ink); }
.book-back {
  background: linear-gradient(160deg, var(--paper) 0%, var(--paper-warm) 100%);
  color: var(--ink);
}
.book-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  margin: 0 0 0.85rem 0;
  font-weight: 500;
}
.book-copy .h3 { margin: 0 0 0.75rem 0; }
.book-copy p { color: var(--ink-soft); margin-bottom: 1.25rem; }

.book-cover-img { display: block; transition: transform .5s var(--easing); }
.book-cover-img img { display: block; width: 100%; height: auto; }
.book-flat img {
  border-radius: 2px;
  box-shadow: 0 20px 40px -20px rgba(14, 42, 71,0.35), 0 4px 10px -4px rgba(14, 42, 71,0.15);
}
.book-3d img { filter: drop-shadow(0 18px 24px rgba(14, 42, 71,0.22)); }
.book-card:hover .book-cover-img { transform: translateY(-4px); }

/* VOICES / testimonials */
.voices { background: var(--paper); }
.voices-placeholder {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--ink-muted);
  text-align: center;
  font-style: italic;
  font-family: var(--serif);
  font-size: var(--step-1);
  line-height: 1.45;
}

/* PRESS */
.press {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.press-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0 0 0.75rem 0;
}
.press-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--step-1);
  color: var(--ink-muted);
  margin: 0;
  max-width: 60ch;
  margin-left: auto; margin-right: auto;
}
.press-logos {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}
.press-logos img {
  width: 100%;
  max-width: 1040px;
  height: auto;
  opacity: 0.82;
  transition: opacity .4s var(--easing);
}
.press-logos img:hover { opacity: 1; }

/* CHALLENGE */
.challenge {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 5vw, 5rem);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.challenge-form {
  display: grid;
  gap: 0.85rem;
}
.challenge-form input {
  padding: 1rem 1.25rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
}
.challenge-form input:focus {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-color: var(--ink);
}
.form-note {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin: 0.25rem 0 0;
  line-height: 1.5;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact-copy .lede { margin: 1rem 0 2rem; max-width: 40ch; }
.contact-meta {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  display: flex; flex-direction: column;
  gap: 1rem;
}
.contact-meta li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  align-items: baseline;
  gap: 1rem;
}
.contact-meta span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
}
.contact-meta a { border-bottom: 1px solid transparent; transition: border-color .3s var(--easing); }
.contact-meta a:hover { border-bottom-color: var(--ink); }

.contact-form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  transition: border-color .3s var(--easing), background .3s var(--easing);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='none' stroke='%230a0a0a' stroke-width='1.4' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* FOOTER */
.site-footer {
  background: var(--ink);
  color: rgba(247,243,236,0.7);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247,243,236,0.15);
}
.footer-brand img { height: 30px; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 34ch; font-size: 0.92rem; line-height: 1.55; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(247,243,236,0.85);
  font-weight: 500;
  margin: 0 0 1rem 0;
}
.footer-cols ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-cols a { font-size: 0.9rem; transition: color .3s var(--easing); }
.footer-cols a:hover { color: var(--paper); }
.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 2rem;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}
.footer-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  margin: 0;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--easing), transform .9s var(--easing); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mark { max-width: 500px; width: 100%; margin: 0 auto 2.5rem; order: -1; aspect-ratio: 4 / 4.4; }
  .founder-grid, .contact-grid, .challenge-grid { grid-template-columns: 1fr; }
  .team-roles { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .book-card { grid-template-columns: 180px 1fr; }
}
@media (max-width: 720px) {
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
  .site-header.is-open .mobile-nav { display: flex; }
  .site-header.is-open .menu-toggle span:first-child { transform: rotate(45deg) translate(4px, 4px); }
  .site-header.is-open .menu-toggle span:last-child { transform: rotate(-45deg) translate(4px, -4px); }
  .work-grid { grid-template-columns: 1fr; }
  .team-roles { grid-template-columns: 1fr; }
  .books-grid { grid-template-columns: 1fr; }
  .book-card { grid-template-columns: 140px 1fr; gap: 1.25rem; }
  .field-row { grid-template-columns: 1fr; }
  .trust-list { gap: 1.5rem; }
  .trust-list li:not(:last-child)::after { display: none; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .credentials { grid-template-columns: 1fr; padding: 1.25rem 0; gap: 1rem; }
  .credentials li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: baseline; }
  .credentials strong { font-size: var(--step-2); }
  .display { font-size: clamp(3rem, 12vw, 5rem); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   Hero slideshow: full width, one slide per service
   ===================================================== */
.hero-slider {
  position: relative;
  height: clamp(620px, calc(100svh - 80px), 900px);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.hs-track { position: absolute; inset: 0; }
.hs-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.9s var(--easing), visibility 0s linear 0.9s;
}
.hs-slide.is-active { opacity: 1; visibility: visible; transition: opacity 0.9s var(--easing); z-index: 1; }

/* Photo slides */
.hs-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transform: scale(1.08);
  transition: transform 7s cubic-bezier(0.2, 0.6, 0.3, 1);
}
.hs-slide.is-active .hs-img { transform: scale(1); }
.hs-photo::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 42, 71, 0.94) 0%, rgba(14, 42, 71, 0.78) 34%, rgba(14, 42, 71, 0.25) 62%, rgba(14, 42, 71, 0.05) 100%),
    linear-gradient(0deg, rgba(14, 42, 71, 0.7) 0%, transparent 30%);
}
.hs-sessions .hs-img { object-position: 70% 55%; }
.hs-film .hs-img { object-position: 60% 50%; }
.hs-corporate .hs-img { object-position: 50% 58%; }
.hs-sport .hs-img { object-position: 55% 45%; filter: saturate(0.8) brightness(0.88) contrast(1.05); }
.hs-tour .hs-img { object-position: 55% 40%; }

/* Content */
.hs-content { position: relative; max-width: 1360px; }
.hs-content > * { max-width: 36rem; }
.hs-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.25rem;
}
.hs-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hs-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 1.6rem + 4vw, 5.25rem);
  line-height: 0.98; letter-spacing: -0.025em;
  margin: 0 0 1.5rem; color: var(--paper);
}
.hs-title em { color: var(--gold); }
.hs-text {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem); line-height: 1.55;
  color: rgba(247, 243, 236, 0.86); margin: 0 0 2.25rem;
}
.hs-text strong { color: var(--paper); font-weight: 500; }
.hs-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-ghost-light {
  background: transparent; color: var(--paper);
  border: 1px solid rgba(247, 243, 236, 0.45);
}
.btn-ghost-light:hover { border-color: var(--paper); background: rgba(247, 243, 236, 0.08); }

/* Text entrance: snappy stagger */
.hs-slide .hs-content > * { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--easing), transform .6s var(--easing); }
.hs-slide.is-active .hs-content > * { opacity: 1; transform: none; }
.hs-slide.is-active .hs-content > :nth-child(1) { transition-delay: .15s; }
.hs-slide.is-active .hs-content > :nth-child(2) { transition-delay: .25s; }
.hs-slide.is-active .hs-content > :nth-child(3) { transition-delay: .35s; }
.hs-slide.is-active .hs-content > :nth-child(4) { transition-delay: .45s; }

/* Books slide */
.hs-books {
  background:
    radial-gradient(900px 700px at 78% 50%, rgba(11, 95, 208, 0.55), transparent 65%),
    radial-gradient(600px 500px at 10% 100%, rgba(201, 163, 78, 0.12), transparent 70%),
    linear-gradient(135deg, #0E2A47 0%, #12365C 100%);
}
.hs-books-grid {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: clamp(2rem, 5vw, 5rem); height: 100%;
}
.hs-books-art {
  position: relative; height: 78%; max-height: 640px;
  display: flex; align-items: center; justify-content: center;
}
.hs-book { position: absolute; height: auto; transition: transform 1.1s var(--easing), opacity .9s var(--easing); }
.hs-book-body {
  width: 44%; left: 3%; top: 50%;
  transform: translateY(-50%) rotate(-7deg) translateX(-24px); opacity: 0;
  border-radius: 3px;
  box-shadow: 0 40px 70px -25px rgba(0, 0, 0, 0.6), 0 8px 20px -8px rgba(0, 0, 0, 0.35);
}
.hs-book-back {
  width: 50%; right: 3%; top: 50%;
  transform: translateY(-46%) rotate(5deg) translateX(24px); opacity: 0;
  filter: drop-shadow(0 40px 40px rgba(0, 0, 0, 0.5));
}
.hs-books.is-active .hs-book-body { transform: translateY(-50%) rotate(-7deg); opacity: 1; transition-delay: .2s; }
.hs-books.is-active .hs-book-back { transform: translateY(-46%) rotate(5deg); opacity: 1; transition-delay: .35s; }

/* Controls */
.hs-controls {
  position: absolute; left: 0; right: 0; bottom: clamp(1.5rem, 3vw, 2.5rem); z-index: 5;
  display: flex; align-items: center; gap: 1.5rem;
}
.hs-count { margin: 0; font-size: 0.8rem; letter-spacing: 0.18em; color: rgba(247, 243, 236, 0.6); font-variant-numeric: tabular-nums; }
.hs-current { color: var(--paper); }
.hs-dots { display: flex; gap: 0.5rem; flex: 1; max-width: 360px; }
.hs-dots button {
  flex: 1; height: 3px; padding: 0; border: 0; border-radius: 2px; cursor: pointer;
  background: rgba(247, 243, 236, 0.25); position: relative; overflow: hidden;
}
.hs-dots button::after {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}
.hs-dots button.is-done::after { transform: scaleX(1); }
.hs-dots button[aria-selected="true"]::after { animation: hsProgress var(--hs-dur, 6s) linear forwards; }
.hero-slider.is-paused .hs-dots button[aria-selected="true"]::after { animation-play-state: paused; }
@keyframes hsProgress { to { transform: scaleX(1); } }
.hs-arrows { margin-left: auto; display: flex; gap: 0.5rem; }
.hs-arrows button {
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: transparent; color: var(--paper); font-size: 1.1rem;
  border: 1px solid rgba(247, 243, 236, 0.35);
  transition: background .25s var(--easing), border-color .25s var(--easing), color .25s var(--easing);
}
.hs-arrows button:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.hs-dots button:focus-visible, .hs-arrows button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 900px) {
  .hero-slider { height: clamp(640px, calc(100svh - 72px), 820px); }
  .hs-slide { align-items: flex-end; padding-bottom: 6.5rem; }
  .hs-photo::before {
    background: linear-gradient(0deg, rgba(14, 42, 71, 0.97) 0%, rgba(14, 42, 71, 0.85) 38%, rgba(14, 42, 71, 0.2) 70%, rgba(14, 42, 71, 0.1) 100%);
  }
  .hs-sessions .hs-img { object-position: 42% 75%; }
  .hs-film .hs-img { object-position: 55% 50%; }
  .hs-corporate .hs-img { object-position: 50% 0%; }
  .hs-sport .hs-img { object-position: 50% 50%; }
  .hs-tour .hs-img { object-position: 50% 45%; }
  .hs-title { font-size: clamp(2.3rem, 1.4rem + 5vw, 3.4rem); margin-bottom: 1rem; }
  .hs-text { margin-bottom: 1.5rem; }
  .hs-cta .btn-lg { padding: 0.95rem 1.4rem; font-size: 0.95rem; }
  .hs-books-grid { grid-template-columns: 1fr; grid-template-rows: 1fr auto; gap: 1rem; }
  .hs-books-art { order: -1; height: 100%; min-height: 220px; max-height: none; }
  .hs-book-body { width: 36%; left: 11%; }
  .hs-book-back { width: 40%; right: 9%; }
  .hs-arrows { display: none; }
  .hs-dots { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hs-slide, .hs-img, .hs-book, .hs-slide .hs-content > * { transition: none !important; }
  .hs-dots button[aria-selected="true"]::after { animation: none; transform: scaleX(1); }
}

/* Body in 10 note */
.body10-note {
  max-width: 62ch; margin: 2.5rem auto 1.75rem;
  color: rgba(247, 243, 236, 0.82);
}
.body10-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
@media (max-width: 460px) {
  .contact-meta li { grid-template-columns: 1fr; gap: 0.25rem; }
  .hs-cta { gap: 0.6rem; }
}

/* =====================================================
   Service pages
   ===================================================== */
.site-nav a.is-current { color: var(--ink); border-bottom: 1px solid var(--gold); }
.page-hero {
  position: relative; isolation: isolate;
  min-height: clamp(460px, 62vh, 620px);
  display: flex; align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ink); color: var(--paper); overflow: hidden;
}
.page-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 42, 71, 0.95) 0%, rgba(14, 42, 71, 0.8) 38%, rgba(14, 42, 71, 0.3) 66%, rgba(14, 42, 71, 0.08) 100%),
    linear-gradient(0deg, rgba(14, 42, 71, 0.75) 0%, transparent 35%);
}
.page-hero-inner > * { max-width: 40rem; }
.page-hero .hs-title { font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4.4rem); }
.section-alt { background: var(--paper-cool); }
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.offer-card {
  background: #fbf9f5; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 2.5vw, 2rem);
}
.offer-num { font-family: var(--serif); font-style: italic; color: var(--ink-muted); margin: 0 0 0.75rem; }
.offer-card .h3 { margin: 0 0 0.6rem; }
.offer-card p { color: var(--ink-soft); margin: 0; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2.5rem); }
.step { border-top: 1px solid var(--line-strong); padding-top: 1.25rem; }
.step-num { font-family: var(--serif); font-style: italic; color: var(--ink-muted); margin: 0 0 0.5rem; }
.step-title { font-family: var(--sans); font-size: 1.05rem; font-weight: 500; margin: 0 0 0.5rem; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }
.fit-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.fit-list { list-style: none; margin: 1.75rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.fit-list li { padding-left: 1.75rem; position: relative; color: var(--ink-soft); }
.fit-list li::before {
  content: ''; position: absolute; left: 0; top: 0.6rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue);
}
.fit-card {
  background: var(--paper-warm); border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.fit-card p { color: var(--ink-soft); }
.cta-band { background: var(--ink); color: var(--paper); text-align: center; }
.cta-inner p { color: rgba(247, 243, 236, 0.8); max-width: 48ch; margin: 1rem auto 2rem; }
.cta-inner .hs-cta { justify-content: center; }
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .fit-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .offer-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .page-hero::before {
    background: linear-gradient(0deg, rgba(14, 42, 71, 0.96) 0%, rgba(14, 42, 71, 0.85) 45%, rgba(14, 42, 71, 0.35) 80%, rgba(14, 42, 71, 0.15) 100%);
  }
}

/* Legal pages */
.legal-inner { max-width: 760px; }
.legal-inner .lede { margin: 1rem 0 2.5rem; }
.legal-inner .h3 { margin: 2.25rem 0 0.75rem; }
.legal-inner p { color: var(--ink-soft); }
.legal-inner a { color: var(--blue); }
.legal-note { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--ink-muted); }

/* FAQ */
.faq-wrap { max-width: 860px; }
.faq {
  border-top: 1px solid var(--line-strong);
  padding: 1.25rem 0;
}
.faq:last-of-type { border-bottom: 1px solid var(--line-strong); }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--serif); font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  display: flex; align-items: baseline; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; margin-left: auto; color: var(--blue); font-family: var(--sans); font-size: 1.25rem;
}
.faq[open] summary::after { content: '–'; }
.faq p { color: var(--ink-soft); margin: 0.9rem 0 0; max-width: 68ch; }
.work-sub {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted); margin: 0 0 0.85rem;
}

/* Team call to action */
.team-cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 1.5rem; text-align: center;
}
.team-cta p { margin: 0; color: var(--ink-soft); }
