@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F8F5F0;
  --white: #FFFFFF;
  --dark: #1A2332;
  --navy: #0F1923;
  --ocean: #2456A4;
  --ocean-hover: #1d4a8e;
  --sky: #4A8FD4;
  --sand: #D4956A;
  --warm: #E8C98A;
  --muted: #6B7A8D;
  --muted-light: #A0ABB5;
  --border: #E0D9D0;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
  --max-w: 1240px;
  --pad: clamp(24px, 5vw, 80px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--ocean); color: white; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--dark); color: white; }
.section--navy  { background: var(--navy); color: white; }
.section--ocean { background: var(--ocean); color: white; }

/* ─── TYPE ─── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

h2 { font-size: clamp(36px, 4vw, 60px); }
h3 { font-size: clamp(22px, 2.5vw, 34px); }
h4 { font-size: 20px; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
}

.section--dark .eyebrow,
.section--navy .eyebrow { color: var(--warm); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
}

.btn--primary {
  background: var(--ocean);
  color: white;
  padding: 15px 30px;
}

.btn--primary:hover {
  background: var(--ocean-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(36, 86, 164, 0.35);
}

.btn--ghost {
  background: transparent;
  color: white;
  padding: 14px 29px;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--dark);
  padding: 14px 29px;
  border: 1.5px solid var(--border);
}

.btn--ghost-dark:hover {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

.btn--white {
  background: white;
  color: var(--ocean);
  padding: 15px 30px;
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(15, 25, 35, 0.65) 0%, transparent 100%);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.nav__logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.nav__logo span {
  font-weight: 300;
  font-style: italic;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--sand);
  transition: right 0.3s ease;
}

.nav__link:hover { color: white; }
.nav__link:hover::after, .nav__link.active::after { right: 0; }
.nav__link.active { color: white; }

.nav__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  background: var(--ocean);
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.25s;
}

.nav__cta:hover {
  background: var(--ocean-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(36,86,164,0.4);
}

.nav.scrolled {
  background: white !important;
  box-shadow: 0 1px 0 var(--border);
}

.nav.scrolled .nav__logo { color: var(--dark); }
.nav.scrolled .nav__link { color: var(--muted); }
.nav.scrolled .nav__link:hover { color: var(--dark); }
.nav.scrolled .nav__link.active { color: var(--dark); }

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: white;
  transition: all 0.3s;
}

.nav.scrolled .nav__hamburger span { background: var(--dark); }

/* Mobile nav open */
.nav.open .nav__links {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: calc(100vh - var(--nav-h));
  background: var(--dark);
  padding: 48px var(--pad);
  gap: 40px;
  align-items: flex-start;
  overflow-y: auto;
}

.nav.open .nav__link {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: white;
  letter-spacing: 0;
}

.nav.open .nav__cta {
  font-size: 14px;
  padding: 12px 24px;
}

/* ─── TICKER ─── */
.ticker {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
}

.ticker__item {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  padding: 0 40px;
}

.ticker__item--accent {
  color: var(--warm);
  font-weight: 500;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── HOME HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.hero__left {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--pad) 80px max(var(--pad), calc((100vw - var(--max-w)) / 2 + var(--pad)));
}

.hero__eyebrow { margin-bottom: 24px; }

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(50px, 5.5vw, 84px);
  font-weight: 300;
  line-height: 1.04;
  color: white;
  margin-bottom: 28px;
}

.hero__headline em {
  font-style: italic;
  color: var(--warm);
}

.hero__sub {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.hero__trust::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

.hero__right {
  position: relative;
  overflow: hidden;
}

.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}

.hero__right:hover img { transform: scale(1.03); }

.hero__right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,35,50,0.4) 0%, transparent 40%);
  pointer-events: none;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--ocean);
  padding: 28px 0;
}

.stats-bar__inner {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 6vw, 100px);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: white;
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  display: block;
}

/* ─── PAIN SECTION ─── */
.pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pain__header { margin-bottom: 0; }

.pain__headline {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 20px;
}

.pain__lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}

.pain__resolution {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.pain__resolution strong { color: var(--dark); }

.pain__quotes {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pain__quote {
  padding: 28px 32px;
  border-left: 3px solid var(--border);
  background: white;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.55;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}

.pain__quote:hover {
  border-color: var(--ocean);
  background: #f0f5ff;
}

/* ─── NICK INTRO ─── */
.nick-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.nick-intro__image-wrap {
  position: relative;
}

.nick-intro__image-wrap img {
  width: 100%;
  border-radius: 3px;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.nick-intro__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--ocean);
  color: white;
  padding: 22px 28px;
  max-width: 200px;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.4;
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(36,86,164,0.3);
}

.nick-intro__text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

.nick-intro__text p:first-of-type {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
}

.nick-intro__text strong { color: var(--dark); }

.nick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.nick-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
  transition: all 0.25s;
}

.nick-tag:hover {
  border-color: var(--ocean);
  color: var(--ocean);
  background: rgba(36,86,164,0.05);
}

/* ─── PROMISE ─── */
.promise {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
}

.promise__big-num {
  font-family: var(--serif);
  font-size: clamp(100px, 15vw, 200px);
  font-weight: 300;
  color: rgba(232, 201, 138, 0.2);
  line-height: 1;
  display: block;
  margin-bottom: -40px;
  pointer-events: none;
}

.promise__headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
  position: relative;
}

.promise__headline em { color: var(--warm); font-style: italic; }

.promise__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.promise__pillars {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.promise__pillar {
  text-align: center;
}

.promise__pillar-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

.promise__pillar-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── PILLARS ─── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 64px;
}

.pillar {
  background: var(--cream);
  padding: 52px 44px 48px;
  transition: background 0.35s ease, color 0.35s ease;
}

.pillar:hover { background: var(--ocean); }
.pillar:hover .pillar__num { color: rgba(255,255,255,0.15); }
.pillar:hover .pillar__title { color: white; }
.pillar:hover .pillar__desc { color: rgba(255,255,255,0.7); }
.pillar:hover .pillar__items li { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.75); }
.pillar:hover .pillar__items li::before { color: var(--warm); }

.pillar__num {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.35s;
}

.pillar__title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 14px;
  transition: color 0.35s;
}

.pillar__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  transition: color 0.35s;
}

.pillar__items {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.pillar__items li {
  font-size: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: all 0.35s;
}

.pillar__items li::before {
  content: '→';
  color: var(--ocean);
  flex-shrink: 0;
  transition: color 0.35s;
}

/* ─── TESTIMONIALS ─── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testimonial {
  padding: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.testimonial:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.testimonial__quote {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--dark);
  flex: 1;
}

.testimonial__quote::before {
  content: '"';
  font-size: 60px;
  font-family: var(--serif);
  color: var(--warm);
  line-height: 1;
  display: block;
  margin-bottom: -12px;
}

.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial__role {
  font-size: 13px;
  color: var(--muted);
}

/* ─── GUARANTEE ─── */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.guarantee__badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--warm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 36px;
  padding: 16px;
}

.guarantee__badge-text {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.guarantee__title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 50px);
  margin-bottom: 20px;
}

.guarantee__text {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.guarantee__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}

.guarantee__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--dark);
  line-height: 1.5;
}

.guarantee__list li::before {
  content: '✓';
  color: var(--ocean);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 14px;
}

.guarantee__image {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.guarantee__image img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.guarantee__image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(26,35,50,0.85), transparent);
  color: white;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
}

/* ─── CTA BAND ─── */
.cta-band {
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(40px, 5vw, 72px);
  color: white;
  margin-bottom: 16px;
}

.cta-band h2 em { color: var(--warm); font-style: italic; }

.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-band__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer__brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
}

.footer__brand span {
  font-style: italic;
  font-weight: 300;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 28px;
}

.footer__sig {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--warm);
}

.footer__col h5 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.25s;
}

.footer__links a:hover { color: white; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.25s;
  letter-spacing: 0.04em;
}

.footer__social a:hover { color: white; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  padding-top: var(--nav-h);
}

.page-hero__left {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px var(--pad) 80px max(var(--pad), calc((100vw - var(--max-w)) / 2 + var(--pad)));
}

.page-hero__label { margin-bottom: 20px; }

.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300;
  color: white;
  line-height: 1.0;
  margin-bottom: 24px;
}

.page-hero__title em { font-style: italic; color: var(--warm); }

.page-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 400px;
  line-height: 1.75;
}

.page-hero__right {
  position: relative;
  overflow: hidden;
}

.page-hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero__right-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,35,50,0.3) 0%, transparent 50%);
  pointer-events: none;
}

/* ─── ABOUT — STORY ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.about-sticky__img {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.about-sticky__img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.about-sticky__caption {
  font-size: 13px;
  color: var(--muted-light);
  font-style: italic;
}

.about-text p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 24px;
}

.about-text p.lead {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.5;
}

.about-text strong { color: var(--dark); font-weight: 600; }

.about-pullquote {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--dark);
  border-left: 3px solid var(--sand);
  padding: 4px 0 4px 28px;
  margin: 40px 0;
  line-height: 1.5;
}

/* ─── LIFE GRID ─── */
.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.life-grid__item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.life-grid__item--wide { grid-column: span 2; }

.life-grid__item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.life-grid__item--wide img { height: 420px; }

.life-grid__item:hover img { transform: scale(1.04); }

.life-grid__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(to top, rgba(15,25,35,0.85) 0%, transparent 100%);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── PHILOSOPHY STRIP ─── */
.philosophy {
  padding: clamp(64px, 8vw, 100px) 0;
}

.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.philosophy__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: white;
  line-height: 1.25;
}

.philosophy__quote em { color: var(--warm); font-style: italic; }

.philosophy__body p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ─── PROGRAM PAGE ─── */
.program-overview {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.program-overview p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.program-overview p:first-of-type {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--dark);
}

.program-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.program-stat {
  padding: 32px 24px;
  background: var(--cream);
  border-radius: 3px;
  text-align: center;
}

.program-stat__n {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--ocean);
  line-height: 1;
  display: block;
}

.program-stat__l {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* Process steps */
.process {
  margin-top: 64px;
}

.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}

.process__step:first-child { border-top: 1px solid var(--border); }

.process__n {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  padding-top: 6px;
}

.process__title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 10px;
}

.process__text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
}

/* What's included */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 56px;
}

.included__item {
  background: var(--white);
  padding: 40px 36px;
}

.section--cream .included__item { background: var(--cream); }

.included__icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.included__title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
}

.included__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── BOOK PAGE ─── */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.book-info__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.book-what {
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}

.book-what h3 {
  font-size: 22px;
  margin-bottom: 24px;
}

.book-what__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.book-what__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.book-what__icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.book-what__item-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.book-what__item-text span {
  font-size: 14px;
  color: var(--muted);
}

.calendly-frame {
  background: var(--cream);
  border-radius: 6px;
  padding: 52px 44px;
  text-align: center;
  border: 1px solid var(--border);
}

.calendly-frame__icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.calendly-frame h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.calendly-frame p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.65;
}

.calendly-placeholder {
  background: white;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 32px;
  font-size: 14px;
  color: var(--muted-light);
  font-style: italic;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.fade-up.d5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__right { height: 55vw; min-height: 300px; }
  .hero__left { padding: 72px var(--pad); }

  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero__right { height: 45vw; min-height: 260px; }

  .pain__grid,
  .nick-intro,
  .guarantee-grid,
  .about-grid,
  .program-overview,
  .book-layout { grid-template-columns: 1fr; gap: 48px; }

  .pillars-grid,
  .included-grid { grid-template-columns: 1fr; }

  .testimonials__grid { grid-template-columns: 1fr; }

  .life-grid { grid-template-columns: 1fr 1fr; }
  .life-grid__item--wide { grid-column: span 1; }
  .life-grid__item img { height: 260px; }
  .life-grid__item--wide img { height: 260px; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .philosophy__inner { grid-template-columns: 1fr; gap: 32px; }

  .nick-intro__badge { position: static; margin-top: 16px; max-width: 100%; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .stats-bar__inner { gap: 32px; }
  .program-stats { grid-template-columns: 1fr 1fr; }
  .life-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .process__step { grid-template-columns: 56px 1fr; gap: 20px; }
}
