@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v5-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v5-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v5-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url("/fonts/cormorant-garamond-v5-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/raleway-v5-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/raleway-v5-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #24231f;
  --muted: #666960;
  --cream: #fbf8f1;
  --paper: #fffdf8;
  --mist: #edf3ee;
  --warm: #f4ecdc;
  --green: #194d40;
  --green-deep: #0d332a;
  --green-soft: #286a58;
  --gold: #bd852a;
  --gold-deep: #8a5d17;
  --gold-light: #f0d18c;
  --line: rgba(25, 77, 64, .17);
  --shadow: 0 26px 70px rgba(15, 48, 39, .13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Raleway", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 72px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .18em; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  color: #fff;
  background: var(--green-deep);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 104px 0; }
.section-mist { background: var(--mist); }
.section-warm { background: var(--warm); }
.section-green { color: #fff; background: var(--green-deep); }
.section-dark { color: #fff; background: #0b2721; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--gold-light); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
}
h2 {
  margin-bottom: 24px;
  color: var(--green);
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: .98;
}
.section-green h2, .section-dark h2 { color: #fff; }
h3 { font-size: 32px; line-height: 1.05; }
.section-heading > p:not(.eyebrow) { max-width: 720px; color: var(--muted); }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered > p { margin-inline: auto; }
.narrow { max-width: 840px; }
.prose p { max-width: 720px; }
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .035em;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold {
  color: #fff;
  background: linear-gradient(135deg, #c38b2c, #986416);
  box-shadow: 0 12px 28px rgba(104, 68, 15, .27);
}
.button-gold:hover { background: linear-gradient(135deg, #cd983c, #a46e1c); }
.button-green { color: #fff; background: var(--green); box-shadow: 0 12px 28px rgba(13, 51, 42, .2); }
.button-green:hover { background: var(--green-deep); }

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px max(32px, calc((100vw - 1380px) / 2));
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
  transition: min-height .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  min-height: 76px;
  color: var(--ink);
  background: rgba(251, 248, 241, .96);
  border-color: rgba(25,77,64,.12);
  box-shadow: 0 8px 30px rgba(13,51,42,.08);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 29px; font-weight: 500; letter-spacing: .005em; }
.brand-copy small { margin-top: 7px; font-size: 10px; font-weight: 600; letter-spacing: .19em; }
.brand-copy i { padding: 0 6px; font-style: normal; }
.offer-navigation { display: flex; align-items: center; gap: 26px; }
.offer-navigation a { font-size: 12px; font-weight: 700; letter-spacing: .065em; text-decoration: none; text-transform: uppercase; }
.offer-navigation a:not(.nav-cta):hover { color: var(--gold-light); }
.site-header.is-scrolled .offer-navigation a:not(.nav-cta):hover { color: var(--gold-deep); }
.nav-cta { padding: 11px 18px; color: #fff; background: var(--gold-deep); border-radius: 999px; }
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: min(900px, 100svh);
  align-items: flex-end;
  color: #fff;
  background: var(--green-deep);
}
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: 50% 52%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(4,29,28,.91) 0%, rgba(4,29,28,.66) 42%, rgba(4,29,28,.08) 77%),
    linear-gradient(0deg, rgba(4,29,28,.68) 0%, transparent 50%);
}
.hero-inner { position: relative; z-index: 1; padding-top: 180px; padding-bottom: 66px; }
.hero h1 { max-width: 770px; margin: 0 0 22px; font-size: clamp(88px, 10.2vw, 152px); line-height: .72; letter-spacing: -.06em; }
.hero-big-idea { max-width: 720px; margin-bottom: 18px; color: #f3d9a2; font-family: var(--serif); font-size: clamp(31px, 3.2vw, 48px); line-height: 1.02; }
.hero-lead { max-width: 670px; margin-bottom: 28px; font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 20px; }
.hero-actions small { color: rgba(255,255,255,.75); font-size: 12px; }
.hero-facts { display: flex; max-width: 680px; margin: 44px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.27); }
.hero-facts div { min-width: 150px; padding-right: 36px; }
.hero-facts dt { color: var(--gold-light); font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1; }
.hero-facts dd { margin: 7px 0 0; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

/* Story flow */
.recognition-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: start; }
.recognition-copy { font-size: 20px; }
.recognition-copy p { margin-bottom: 28px; }
.recognition-emphasis { padding: 26px 30px; color: var(--green-deep); background: var(--mist); border-left: 3px solid var(--gold); font-weight: 600; }
.ocean-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; align-items: center; }
.ocean-copy > p:not(.eyebrow) { max-width: 780px; color: rgba(255,255,255,.84); font-size: 20px; }
.ocean-copy blockquote { display: grid; gap: 10px; margin: 40px 0 0; padding: 30px 0 0; border-top: 1px solid rgba(240,209,140,.4); }
.ocean-copy blockquote strong { color: var(--gold-light); font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1.1; }
.ocean-copy blockquote span { color: rgba(255,255,255,.76); }
.ocean-symbol { position: relative; aspect-ratio: 1; max-width: 390px; margin-inline: auto; }
.ocean-symbol span { position: absolute; inset: 50%; border: 1px solid rgba(240,209,140,.5); border-radius: 50%; transform: translate(-50%,-50%); }
.ocean-symbol span:nth-child(1) { width: 96%; height: 96%; }
.ocean-symbol span:nth-child(2) { width: 70%; height: 70%; }
.ocean-symbol span:nth-child(3) { width: 44%; height: 44%; }
.ocean-symbol span:nth-child(4) { width: 13%; height: 13%; background: var(--gold); border: 0; box-shadow: 0 0 45px rgba(240,209,140,.65); }
.results-list { display: grid; max-width: 1030px; margin: 54px auto 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.results-list li { display: grid; grid-template-columns: 72px 1fr; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line); }
.results-list span { color: var(--gold-deep); font-size: 12px; font-weight: 700; letter-spacing: .15em; }
.results-list p { margin: 0; color: var(--green-deep); font-family: var(--serif); font-size: 30px; line-height: 1.15; }
.for-you-note { display: flex; max-width: 1030px; align-items: center; gap: 30px; margin: 38px auto 0; padding: 28px 32px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.for-you-note strong { flex: 0 0 38%; color: var(--green); font-family: var(--serif); font-size: 25px; font-weight: 600; line-height: 1.08; }
.for-you-note span { color: var(--muted); font-size: 15px; }

/* Product */
.contents-grid { display: grid; grid-template-columns: minmax(0,.92fr) minmax(430px,1.08fr); gap: 7vw; align-items: center; }
.contents-list { display: grid; margin: 36px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.contents-list li { display: grid; grid-template-columns: 42px 1fr; gap: 8px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.contents-list > li > span { padding-top: 4px; color: var(--gold-deep); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.contents-list strong { color: var(--green); font-family: var(--serif); font-size: 25px; font-weight: 600; line-height: 1.12; }
.contents-list p { margin: 5px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.purchase-inline { margin-top: 32px; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 18px 50px rgba(13,51,42,.08); }
.purchase-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.purchase-price span, .purchase-price small { color: var(--muted); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.purchase-price strong { color: var(--green); font-family: var(--serif); font-size: 42px; line-height: 1; }
.purchase-inline .button { width: 100%; }
.payment-note, .access-note { margin: 13px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; text-align: center; }
.access-note { margin-top: 5px; }
.course-preview { position: relative; min-height: 610px; padding: 48px 38px; overflow: hidden; background: var(--green-deep); border-radius: 28px; box-shadow: var(--shadow); }
.course-preview::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 15%, rgba(207,158,65,.17), transparent 38%); }
.preview-desktop { position: relative; margin: 0 38px 0 0; overflow: hidden; background: #fff; border: 8px solid #f8f4e9; border-radius: 19px; box-shadow: 0 24px 60px rgba(0,0,0,.24); }
.preview-mobile { position: absolute; z-index: 2; right: 20px; bottom: 66px; width: 29%; margin: 0; overflow: hidden; background: #fff; border: 6px solid #f8f4e9; border-radius: 21px; box-shadow: 0 24px 60px rgba(0,0,0,.28); transform: rotate(2deg); }
.format-tags { position: absolute; bottom: 25px; left: 38px; display: flex; gap: 9px; }
.format-tags span { padding: 7px 11px; color: var(--gold-light); border: 1px solid rgba(240,209,140,.4); border-radius: 99px; font-size: 9px; font-weight: 700; letter-spacing: .12em; }

/* Program and practice */
.program-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 7vw; align-items: end; }
.program-heading > p { margin-bottom: 0; padding-bottom: 10px; }
.lesson-list { display: grid; gap: 0; max-width: 1110px; margin: 52px auto 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.lesson-list li { display: grid; grid-template-columns: 64px 1fr 70px; gap: 26px; align-items: start; padding: 27px 0; border-bottom: 1px solid var(--line); }
.lesson-number { color: var(--gold-deep); font-family: var(--serif); font-size: 27px; }
.lesson-list small { color: var(--gold-deep); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.lesson-list h3 { margin: 1px 0 5px; color: var(--green); font-size: 31px; }
.lesson-list p { max-width: 740px; margin: 0; color: var(--muted); font-size: 15px; }
.lesson-list time { color: var(--muted); font-size: 12px; text-align: right; }
.practice-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 8vw; align-items: center; }
.player-visual { position: relative; min-height: 530px; padding: 48px; overflow: hidden; color: #fff; background: linear-gradient(145deg, #174d40, #09271f); border: 1px solid rgba(240,209,140,.35); border-radius: 30px; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.player-visual::before { content: ""; position: absolute; width: 390px; height: 390px; right: -150px; top: -150px; border: 1px solid rgba(240,209,140,.25); border-radius: 50%; }
.player-diamond { width: 230px; margin: 20px auto 28px; }
.player-diamond svg { fill: rgba(240,209,140,.05); stroke: var(--gold-light); stroke-width: .75; filter: drop-shadow(0 0 20px rgba(240,209,140,.2)); }
.player-copy { display: grid; text-align: center; }
.player-copy small { color: var(--gold-light); font-size: 14px; line-height: 1.35; letter-spacing: .19em; }
.player-copy strong { margin: 9px 0; font-family: var(--serif); font-size: 35px; font-weight: 500; line-height: 1; }
.player-copy span { color: rgba(255,255,255,.65); font-size: 11px; }
.player-controls { display: flex; align-items: center; gap: 12px; margin-top: 28px; }
.player-controls i { width: 38px; height: 38px; flex: 0 0 38px; background: var(--gold); clip-path: polygon(35% 25%, 80% 50%, 35% 75%); border-radius: 50%; }
.player-controls span { width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold-light) 30%, rgba(255,255,255,.2) 30%); }
.player-controls b { font-size: 10px; font-weight: 500; }
.practice-copy > p:not(.eyebrow,.practice-duration) { color: rgba(255,255,255,.8); font-size: 19px; }
.practice-duration { color: var(--gold-light); font-family: var(--serif); font-size: 29px; font-style: italic; }
.practice-copy ul { display: grid; gap: 10px; margin: 28px 0 0; padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.18); list-style: none; }
.practice-copy li::before { content: "✦"; margin-right: 12px; color: var(--gold-light); }

/* Founder, bonuses, proof */
.story-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 8vw; align-items: center; }
.story-photo { position: relative; margin: 0; }
.story-photo img { width: 100%; max-height: 730px; object-fit: cover; object-position: 50% 45%; border-radius: 230px 230px 28px 28px; box-shadow: var(--shadow); }
.story-photo figcaption { position: absolute; right: -20px; bottom: 28px; padding: 10px 17px; color: #fff; background: var(--green); border-radius: 99px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.story-copy > p { font-size: 17px; }
.story-title-break { display: block; margin-top: .3em; }
.story-copy blockquote { display: grid; gap: 8px; margin: 30px 0 0; padding: 26px 0 0; color: var(--green-deep); border-top: 1px solid var(--line); font-family: var(--serif); font-size: 27px; font-style: italic; line-height: 1.12; }
.story-copy blockquote strong { color: var(--gold-deep); font-weight: 600; }
.bonus-heading > p:not(.eyebrow) { font-size: 19px; }
.bonus-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 50px; }
.bonus-card { overflow: hidden; background: var(--paper); border: 1px solid rgba(138,93,23,.15); border-radius: 24px; box-shadow: 0 20px 55px rgba(93,62,19,.08); }
.bonus-cover { position: relative; display: flex; min-height: 285px; flex-direction: column; justify-content: flex-end; padding: 29px; overflow: hidden; color: #fff; background: var(--green-deep); }
.bonus-cover::before, .bonus-cover::after { content: ""; position: absolute; width: 230px; height: 230px; right: -85px; top: -90px; border: 1px solid rgba(240,209,140,.35); border-radius: 50%; }
.bonus-cover::after { width: 155px; height: 155px; right: -45px; top: -50px; }
.bonus-cover > span { position: absolute; top: 25px; left: 27px; color: var(--gold-light); font-family: var(--serif); font-size: 25px; }
.bonus-cover small { position: relative; z-index: 1; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .2em; }
.bonus-cover strong { position: relative; z-index: 1; margin-top: 10px; font-family: var(--serif); font-size: 47px; font-weight: 500; line-height: .82; letter-spacing: -.04em; }
.bonus-cover i { position: absolute; right: 28px; bottom: 29px; width: 42px; height: 42px; border: 1px solid rgba(240,209,140,.5); border-radius: 50%; }
.bonus-love .bonus-cover { background: #8a5d45; }
.bonus-love .bonus-cover small { color: #fff3dd; }
.bonus-healing .bonus-cover { background: #284f4b; }
.bonus-copy { padding: 27px; }
.bonus-copy h3 { min-height: 67px; margin-bottom: 13px; color: var(--green); font-size: 26px; }
.bonus-copy > p { min-height: 89px; color: var(--muted); font-size: 14px; }
details { border-top: 1px solid var(--line); }
summary { padding: 16px 3px; color: var(--green); cursor: pointer; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
summary::marker { color: var(--gold); }
.bonus-copy details ul { margin: 0 0 14px; padding-left: 19px; color: var(--muted); font-size: 13px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.testimonial-grid figure { display: flex; min-height: 360px; flex-direction: column; justify-content: space-between; margin: 0; padding: 35px; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; }
.testimonial-grid blockquote { margin: 0; color: var(--green-deep); font-family: var(--serif); font-size: 25px; font-style: italic; line-height: 1.27; }
.testimonial-grid figcaption { display: grid; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial-grid figcaption strong { color: var(--gold-deep); font-family: var(--serif); font-size: 22px; }
.testimonial-grid figcaption span { color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* FAQ and close */
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; align-items: start; }
.faq-grid .section-heading { position: sticky; top: 125px; }
.faq-grid .section-heading > p:not(.eyebrow) { font-size: 14px; }
.faq-list { border-bottom: 1px solid var(--line); }
.faq-list details { padding: 0 2px; }
.faq-list summary { position: relative; padding: 21px 48px 21px 0; color: var(--green-deep); font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: 0; line-height: 1.15; text-transform: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 16px; right: 2px; color: var(--gold-deep); font-family: var(--sans); font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 720px; margin: 0 0 23px; color: var(--muted); font-size: 15px; }
.final-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 9vw; align-items: center; }
.final-copy > p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.78); font-size: 20px; }
.final-card { padding: 40px; color: var(--ink); background: var(--paper); border: 1px solid rgba(240,209,140,.45); border-radius: 26px; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.final-card-label { margin-bottom: 22px; color: var(--gold-deep); font-size: clamp(15px, 1.3vw, 17px); font-weight: 700; line-height: 1.35; letter-spacing: .12em; text-transform: uppercase; }
.final-card ul { display: grid; gap: 10px; margin: 0 0 27px; padding: 0; list-style: none; }
.final-card li { color: var(--green-deep); font-family: var(--serif); font-size: 22px; line-height: 1.15; }
.final-card li::before { content: "✓"; margin-right: 12px; color: var(--gold-deep); font-family: var(--sans); font-size: 13px; }
.final-price { display: flex; align-items: flex-end; justify-content: space-between; margin: 0 0 21px; padding-top: 22px; border-top: 1px solid var(--line); }
.final-price span { color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.final-price .price-pair { display: flex; align-items: baseline; gap: 13px; }
.final-price del { color: var(--muted); font-family: var(--serif); font-size: 27px; line-height: 1; text-decoration-color: #a35f50; text-decoration-thickness: 2px; }
.final-price strong { color: var(--green); font-family: var(--serif); font-size: 48px; line-height: 1; }
.final-card .button { width: 100%; }
.payment-note-light, .access-note-light { color: var(--muted); }

/* Footer */
.site-footer { padding: 64px 0 35px; color: rgba(255,255,255,.7); background: #061b17; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 6vw; }
.brand-footer { color: #fff; }
.brand-footer img { filter: none; }
.footer-brand > p { max-width: 430px; margin: 22px 0 0; font-size: 13px; }
.site-footer nav { display: grid; align-content: start; gap: 9px; }
.site-footer nav a { font-size: 13px; text-decoration: none; }
.footer-contact { display: grid; align-content: start; gap: 8px; font-size: 13px; }
.footer-contact span { color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-contact small { margin-top: 22px; color: rgba(255,255,255,.62); }
.mobile-purchase { display: none; }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 980px); }
  .brand-copy strong { font-size: 24px; }
  .offer-navigation { gap: 16px; }
  .offer-navigation a { font-size: 10px; }
  .contents-grid { grid-template-columns: 1fr; }
  .course-preview { width: min(100%, 760px); min-height: 590px; margin-inline: auto; }
  .bonus-cover strong { font-size: 40px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 40px, 680px); }
  body { font-size: 17px; line-height: 1.62; }
  .section { padding: 78px 0; }
  h2 { font-size: clamp(42px, 11.3vw, 62px); }
  .site-header { min-height: 76px; padding-inline: 20px; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy strong { font-size: 21px; }
  .brand-copy small { font-size: 8px; }
  .menu-toggle { position: relative; z-index: 2; display: grid; width: 48px; height: 48px; place-content: center; gap: 5px; padding: 0; color: inherit; background: transparent; border: 1px solid currentColor; border-radius: 50%; }
  .menu-toggle i { display: block; width: 19px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(3) { transform: translateY(-6px) rotate(-45deg); }
  .offer-navigation { position: fixed; inset: 0; display: flex; visibility: hidden; flex-direction: column; justify-content: center; gap: 24px; padding: 100px 28px 40px; color: #fff; background: rgba(9,39,32,.98); opacity: 0; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .offer-navigation.is-open { visibility: visible; opacity: 1; transform: none; }
  .offer-navigation a { font-family: var(--serif); font-size: 30px; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .offer-navigation .nav-cta { padding: 12px 24px; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
  .hero { min-height: 790px; }
  .hero-shade { background: linear-gradient(0deg, rgba(4,29,28,.94) 0%, rgba(4,29,28,.64) 62%, rgba(4,29,28,.22) 100%); }
  .hero-image { object-position: 57% 50%; }
  .hero-inner { padding-top: 145px; padding-bottom: 42px; }
  .hero h1 { font-size: clamp(76px, 21vw, 116px); line-height: .75; }
  .hero-big-idea { font-size: clamp(29px, 8.2vw, 40px); }
  .hero-lead { font-size: 17px; }
  .hero-facts div { min-width: 0; flex: 1; padding-right: 15px; }
  .hero-facts dt { font-size: 24px; }
  .hero-facts dd { font-size: 8px; }
  .recognition-grid, .ocean-grid, .program-heading, .practice-grid, .story-grid, .faq-grid, .final-grid { grid-template-columns: 1fr; gap: 45px; }
  .recognition-copy, .ocean-copy > p:not(.eyebrow), .practice-copy > p:not(.eyebrow,.practice-duration), .final-copy > p:not(.eyebrow) { font-size: 18px; }
  .ocean-symbol { width: 65vw; max-width: 340px; }
  .results-list p { font-size: 25px; }
  .for-you-note { align-items: flex-start; flex-direction: column; gap: 12px; }
  .for-you-note strong { flex-basis: auto; }
  .course-preview { min-height: 500px; padding: 34px 25px; }
  .format-tags { left: 25px; }
  .lesson-list li { grid-template-columns: 48px 1fr 48px; gap: 15px; }
  .lesson-list h3 { font-size: 27px; }
  .player-visual { min-height: 500px; }
  .story-photo { width: min(86%, 470px); margin-inline: auto; }
  .story-photo img { max-height: 620px; }
  .bonus-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .bonus-card { display: grid; grid-template-columns: .78fr 1.22fr; }
  .bonus-cover { min-height: 340px; }
  .bonus-copy { align-self: center; }
  .bonus-copy h3, .bonus-copy > p { min-height: 0; }
  .testimonial-grid figure { min-height: 0; }
  .faq-grid .section-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 32px); }
  body { font-size: 17px; padding-bottom: 74px; }
  .section { padding: 65px 0; }
  .eyebrow { margin-bottom: 14px; font-size: 11px; }
  h2 { margin-bottom: 20px; font-size: clamp(40px, 13.6vw, 55px); line-height: .98; }
  .site-header { min-height: 68px; padding: 9px 14px; }
  .site-header.is-scrolled { min-height: 68px; }
  .brand { gap: 9px; }
  .brand img { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { margin-top: 5px; font-size: 6px; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero { min-height: 760px; }
  .hero-inner { padding-top: 135px; padding-bottom: 33px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(69px, 23.5vw, 102px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .hero-facts { margin-top: 29px; padding-top: 18px; }
  .hero-facts dt { font-size: 21px; }
  .recognition-copy { font-size: 17px; }
  .recognition-emphasis { padding: 22px; }
  .ocean-copy blockquote strong { font-size: 28px; }
  .results-list { margin-top: 35px; }
  .results-list li { grid-template-columns: 44px 1fr; padding: 19px 0; }
  .results-list p { font-size: 23px; }
  .for-you-note { margin-top: 27px; padding: 23px; }
  .contents-grid { gap: 45px; }
  .contents-list strong { font-size: 23px; }
  .contents-list p { font-size: 14px; }
  .purchase-inline { padding: 22px 18px; }
  .purchase-price { flex-wrap: wrap; }
  .purchase-price strong { font-size: 40px; }
  .course-preview { min-height: 355px; padding: 24px 17px; border-radius: 20px; }
  .preview-desktop { margin-right: 18px; border-width: 5px; border-radius: 12px; }
  .preview-mobile { right: 10px; bottom: 52px; width: 31%; border-width: 4px; border-radius: 13px; }
  .format-tags { bottom: 17px; left: 18px; gap: 5px; }
  .format-tags span { padding: 5px 7px; font-size: 7px; }
  .program-heading h2 br { display: none; }
  .lesson-list { margin-top: 35px; }
  .lesson-list li { grid-template-columns: 37px 1fr; padding: 22px 0; }
  .lesson-list time { grid-column: 2; grid-row: 2; text-align: left; }
  .lesson-list h3 { font-size: 25px; }
  .lesson-list p { font-size: 14px; }
  .player-visual { min-height: 430px; padding: 31px 24px; border-radius: 22px; }
  .player-diamond { width: 190px; }
  .player-copy strong { font-size: 31px; }
  .story-copy > p { font-size: 16px; }
  .story-copy blockquote { font-size: 24px; }
  .bonus-heading > p:not(.eyebrow) { font-size: 17px; }
  .bonus-grid { gap: 18px; }
  .bonus-card { display: block; }
  .bonus-cover { min-height: 260px; }
  .bonus-copy { padding: 24px; }
  .testimonial-grid { gap: 16px; }
  .testimonial-grid figure { padding: 27px; }
  .testimonial-grid blockquote { font-size: 23px; }
  .faq-list summary { padding: 18px 40px 18px 0; font-size: 23px; }
  .final-card { padding: 27px 21px; }
  .final-price strong { font-size: 43px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact { grid-column: auto; }
  .brand-footer .brand-copy strong { font-size: 20px; }
  .mobile-purchase {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 9px 14px max(9px, env(safe-area-inset-bottom));
    background: rgba(251,248,241,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 25px rgba(13,51,42,.1);
    backdrop-filter: blur(14px);
  }
  .mobile-purchase[hidden] { display: none; }
  .mobile-purchase .button { width: 100%; min-height: 52px; }
}

/* Spokojny Umysł 6.3 — approved offer refinements, 2026-08-31 */
.calm-v6-page .hero {
  min-height: min(820px, 100svh);
  margin-top: 0;
}
.calm-v6-page .hero-facts {
  display: grid;
  width: min(100%, 900px);
  max-width: 900px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}
.calm-v6-page .hero-facts div {
  min-width: 0;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.calm-v6-page .hero-facts div:first-child { padding-left: 0; }
.calm-v6-page .hero-facts div:last-child { padding-right: 0; border-right: 0; }
.calm-v6-page .hero-facts dd { max-width: 145px; line-height: 1.35; }
.hero-photo-caption {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 3vw, 48px);
  bottom: clamp(18px, 3vw, 40px);
  margin: 0;
  padding: 8px 12px;
  color: rgba(255,255,255,.82);
  background: rgba(4,29,28,.28);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  backdrop-filter: blur(7px);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
}
.story-intro {
  margin: 18px 0 26px;
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: clamp(23px, 2.1vw, 31px) !important;
  font-style: italic;
  line-height: 1.18;
}
.course-proof { background: var(--paper); }
.course-proof-frame {
  width: min(100%, 1180px);
  margin: 44px auto 0;
  padding: clamp(8px, 1vw, 14px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 28px 75px rgba(13,51,42,.12);
}
.course-proof-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.calm-v6-page .final-grid {
  width: min(100%, 860px);
  grid-template-columns: minmax(0, 1fr);
  gap: 38px;
  justify-items: center;
  text-align: center;
}
.calm-v6-page .final-copy { max-width: 760px; }
.calm-v6-page .final-copy > p:not(.eyebrow) { margin-inline: auto; }
.calm-v6-page .final-card {
  width: min(100%, 620px);
  text-align: left;
}

@media (max-width: 820px) {
  .calm-v6-page .hero { min-height: 820px; }
  .calm-v6-page .hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 20px; }
  .calm-v6-page .hero-facts div { padding-inline: 15px; }
  .calm-v6-page .hero-facts div:nth-child(even) { border-right: 0; }
  .calm-v6-page .hero-facts div:nth-child(odd) { padding-left: 0; }
  .calm-v6-page .hero-facts div:last-child { grid-column: 1 / -1; }
  .hero-photo-caption { top: 16px; right: 16px; bottom: auto; font-size: 11px; }
}

@media (max-width: 560px) {
  .calm-v6-page .hero { min-height: 790px; }
  .calm-v6-page .hero-inner { padding-top: 70px; }
  .calm-v6-page .hero-facts dt { font-size: 19px; }
  .calm-v6-page .hero-facts dd { font-size: 8px; }
  .course-proof-frame { margin-top: 30px; border-radius: 16px; }
  .calm-v6-page .final-grid { gap: 29px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ================================================================
   Spokojny Umysł 6.1 — global navigation and editorial refinements
   ================================================================ */
.calm-v6-page .section { padding-block: 76px; }
.calm-v6-page .site-header,
.calm-v6-page .site-header.is-scrolled {
  min-height: 88px;
  padding: 10px max(24px, calc((100vw - 1500px) / 2));
  color: var(--ink);
  background: rgba(251, 248, 241, .98);
  border-color: rgba(25,77,64,.12);
  box-shadow: 0 7px 30px rgba(13,51,42,.07);
  backdrop-filter: blur(18px);
}
.calm-v6-page .brand { flex: 0 0 auto; }
.calm-v6-page .brand img { width: 56px; height: 56px; }
.calm-v6-page .brand-copy strong { font-size: 27px; white-space: nowrap; }
.global-navigation { display: flex; align-items: center; justify-content: flex-end; gap: 13px; }
.global-navigation > a,
.global-navigation > .nav-group > summary {
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.global-navigation > a:hover,
.global-navigation > .nav-group > summary:hover,
.global-navigation > a[aria-current="page"] { color: var(--gold-deep); }
.global-navigation .nav-start {
  margin-right: 2px;
  padding: 12px 15px;
  color: #fff;
  background: var(--gold-deep);
  border-radius: 999px;
}
.global-navigation .nav-start:hover { color: #fff; background: #744b12; }
.nav-group { position: relative; border: 0; }
.nav-group > summary { display: flex; align-items: center; gap: 5px; padding: 15px 0; list-style: none; }
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary::after { content: "⌄"; margin-top: -3px; color: var(--gold-deep); font-size: 12px; }
.nav-group[open] > summary::after { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  z-index: 10;
  top: calc(100% + 10px);
  left: -20px;
  display: grid;
  width: 265px;
  gap: 2px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255,253,248,.99);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(13,51,42,.16);
}
.nav-dropdown-right { right: -20px; left: auto; }
.nav-dropdown a { padding: 9px 10px; border-radius: 8px; font-size: 12px; line-height: 1.35; text-decoration: none; }
.nav-dropdown a:hover { color: var(--green); background: var(--mist); }
.nav-mega { width: 660px; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.nav-mega > div { display: grid; align-content: start; gap: 2px; }
.nav-mega strong { margin: 2px 10px 8px; color: var(--gold-deep); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.calm-v6-page .hero {
  min-height: min(760px, calc(100svh - 88px));
  margin-top: 88px;
}
.calm-v6-page .hero-image { object-position: 50% 50%; }
.calm-v6-page .hero-shade {
  background:
    linear-gradient(90deg, rgba(4,29,28,.9) 0%, rgba(4,29,28,.64) 42%, rgba(4,29,28,.05) 80%),
    linear-gradient(0deg, rgba(4,29,28,.62) 0%, transparent 52%);
}
.calm-v6-page .hero-inner { padding-top: 38px; padding-bottom: 52px; }
.hero-kicker {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(29px, 2.5vw, 39px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.calm-v6-page .hero h1 {
  display: grid;
  gap: .02em;
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(92px, 9.7vw, 145px);
  line-height: 1;
  letter-spacing: -.055em;
}
.calm-v6-page .hero h1 span { display: block; line-height: .93; }
.calm-v6-page .hero-big-idea { max-width: 700px; margin-bottom: 16px; font-size: clamp(30px, 3vw, 45px); line-height: 1.04; }
.calm-v6-page .hero-lead { max-width: 730px; margin-bottom: 24px; font-size: 19px; line-height: 1.52; }
.hero-button { min-width: 235px; letter-spacing: .095em; }
.calm-v6-page .hero-facts { max-width: 430px; margin-top: 28px; padding-top: 18px; }
.calm-v6-page .hero-facts div { min-width: 185px; }

.recognition-kicker,
.results-kicker,
.program-kicker,
.bonus-kicker,
.testimonials-kicker,
.final-kicker { font-size: 17px; letter-spacing: .17em; }
.calm-v6-page .recognition-grid { gap: clamp(50px, 7vw, 105px); }
.calm-v6-page .recognition-copy { font-size: 19px; }
.calm-v6-page .recognition-emphasis { margin-bottom: 0; font-size: 19px; line-height: 1.58; }

.calm-v6-page .ocean-grid { grid-template-columns: minmax(320px,.85fr) minmax(0,1.15fr); gap: clamp(48px, 7vw, 100px); }
.ocean-photo { position: relative; min-height: 520px; margin: 0; overflow: hidden; border: 1px solid rgba(240,209,140,.32); border-radius: 260px 260px 26px 26px; box-shadow: 0 28px 75px rgba(0,0,0,.25); }
.ocean-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(5,35,29,.28)); }
.ocean-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: 52% 50%; }
.calm-v6-page .ocean-copy > p:not(.eyebrow) { font-size: 19px; line-height: 1.67; }
.calm-v6-page .ocean-copy blockquote { margin-top: 30px; padding-top: 25px; }
.calm-v6-page .ocean-copy blockquote span { font-size: 18px; line-height: 1.55; }

.contrast { background: var(--cream); }
.contrast-heading { margin-bottom: 42px; }
.contrast-visual { position: relative; margin: 0; overflow: hidden; border-radius: 28px 28px 0 0; box-shadow: var(--shadow); }
.contrast-visual::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(0deg, rgba(7,35,29,.62), transparent); pointer-events: none; }
.contrast-visual img { width: 100%; height: auto; object-fit: cover; }
.contrast-visual figcaption { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; padding: 0 34px 25px; color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contrast-visual figcaption span:last-child { text-align: right; }
.contrast-table { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 28px 28px; box-shadow: 0 26px 70px rgba(15,48,39,.09); }
.contrast-row { display: grid; grid-template-columns: 1fr 1fr; }
.contrast-row + .contrast-row { border-top: 1px solid var(--line); }
.contrast-row span { padding: 18px 28px; font-size: 16px; line-height: 1.5; }
.contrast-row span + span { border-left: 1px solid var(--line); }
.contrast-table-head span { color: var(--green); background: var(--mist); font-family: var(--serif); font-size: 23px; font-weight: 600; }

.calm-v6-page .results-list { max-width: 980px; margin-top: 42px; }
.calm-v6-page .results-list li { position: relative; display: block; padding: 19px 16px 19px 44px; }
.calm-v6-page .results-list li::before { content: ""; position: absolute; top: 50%; left: 10px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; transform: translateY(-50%); }
.calm-v6-page .results-list p { font-size: 29px; }
.calm-v6-page .for-you-note { display: grid; max-width: 980px; justify-content: stretch; gap: 14px; margin-top: 30px; padding: 27px 32px; text-align: left; }
.calm-v6-page .for-you-note strong { font-size: 27px; }
.calm-v6-page .for-you-note p { max-width: 850px; margin: 0; color: var(--muted); font-size: 22px; line-height: 1.5; }

.calm-v6-page .contents-grid { grid-template-columns: minmax(0,.9fr) minmax(460px,1.1fr); gap: clamp(34px, 3.5vw, 56px); align-items: start; }
.calm-v6-page .contents-copy h2 { max-width: 760px; font-size: clamp(54px, 5.1vw, 78px); }
.calm-v6-page .contents-kicker { font-size: 19px; letter-spacing: .17em; }
.calm-v6-page .contents-list { margin-top: 28px; }
.calm-v6-page .contents-list li { position: relative; grid-template-columns: 1fr; gap: 0; padding: 15px 0 15px 27px; }
.calm-v6-page .contents-list li::before { content: ""; position: absolute; top: 27px; left: 2px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.calm-v6-page .purchase-inline { margin-top: 25px; padding: 24px; }
.calm-v6-page .course-preview { width: 100%; max-width: 640px; min-height: 0; justify-self: end; padding: 32px 27px 76px; overflow: hidden; }
.calm-v6-page .preview-desktop { margin: 0 66px 0 0; border-width: 6px; transform: none; }
.calm-v6-page .preview-desktop img { width: 100%; height: auto; object-fit: contain; }
.calm-v6-page .preview-mobile { right: 22px; bottom: 60px; width: 27%; border-width: 5px; transform: none; }
.calm-v6-page .preview-mobile img { width: 100%; height: auto; object-fit: contain; }

.calm-v6-page .program-heading { display: block; max-width: 1040px; }
.calm-v6-page .program-kicker { margin-bottom: 20px; padding: 0; }
.calm-v6-page .lesson-list { margin-top: 42px; }
.calm-v6-page .lesson-list li { grid-template-columns: 1fr; gap: 0; padding: 24px 0; }
.calm-v6-page .lesson-list small { display: block; margin-bottom: 5px; font-size: 16px; letter-spacing: .15em; }
.calm-v6-page .lesson-list h3 { font-size: 33px; }
.calm-v6-page .lesson-list p { font-size: 19px; line-height: 1.58; }
.calm-v6-page .lesson-list time { padding-top: 32px; font-size: 13px; }

.calm-v6-page .story-copy > p { font-size: 18px; line-height: 1.65; }
.calm-v6-page .story-kicker { font-size: 15px; }
.calm-v6-page .story-title-break { margin-top: .55em; color: var(--gold-deep); font-size: .58em; font-style: italic; line-height: 1.05; letter-spacing: 0; }
.calm-v6-page .bonus-kicker,
.calm-v6-page .testimonials-kicker { margin-bottom: 20px; }
.calm-v6-page .bonus-grid { margin-top: 42px; }
.calm-v6-page .bonus-cover small { margin-bottom: 2px; font-size: 11px; }
.calm-v6-page .final-kicker { margin-bottom: 22px; color: var(--gold-light); font-size: clamp(21px, 2vw, 26px); line-height: 1.35; }

@media (max-width: 1240px) {
  .calm-v6-page .site-header { min-height: 80px; padding-inline: 22px; }
  .calm-v6-page .hero { min-height: min(760px, calc(100svh - 80px)); margin-top: 80px; }
  .global-navigation { position: fixed; inset: 0; display: flex; visibility: hidden; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 105px max(28px, calc((100vw - 720px) / 2)) 45px; overflow-y: auto; color: #fff; background: rgba(7,35,29,.985); opacity: 0; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .global-navigation.is-open { visibility: visible; opacity: 1; transform: none; }
  .menu-toggle { position: relative; z-index: 12; display: grid; width: 48px; height: 48px; place-content: center; gap: 5px; padding: 0; color: var(--green-deep); background: var(--cream); border: 1px solid var(--green-deep); border-radius: 50%; }
  .menu-toggle i { display: block; width: 19px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] { color: #fff; background: transparent; border-color: rgba(255,255,255,.55); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(3) { transform: translateY(-6px) rotate(-45deg); }
  .global-navigation > a,
  .global-navigation > .nav-group > summary { padding: 14px 2px; color: #fff; border-bottom: 1px solid rgba(255,255,255,.13); font-family: var(--serif); font-size: 25px; font-weight: 500; letter-spacing: 0; text-transform: none; }
  .global-navigation .nav-start { margin: 0 0 8px; padding: 14px 20px; color: #fff; border: 1px solid rgba(240,209,140,.55); text-align: center; }
  .nav-group { position: static; }
  .nav-group > summary { justify-content: space-between; }
  .nav-group > summary::after { color: var(--gold-light); }
  .nav-dropdown,
  .nav-dropdown-right,
  .nav-mega { position: static; width: auto; grid-template-columns: 1fr; gap: 5px; padding: 9px 0 14px 18px; color: #fff; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  .nav-dropdown a { padding: 7px 4px; color: rgba(255,255,255,.75); font-size: 14px; }
  .nav-dropdown a:hover { color: #fff; background: transparent; }
  .nav-mega > div { margin-bottom: 9px; }
  .nav-mega strong { margin: 8px 4px 3px; color: var(--gold-light); }
  .calm-v6-page .contents-grid { grid-template-columns: minmax(0,.95fr) minmax(440px,1.05fr); gap: 32px; }
  .calm-v6-page .contents-copy h2 { font-size: clamp(47px, 6vw, 68px); }
  .calm-v6-page .course-preview { max-width: 540px; padding: 25px 21px 68px; }
  .calm-v6-page .preview-desktop { margin-right: 48px; border-width: 5px; }
  .calm-v6-page .preview-mobile { right: 13px; bottom: 50px; border-width: 4px; }
}

@media (max-width: 820px) {
  .calm-v6-page .section { padding-block: 60px; }
  .calm-v6-page .hero { min-height: 720px; }
  .calm-v6-page .hero-image { object-position: 58% 50%; }
  .calm-v6-page .hero-inner { padding-top: 62px; padding-bottom: 42px; }
  .calm-v6-page .hero h1 { font-size: clamp(76px, 20vw, 112px); line-height: 1; }
  .calm-v6-page .hero h1 span { line-height: .94; }
  .hero-kicker { font-size: clamp(25px, 6vw, 33px); }
  .calm-v6-page .hero-big-idea { font-size: clamp(29px, 7vw, 39px); }
  .calm-v6-page .recognition-grid,
  .calm-v6-page .ocean-grid { grid-template-columns: 1fr; gap: 42px; }
  .ocean-photo { width: min(100%, 540px); min-height: 390px; margin-inline: auto; border-radius: 210px 210px 24px 24px; }
  .ocean-photo img { min-height: 390px; }
  .contrast-visual figcaption { padding: 0 20px 18px; font-size: 10px; }
  .contrast-row span { padding: 16px 19px; font-size: 15px; }
  .contrast-table-head span { font-size: 20px; }
  .calm-v6-page .contents-grid { grid-template-columns: 1fr; }
  .calm-v6-page .contents-copy h2 { font-size: clamp(46px, 10vw, 65px); }
  .calm-v6-page .course-preview { width: min(100%, 650px); max-width: 650px; justify-self: center; }
  .calm-v6-page .lesson-list li { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .calm-v6-page .section { padding-block: 48px; }
  .calm-v6-page .site-header,
  .calm-v6-page .site-header.is-scrolled { min-height: 70px; padding: 8px 14px; }
  .calm-v6-page .brand img { width: 43px; height: 43px; }
  .calm-v6-page .brand-copy strong { font-size: 18px; }
  .calm-v6-page .hero { min-height: 690px; margin-top: 70px; }
  .calm-v6-page .hero-inner { padding-top: 50px; padding-bottom: 30px; }
  .calm-v6-page .hero h1 { margin-bottom: 18px; font-size: clamp(70px, 22vw, 94px); line-height: 1; }
  .calm-v6-page .hero h1 span { line-height: .94; }
  .calm-v6-page .hero-lead { font-size: 16px; line-height: 1.5; }
  .calm-v6-page .hero-facts { margin-top: 23px; }
  .calm-v6-page .hero-facts div { min-width: 0; }
  .recognition-kicker,
  .results-kicker,
  .program-kicker,
  .bonus-kicker,
  .testimonials-kicker,
  .final-kicker { font-size: 14px; }
  .calm-v6-page .final-kicker { font-size: 18px; }
  .calm-v6-page .recognition-copy,
  .calm-v6-page .recognition-emphasis,
  .calm-v6-page .ocean-copy > p:not(.eyebrow) { font-size: 17px; }
  .calm-v6-page .for-you-note p { font-size: 19px; }
  .ocean-photo,
  .ocean-photo img { min-height: 320px; }
  .contrast-heading h2 br { display: none; }
  .contrast-visual { border-radius: 18px 18px 0 0; }
  .contrast-visual img { height: auto; }
  .contrast-visual figcaption { display: none; }
  .contrast-table { border-radius: 0 0 18px 18px; }
  .contrast-row { grid-template-columns: 1fr; }
  .contrast-row span { padding: 15px 17px; }
  .contrast-row span + span { border-top: 1px solid var(--line); border-left: 0; }
  .contrast-row span:first-child::before { content: "Wzburzenie — "; color: var(--gold-deep); font-weight: 700; }
  .contrast-row span:last-child::before { content: "Powrót — "; color: var(--green); font-weight: 700; }
  .contrast-table-head { display: none; }
  .calm-v6-page .results-list li { padding: 17px 4px 17px 34px; }
  .calm-v6-page .results-list p { font-size: 23px; }
  .calm-v6-page .contents-grid { gap: 34px; }
  .calm-v6-page .contents-kicker { font-size: 15px; }
  .calm-v6-page .course-preview { min-height: 0; padding: 18px 14px 59px; }
  .calm-v6-page .preview-desktop { margin-right: 44px; }
  .calm-v6-page .preview-mobile { right: 10px; bottom: 48px; width: 28%; }
  .calm-v6-page .format-tags { bottom: 15px; left: 15px; }
  .calm-v6-page .program-heading h2 br { display: block; }
  .calm-v6-page .lesson-list { margin-top: 30px; }
  .calm-v6-page .lesson-list li { grid-template-columns: 1fr; gap: 7px; padding: 20px 0; }
  .calm-v6-page .lesson-list small { font-size: 14px; }
  .calm-v6-page .lesson-list p { font-size: 17px; }
  .calm-v6-page .lesson-list time { padding-top: 0; text-align: left; }
  .calm-v6-page .story-copy > p { font-size: 17px; }
  .calm-v6-page .story-title-break { font-size: .62em; }
}

/* Spokojny Umysł 6.2 — content, hero and meditation preview */
.calm-v6-page .hero-image {
  object-position: 50% 50%;
  filter: saturate(.9) contrast(.96) brightness(1.04);
}
.calm-v6-page .hero-shade {
  background:
    linear-gradient(90deg, rgba(4,29,28,.82) 0%, rgba(4,29,28,.54) 43%, rgba(4,29,28,.02) 78%),
    linear-gradient(0deg, rgba(4,29,28,.56) 0%, transparent 52%);
}
.calm-v6-page .hero h1 {
  max-width: 720px;
  font-style: italic;
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.035em;
  text-wrap: balance;
  text-shadow: 0 3px 28px rgba(4,29,28,.24);
}
.calm-v6-page .hero h1 span { line-height: .96; }

.contrast-table-head span {
  display: grid;
  align-content: start;
}
.contrast-table-head strong {
  color: var(--green);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.contrast-note {
  display: grid;
  gap: 18px;
  max-width: 940px;
  margin: 34px auto 0;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.3;
  text-align: center;
}
.contrast-note p { margin: 0; }

.calm-v6-page .results-kicker {
  margin-bottom: 18px;
  font-size: 23px;
  letter-spacing: .18em;
}
.calm-v6-page .results-list p { font-size: 27px; line-height: 1.2; }
.results + .story {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.course-preview-stack {
  display: grid;
  gap: 28px;
  justify-items: end;
}
.course-fragment {
  display: grid;
  width: min(100%, 360px);
  gap: 14px;
  justify-self: center;
  margin: 0;
  padding: 20px;
  background: var(--green-deep);
  border: 1px solid rgba(189,133,42,.3);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.course-fragment figcaption { display: grid; gap: 4px; color: #fff; text-align: center; }
.course-fragment figcaption small {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.course-fragment figcaption strong { font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.08; }
.course-fragment video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #071d18;
  border-radius: 15px;
}

.meditation-player {
  min-height: 0;
  padding: 42px 46px 38px;
}
.meditation-player .player-diamond { width: 185px; margin: 0 auto 20px; }
.meditation-player audio {
  display: block;
  width: 100%;
  margin: 28px auto 0;
  accent-color: var(--gold);
}
.practice-heart {
  max-width: 580px;
  margin-bottom: 22px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: .045em;
}
.final-price .price-pair { justify-content: flex-end; }

@media (max-width: 820px) {
  .calm-v6-page .hero-image { object-position: 55% 50%; }
  .calm-v6-page .hero-shade {
    background:
      linear-gradient(90deg, rgba(4,29,28,.72) 0%, rgba(4,29,28,.28) 72%, rgba(4,29,28,.08) 100%),
      linear-gradient(0deg, rgba(4,29,28,.84) 0%, rgba(4,29,28,.48) 62%, rgba(4,29,28,.12) 100%);
  }
  .contrast-note { font-size: 25px; }
  .course-preview-stack { justify-items: center; }
  .meditation-player { width: min(100%, 620px); justify-self: center; }
}

@media (max-width: 560px) {
  .calm-v6-page .hero-image { object-position: 50% 50%; }
  .calm-v6-page .hero h1 {
    max-width: 92%;
    font-size: clamp(65px, 20vw, 88px);
    letter-spacing: -.025em;
  }
  .contrast-row span:first-child::before {
    content: "Niespokojny Umysł — ";
    color: var(--gold-deep);
    font-weight: 700;
  }
  .contrast-row span:last-child::before {
    content: "Spokojny Umysł — ";
    color: var(--green);
    font-weight: 700;
  }
  .contrast-note { margin-top: 26px; font-size: 23px; text-align: left; }
  .calm-v6-page .results-kicker { font-size: 19px; }
  .calm-v6-page .results-list p { font-size: 21px; }
  .course-fragment { width: min(100%, 330px); padding: 16px; }
  .meditation-player { min-height: 0; padding: 30px 20px 26px; }
  .meditation-player .player-diamond { width: 145px; }
  .practice-heart { font-size: 27px; }
}

/* Keep the approved 6.3 layout after the earlier 6.1 cascade. */
.calm-v6-page .hero { min-height: min(820px, 100svh); margin-top: 0; }
.calm-v6-page .hero-facts {
  display: grid;
  width: min(100%, 900px);
  max-width: 900px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.calm-v6-page .hero-facts div { min-width: 0; padding: 0 20px; }
.calm-v6-page .story-copy > .story-intro { line-height: 1.18; }

@media (max-width: 820px) {
  .calm-v6-page .hero { min-height: 820px; margin-top: 0; }
  .calm-v6-page .hero-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .calm-v6-page .hero { min-height: 790px; margin-top: 0; }
  .calm-v6-page .hero-inner { padding-top: 70px; }
}

/* Spokojny Umysł 6.4.2 — hero bonus and increased eBook lead, 2026-09-08 */
.course-ebook {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 22%, rgba(189,133,42,.12), transparent 30%),
    linear-gradient(135deg, #f8f2e5 0%, #fffdf8 56%, #edf3ee 100%);
}
.course-ebook::before,
.course-ebook::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(138,93,23,.14);
  border-radius: 50%;
  pointer-events: none;
}
.course-ebook::before { width: 430px; height: 430px; top: -240px; right: -120px; }
.course-ebook::after { width: 300px; height: 300px; right: -50px; bottom: -210px; }
.course-ebook-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: center;
}
.course-ebook-cover {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
}
.course-ebook-cover::before {
  position: absolute;
  z-index: -1;
  inset: 7% -8% -5% 9%;
  content: "";
  background: rgba(25,77,64,.12);
  border: 1px solid rgba(25,77,64,.14);
  border-radius: 5px;
  transform: rotate(3deg);
}
.course-ebook-cover picture { display: block; }
.course-ebook-cover img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(138,93,23,.18);
  border-radius: 4px;
  box-shadow: 0 34px 80px rgba(13,51,42,.2);
}
.course-ebook-mockup::before { content: none; }
.course-ebook-mockup img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 28px 26px rgba(13,51,42,.22));
}
.course-ebook-copy { max-width: 690px; }
.course-ebook-kicker { margin-bottom: 20px; font-size: 20px; }
.course-ebook-copy h2 {
  max-width: 680px;
  margin-bottom: 27px;
  font-size: clamp(47px, 5vw, 70px);
}
.course-ebook-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.course-ebook-copy > p.course-ebook-lead {
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: clamp(30px, 2.8vw, 38px);
  line-height: 1.22;
}
.course-ebook-note {
  display: grid;
  gap: 5px;
  margin-top: 31px;
  padding: 23px 25px;
  background: rgba(255,253,248,.78);
  border: 1px solid rgba(138,93,23,.2);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
}
.course-ebook-note strong {
  color: var(--green);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.course-ebook-note span { color: var(--muted); font-size: 17px; line-height: 1.55; }

.bonus-cover-image {
  display: block;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: var(--green-deep);
}
.bonus-cover-image::before,
.bonus-cover-image::after { content: none; }
.bonus-cover-image img {
  width: 100%;
  aspect-ratio: 8 / 5;
  height: auto;
  object-fit: cover;
}
.bonus-cover-image figcaption {
  padding: 11px 20px 12px;
  color: var(--gold-light);
  background: var(--green-deep);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bonus-love .bonus-cover-image figcaption { color: #fff3dd; background: #8a5d45; }
.bonus-healing .bonus-cover-image figcaption { background: #284f4b; }

@media (max-width: 820px) {
  .course-ebook-grid { grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr); gap: 44px; }
  .course-ebook-copy h2 { font-size: clamp(42px, 7vw, 58px); }
  .bonus-cover-image { min-height: 0; align-self: start; }
}

@media (max-width: 680px) {
  .course-ebook-grid { grid-template-columns: 1fr; gap: 48px; }
  .course-ebook-cover { width: min(78vw, 410px); }
  .course-ebook-copy { text-align: left; }
}

@media (max-width: 560px) {
  .player-copy small { font-size: 12px; letter-spacing: .16em; }
  .course-ebook-cover { width: min(82vw, 350px); }
  .course-ebook-copy h2 { font-size: clamp(42px, 13vw, 57px); }
  .course-ebook-kicker { font-size: 17px; }
  .course-ebook-copy > p:not(.eyebrow) { font-size: 16px; }
  .course-ebook-copy > p.course-ebook-lead { font-size: 28px; }
  .course-ebook-note { padding: 20px; }
  .course-ebook-note strong { font-size: 22px; }
}
