:root {
  --ink: #17352d;
  --green: #245a4a;
  --green-2: #34725f;
  --coral: #d7644b;
  --coral-dark: #b84a35;
  --blue: #286a8d;
  --paper: #fbfcfa;
  --white: #ffffff;
  --mist: #eef2f0;
  --pale-green: #eaf2ee;
  --pale-coral: #f8e9e4;
  --pale-blue: #e8f2f7;
  --text: #263630;
  --muted: #586961;
  --line: #c8d1cd;
  --shadow: 0 20px 55px rgba(20, 45, 37, 0.14);
  --shell: min(1180px, calc(100% - 40px));
  --radius: 6px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral-dark);
}

:focus-visible {
  outline: 3px solid #f3a942;
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.6rem, 5.2vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

h3 {
  font-size: 1.28rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid rgba(23, 53, 45, 0.12);
  background: rgba(251, 252, 250, 0.97);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark:hover {
  color: var(--ink);
}

.wordmark-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  place-items: center;
  border: 1px solid var(--coral);
  color: var(--coral);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  padding: 24px 0 21px;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 9px 14px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--green);
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  border-color: var(--green-2);
  color: var(--white);
  background: var(--green-2);
}

.button-coral {
  border-color: var(--coral);
  color: var(--white);
  background: var(--coral);
}

.button-coral:hover {
  border-color: #ec7d64;
  color: var(--ink);
  background: #ec7d64;
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--ink);
}

.button:disabled,
.button[aria-disabled='true'] {
  border-color: #8b9892;
  color: #f5f7f6;
  background: #788781;
  cursor: not-allowed;
  transform: none;
}

.text-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100svh - var(--header-h) - 52px));
  overflow: hidden;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 52%;
  background: rgba(251, 252, 250, 0.28);
  content: '';
  pointer-events: none;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(590px, 47vw);
  padding: 48px 0;
}

.hero h1 {
  max-width: 570px;
  margin-bottom: 20px;
}

.hero-subtitle {
  max-width: 565px;
  margin-bottom: 22px;
  color: #30463e;
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-price {
  display: flex;
  margin-bottom: 20px;
  align-items: baseline;
  gap: 11px;
}

.hero-price strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.7rem;
}

.hero-price span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.quick-facts {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-facts-grid {
  display: grid;
  min-height: 96px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.quick-facts-grid > div {
  display: flex;
  min-width: 0;
  padding: 18px 28px;
  align-items: baseline;
  gap: 10px;
  border-right: 1px solid var(--line);
}

.quick-facts-grid > div:first-child {
  padding-left: 0;
}

.quick-facts-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.quick-facts span {
  color: var(--coral-dark);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  font-weight: 700;
  white-space: nowrap;
}

.quick-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.section {
  padding-block: 100px;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.benefit-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.benefit-grid article {
  padding: 34px 34px 34px 0;
  border-right: 1px solid var(--line);
}

.benefit-grid article + article {
  padding-left: 34px;
}

.benefit-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.benefit-grid svg {
  margin-bottom: 22px;
  color: var(--blue);
}

.benefit-grid h3 {
  margin-bottom: 12px;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-band {
  padding-block: 100px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--pale-green);
}

.product-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(380px, 0.9fr) minmax(480px, 1.1fr);
  gap: 84px;
}

.product-visual {
  position: relative;
  min-height: 610px;
}

.cover {
  position: absolute;
  display: block;
  width: min(315px, 68%);
  overflow: hidden;
  border: 1px solid rgba(23, 53, 45, 0.2);
  border-radius: 2px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.cover img {
  width: 100%;
  height: auto;
}

.cover-main {
  z-index: 2;
  top: 0;
  left: 5%;
  transform: rotate(-2deg);
}

.cover-secondary {
  z-index: 1;
  right: 4%;
  bottom: 6px;
  transform: rotate(3deg);
}

.format-badge {
  position: absolute;
  z-index: 4;
  right: 10%;
  top: 12%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 12px 30px rgba(23, 53, 45, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
}

.product-copy h2 {
  max-width: 650px;
  margin-bottom: 22px;
}

.lede {
  color: #334a41;
  font-size: 1.02rem;
  line-height: 1.75;
}

.detail-pills {
  display: flex;
  margin: 26px 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.detail-pills li {
  display: inline-flex;
  min-height: 36px;
  padding: 7px 10px;
  align-items: center;
  gap: 7px;
  border: 1px solid #acc2b8;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
}

.check-list {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--green-2);
  stroke-width: 3;
}

.price-block {
  display: flex;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #aebfb7;
}

.price-block > div {
  display: grid;
  gap: 2px;
}

.price-block span,
.price-block small {
  color: var(--muted);
  font-size: 0.72rem;
}

.price-block strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.75rem;
}

.microcopy {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.55;
}

.photo-story {
  background: var(--white);
}

.photo-story-grid {
  display: grid;
  min-height: 620px;
  align-items: stretch;
  grid-template-columns: 1.1fr 0.9fr;
}

.photo-story picture,
.photo-story img {
  width: 100%;
  height: 100%;
}

.photo-story img {
  object-fit: cover;
}

.photo-story-grid > div {
  display: flex;
  padding: 76px 0 76px 72px;
  flex-direction: column;
  justify-content: center;
}

.photo-story h2 {
  margin-bottom: 22px;
}

.photo-story p:not(.eyebrow) {
  color: var(--muted);
}

.principle-list {
  display: grid;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.principle-list div {
  padding: 16px 14px 16px 0;
  border-bottom: 1px solid var(--line);
}

.principle-list div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.principle-list dt {
  color: var(--muted);
  font-size: 0.7rem;
}

.principle-list dd {
  margin: 1px 0 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.16rem;
  font-weight: 700;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
}

.split-heading h2 {
  margin-bottom: 0;
}

.module-list {
  border-top: 1px solid var(--ink);
}

.module-row {
  border-bottom: 1px solid var(--line);
}

.module-trigger {
  display: grid;
  width: 100%;
  min-height: 112px;
  padding: 24px 4px;
  align-items: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  grid-template-columns: 58px 1fr 24px;
  gap: 22px;
  text-align: left;
}

.module-trigger:hover {
  background: rgba(234, 242, 238, 0.55);
}

.module-number {
  color: var(--coral-dark);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.module-trigger strong {
  display: block;
  margin-bottom: 5px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
}

.module-trigger small {
  display: block;
  max-width: 680px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
}

.module-trigger svg {
  transition: transform 180ms ease;
}

.module-trigger[aria-expanded='true'] svg {
  transform: rotate(45deg);
}

.module-panel {
  padding: 0 0 26px 80px;
}

.chapter-line {
  display: grid;
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  grid-template-columns: 46px 1fr;
  gap: 18px;
}

.chapter-line > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
}

.chapter-line h3 {
  margin: 0 0 5px;
  font-size: 1.05rem;
}

.chapter-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.delivery-band {
  padding-block: 96px;
  color: #e7eeeb;
  background: var(--ink);
}

.section-heading.light h2,
.delivery-band h3 {
  color: var(--white);
}

.section-heading.light p:last-child {
  color: #bed0c8;
}

.delivery-steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.delivery-steps li {
  display: grid;
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.23);
  grid-template-columns: 42px 1fr;
  gap: 13px;
}

.delivery-steps li:first-child {
  padding-left: 0;
}

.delivery-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.delivery-steps li > span {
  color: #ef8067;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.delivery-steps h3 {
  margin-bottom: 10px;
}

.delivery-steps p {
  margin: 0;
  color: #b9cbc3;
  font-size: 0.82rem;
}

.delivery-links {
  display: flex;
  padding-top: 26px;
  gap: 26px;
}

.delivery-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 78px;
  padding: 20px 4px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.14rem;
  font-weight: 700;
  text-align: left;
}

.faq-item button:hover {
  color: var(--green-2);
}

.faq-item button svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded='true'] svg {
  transform: rotate(45deg);
}

.faq-item > div {
  padding: 0 42px 22px 4px;
}

.faq-item > div p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.center-link {
  margin: 36px 0 0;
  text-align: center;
}

.final-cta {
  padding-block: 76px;
  color: var(--white);
  background: var(--blue);
}

.final-cta-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
}

.final-cta h2 {
  margin-bottom: 16px;
  color: var(--white);
}

.final-cta p:not(.eyebrow):not(.final-price) {
  margin-bottom: 0;
  color: #dbeaf1;
}

.final-cta-inner > div:last-child {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.final-price {
  margin: 0;
  color: var(--white);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 700;
}

.final-cta small {
  color: #dbeaf1;
  font-size: 0.7rem;
}

.site-footer {
  color: #c5d2cc;
  background: #102720;
}

.footer-main {
  display: grid;
  padding-block: 66px 50px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 54px;
}

.wordmark-light {
  margin-bottom: 20px;
  color: var(--white);
}

.wordmark-light:hover {
  color: var(--white);
}

.footer-brand p {
  max-width: 360px;
  color: #aebfb7;
  font-size: 0.78rem;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-main h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-main > div:not(.footer-brand) a {
  color: #b8c8c1;
  font-size: 0.76rem;
  text-decoration: none;
}

.footer-main a:hover {
  color: var(--white);
}

.footer-legal {
  display: flex;
  padding-block: 24px 30px;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-legal p {
  max-width: 750px;
  margin: 0;
  color: #8fa39a;
  font-size: 0.65rem;
}

.footer-legal p:last-child {
  white-space: nowrap;
}

.page-hero {
  padding-block: 96px 72px;
  border-bottom: 1px solid var(--line);
  background: var(--pale-green);
}

.page-hero .shell {
  max-width: 950px;
  margin-left: max(20px, calc((100% - 1180px) / 2));
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
}

.page-hero p:not(.eyebrow) {
  max-width: 710px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.page-hero span {
  color: var(--muted);
  font-size: 0.72rem;
}

.prose-layout {
  display: grid;
  padding-block: 72px 110px;
  align-items: start;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 80px;
}

.prose-aside {
  position: sticky;
  top: 104px;
  display: grid;
  padding: 18px 0;
  gap: 8px;
  border-top: 2px solid var(--coral);
  border-bottom: 1px solid var(--line);
}

.prose-aside p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
}

.prose-aside a {
  overflow-wrap: anywhere;
  font-size: 0.7rem;
}

.prose {
  min-width: 0;
}

.prose h2 {
  margin: 38px 0 12px;
  padding-top: 5px;
  font-size: 1.7rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: #3d5048;
  font-size: 0.9rem;
}

.prose li + li {
  margin-top: 7px;
}

.prose a {
  overflow-wrap: anywhere;
}

.legal-callout {
  margin-top: 38px;
  padding: 22px 24px;
  border: 1px solid #9bb9aa;
  border-left: 4px solid var(--green);
  background: var(--pale-green);
}

.legal-callout strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.08rem;
}

.legal-callout p {
  margin: 6px 0 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
}

.about-grid h2 {
  margin-bottom: 22px;
}

.about-grid > div:first-child > p {
  color: var(--muted);
}

.about-grid .button {
  margin-top: 12px;
}

.about-principles {
  border-top: 1px solid var(--ink);
}

.about-principles article {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
}

.about-principles span {
  color: var(--coral-dark);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  grid-row: 1 / 3;
}

.about-principles h3 {
  margin-bottom: 8px;
}

.about-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.company-strip {
  padding-block: 46px;
  border-top: 1px solid var(--line);
  background: var(--pale-blue);
}

.company-strip .shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.company-strip .shell > div {
  display: grid;
  padding: 8px 24px;
  gap: 3px;
  border-right: 1px solid #a9bfca;
}

.company-strip .shell > div:first-child {
  padding-left: 0;
}

.company-strip .shell > div:last-child {
  border-right: 0;
}

.company-strip span {
  color: var(--muted);
  font-size: 0.66rem;
}

.company-strip strong {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.76rem;
}

.faq-page {
  max-width: 980px;
}

.contact-callout {
  display: flex;
  margin-top: 64px;
  padding: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid #aac3b8;
  border-radius: var(--radius);
  background: var(--pale-green);
}

.contact-callout > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
}

.contact-callout > div > svg {
  color: var(--blue);
  grid-row: 1 / 3;
}

.contact-callout h2 {
  margin-bottom: 6px;
  font-size: 1.5rem;
}

.contact-callout p {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.contact-details h2,
.contact-form h2 {
  margin-bottom: 18px;
  font-size: 1.65rem;
}

.contact-details > p,
.contact-details dd,
.contact-details address {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.contact-details dl {
  margin: 32px 0 50px;
  border-top: 1px solid var(--line);
}

.contact-details dl > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details dt {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-details dd {
  margin: 0;
  padding-left: 26px;
}

.contact-form {
  display: grid;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 53, 45, 0.08);
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.contact-form label,
.checkout-form label:not(.checkbox-row) {
  margin: 15px 0 7px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-form label span {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 400;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #95a49e;
  border-radius: 4px;
  color: var(--text);
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(40, 106, 141, 0.18);
}

.checkbox-row {
  display: grid;
  margin: 20px 0;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.55;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.contact-form .button {
  justify-self: start;
}

.form-status,
.checkout-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-status[data-state='error'],
.checkout-status[data-state='error'] {
  color: #9c2e1d;
}

.form-status[data-state='success'],
.checkout-status[data-state='success'] {
  color: var(--green);
}

.company-page {
  max-width: 920px;
}

.company-table {
  margin: 0 0 40px;
  border-top: 1px solid var(--ink);
}

.company-table > div {
  display: grid;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 230px 1fr;
  gap: 24px;
}

.company-table dt {
  color: var(--muted);
  font-size: 0.76rem;
}

.company-table dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.checkout-page main {
  min-height: 70vh;
}

.checkout-head {
  padding-block: 46px 38px;
  border-bottom: 1px solid var(--line);
  background: var(--pale-green);
}

.checkout-head .back-link {
  margin-bottom: 25px;
}

.checkout-head h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.checkout-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.checkout-shell {
  display: grid;
  padding-block: 62px 100px;
  align-items: start;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  gap: 70px;
}

.checkout-form {
  display: grid;
  gap: 24px;
}

.checkout-section {
  display: grid;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 36px 1fr;
  gap: 18px;
}

.step-label {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.checkout-section h2 {
  margin-bottom: 6px;
  font-size: 1.55rem;
}

.checkout-section p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.8rem;
}

.checkout-section .checkbox-row {
  margin: 16px 0;
}

.consent-box {
  padding: 16px;
  border: 1px solid #9bb9aa;
  border-radius: var(--radius);
  background: var(--pale-green);
}

.consent-box strong {
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.order-summary {
  position: sticky;
  top: 96px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 53, 45, 0.09);
}

.order-summary > h2 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.summary-product {
  display: grid;
  padding-bottom: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 78px 1fr;
  gap: 15px;
}

.summary-product img {
  width: 78px;
  border: 1px solid var(--line);
}

.summary-product div {
  display: grid;
}

.summary-product strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.3;
}

.summary-product span,
.summary-product small {
  color: var(--muted);
  font-size: 0.68rem;
}

.order-summary dl {
  margin: 22px 0;
}

.order-summary dl > div {
  display: flex;
  padding: 7px 0;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.72rem;
}

.order-summary dd {
  margin: 0;
  color: var(--ink);
}

.order-summary .summary-total {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.summary-total dd {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
}

.order-summary ul {
  display: grid;
  margin: 0 0 22px;
  padding: 18px 0;
  gap: 9px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.order-summary li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.69rem;
}

.order-summary li svg {
  color: var(--green);
}

.order-summary > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
}

.success-page {
  display: flex;
  min-height: 620px;
  padding-block: 92px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.status-icon {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.status-icon svg[data-lucide='loader-circle'] {
  animation: spin 1.1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.success-page h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.success-page > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
}

.download-actions {
  display: flex;
  margin: 24px 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.success-help {
  max-width: 690px;
  margin: 28px 0;
  padding: 20px;
  border: 1px solid #a9c3b7;
  border-radius: var(--radius);
  background: var(--pale-green);
}

.success-help p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.not-found {
  display: flex;
  min-height: 600px;
  padding-block: 80px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.not-found > span {
  color: var(--coral);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
}

.not-found h1 {
  max-width: 700px;
  margin: 18px 0;
}

.not-found p {
  margin-bottom: 28px;
  color: var(--muted);
}

@media (max-width: 1060px) {
  :root {
    --shell: min(100% - 34px, 960px);
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.75rem;
  }

  .product-layout {
    grid-template-columns: minmax(330px, 0.85fr) minmax(420px, 1.15fr);
    gap: 50px;
  }

  .product-visual {
    min-height: 550px;
  }

  .photo-story-grid > div {
    padding-left: 46px;
  }

  .footer-main {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 30px;
  }

  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 64px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 8px 12px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    position: fixed;
    z-index: 101;
    top: var(--header-h);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - var(--header-h));
    padding: 18px max(17px, calc((100% - 826px) / 2));
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 40px rgba(23, 53, 45, 0.18);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-menu .button {
    margin-top: 16px;
  }

  .hero {
    min-height: 670px;
    align-items: end;
  }

  .hero::after {
    display: none;
  }

  .hero-media img {
    object-position: 64% center;
    opacity: 0.33;
  }

  .hero-copy {
    width: min(650px, 100%);
    padding: 80px 0 56px;
  }

  .quick-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts-grid > div,
  .quick-facts-grid > div:first-child,
  .quick-facts-grid > div:last-child {
    min-height: 82px;
    padding: 14px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .quick-facts-grid > div:nth-child(even) {
    border-right: 0;
  }

  .quick-facts-grid > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .benefit-grid article,
  .benefit-grid article + article,
  .benefit-grid article:last-child {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-grid article:last-child {
    border-bottom: 0;
  }

  .product-layout,
  .photo-story-grid,
  .split-heading,
  .final-cta-inner,
  .about-grid,
  .contact-grid,
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .product-layout {
    gap: 50px;
  }

  .product-visual {
    width: min(600px, 100%);
    min-height: 620px;
    margin-inline: auto;
  }

  .photo-story-grid {
    width: 100%;
  }

  .photo-story picture {
    max-height: 540px;
  }

  .photo-story-grid > div {
    width: var(--shell);
    margin-inline: auto;
    padding: 62px 0 72px;
  }

  .split-heading {
    gap: 20px;
  }

  .module-panel {
    padding-left: 0;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .delivery-steps li,
  .delivery-steps li:first-child,
  .delivery-steps li:last-child {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.23);
  }

  .delivery-steps li:last-child {
    border-bottom: 0;
  }

  .final-cta-inner {
    gap: 34px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .prose-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prose-aside {
    position: static;
  }

  .company-strip .shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-strip .shell > div:nth-child(2) {
    border-right: 0;
  }

  .company-strip .shell > div:nth-child(n + 3) {
    border-top: 1px solid #a9bfca;
  }

  .contact-grid {
    gap: 50px;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  body {
    font-size: 15px;
  }

  .wordmark {
    font-size: 1rem;
  }

  .wordmark-mark {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }

  .nav-cta {
    width: 42px;
    padding: 0;
  }

  .nav-cta span {
    display: none;
  }

  .hero {
    min-height: 665px;
  }

  .hero-media img {
    object-position: 68% center;
    opacity: 0.27;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .quick-facts-grid > div,
  .quick-facts-grid > div:first-child,
  .quick-facts-grid > div:last-child {
    padding-inline: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .quick-facts span {
    font-size: 1.25rem;
  }

  .section,
  .product-band {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .product-visual {
    min-height: 470px;
  }

  .cover {
    width: 66%;
  }

  .format-badge {
    right: 4%;
    width: 54px;
    height: 54px;
  }

  .detail-pills {
    align-items: stretch;
  }

  .detail-pills li {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
    white-space: normal;
  }

  .price-block {
    align-items: stretch;
    flex-direction: column;
  }

  .price-block .button {
    width: 100%;
  }

  .photo-story picture {
    height: 390px;
  }

  .module-trigger {
    min-height: 102px;
    padding-inline: 0;
    grid-template-columns: 40px 1fr 22px;
    gap: 10px;
  }

  .module-trigger strong {
    font-size: 1.2rem;
  }

  .chapter-line {
    padding-inline: 6px;
    grid-template-columns: 34px 1fr;
    gap: 9px;
  }

  .delivery-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item button {
    font-size: 1rem;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal p:last-child {
    white-space: normal;
  }

  .page-hero {
    padding-block: 68px 52px;
  }

  .page-hero .shell {
    margin-inline: auto;
  }

  .prose-layout {
    padding-block: 48px 80px;
  }

  .prose h2 {
    font-size: 1.45rem;
  }

  .contact-callout {
    padding: 25px;
    align-items: stretch;
    flex-direction: column;
  }

  .contact-callout .button {
    width: 100%;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .company-strip .shell {
    grid-template-columns: 1fr;
  }

  .company-strip .shell > div,
  .company-strip .shell > div:first-child {
    padding: 14px 0;
    border-top: 1px solid #a9bfca;
    border-right: 0;
  }

  .company-strip .shell > div:first-child {
    border-top: 0;
  }

  .company-table > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .checkout-shell {
    padding-block: 38px 70px;
    gap: 34px;
  }

  .checkout-section {
    grid-template-columns: 30px 1fr;
    gap: 11px;
  }

  .step-label {
    width: 28px;
    height: 28px;
  }

  .order-summary {
    padding: 22px 18px;
  }

  .download-actions {
    width: 100%;
    flex-direction: column;
  }

  .download-actions .button {
    width: 100%;
  }
}

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

@media print {
  .site-header,
  .site-footer,
  .prose-aside,
  .button {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero,
  .prose-layout {
    padding: 20px 0;
  }

  .prose-layout {
    display: block;
  }

  a {
    color: #000;
  }
}

/* Multi-edition offer system */
.edition-section {
  padding-block: 104px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f4f6f4;
}

.edition-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.edition-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #b9c6c0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 53, 45, 0.08);
  flex-direction: column;
}

.edition-card-featured {
  border: 2px solid var(--coral-dark);
  box-shadow: 0 18px 42px rgba(23, 53, 45, 0.14);
}

.edition-ribbon {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  padding: 7px 9px;
  border-radius: 3px;
  color: var(--white);
  background: var(--coral-dark);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.3;
}

.edition-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--line);
  object-fit: cover;
}

.edition-card-body {
  display: flex;
  padding: 28px;
  flex: 1;
  flex-direction: column;
}

.edition-kicker {
  margin: 0 0 8px;
  color: var(--coral-dark);
  font-size: 0.66rem;
  font-weight: 700;
}

.edition-card h3 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.edition-price {
  display: flex;
  margin: 0 0 16px;
  align-items: baseline;
  gap: 8px;
}

.edition-price strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.7rem;
}

.edition-price span {
  color: var(--muted);
  font-size: 0.68rem;
}

.edition-best {
  min-height: 88px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.edition-card ul {
  display: grid;
  margin: 0 0 26px;
  padding: 20px 0 0;
  gap: 10px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.edition-card li {
  display: grid;
  align-items: start;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 8px;
  color: #3e5149;
  font-size: 0.74rem;
  line-height: 1.5;
}

.edition-card li svg {
  margin-top: 2px;
  color: var(--green-2);
  stroke-width: 3;
}

.edition-card .button {
  width: 100%;
  margin-top: auto;
}

.edition-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.63rem;
  text-align: center;
}

.edition-disclosure {
  max-width: 860px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
}

.comparison-section {
  padding-block: 104px;
  background: var(--white);
}

.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  vertical-align: middle;
}

.comparison-table th:last-child,
.comparison-table td:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  color: var(--white);
  background: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
}

.comparison-table thead th:first-child {
  width: 34%;
  text-align: left;
}

.comparison-table thead span {
  display: inline-block;
  margin-top: 4px;
  color: #c8d8d1;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.68rem;
}

.comparison-table tbody th {
  color: var(--ink);
  background: #f6f8f7;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 0.74rem;
  text-align: left;
}

.comparison-table td {
  color: var(--muted);
  font-size: 0.68rem;
}

.table-yes {
  color: var(--green);
  font-weight: 700;
}

.table-no {
  color: #76847e;
}

.suite-band {
  padding-block: 104px;
  border-top: 1px solid #ecd4cb;
  border-bottom: 1px solid #ecd4cb;
  background: var(--pale-coral);
}

.suite-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 86px;
}

.suite-intro {
  position: sticky;
  top: 104px;
}

.suite-intro h2 {
  margin-bottom: 20px;
}

.suite-intro > p:not(.eyebrow) {
  color: #5d514c;
  font-size: 0.88rem;
}

.suite-intro dl {
  margin: 34px 0 0;
  border-top: 1px solid #d5bcb2;
}

.suite-intro dl > div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid #d5bcb2;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 15px;
}

.suite-intro dt {
  color: #6c5d57;
  font-size: 0.67rem;
}

.suite-intro dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
}

.lesson-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.lesson-list li {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid #d5bcb2;
  grid-template-columns: 46px 1fr;
  gap: 18px;
}

.lesson-list li > span {
  color: var(--coral-dark);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.lesson-list h3 {
  margin-bottom: 7px;
  font-size: 1.28rem;
}

.lesson-list p {
  margin-bottom: 5px;
  color: #5d514c;
  font-size: 0.76rem;
}

.lesson-list small {
  color: var(--coral-dark);
  font-size: 0.64rem;
  font-weight: 700;
}

.update-note {
  display: grid;
  margin-top: 42px;
  padding: 22px 24px;
  border: 1px solid #cda99c;
  border-left: 4px solid var(--coral-dark);
  background: rgba(255, 255, 255, 0.46);
  grid-template-columns: 220px 1fr;
  gap: 24px;
}

.update-note strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
}

.update-note p {
  margin: 0;
  color: #5d514c;
  font-size: 0.72rem;
}

/* Checkout selector and dynamic order summary */
.offer-selector {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.offer-selector legend {
  margin-bottom: 6px;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.12;
}

.offer-selector > p {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.8rem;
}

.offer-choice {
  display: grid;
  min-width: 0;
  margin: 0 0 10px;
  padding: 15px;
  align-items: center;
  border: 1px solid #aebdb6;
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 12px;
}

.offer-choice:hover {
  border-color: var(--green);
}

.offer-choice.is-selected {
  border: 2px solid var(--green);
  background: var(--pale-green);
}

.offer-choice input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--green);
}

.offer-choice > span {
  display: grid;
  min-width: 0;
}

.offer-choice strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.98rem;
}

.offer-choice small {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

.offer-choice b {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
}

.summary-product {
  grid-template-columns: 94px 1fr;
}

.summary-product img {
  width: 94px;
  height: 94px;
  object-fit: cover;
}

/* Order confirmation */
.success-order {
  display: flex;
  margin: 14px 0 4px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.success-order strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
}

.success-order span {
  color: var(--muted);
  font-size: 0.72rem;
}

.portal-button {
  margin-top: 24px;
}

.download-groups {
  width: min(920px, 100%);
  margin: 34px 0 8px;
  text-align: left;
}

.download-group + .download-group {
  margin-top: 28px;
}

.download-group h2 {
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  font-size: 1.25rem;
}

.download-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.download-action {
  display: grid;
  min-width: 0;
  padding: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  text-decoration: none;
}

.download-action:hover {
  border-color: var(--green);
  color: var(--ink);
  background: var(--pale-green);
}

.download-action > svg {
  margin-top: 2px;
  color: var(--green);
}

.download-action span {
  display: grid;
  min-width: 0;
}

.download-action strong,
.download-action small {
  overflow-wrap: anywhere;
}

.download-action strong {
  font-size: 0.74rem;
}

.download-action small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.45;
}

/* Private Master Suite portal */
.member-body main {
  min-height: 70vh;
}

.member-shell {
  padding-block: 64px 110px;
}

.member-loading {
  display: flex;
  min-height: 560px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.member-loading h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
}

.member-loading > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
}

.member-hero {
  display: grid;
  padding: 52px;
  align-items: end;
  border-radius: var(--radius);
  color: #dce8e3;
  background: var(--ink);
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 50px;
}

.member-hero h1 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.member-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #bed0c8;
  font-size: 0.86rem;
}

.member-account {
  display: grid;
  padding-top: 16px;
  gap: 4px;
  border-top: 2px solid var(--coral);
}

.member-account span,
.member-account small {
  color: #aebfb7;
  font-size: 0.64rem;
}

.member-account strong {
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: 0.8rem;
}

.member-resources,
.member-lessons {
  padding-top: 86px;
}

.member-heading {
  display: grid;
  margin-bottom: 38px;
  align-items: end;
  grid-template-columns: 1fr 0.7fr;
  gap: 70px;
}

.member-heading h2 {
  margin: 0;
}

.member-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.resource-group + .resource-group {
  margin-top: 32px;
}

.resource-group h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.resource-list {
  border-top: 1px solid var(--ink);
}

.resource-row {
  display: grid;
  min-width: 0;
  padding: 15px 4px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  grid-template-columns: 26px minmax(0, 1fr) 22px;
  gap: 10px;
  text-decoration: none;
}

.resource-row:hover {
  color: var(--green);
  background: rgba(234, 242, 238, 0.52);
}

.resource-row > svg {
  color: var(--green);
}

.resource-row span {
  display: grid;
  min-width: 0;
}

.resource-row strong,
.resource-row small {
  overflow-wrap: anywhere;
}

.resource-row strong {
  font-size: 0.76rem;
}

.resource-row small {
  color: var(--muted);
  font-size: 0.62rem;
}

.portal-lesson-list {
  display: grid;
  gap: 22px;
}

.portal-lesson {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.portal-lesson > header {
  display: grid;
  padding: 30px;
  align-content: start;
  background: var(--pale-green);
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.portal-lesson-number {
  color: var(--coral-dark);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.portal-lesson h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.portal-lesson header p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
}

.portal-lesson header small {
  color: var(--green);
  font-size: 0.63rem;
  font-weight: 700;
}

.portal-media {
  display: grid;
  min-width: 0;
  padding: 22px;
  align-content: start;
  gap: 11px;
}

.portal-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: #0d1714;
}

.portal-media audio {
  width: 100%;
  min-height: 42px;
}

.audio-label {
  margin: 2px 0 -4px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
}

.portal-media .text-link {
  justify-self: start;
  font-size: 0.7rem;
}

.member-update {
  display: grid;
  margin-top: 54px;
  padding: 22px 24px;
  border: 1px solid #9bb9aa;
  border-left: 4px solid var(--green);
  background: var(--pale-green);
  grid-template-columns: 210px 1fr;
  gap: 22px;
}

.member-update strong {
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
}

.member-update p,
.member-security {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.member-security {
  margin-top: 24px;
  text-align: center;
}

@media (max-width: 1060px) {
  .edition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .edition-card:last-child {
    grid-column: 1 / -1;
  }

  .edition-card:last-child {
    display: grid;
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  }

  .edition-card:last-child > img {
    height: 100%;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .suite-layout {
    gap: 54px;
  }

  .portal-lesson {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  }
}

@media (max-width: 860px) {
  .edition-section,
  .comparison-section,
  .suite-band {
    padding-block: 78px;
  }

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

  .edition-card:last-child,
  .suite-layout,
  .member-hero,
  .member-heading,
  .portal-lesson {
    grid-template-columns: 1fr;
  }

  .edition-card:last-child {
    display: flex;
  }

  .edition-card:last-child > img {
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .edition-best {
    min-height: 0;
  }

  .suite-intro {
    position: static;
  }

  .update-note,
  .member-update {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .member-hero,
  .member-heading {
    gap: 28px;
  }

  .portal-lesson > header {
    padding-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .edition-card-body {
    padding: 23px 18px;
  }

  .edition-ribbon {
    font-size: 0.58rem;
  }

  .comparison-table {
    min-width: 700px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 11px;
  }

  .lesson-list li {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }

  .update-note {
    padding: 18px;
  }

  .offer-choice {
    padding: 13px 11px;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .offer-choice small {
    display: none;
  }

  .download-action-grid {
    grid-template-columns: 1fr;
  }

  .member-shell {
    padding-block: 38px 78px;
  }

  .member-hero {
    padding: 34px 22px;
  }

  .member-resources,
  .member-lessons {
    padding-top: 64px;
  }

  .portal-lesson > header,
  .portal-media {
    padding: 20px 16px;
  }

  .portal-lesson > header {
    grid-template-columns: 34px 1fr;
    gap: 9px;
  }

  .resource-row {
    align-items: start;
  }
}
