/*
Theme Name: Coach Johnny
Theme URI: https://johnnyhussain.com/
Author: Coach Johnny
Description: A bespoke coded WordPress and WooCommerce theme for Coach Johnny's life coaching website.
Version: 1.0.6
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: coach-johnny
*/

:root {
  --ink: #171814;
  --ink-soft: #24251f;
  --ivory: #f4f0e7;
  --paper: #fbf9f4;
  --gold: #c3a25c;
  --gold-light: #dfc888;
  --sage: #7f8b78;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(23, 24, 20, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section-pad { padding: 120px 0; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 79% 40%, rgba(195, 162, 92, 0.13), transparent 34%),
    linear-gradient(120deg, #141511 0%, #1b1c17 62%, #202119 100%);
  color: var(--ivory);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(195, 162, 92, 0.16);
  border-radius: 50%;
  right: -210px;
  top: 90px;
}
.hero-glow::after {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(195, 162, 92, 0.1);
  border-radius: 50%;
  inset: 94px;
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}
.wordmark { display: inline-flex; width: fit-content; flex-direction: column; line-height: 1.1; }
.wordmark-name { font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; letter-spacing: .04em; }
.wordmark-role { margin-top: 5px; color: rgba(244,240,231,.54); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.desktop-nav { display: flex; gap: 32px; color: rgba(244,240,231,.7); font-size: 12px; letter-spacing: .08em; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a:hover { color: var(--gold-light); }
.header-actions { display: flex; align-items: center; justify-self: end; gap: 20px; }
.header-utilities { display: flex; align-items: center; gap: 15px; }
.header-utility-link { display: inline-flex; align-items: center; gap: 6px; color: rgba(244,240,231,.62); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: color .2s ease; }
.header-utility-link:hover { color: var(--gold-light); }
.header-utility-link svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.45; }
.header-basket-count { display: grid; width: 17px; height: 17px; place-items: center; border: 1px solid rgba(223,200,136,.35); border-radius: 50%; color: var(--gold-light); font-size: 8px; letter-spacing: 0; }
.mobile-menu { display: none; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: #13130f; }
.button-gold:hover { background: var(--gold-light); }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 72px;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 80px;
}
.hero-copy { animation: rise .8s ease both; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow span { width: 38px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #8b7341; }
.eyebrow.light { color: var(--gold-light); }
h1, h2, blockquote { font-family: "Cormorant Garamond", Georgia, serif; }
h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ivory);
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .91;
}
h1 em, h2 em, blockquote em { color: var(--gold-light); font-weight: 500; }
.hero-intro { max-width: 650px; margin: 32px 0 0; color: rgba(244,240,231,.68); font-size: 16px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.text-link { color: rgba(244,240,231,.78); border-bottom: 1px solid rgba(244,240,231,.28); padding: 8px 0; font-size: 12px; letter-spacing: .05em; }
.hero-note { margin: 26px 0 0; color: rgba(244,240,231,.36); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }

.hero-portrait { position: relative; justify-self: end; width: min(420px, 100%); animation: rise .8s .14s ease both; }
.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #f2eee5, #d6cfbf);
  border: 1px solid rgba(255,255,255,.18);
}
.portrait-frame::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(23,24,20,.13); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.04); }
.portrait-card {
  position: absolute;
  left: -44px;
  bottom: 36px;
  display: flex;
  min-width: 175px;
  flex-direction: column;
  padding: 18px 22px;
  background: var(--gold);
  color: #171814;
}
.portrait-card span { font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; line-height: 1; }
.portrait-card small { margin-top: 6px; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.trust-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}
.trust-bar div { display: flex; min-height: 104px; flex-direction: column; justify-content: center; padding: 0 24px; border-right: 1px solid var(--line-dark); }
.trust-bar div:first-child { padding-left: 0; }
.trust-bar div:last-child { border-right: 0; }
.trust-bar strong { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.trust-bar span { margin-top: 4px; color: rgba(244,240,231,.45); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.recognition { background: var(--ivory); }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
h2 { margin: 0; font-size: clamp(46px, 4.5vw, 68px); font-weight: 500; letter-spacing: -.035em; line-height: 1; }
.recognition h2 em { color: #8b7341; }
.recognition-copy > p { margin: 0 0 36px; color: #57584f; font-size: 17px; line-height: 1.9; }
.challenge-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.challenge { min-height: 102px; display: flex; align-items: center; gap: 14px; padding: 20px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); font-size: 13px; }
.challenge span { display: grid; place-items: center; flex: 0 0 26px; height: 26px; border-radius: 50%; background: rgba(127,139,120,.17); color: #596452; font-size: 12px; }

.services { background: var(--ink); color: var(--ivory); }
.split-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; }
.split-heading > p { max-width: 470px; margin: 0 0 4px; color: rgba(244,240,231,.58); line-height: 1.9; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.service-card { min-height: 370px; padding: 40px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); transition: background .25s ease, transform .25s ease; }
.service-card:hover { background: rgba(255,255,255,.04); transform: translateY(-4px); }
.service-number { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; }
.service-card h3 { margin: 58px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; font-weight: 500; line-height: 1.1; }
.service-card p { margin: 0; color: rgba(244,240,231,.54); font-size: 14px; line-height: 1.85; }
.service-card a { display: inline-flex; gap: 14px; margin-top: 34px; color: var(--gold-light); border-bottom: 1px solid rgba(223,200,136,.35); padding-bottom: 6px; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.belief { position: relative; overflow: hidden; background: #787f70; color: white; }
.belief::before { content: "CJ"; position: absolute; right: -2vw; bottom: -14vw; color: rgba(255,255,255,.06); font-family: "Cormorant Garamond", Georgia, serif; font-size: 32vw; line-height: 1; }
.belief-inner { position: relative; z-index: 1; padding-top: 110px; padding-bottom: 110px; }
.belief blockquote { max-width: 850px; margin: 0; font-size: clamp(48px, 6vw, 84px); font-weight: 400; letter-spacing: -.035em; line-height: .98; }
.belief-copy { max-width: 530px; margin: 38px 0 0 auto; color: rgba(255,255,255,.72); line-height: 1.9; }

.process { background: var(--paper); }
.centred-heading { display: flex; max-width: 820px; margin: 0 auto; flex-direction: column; align-items: center; text-align: center; }
.centred-heading .eyebrow { justify-content: center; }
.centred-heading h2 em, .faq h2 em, .about h2 em { color: #8b7341; }
.centred-heading > p:last-child { max-width: 630px; margin: 28px auto 0; color: #64655d; line-height: 1.9; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 72px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.step { position: relative; min-height: 300px; padding: 40px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.step > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; }
.step h3 { margin: 70px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 30px; font-weight: 500; line-height: 1.1; }
.step p { margin: 0; color: #65665e; font-size: 13px; line-height: 1.85; }

.packages { background: #25261f; color: var(--ivory); }
.package-heading { align-items: end; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 66px; }
.package-card { position: relative; min-height: 370px; padding: 42px; background: rgba(255,255,255,.025); border: 1px solid var(--line-dark); }
.package-card.featured { background: var(--ivory); color: var(--ink); transform: translateY(-12px); }
.recommended { position: absolute; right: 22px; top: 20px; color: #8b7341; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.package-sessions { margin: 0; color: var(--gold-light) !important; font-size: 10px !important; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.featured .package-sessions { color: #8b7341 !important; }
.package-card h3 { min-height: 64px; margin: 60px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 34px; font-weight: 500; line-height: 1; }
.package-card > p:not(.package-sessions) { margin: 0; color: rgba(244,240,231,.54); font-size: 13px; line-height: 1.85; }
.package-card.featured > p:not(.package-sessions) { color: #686960; }
.package-card a { display: inline-flex; gap: 16px; margin-top: 34px; padding-bottom: 6px; border-bottom: 1px solid rgba(223,200,136,.34); color: var(--gold-light); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.package-card.featured a { color: #7d683a; border-color: rgba(125,104,58,.35); }
.package-note { margin: 38px 0 0; color: rgba(244,240,231,.36); font-size: 9px; letter-spacing: .12em; text-align: center; text-transform: uppercase; }

.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; align-items: center; }
.about-image { position: relative; padding: 22px; background: #e4ded1; }
.about-image::before { content: ""; position: absolute; inset: 10px; border: 1px solid rgba(23,24,20,.16); }
.about-image img { position: relative; width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; filter: saturate(.75) contrast(1.03); }
.about-stamp { position: absolute; right: -42px; bottom: 42px; display: flex; width: 116px; height: 116px; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--ink); box-shadow: 0 16px 44px rgba(23,24,20,.16); text-align: center; }
.about-stamp strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; font-weight: 600; line-height: 1; }
.about-stamp span { margin-top: 6px; font-size: 7px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-copy > p:not(.eyebrow) { margin: 28px 0 0; color: #5f6057; line-height: 1.9; }
.about-facts { display: grid; grid-template-columns: repeat(2, 1fr); margin: 32px 0; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.about-facts span { padding: 14px 16px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); color: #5b5c54; font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.button-dark { background: var(--ink); color: var(--ivory); }
.button-dark:hover { background: #32332b; }

.resources { background: #171814; color: var(--ivory); }
.resource-heading { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.resource-heading .text-link { flex: 0 0 auto; }
.book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 64px; }
.book-card { display: block; transition: transform .25s ease; }
.book-card:hover { transform: translateY(-7px); }
.book-image { overflow: hidden; aspect-ratio: 1; background: #25261f; }
.book-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.book-card:hover img { transform: scale(1.025); }
.book-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 2px; border-bottom: 1px solid var(--line-dark); }
.book-meta span { font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; }
.book-meta small { color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 110px; }
.faq-intro { position: sticky; top: 40px; align-self: start; }
.faq-intro > p:last-child { max-width: 360px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { display: flex; cursor: pointer; list-style: none; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 26px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; color: #8b7341; font-family: "Manrope", Arial, sans-serif; font-size: 16px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 720px; margin: -6px 60px 28px 0; color: #66675f; line-height: 1.9; }

.final-cta { position: relative; overflow: hidden; background: #747c6d; color: white; }
.final-cta::after { content: ""; position: absolute; width: 620px; height: 620px; right: -240px; top: -160px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.final-cta-inner { position: relative; z-index: 1; padding-top: 112px; padding-bottom: 112px; }
.final-cta h2 { max-width: 800px; font-size: clamp(56px, 7vw, 92px); }
.final-cta > .page-shell > p:not(.eyebrow) { max-width: 600px; margin: 32px 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.9; }

.site-footer { background: #11120f; color: var(--ivory); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 70px; padding-top: 78px; padding-bottom: 70px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 12px; }
.footer-grid h3 { margin: 0 0 12px; color: var(--gold-light); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.footer-grid a { width: fit-content; color: rgba(244,240,231,.58); font-size: 12px; transition: color .2s ease; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand > p { max-width: 330px; margin: 24px 0 18px; color: rgba(244,240,231,.5); font-size: 12px; line-height: 1.8; }
.footer-bottom { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line-dark); color: rgba(244,240,231,.32); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-company-disclosure { padding-top: 24px; color: rgba(244,240,231,.38); }
.footer-company-disclosure p { max-width: 940px; margin: 0; font-size: 9px; line-height: 1.8; }

.about-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(195,162,92,.14), transparent 30%),
    linear-gradient(125deg, #141511 0%, #1d1e18 68%, #22231d 100%);
  color: var(--ivory);
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}
.about-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 72px;
  align-items: center;
  min-height: 700px;
  padding-top: 78px;
  padding-bottom: 76px;
}
.about-hero-copy { animation: rise .8s ease both; }
.about-hero-copy h1 { font-size: clamp(54px, 5.7vw, 84px); }
.about-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 34px 0 26px; color: rgba(244,240,231,.66); font-size: 16px; line-height: 1.9; }
.about-hero-portrait { position: relative; justify-self: end; width: min(430px, 100%); min-height: 520px; animation: rise .8s .12s ease both; }
.about-portrait-backdrop { position: absolute; inset: 0 0 0 50px; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: linear-gradient(145deg, #e8e1d3, #cfc5b2); color: rgba(23,24,20,.055); font-family: "Cormorant Garamond", Georgia, serif; font-size: 220px; line-height: 1; }
.about-hero-portrait img { position: absolute; z-index: 1; left: 0; bottom: 0; width: calc(100% - 34px); height: calc(100% - 30px); object-fit: cover; object-position: center; filter: saturate(.74) contrast(1.04); }
.about-portrait-label { position: absolute; z-index: 2; right: -28px; bottom: 30px; display: flex; min-width: 190px; flex-direction: column; padding: 18px 22px; background: var(--gold); color: var(--ink); }
.about-portrait-label span { font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; line-height: 1; }
.about-portrait-label small { margin-top: 7px; font-size: 7px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-hero-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.about-hero-stats div { display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 0 25px; border-right: 1px solid var(--line-dark); }
.about-hero-stats div:first-child { padding-left: 0; }
.about-hero-stats div:last-child { border-right: 0; }
.about-hero-stats strong { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; font-weight: 500; }
.about-hero-stats span { margin-top: 5px; color: rgba(244,240,231,.42); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.about-opening { background: var(--ivory); }
.about-opening-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 110px; }
.about-opening h2 em { color: #8b7341; }
.about-opening-copy p { margin: 24px 0 0; color: #616259; line-height: 1.95; }
.about-opening-copy .lead { margin-top: 0; color: #34352f; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; line-height: 1.4; }

.story-chapters { background: var(--paper); }
.story-chapter { display: grid; grid-template-columns: .52fr .9fr 1.18fr; gap: 70px; align-items: start; padding: 92px 0; border-top: 1px solid var(--line-light); }
.story-chapter:last-child { border-bottom: 1px solid var(--line-light); }
.chapter-index { display: flex; flex-direction: column; }
.chapter-index > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 34px; }
.chapter-index small { margin-top: 12px; color: #74756c; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.story-chapter h2 { max-width: 370px; font-size: clamp(38px, 3.5vw, 52px); }
.chapter-copy p { margin: 0 0 22px; color: #64655d; line-height: 1.95; }
.chapter-copy p:last-child { margin-bottom: 0; }

.about-belief { position: relative; overflow: hidden; background: #757d6e; color: white; }
.about-belief::after { content: ""; position: absolute; width: 720px; height: 720px; right: -260px; top: -180px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.about-belief-inner { position: relative; z-index: 1; padding-top: 118px; padding-bottom: 118px; }
.about-belief blockquote { max-width: 1020px; margin: 0; font-size: clamp(48px, 5.6vw, 76px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.about-belief-inner > p:last-child { max-width: 570px; margin: 40px 0 0 auto; color: rgba(255,255,255,.72); line-height: 1.9; }

.about-principles { background: var(--ivory); }
.about-principles-heading > p { color: #62635a; }
.about-principles-heading h2 em { color: #8b7341; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.principle-card { min-height: 330px; padding: 42px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.principle-card > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; }
.principle-card h3 { margin: 62px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; font-weight: 500; line-height: 1.08; }
.principle-card p { margin: 0; color: #64655d; font-size: 13px; line-height: 1.9; }

.about-impact { position: relative; overflow: hidden; background: #1b1c17; color: var(--ivory); }
.about-impact::after { content: "CJ"; position: absolute; right: -1vw; bottom: -10vw; color: rgba(255,255,255,.025); font-family: "Cormorant Garamond", Georgia, serif; font-size: 27vw; line-height: 1; }
.about-impact > .page-shell { position: relative; z-index: 1; }
.about-impact-heading { display: flex; align-items: end; justify-content: space-between; gap: 70px; }
.about-impact-heading h2 { max-width: 850px; }
.impact-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 68px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.impact-item { display: flex; min-height: 180px; flex-direction: column; justify-content: center; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.impact-item strong { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(34px, 3.2vw, 48px); font-weight: 500; line-height: 1; }
.impact-item span { margin-top: 12px; color: rgba(244,240,231,.46); font-size: 8px; letter-spacing: .11em; line-height: 1.6; text-transform: uppercase; }
.impact-note { max-width: 720px; margin: 38px 0 0 auto; color: rgba(244,240,231,.48); font-size: 13px; line-height: 1.9; }

.about-mission { background: var(--paper); }
.about-mission-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 100px; align-items: center; }
.about-mission h2 em { color: #8b7341; }
.about-mission-copy { padding: 36px 0 36px 54px; border-left: 1px solid var(--line-light); }
.about-mission-copy > p:first-child { margin: 0; color: #5f6058; font-size: 16px; line-height: 1.95; }
.about-mission-copy .signature-line { margin: 38px 0 8px; color: #8b7341; font-family: "Cormorant Garamond", Georgia, serif; font-size: 34px; font-style: italic; line-height: 1.2; }
.about-mission-copy > span { color: #77786f; font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.about-final-cta h2 em { color: var(--gold-light); }

.coaching-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 38%, rgba(195,162,92,.15), transparent 30%),
    linear-gradient(120deg, #141511 0%, #1b1c17 64%, #22231d 100%);
  color: var(--ivory);
}
.coaching-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 84%); }
.coaching-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.16fr .84fr; gap: 76px; align-items: center; min-height: 720px; padding-top: 78px; padding-bottom: 76px; }
.coaching-hero-copy { animation: rise .8s ease both; }
.coaching-hero-copy h1 { font-size: clamp(52px, 5.4vw, 80px); }
.coaching-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 34px 0 0; color: rgba(244,240,231,.66); font-size: 16px; line-height: 1.9; }
.coaching-hero-visual { position: relative; justify-self: end; width: min(430px, 100%); padding: 0 0 36px 34px; animation: rise .8s .12s ease both; }
.coaching-portrait-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: linear-gradient(145deg, #e8e1d3, #cfc5b2); border: 1px solid rgba(255,255,255,.14); }
.coaching-portrait-frame::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(23,24,20,.14); pointer-events: none; }
.coaching-portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.76) contrast(1.04); }
.coaching-visual-card { position: absolute; left: 0; bottom: 0; display: grid; min-width: 235px; grid-template-columns: repeat(3, 1fr); background: var(--gold); color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.coaching-visual-card span { padding: 18px 12px; border-right: 1px solid rgba(23,24,20,.18); font-family: "Cormorant Garamond", Georgia, serif; font-size: 17px; text-align: center; }
.coaching-visual-card span:last-child { border-right: 0; }
.coaching-assurance-bar { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.coaching-assurance-bar div { display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 0 25px; border-right: 1px solid var(--line-dark); }
.coaching-assurance-bar div:first-child { padding-left: 0; }
.coaching-assurance-bar div:last-child { border-right: 0; }
.coaching-assurance-bar strong { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.coaching-assurance-bar span { margin-top: 5px; color: rgba(244,240,231,.42); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.coaching-recognition { background: var(--ivory); }
.coaching-recognition-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; align-items: start; }
.coaching-recognition h2 em { color: #8b7341; }
.coaching-recognition-intro { max-width: 500px; margin: 34px 0 0; color: #65665d; line-height: 1.9; }
.coaching-signs { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.coaching-sign { display: flex; min-height: 140px; flex-direction: column; justify-content: space-between; padding: 24px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.coaching-sign > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; }
.coaching-sign p { margin: 26px 0 0; color: #41423b; font-size: 13px; line-height: 1.7; }

.coaching-paths { background: #1b1c17; color: var(--ivory); }
.coaching-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.coaching-path-card { min-height: 520px; padding: 40px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.coaching-path-topline { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.coaching-path-topline > span { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; }
.coaching-path-topline small { color: rgba(244,240,231,.36); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.coaching-path-card h3 { margin: 54px 0 20px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 34px; font-weight: 500; line-height: 1.05; }
.coaching-path-card > p { margin: 0; color: rgba(244,240,231,.53); font-size: 13px; line-height: 1.85; }
.coaching-path-card ul { display: grid; gap: 12px; margin: 28px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line-dark); list-style: none; }
.coaching-path-card li { position: relative; padding-left: 18px; color: rgba(244,240,231,.66); font-size: 11px; line-height: 1.65; }
.coaching-path-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.coaching-path-card > a { display: inline-flex; gap: 14px; margin-top: 30px; padding-bottom: 6px; border-bottom: 1px solid rgba(223,200,136,.34); color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.coaching-belief-panel { position: relative; overflow: hidden; background: #747c6d; color: white; }
.coaching-belief-panel::after { content: ""; position: absolute; width: 680px; height: 680px; right: -240px; top: -190px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.coaching-belief-panel-inner { position: relative; z-index: 1; padding-top: 112px; padding-bottom: 112px; }
.coaching-belief-panel blockquote { max-width: 980px; margin: 0; font-size: clamp(46px, 5.5vw, 74px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.coaching-belief-panel-inner > p:last-child { max-width: 590px; margin: 40px 0 0 auto; color: rgba(255,255,255,.72); line-height: 1.9; }

.coaching-process { background: var(--paper); }
.coaching-process-heading h2 em { color: #8b7341; }
.coaching-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.coaching-step { min-height: 340px; padding: 34px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.coaching-step > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; }
.coaching-step h3 { margin: 62px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; font-weight: 500; line-height: 1.08; }
.coaching-step p { margin: 0; color: #66675f; font-size: 12px; line-height: 1.85; }

.coaching-expectations { background: #25261f; color: var(--ivory); }
.coaching-expectations-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.coaching-expectations-intro > p:last-child { max-width: 520px; margin: 34px 0 0; color: rgba(244,240,231,.53); line-height: 1.9; }
.expectations-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.expectations-list > div { min-height: 210px; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.expectations-list span { display: block; color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; }
.expectations-list strong { display: block; margin-top: 34px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; font-weight: 500; line-height: 1.15; }
.expectations-list p { margin: 12px 0 0; color: rgba(244,240,231,.46); font-size: 11px; line-height: 1.75; }
.coaching-boundary-note { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; margin-top: 70px; padding-top: 34px; border-top: 1px solid var(--line-dark); }
.coaching-boundary-note strong { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 26px; font-weight: 500; }
.coaching-boundary-note p { max-width: 680px; margin: 0; color: rgba(244,240,231,.48); font-size: 12px; line-height: 1.9; }

.coaching-packages { background: var(--ivory); }
.coaching-packages-heading h2 em { color: #8b7341; }
.coaching-packages-heading > p { color: #616259; }
.coaching-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 68px; }
.coaching-package-card { position: relative; min-height: 520px; padding: 42px; background: var(--paper); border: 1px solid var(--line-light); }
.coaching-package-card.featured { background: #1b1c17; color: var(--ivory); transform: translateY(-12px); }
.coaching-package-sessions { margin: 0; color: #8b7341; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.coaching-package-card.featured .coaching-package-sessions { color: var(--gold-light); }
.coaching-package-card h3 { margin: 54px 0 16px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 36px; font-weight: 500; line-height: 1; }
.coaching-package-price { margin: 0; color: #8b7341; font-family: "Cormorant Garamond", Georgia, serif; font-size: 38px; line-height: 1; }
.coaching-package-card.featured .coaching-package-price { color: var(--gold-light); }
.coaching-package-description { min-height: 94px; margin: 25px 0 0; color: #66675f; font-size: 12px; line-height: 1.85; }
.coaching-package-card.featured .coaching-package-description { color: rgba(244,240,231,.54); }
.coaching-package-best { display: flex; min-height: 82px; flex-direction: column; justify-content: center; margin-top: 26px; padding: 18px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.coaching-package-card.featured .coaching-package-best { border-color: var(--line-dark); }
.coaching-package-best small { color: #8b7341; font-size: 7px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.coaching-package-card.featured .coaching-package-best small { color: var(--gold-light); }
.coaching-package-best span { margin-top: 7px; color: #5f6057; font-size: 10px; line-height: 1.6; }
.coaching-package-card.featured .coaching-package-best span { color: rgba(244,240,231,.56); }
.coaching-package-card > a { display: inline-flex; gap: 14px; margin-top: 30px; padding-bottom: 6px; border-bottom: 1px solid rgba(139,115,65,.35); color: #806a3b; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.coaching-package-card.featured > a { border-color: rgba(223,200,136,.34); color: var(--gold-light); }
.coaching-package-note { max-width: 700px; margin: 38px auto 0; color: #74756c; font-size: 9px; letter-spacing: .06em; line-height: 1.8; text-align: center; text-transform: uppercase; }

.coaching-faq { background: var(--paper); }
.coaching-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.coaching-faq-intro { position: sticky; top: 40px; align-self: start; }
.coaching-faq-intro h2 em { color: #8b7341; }
.coaching-faq-intro > p:last-child { max-width: 360px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.coaching-final-cta h2 em { color: var(--gold-light); }

.personal-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 42%, rgba(195,162,92,.13), transparent 31%),
    linear-gradient(122deg, #141511 0%, #1c1d18 68%, #23241d 100%);
  color: var(--ivory);
}
.personal-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 84%); }
.personal-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; gap: 82px; align-items: center; min-height: 720px; padding-top: 78px; padding-bottom: 78px; }
.personal-hero-copy { animation: rise .8s ease both; }
.personal-hero-copy h1 { font-size: clamp(52px, 5.25vw, 78px); }
.personal-hero-copy > p:not(.eyebrow) { max-width: 670px; margin: 34px 0 0; color: rgba(244,240,231,.66); font-size: 16px; line-height: 1.9; }
.personal-hero-visual { position: relative; justify-self: end; width: min(430px, 100%); padding: 0 0 52px 34px; animation: rise .8s .12s ease both; }
.personal-portrait-block { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: #d9d1c3; border: 1px solid rgba(255,255,255,.14); }
.personal-portrait-block::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(23,24,20,.14); pointer-events: none; }
.personal-portrait-block img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.76) contrast(1.04); }
.personal-hero-note { position: absolute; left: 0; bottom: 0; display: flex; min-width: 280px; flex-direction: column; padding: 21px 24px; background: var(--gold); color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,.2); }
.personal-hero-note span { font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; line-height: 1; }
.personal-hero-note small { margin-top: 8px; font-size: 7px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.personal-session-bar { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.personal-session-bar div { display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 0 25px; border-right: 1px solid var(--line-dark); }
.personal-session-bar div:first-child { padding-left: 0; }
.personal-session-bar div:last-child { border-right: 0; }
.personal-session-bar strong { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.personal-session-bar span { margin-top: 5px; color: rgba(244,240,231,.42); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.personal-opening { background: var(--ivory); }
.personal-opening-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 110px; }
.personal-opening h2 em { color: #8b7341; }
.personal-opening-copy p { margin: 24px 0 0; color: #616259; line-height: 1.95; }
.personal-opening-copy .lead { margin-top: 0; color: #34352f; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; line-height: 1.4; }

.personal-signs-section { background: #1b1c17; color: var(--ivory); }
.personal-signs-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.personal-sign { display: flex; min-height: 180px; flex-direction: column; justify-content: space-between; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.personal-sign > span { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; }
.personal-sign p { max-width: 270px; margin: 42px 0 0; color: rgba(244,240,231,.62); font-size: 12px; line-height: 1.75; }

.personal-outcomes { background: var(--paper); }
.personal-outcomes-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.personal-outcomes-heading h2 em { color: #8b7341; }
.personal-outcomes-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.personal-outcome { min-height: 290px; padding: 36px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.personal-outcome > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; }
.personal-outcome h3 { margin: 54px 0 16px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; font-weight: 500; line-height: 1.08; }
.personal-outcome p { margin: 0; color: #66675f; font-size: 12px; line-height: 1.85; }

.personal-belief { position: relative; overflow: hidden; background: #757d6e; color: white; }
.personal-belief::after { content: ""; position: absolute; width: 700px; height: 700px; right: -250px; top: -190px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.personal-belief-inner { position: relative; z-index: 1; padding-top: 112px; padding-bottom: 112px; }
.personal-belief blockquote { max-width: 1020px; margin: 0; font-size: clamp(46px, 5.5vw, 74px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.personal-belief-inner > p:last-child { max-width: 600px; margin: 40px 0 0 auto; color: rgba(255,255,255,.72); line-height: 1.9; }

.personal-process { background: var(--ivory); }
.personal-process-heading h2 em { color: #8b7341; }
.personal-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.personal-process-step { min-height: 320px; padding: 34px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.personal-process-step > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; }
.personal-process-step h3 { margin: 58px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; font-weight: 500; line-height: 1.08; }
.personal-process-step p { margin: 0; color: #66675f; font-size: 12px; line-height: 1.85; }
.personal-tools-strip { display: grid; grid-template-columns: .62fr 1.38fr; gap: 50px; align-items: center; margin-top: 46px; padding: 28px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.personal-tools-strip > span { color: #77786f; font-size: 9px; font-weight: 700; letter-spacing: .08em; line-height: 1.7; text-transform: uppercase; }
.personal-tools-strip ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; margin: 0; padding: 0; list-style: none; }
.personal-tools-strip li { padding: 9px 13px; border: 1px solid var(--line-light); color: #5c5d55; font-size: 9px; letter-spacing: .04em; }

.personal-packages { background: #1b1c17; color: var(--ivory); }
.personal-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 68px; }
.personal-package-card { position: relative; min-height: 670px; padding: 40px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.personal-package-card.featured { background: var(--ivory); color: var(--ink); transform: translateY(-12px); }
.personal-package-sessions { margin: 0; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.personal-package-card.featured .personal-package-sessions { color: #8b7341; }
.personal-package-card h3 { margin: 52px 0 16px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 35px; font-weight: 500; line-height: 1; }
.personal-package-price { margin: 0; color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 40px; line-height: 1; }
.personal-package-card.featured .personal-package-price { color: #8b7341; }
.personal-package-focus { min-height: 80px; margin: 24px 0 0; color: rgba(244,240,231,.54); font-size: 12px; line-height: 1.85; }
.personal-package-card.featured .personal-package-focus { color: #66675f; }
.personal-package-card ul { display: grid; gap: 12px; margin: 26px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line-dark); list-style: none; }
.personal-package-card.featured ul { border-color: var(--line-light); }
.personal-package-card li { position: relative; padding-left: 18px; color: rgba(244,240,231,.62); font-size: 10px; line-height: 1.65; }
.personal-package-card.featured li { color: #606159; }
.personal-package-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.personal-package-best { display: flex; min-height: 80px; flex-direction: column; justify-content: center; margin-top: 25px; padding: 17px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.personal-package-card.featured .personal-package-best { border-color: var(--line-light); }
.personal-package-best small { color: var(--gold-light); font-size: 7px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.personal-package-card.featured .personal-package-best small { color: #8b7341; }
.personal-package-best span { margin-top: 7px; color: rgba(244,240,231,.52); font-size: 10px; line-height: 1.6; }
.personal-package-card.featured .personal-package-best span { color: #64655d; }
.personal-package-card > a { display: inline-flex; gap: 14px; margin-top: 28px; padding-bottom: 6px; border-bottom: 1px solid rgba(223,200,136,.34); color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.personal-package-card.featured > a { border-color: rgba(139,115,65,.35); color: #806a3b; }
.personal-addons { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 52px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.personal-addons > div { min-height: 170px; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.personal-addons > div > span { color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.personal-addons strong { display: block; margin-top: 26px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.personal-addons p { margin: 12px 0 0; color: rgba(244,240,231,.45); font-size: 11px; line-height: 1.75; }
.personal-package-note { max-width: 720px; margin: 34px auto 0; color: rgba(244,240,231,.34); font-size: 8px; letter-spacing: .08em; line-height: 1.8; text-align: center; text-transform: uppercase; }

.personal-faq { background: var(--paper); }
.personal-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.personal-faq-intro { position: sticky; top: 40px; align-self: start; }
.personal-faq-intro h2 em { color: #8b7341; }
.personal-faq-intro > p:last-child { max-width: 360px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.personal-final-cta h2 em { color: var(--gold-light); }

.nlp-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 38%, rgba(127,139,120,.2), transparent 32%),
    linear-gradient(122deg, #131410 0%, #1a1c17 65%, #22261f 100%);
  color: var(--ivory);
}
.nlp-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 84%); }
.nlp-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.16fr .84fr; gap: 76px; align-items: center; min-height: 720px; padding-top: 78px; padding-bottom: 78px; }
.nlp-hero-copy { animation: rise .8s ease both; }
.nlp-hero-copy h1 { font-size: clamp(52px, 5.3vw, 80px); }
.nlp-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 34px 0 0; color: rgba(244,240,231,.66); font-size: 16px; line-height: 1.9; }
.nlp-hero-visual { position: relative; justify-self: end; width: min(440px, 100%); min-height: 540px; animation: rise .8s .12s ease both; }
.nlp-letter-backdrop { position: absolute; inset: 0 0 0 38px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(145deg, #e5dfd3, #c8c3b5); border: 1px solid rgba(255,255,255,.13); color: rgba(23,24,20,.065); font-family: "Cormorant Garamond", Georgia, serif; font-size: 145px; font-weight: 600; letter-spacing: -.08em; line-height: 1; }
.nlp-hero-visual img { position: absolute; z-index: 1; left: 0; bottom: 0; width: calc(100% - 34px); height: calc(100% - 30px); object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.06); }
.nlp-hero-card { position: absolute; z-index: 2; right: -24px; bottom: 30px; display: flex; min-width: 235px; flex-direction: column; padding: 19px 22px; background: var(--sage); color: white; box-shadow: 0 18px 50px rgba(0,0,0,.2); }
.nlp-hero-card span { font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; line-height: 1; }
.nlp-hero-card small { margin-top: 8px; color: rgba(255,255,255,.7); font-size: 7px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.nlp-principle-bar { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.nlp-principle-bar div { display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 0 25px; border-right: 1px solid var(--line-dark); }
.nlp-principle-bar div:first-child { padding-left: 0; }
.nlp-principle-bar div:last-child { border-right: 0; }
.nlp-principle-bar strong { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.nlp-principle-bar span { margin-top: 5px; color: rgba(244,240,231,.42); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.nlp-opening { background: var(--ivory); }
.nlp-opening-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 105px; }
.nlp-opening h2 em { color: #8b7341; }
.nlp-opening-copy > p { margin: 24px 0 0; color: #616259; line-height: 1.95; }
.nlp-opening-copy .lead { margin-top: 0; color: #34352f; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; line-height: 1.4; }
.nlp-responsibility-note { display: grid; grid-template-columns: .62fr 1.38fr; gap: 28px; margin-top: 38px; padding: 27px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.nlp-responsibility-note strong { color: #8b7341; font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; font-weight: 500; }
.nlp-responsibility-note p { margin: 0; color: #717269; font-size: 11px; line-height: 1.8; }

.nlp-patterns { background: #25261f; color: var(--ivory); }
.nlp-pattern-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.nlp-pattern { display: flex; min-height: 180px; flex-direction: column; justify-content: space-between; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.nlp-pattern > span { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; }
.nlp-pattern p { max-width: 270px; margin: 42px 0 0; color: rgba(244,240,231,.62); font-size: 12px; line-height: 1.75; }

.nlp-outcomes { background: var(--paper); }
.nlp-outcomes-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.nlp-outcomes-heading h2 em { color: #8b7341; }
.nlp-outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.nlp-outcome { min-height: 290px; padding: 36px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.nlp-outcome > span { color: #76816f; font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; }
.nlp-outcome h3 { margin: 54px 0 16px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; font-weight: 500; line-height: 1.08; }
.nlp-outcome p { margin: 0; color: #66675f; font-size: 12px; line-height: 1.85; }

.nlp-belief { position: relative; overflow: hidden; background: #71796b; color: white; }
.nlp-belief::after { content: "NLP"; position: absolute; right: -3vw; bottom: -9vw; color: rgba(255,255,255,.05); font-family: "Cormorant Garamond", Georgia, serif; font-size: 24vw; font-weight: 600; letter-spacing: -.08em; line-height: 1; }
.nlp-belief-inner { position: relative; z-index: 1; padding-top: 112px; padding-bottom: 112px; }
.nlp-belief blockquote { max-width: 1000px; margin: 0; font-size: clamp(46px, 5.5vw, 74px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.nlp-belief-inner > p:last-child { max-width: 610px; margin: 40px 0 0 auto; color: rgba(255,255,255,.72); line-height: 1.9; }

.nlp-process { background: var(--ivory); }
.nlp-process-heading h2 em { color: #8b7341; }
.nlp-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.nlp-process-step { min-height: 320px; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.nlp-process-step > span { color: #76816f; font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; }
.nlp-process-step h3 { margin: 62px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; font-weight: 500; line-height: 1.08; }
.nlp-process-step p { margin: 0; color: #66675f; font-size: 11px; line-height: 1.85; }

.nlp-packages { background: #1b1c17; color: var(--ivory); }
.nlp-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 68px; }
.nlp-package-card { position: relative; min-height: 670px; padding: 40px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.nlp-package-card.featured { background: var(--ivory); color: var(--ink); transform: translateY(-12px); }
.nlp-package-sessions { margin: 0; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.nlp-package-card.featured .nlp-package-sessions { color: #6e7867; }
.nlp-package-card h3 { margin: 52px 0 16px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 35px; font-weight: 500; line-height: 1; }
.nlp-package-price { margin: 0; color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 40px; line-height: 1; }
.nlp-package-card.featured .nlp-package-price { color: #6e7867; }
.nlp-package-focus { min-height: 80px; margin: 24px 0 0; color: rgba(244,240,231,.54); font-size: 12px; line-height: 1.85; }
.nlp-package-card.featured .nlp-package-focus { color: #66675f; }
.nlp-package-card ul { display: grid; gap: 12px; margin: 26px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line-dark); list-style: none; }
.nlp-package-card.featured ul { border-color: var(--line-light); }
.nlp-package-card li { position: relative; padding-left: 18px; color: rgba(244,240,231,.62); font-size: 10px; line-height: 1.65; }
.nlp-package-card.featured li { color: #606159; }
.nlp-package-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }
.nlp-package-best { display: flex; min-height: 80px; flex-direction: column; justify-content: center; margin-top: 25px; padding: 17px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.nlp-package-card.featured .nlp-package-best { border-color: var(--line-light); }
.nlp-package-best small { color: var(--gold-light); font-size: 7px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.nlp-package-card.featured .nlp-package-best small { color: #6e7867; }
.nlp-package-best span { margin-top: 7px; color: rgba(244,240,231,.52); font-size: 10px; line-height: 1.6; }
.nlp-package-card.featured .nlp-package-best span { color: #64655d; }
.nlp-package-card > a { display: inline-flex; gap: 14px; margin-top: 28px; padding-bottom: 6px; border-bottom: 1px solid rgba(223,200,136,.34); color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.nlp-package-card.featured > a { border-color: rgba(110,120,103,.38); color: #63705e; }
.nlp-addons { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 52px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.nlp-addons > div { min-height: 170px; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.nlp-addons > div > span { color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.nlp-addons strong { display: block; margin-top: 26px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.nlp-addons p { margin: 12px 0 0; color: rgba(244,240,231,.45); font-size: 11px; line-height: 1.75; }
.nlp-package-note { max-width: 720px; margin: 34px auto 0; color: rgba(244,240,231,.34); font-size: 8px; letter-spacing: .08em; line-height: 1.8; text-align: center; text-transform: uppercase; }

.nlp-faq { background: var(--paper); }
.nlp-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.nlp-faq-intro { position: sticky; top: 40px; align-self: start; }
.nlp-faq-intro h2 em { color: #8b7341; }
.nlp-faq-intro > p:last-child { max-width: 370px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.nlp-final-cta h2 em { color: var(--gold-light); }

.faith-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 38%, rgba(195,162,92,.14), transparent 31%),
    linear-gradient(122deg, #141511 0%, #1b1d17 62%, #24261f 100%);
  color: var(--ivory);
}
.faith-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 84%); }
.faith-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 78px; align-items: center; min-height: 720px; padding-top: 78px; padding-bottom: 78px; }
.faith-hero-copy { animation: rise .8s ease both; }
.faith-hero-copy h1 { font-size: clamp(52px, 5.35vw, 80px); }
.faith-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 34px 0 0; color: rgba(244,240,231,.66); font-size: 16px; line-height: 1.9; }
.faith-hero-visual { position: relative; justify-self: end; width: min(440px, 100%); min-height: 540px; animation: rise .8s .12s ease both; }
.faith-word-backdrop { position: absolute; inset: 0 0 0 38px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(145deg, #e5dfd3, #c8c3b5); border: 1px solid rgba(255,255,255,.13); color: rgba(23,24,20,.052); font-family: "Cormorant Garamond", Georgia, serif; font-size: 105px; font-weight: 600; letter-spacing: -.06em; line-height: 1; writing-mode: vertical-rl; }
.faith-hero-visual img { position: absolute; z-index: 1; left: 0; bottom: 0; width: calc(100% - 34px); height: calc(100% - 30px); object-fit: cover; object-position: center; filter: saturate(.72) contrast(1.05); }
.faith-hero-card { position: absolute; z-index: 2; right: -24px; bottom: 30px; display: flex; min-width: 225px; flex-direction: column; padding: 19px 22px; background: var(--gold); color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,.2); }
.faith-hero-card span { font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; line-height: 1; }
.faith-hero-card small { margin-top: 8px; font-size: 7px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.faith-principle-bar { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.faith-principle-bar div { display: flex; min-height: 112px; flex-direction: column; justify-content: center; padding: 0 25px; border-right: 1px solid var(--line-dark); }
.faith-principle-bar div:first-child { padding-left: 0; }
.faith-principle-bar div:last-child { border-right: 0; }
.faith-principle-bar strong { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.faith-principle-bar span { margin-top: 5px; color: rgba(244,240,231,.42); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.faith-opening { background: var(--ivory); }
.faith-opening-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 105px; }
.faith-opening h2 em { color: #8b7341; }
.faith-opening-copy > p { margin: 24px 0 0; color: #616259; line-height: 1.95; }
.faith-opening-copy .lead { margin-top: 0; color: #34352f; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; line-height: 1.4; }
.faith-welcome-note { display: grid; grid-template-columns: .62fr 1.38fr; gap: 28px; margin-top: 38px; padding: 27px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.faith-welcome-note strong { color: #8b7341; font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; font-weight: 500; }
.faith-welcome-note p { margin: 0; color: #717269; font-size: 11px; line-height: 1.8; }

.faith-seasons { background: #25261f; color: var(--ivory); }
.faith-sign-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.faith-sign { display: flex; min-height: 180px; flex-direction: column; justify-content: space-between; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.faith-sign > span { color: var(--gold); font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; }
.faith-sign p { max-width: 270px; margin: 42px 0 0; color: rgba(244,240,231,.62); font-size: 12px; line-height: 1.75; }

.faith-outcomes { background: var(--paper); }
.faith-outcomes-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.faith-outcomes-heading h2 em { color: #8b7341; }
.faith-outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.faith-outcome { min-height: 290px; padding: 36px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.faith-outcome > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; }
.faith-outcome h3 { margin: 54px 0 16px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; font-weight: 500; line-height: 1.08; }
.faith-outcome p { margin: 0; color: #66675f; font-size: 12px; line-height: 1.85; }

.faith-belief { position: relative; overflow: hidden; background: #757d6e; color: white; }
.faith-belief::after { content: "FAITH"; position: absolute; right: -5vw; bottom: -8vw; color: rgba(255,255,255,.045); font-family: "Cormorant Garamond", Georgia, serif; font-size: 21vw; font-weight: 600; letter-spacing: -.07em; line-height: 1; }
.faith-belief-inner { position: relative; z-index: 1; padding-top: 112px; padding-bottom: 112px; }
.faith-belief blockquote { max-width: 1020px; margin: 0; font-size: clamp(46px, 5.5vw, 74px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.faith-belief-inner > p:last-child { max-width: 610px; margin: 40px 0 0 auto; color: rgba(255,255,255,.72); line-height: 1.9; }

.faith-process { background: var(--ivory); }
.faith-process-heading h2 em { color: #8b7341; }
.faith-process-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.faith-process-step { min-height: 320px; padding: 30px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.faith-process-step > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; }
.faith-process-step h3 { margin: 62px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; font-weight: 500; line-height: 1.08; }
.faith-process-step p { margin: 0; color: #66675f; font-size: 11px; line-height: 1.85; }
.faith-practices-strip { display: grid; grid-template-columns: .62fr 1.38fr; gap: 50px; align-items: center; margin-top: 46px; padding: 28px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.faith-practices-strip > span { color: #77786f; font-size: 9px; font-weight: 700; letter-spacing: .08em; line-height: 1.7; text-transform: uppercase; }
.faith-practices-strip ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; margin: 0; padding: 0; list-style: none; }
.faith-practices-strip li { padding: 9px 13px; border: 1px solid var(--line-light); color: #5c5d55; font-size: 9px; letter-spacing: .04em; }

.faith-packages { background: #1b1c17; color: var(--ivory); }
.faith-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 68px; }
.faith-package-card { position: relative; min-height: 670px; padding: 40px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.faith-package-card.featured { background: var(--ivory); color: var(--ink); transform: translateY(-12px); }
.faith-package-sessions { margin: 0; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.faith-package-card.featured .faith-package-sessions { color: #8b7341; }
.faith-package-card h3 { margin: 52px 0 16px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 35px; font-weight: 500; line-height: 1; }
.faith-package-price { margin: 0; color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 40px; line-height: 1; }
.faith-package-card.featured .faith-package-price { color: #8b7341; }
.faith-package-focus { min-height: 80px; margin: 24px 0 0; color: rgba(244,240,231,.54); font-size: 12px; line-height: 1.85; }
.faith-package-card.featured .faith-package-focus { color: #66675f; }
.faith-package-card ul { display: grid; gap: 12px; margin: 26px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line-dark); list-style: none; }
.faith-package-card.featured ul { border-color: var(--line-light); }
.faith-package-card li { position: relative; padding-left: 18px; color: rgba(244,240,231,.62); font-size: 10px; line-height: 1.65; }
.faith-package-card.featured li { color: #606159; }
.faith-package-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.faith-package-best { display: flex; min-height: 80px; flex-direction: column; justify-content: center; margin-top: 25px; padding: 17px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.faith-package-card.featured .faith-package-best { border-color: var(--line-light); }
.faith-package-best small { color: var(--gold-light); font-size: 7px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.faith-package-card.featured .faith-package-best small { color: #8b7341; }
.faith-package-best span { margin-top: 7px; color: rgba(244,240,231,.52); font-size: 10px; line-height: 1.6; }
.faith-package-card.featured .faith-package-best span { color: #64655d; }
.faith-package-card > a { display: inline-flex; gap: 14px; margin-top: 28px; padding-bottom: 6px; border-bottom: 1px solid rgba(223,200,136,.34); color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.faith-package-card.featured > a { border-color: rgba(139,115,65,.35); color: #806a3b; }
.faith-addons { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 52px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.faith-addons > div { min-height: 170px; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.faith-addons > div > span { color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.faith-addons strong { display: block; margin-top: 26px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.faith-addons p { margin: 12px 0 0; color: rgba(244,240,231,.45); font-size: 11px; line-height: 1.75; }
.faith-package-note { max-width: 720px; margin: 34px auto 0; color: rgba(244,240,231,.34); font-size: 8px; letter-spacing: .08em; line-height: 1.8; text-align: center; text-transform: uppercase; }

.faith-faq { background: var(--paper); }
.faith-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.faith-faq-intro { position: sticky; top: 40px; align-self: start; }
.faith-faq-intro h2 em { color: #8b7341; }
.faith-faq-intro > p:last-child { max-width: 370px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.faith-final-cta h2 em { color: var(--gold-light); }

/* eBooks and resources */
.ebooks-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 42%, rgba(195,162,92,.15), transparent 31%),
    linear-gradient(120deg, #141511 0%, #1b1c17 64%, #202119 100%);
  color: var(--ivory);
}
.ebooks-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.ebooks-hero-orbit { position: absolute; right: -170px; top: 116px; width: 570px; height: 570px; border: 1px solid rgba(195,162,92,.13); border-radius: 50%; }
.ebooks-hero-orbit::after { content: ""; position: absolute; inset: 88px; border: 1px solid rgba(195,162,92,.09); border-radius: 50%; }
.ebooks-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 72px; align-items: center; min-height: 700px; padding-top: 76px; padding-bottom: 82px; }
.ebooks-hero-copy { animation: rise .8s ease both; }
.ebooks-hero-copy h1 { max-width: 690px; font-size: clamp(62px, 6.4vw, 94px); }
.ebooks-hero-intro { max-width: 640px; margin: 32px 0 0; color: rgba(244,240,231,.68); line-height: 1.9; }
.ebooks-cover-stack { position: relative; justify-self: end; width: min(520px, 100%); min-height: 500px; animation: rise .8s .14s ease both; }
.ebooks-cover { position: absolute; overflow: hidden; width: 285px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 25px 70px rgba(0,0,0,.36); }
.ebooks-cover img { width: 100%; height: 100%; object-fit: cover; }
.ebooks-cover-left { left: 0; top: 96px; transform: rotate(-9deg); opacity: .82; }
.ebooks-cover-centre { z-index: 2; left: 118px; top: 28px; width: 315px; }
.ebooks-cover-right { z-index: 1; right: -5px; top: 134px; transform: rotate(9deg); opacity: .82; }
.ebooks-series-card { position: absolute; z-index: 4; right: 2px; bottom: 16px; display: flex; min-width: 190px; flex-direction: column; padding: 21px 24px; background: var(--gold); color: #151510; box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.ebooks-series-card strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; font-weight: 600; line-height: 1; }
.ebooks-series-card span { margin-top: 8px; font-size: 8px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.ebooks-value-bar { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.ebooks-value-bar div { display: flex; min-height: 102px; flex-direction: column; justify-content: center; padding: 0 28px; border-right: 1px solid var(--line-dark); }
.ebooks-value-bar div:first-child { padding-left: 0; }
.ebooks-value-bar div:last-child { border-right: 0; }
.ebooks-value-bar strong { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; font-weight: 500; }
.ebooks-value-bar span { margin-top: 4px; color: rgba(244,240,231,.4); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }

.ebooks-bundle { background: var(--ivory); }
.ebooks-bundle-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 105px; align-items: center; }
.ebooks-bundle h2 em { color: #8b7341; }
.ebooks-bundle-intro { max-width: 590px; margin: 30px 0 0; color: #64655d; line-height: 1.95; }
.ebooks-bundle blockquote { max-width: 560px; margin: 46px 0 0; padding: 30px 0 0; border-top: 1px solid var(--line-light); color: #4c4d46; font-size: 27px; font-weight: 500; line-height: 1.35; }
.ebooks-bundle-card { position: relative; padding: 50px; border: 1px solid rgba(23,24,20,.15); background: var(--paper); box-shadow: 0 28px 70px rgba(44,42,34,.08); }
.ebooks-bundle-card::before { content: "THE FULL SERIES"; position: absolute; right: -1px; top: -1px; padding: 10px 15px; background: #22231d; color: var(--gold-light); font-size: 7px; font-weight: 700; letter-spacing: .15em; }
.ebooks-bundle-label { margin: 0; color: #8b7341; font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.ebooks-bundle-card h3 { margin: 30px 0 13px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 45px; font-weight: 500; line-height: 1; }
.ebooks-bundle-card > p:not(.ebooks-bundle-label) { margin: 0; color: #707168; font-size: 12px; }
.ebooks-bundle-card ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 30px; margin: 30px 0 0; padding: 25px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); list-style: none; }
.ebooks-bundle-card li { position: relative; padding-left: 17px; color: #56574f; font-size: 10px; }
.ebooks-bundle-card li::before { content: ""; position: absolute; left: 0; top: .75em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.ebooks-bundle-price { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin: 30px 0; }
.ebooks-bundle-price div { display: flex; flex-direction: column; }
.ebooks-bundle-price small { color: #77786f; font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.ebooks-bundle-price strong { margin-top: 8px; color: #8b7341; font-family: "Cormorant Garamond", Georgia, serif; font-size: 48px; font-weight: 500; line-height: 1; }
.ebooks-bundle-price > span { color: #77786f; font-size: 9px; line-height: 1.7; text-align: right; }

.ebooks-collection { background: #1b1c17; color: var(--ivory); }
.ebooks-collection-heading h2 { color: var(--ivory); }
.ebooks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 68px; }
.ebook-card { display: flex; min-height: 625px; flex-direction: column; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); transition: transform .25s ease, border-color .25s ease; }
.ebook-card:hover { transform: translateY(-5px); border-color: rgba(223,200,136,.38); }
.ebook-card-image { position: relative; display: block; overflow: hidden; aspect-ratio: 1; background: #24251f; }
.ebook-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.ebook-card:hover .ebook-card-image img { transform: scale(1.025); }
.ebook-card-image > span { position: absolute; right: 14px; top: 14px; display: grid; width: 34px; height: 34px; place-items: center; background: rgba(20,21,17,.88); color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 16px; }
.ebook-card-content { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.ebook-topic { margin: 0; color: var(--gold-light) !important; font-size: 8px !important; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.ebook-card-content h3 { margin: 18px 0 14px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; font-weight: 500; line-height: 1; }
.ebook-card-content > p { margin: 0; color: rgba(244,240,231,.52); font-size: 11px; line-height: 1.8; }
.ebook-card-footer { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-top: auto; padding-top: 25px; border-top: 1px solid var(--line-dark); }
.ebook-card-footer strong { color: var(--ivory); font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; font-weight: 500; }
.ebook-card-footer a { padding-bottom: 5px; border-bottom: 1px solid rgba(223,200,136,.32); color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.ebooks-inside { background: var(--paper); }
.ebooks-inside-heading { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: end; }
.ebooks-inside-heading h2 em { color: #8b7341; }
.ebooks-inside-heading > p { max-width: 620px; margin: 0 0 8px auto; color: #66675f; line-height: 1.95; }
.ebooks-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.ebooks-feature { min-height: 300px; padding: 34px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.ebooks-feature > span { color: #997f48; font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; }
.ebooks-feature h3 { margin: 65px 0 17px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; font-weight: 500; line-height: 1.05; }
.ebooks-feature p { margin: 0; color: #6b6c64; font-size: 11px; line-height: 1.85; }

.ebooks-purchase { position: relative; overflow: hidden; background: #777f70; color: white; }
.ebooks-purchase::after { content: "I AM"; position: absolute; right: -2vw; bottom: -7vw; color: rgba(255,255,255,.045); font-family: "Cormorant Garamond", Georgia, serif; font-size: 20vw; font-weight: 600; letter-spacing: -.08em; line-height: 1; }
.ebooks-purchase > .page-shell { position: relative; z-index: 1; }
.ebooks-purchase-heading h2 { color: white; }
.ebooks-purchase-heading > p:last-child { color: rgba(255,255,255,.68); }
.ebooks-purchase-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.ebooks-purchase-step { min-height: 300px; padding: 36px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.ebooks-purchase-step > span { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; }
.ebooks-purchase-step h3 { margin: 70px 0 17px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; font-weight: 500; line-height: 1; }
.ebooks-purchase-step p { margin: 0; color: rgba(255,255,255,.66); font-size: 11px; line-height: 1.85; }
.ebooks-purchase-note { margin: 34px 0 0; color: rgba(255,255,255,.45); font-size: 8px; font-weight: 600; letter-spacing: .1em; text-align: center; text-transform: uppercase; }

.ebooks-faq { background: var(--ivory); }
.ebooks-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.ebooks-faq-intro { position: sticky; top: 40px; align-self: start; }
.ebooks-faq-intro h2 em { color: #8b7341; }
.ebooks-faq-intro > p { max-width: 370px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.ebooks-faq-intro .button { margin-top: 32px; }
.ebooks-faq-list details { border-color: rgba(23,24,20,.2); }
.ebooks-final-cta { background: #171814; }
.ebooks-final-cta h2 { max-width: 980px; }
.ebooks-final-cta h2 em { color: var(--gold-light); }
.ebooks-final-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }

/* Contact and book a call */
.contact-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 41%, rgba(195,162,92,.14), transparent 32%),
    linear-gradient(120deg, #141511 0%, #1b1c17 64%, #202119 100%);
  color: var(--ivory);
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.023) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.023) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.contact-hero-orbit { position: absolute; right: -180px; top: 115px; width: 580px; height: 580px; border: 1px solid rgba(195,162,92,.14); border-radius: 50%; }
.contact-hero-orbit::after { content: ""; position: absolute; inset: 92px; border: 1px solid rgba(195,162,92,.09); border-radius: 50%; }
.contact-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 78px; align-items: center; min-height: 700px; padding-top: 76px; padding-bottom: 82px; }
.contact-hero-copy { animation: rise .8s ease both; }
.contact-hero-copy h1 { max-width: 720px; font-size: clamp(62px, 6.4vw, 94px); }
.contact-hero-intro { max-width: 650px; margin: 32px 0 0; color: rgba(244,240,231,.68); line-height: 1.9; }
.contact-hero-visual { position: relative; justify-self: end; width: min(440px, 100%); padding-bottom: 45px; animation: rise .8s .14s ease both; }
.contact-portrait { position: relative; overflow: hidden; min-height: 535px; background: #d8d2c5; border: 1px solid rgba(255,255,255,.17); }
.contact-portrait::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(23,24,20,.14); pointer-events: none; }
.contact-portrait img { width: 100%; height: 100%; min-height: 535px; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.04); }
.contact-call-card { position: absolute; right: -30px; bottom: 0; width: 275px; padding: 27px; background: var(--gold); color: #151510; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.contact-call-card > span { display: block; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.contact-call-card strong { display: block; margin-top: 13px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 38px; font-weight: 600; line-height: 1; }
.contact-call-card p { margin: 13px 0 0; font-size: 9px; line-height: 1.7; }
.contact-assurance-bar { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); }
.contact-assurance-bar div { display: flex; min-height: 102px; flex-direction: column; justify-content: center; padding: 0 28px; border-right: 1px solid var(--line-dark); }
.contact-assurance-bar div:first-child { padding-left: 0; }
.contact-assurance-bar div:last-child { border-right: 0; }
.contact-assurance-bar strong { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; font-weight: 500; }
.contact-assurance-bar span { margin-top: 4px; color: rgba(244,240,231,.4); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }

.contact-paths { background: var(--ivory); }
.contact-paths-heading h2 em { color: #8b7341; }
.contact-path-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.contact-path-card { display: flex; min-height: 395px; flex-direction: column; padding: 38px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: rgba(255,255,255,.16); }
.contact-path-number { color: #997f48; font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; }
.contact-path-card h3 { margin: 68px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 33px; font-weight: 500; line-height: 1; }
.contact-path-card p { margin: 0; color: #686960; font-size: 12px; line-height: 1.85; }
.contact-path-card a { display: inline-flex; width: fit-content; gap: 13px; margin-top: auto; padding-top: 25px; border-bottom: 1px solid rgba(139,115,65,.34); color: #826c3e; font-size: 8px; font-weight: 700; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.contact-unsure-note { display: grid; grid-template-columns: .55fr 1.25fr auto; gap: 34px; align-items: center; margin-top: 42px; padding: 27px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.contact-unsure-note strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; font-weight: 500; }
.contact-unsure-note p { margin: 0; color: #6d6e65; font-size: 11px; line-height: 1.8; }
.contact-unsure-note a { padding-bottom: 6px; border-bottom: 1px solid rgba(139,115,65,.32); color: #826c3e; font-size: 8px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.contact-process { position: relative; overflow: hidden; background: #25261f; color: var(--ivory); }
.contact-process::after { content: "BEGIN"; position: absolute; right: -4vw; bottom: -8vw; color: rgba(255,255,255,.035); font-family: "Cormorant Garamond", Georgia, serif; font-size: 18vw; font-weight: 600; letter-spacing: -.07em; line-height: 1; }
.contact-process > .page-shell { position: relative; z-index: 1; }
.contact-process-heading h2 { color: var(--ivory); }
.contact-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.contact-process-step { min-height: 315px; padding: 38px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.contact-process-step > span { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; }
.contact-process-step h3 { margin: 72px 0 17px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 31px; font-weight: 500; line-height: 1; }
.contact-process-step p { margin: 0; color: rgba(244,240,231,.58); font-size: 11px; line-height: 1.85; }

.contact-invitation { background: var(--paper); }
.contact-invitation-grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 105px; align-items: center; }
.contact-invitation-copy h2 em { color: #8b7341; }
.contact-invitation-lead { max-width: 590px; margin: 30px 0 0; color: #62635b; line-height: 1.95; }
.contact-message-prompt { margin-top: 40px; padding: 30px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.contact-message-prompt strong { color: #8b7341; font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; font-weight: 500; }
.contact-message-prompt ul { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.contact-message-prompt li { position: relative; padding-left: 20px; color: #6a6b62; font-size: 11px; }
.contact-message-prompt li::before { content: ""; position: absolute; left: 0; top: .75em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.contact-enquiry-card { position: relative; padding: 52px; border: 1px solid rgba(23,24,20,.14); background: var(--ivory); box-shadow: 0 28px 70px rgba(44,42,34,.08); }
.contact-enquiry-card::before { content: "FREE 15-MINUTE CONVERSATION"; position: absolute; right: -1px; top: -1px; padding: 10px 15px; background: #22231d; color: var(--gold-light); font-size: 7px; font-weight: 700; letter-spacing: .14em; }
.contact-enquiry-label { margin: 0; color: #8b7341; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-enquiry-card h3 { margin: 34px 0 18px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 45px; font-weight: 500; line-height: 1; }
.contact-enquiry-card > p:not(.contact-enquiry-label):not(.contact-enquiry-note) { margin: 0; color: #696a62; font-size: 12px; line-height: 1.85; }
.contact-form { display: grid; gap: 20px; margin-top: 32px; }
.contact-form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: #73746c; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(23,24,20,.18); border-radius: 0; outline: none; background: var(--paper); color: var(--ink); font: inherit; font-size: 12px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { min-height: 48px; padding: 0 14px; }
.contact-form textarea { min-height: 145px; padding: 13px 14px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: #9a8048; box-shadow: 0 0 0 3px rgba(195,162,92,.12); }
.contact-form textarea::placeholder { color: #9a9b93; }
.contact-form .button { width: fit-content; margin-top: 2px; cursor: pointer; }
.contact-form-help { margin: -4px 0 0 !important; color: #85867e !important; font-size: 8px !important; line-height: 1.75 !important; }
.contact-form-status { margin: -2px 0 0 !important; padding: 13px 15px; border-left: 3px solid var(--gold); background: rgba(195,162,92,.1); color: #5d5e56 !important; font-size: 10px !important; line-height: 1.7 !important; }
.contact-email-option { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 34px; padding: 25px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.contact-email-option span { color: #77786f; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-email-option a { color: #806a3c; font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; }
.contact-enquiry-note { margin: 22px 0 0; color: #85867e; font-size: 8px; line-height: 1.8; }

.contact-faq { background: var(--ivory); }
.contact-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.contact-faq-intro { position: sticky; top: 40px; align-self: start; }
.contact-faq-intro h2 em { color: #8b7341; }
.contact-faq-intro > p:last-child { max-width: 370px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.contact-faq-list details { border-color: rgba(23,24,20,.2); }
.contact-final-cta { background: #171814; }
.contact-final-cta h2 em { color: var(--gold-light); }

/* Account and login */
.account-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #141511 0%, #1b1c17 68%, #22231c 100%); color: var(--ivory); }
.account-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.account-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; gap: 90px; align-items: end; padding-top: 105px; padding-bottom: 105px; }
.account-hero h1 { max-width: 760px; font-size: clamp(58px, 6vw, 88px); }
.account-hero-grid > div:first-child > p:last-child { max-width: 650px; margin: 30px 0 0; color: rgba(244,240,231,.66); line-height: 1.9; }
.account-assurance-card { position: relative; padding: 40px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.03); }
.account-assurance-card > span { color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.account-assurance-card strong { display: block; margin-top: 28px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; font-weight: 500; line-height: 1.1; }
.account-assurance-card ul { display: grid; gap: 14px; margin: 28px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line-dark); list-style: none; }
.account-assurance-card li { position: relative; padding-left: 20px; color: rgba(244,240,231,.55); font-size: 10px; line-height: 1.7; }
.account-assurance-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.account-access { background: var(--ivory); }
.account-access-heading { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: end; }
.account-access-heading h2 em { color: #8b7341; }
.account-access-heading > p { max-width: 610px; margin: 0 0 8px auto; color: #67685f; line-height: 1.9; }
.account-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.account-form-card { min-height: 610px; padding: 48px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: rgba(255,255,255,.2); }
.account-form-label { margin: 0; color: #8b7341; font-size: 8px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.account-form-card h2 { margin: 30px 0 14px; font-size: 45px; }
.account-form-card > p:not(.account-form-label) { margin: 0; color: #6c6d65; font-size: 11px; line-height: 1.85; }
.account-form { display: grid; gap: 20px; margin-top: 32px; }
.account-form > label { display: grid; gap: 8px; }
.account-form > label > span { color: #73746c; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.account-form input[type="email"], .account-form input[type="password"] { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid rgba(23,24,20,.18); border-radius: 0; outline: none; background: var(--paper); color: var(--ink); font: inherit; font-size: 12px; transition: border-color .2s ease, box-shadow .2s ease; }
.account-form input[type="email"]:focus, .account-form input[type="password"]:focus { border-color: #9a8048; box-shadow: 0 0 0 3px rgba(195,162,92,.12); }
.account-form-options { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.account-remember { display: flex; align-items: center; gap: 9px; color: #66675f; font-size: 9px; }
.account-remember input { accent-color: #8b7341; }
.account-form-options > button { padding: 0 0 4px; border: 0; border-bottom: 1px solid rgba(139,115,65,.34); background: transparent; color: #806a3c; font: inherit; font-size: 9px; cursor: pointer; }
.account-form .button { width: fit-content; margin-top: 3px; cursor: pointer; }
.account-register-note { padding: 22px; border: 1px solid var(--line-light); background: var(--paper); }
.account-register-note strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; font-weight: 500; }
.account-register-note p { margin: 9px 0 0; color: #73746c; font-size: 9px; line-height: 1.75; }
.account-privacy-copy { margin: 0; color: #85867e; font-size: 8px; line-height: 1.8; }
.account-form-status { margin: 0; padding: 14px 16px; border-left: 3px solid var(--gold); background: rgba(195,162,92,.1); color: #5d5e56; font-size: 9px; line-height: 1.7; }
.account-concept-note { grid-column: 1 / -1; margin: 0; padding: 17px 22px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); color: #85867e; font-size: 8px; letter-spacing: .04em; line-height: 1.75; text-align: center; }

.account-features { background: #25261f; color: var(--ivory); }
.account-features-heading h2 { color: var(--ivory); }
.account-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.account-feature { min-height: 300px; padding: 34px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.account-feature > span { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; }
.account-feature h3 { margin: 65px 0 17px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 29px; font-weight: 500; line-height: 1.05; }
.account-feature p { margin: 0; color: rgba(244,240,231,.54); font-size: 10px; line-height: 1.85; }

.account-faq { background: var(--paper); }
.account-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.account-faq-intro { position: sticky; top: 40px; align-self: start; }
.account-faq-intro h2 em { color: #8b7341; }
.account-faq-intro > p:last-child { max-width: 370px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.account-faq-list details { border-color: rgba(23,24,20,.2); }

.account-support { background: #747d72; color: white; }
.account-support-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; padding-top: 95px; padding-bottom: 95px; }
.account-support h2 { color: white; }
.account-support-grid > div:last-child > p { max-width: 620px; margin: 0; color: rgba(255,255,255,.7); line-height: 1.9; }
.account-support-actions { display: flex; align-items: center; gap: 28px; margin-top: 32px; }
.account-support-grid small { display: block; margin-top: 24px; color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.account-final-cta { background: #171814; }
.account-final-cta h2 em { color: var(--gold-light); }

/* Basket page */
.basket-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #141511 0%, #1b1c17 66%, #22231c 100%); color: var(--ivory); }
.basket-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.basket-hero-inner { position: relative; z-index: 2; padding-top: 92px; padding-bottom: 92px; }
.basket-hero h1 { max-width: 850px; font-size: clamp(56px, 5.8vw, 84px); }
.basket-hero-inner > p:last-child { max-width: 690px; margin: 28px 0 0; color: rgba(244,240,231,.66); line-height: 1.9; }
.basket-main { background: var(--ivory); }
.basket-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr); gap: 30px; align-items: start; }
.basket-items-card { padding: 46px; background: var(--paper); border: 1px solid var(--line-light); }
.basket-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 38px; border-bottom: 1px solid var(--line-light); }
.basket-card-heading h2 { font-size: clamp(42px, 4vw, 58px); }
.basket-card-heading h2 em { color: #8b7341; }
.basket-count { flex: 0 0 auto; padding: 8px 13px; background: rgba(127,139,120,.13); color: #5d6757; font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.basket-empty-state { display: grid; grid-template-columns: minmax(245px, .8fr) 1.2fr; gap: 42px; align-items: center; padding-top: 46px; }
.basket-empty-covers { position: relative; min-height: 300px; }
.basket-empty-covers img { position: absolute; top: 28px; left: 50%; width: 205px; aspect-ratio: 1; object-fit: cover; border: 1px solid rgba(23,24,20,.16); box-shadow: 0 20px 45px rgba(23,24,20,.13); }
.basket-empty-covers img:nth-child(1) { transform: translateX(-71%) rotate(-8deg); }
.basket-empty-covers img:nth-child(2) { z-index: 2; top: 6px; transform: translateX(-50%); }
.basket-empty-covers img:nth-child(3) { transform: translateX(-29%) rotate(8deg); }
.basket-empty-state h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 35px; font-weight: 500; }
.basket-empty-state p { margin: 16px 0 28px; color: #66675f; font-size: 14px; line-height: 1.9; }
.basket-summary { padding: 40px 34px; background: var(--ink); color: var(--ivory); }
.basket-summary-label { margin: 0 0 20px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.basket-summary h2 { font-size: 41px; }
.basket-summary dl { margin: 34px 0 0; }
.basket-summary dl div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line-dark); }
.basket-summary dt { color: rgba(244,240,231,.58); font-size: 12px; }
.basket-summary dd { margin: 0; color: var(--ivory); font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; }
.basket-summary .basket-total { padding-top: 23px; border-bottom: 0; }
.basket-total dt { color: var(--ivory); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.basket-summary .basket-total dd { color: var(--gold-light); font-size: 34px; }
.basket-checkout-button { width: 100%; margin-top: 22px; background: rgba(195,162,92,.35); color: rgba(23,24,20,.62); cursor: not-allowed; }
.basket-checkout-button:disabled:hover { transform: none; }
.basket-summary-note { margin: 16px 0 0; color: rgba(244,240,231,.4); font-size: 10px; line-height: 1.7; text-align: center; }
.basket-payment-note { display: grid; grid-template-columns: 26px 1fr; gap: 13px; margin-top: 25px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.basket-payment-note > span { display: grid; width: 26px; height: 26px; place-items: center; border-radius: 50%; background: rgba(127,139,120,.28); color: var(--gold-light); font-size: 11px; }
.basket-payment-note p { margin: 0; color: rgba(244,240,231,.46); font-size: 10px; line-height: 1.65; }
.basket-payment-note strong { display: block; margin-bottom: 3px; color: rgba(244,240,231,.82); font-size: 11px; }
.basket-assurance { background: #747d6d; color: white; }
.basket-assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.basket-assurance article { display: grid; grid-template-columns: 40px 1fr; gap: 18px; min-height: 190px; align-content: center; padding: 34px; border-right: 1px solid rgba(255,255,255,.16); }
.basket-assurance article:first-child { padding-left: 0; }
.basket-assurance article:last-child { border-right: 0; }
.basket-assurance article > span { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; }
.basket-assurance h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.basket-assurance p { margin: 9px 0 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.75; }
.basket-faq { background: var(--paper); }
.basket-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.basket-faq-intro { position: sticky; top: 40px; align-self: start; }
.basket-faq-intro h2 em { color: #8b7341; }
.basket-faq-intro > p:last-child { max-width: 370px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.basket-faq-list details { border-color: rgba(23,24,20,.2); }
.basket-support { background: #171814; color: var(--ivory); }
.basket-support-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; padding-top: 92px; padding-bottom: 92px; }
.basket-support h2 { color: var(--ivory); }
.basket-support h2 em { color: var(--gold-light); }
.basket-support-inner > div:last-child > p { max-width: 620px; margin: 0; color: rgba(244,240,231,.62); line-height: 1.9; }
.basket-support .button { margin-top: 30px; }

/* Checkout page */
.checkout-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #141511 0%, #1b1c17 66%, #22231c 100%); color: var(--ivory); }
.checkout-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.checkout-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; padding-top: 86px; padding-bottom: 90px; }
.checkout-hero h1 { max-width: 780px; font-size: clamp(56px, 5.8vw, 84px); }
.checkout-hero-grid > div > p:last-child { max-width: 680px; margin: 28px 0 0; color: rgba(244,240,231,.66); line-height: 1.9; }
.checkout-progress { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.checkout-progress li { position: relative; display: flex; min-height: 84px; flex-direction: column; justify-content: center; gap: 4px; padding: 15px; border-right: 1px solid var(--line-dark); }
.checkout-progress li:last-child { border-right: 0; }
.checkout-progress li::before { content: ""; position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--gold); }
.checkout-progress .is-complete::before, .checkout-progress .is-current::before { width: 100%; }
.checkout-progress span { color: rgba(244,240,231,.34); font-family: "Cormorant Garamond", Georgia, serif; font-size: 18px; }
.checkout-progress strong, .checkout-progress a { color: rgba(244,240,231,.54); font-size: 9px; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.checkout-progress .is-current strong, .checkout-progress .is-complete a { color: var(--gold-light); }
.checkout-main { background: var(--ivory); }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(360px, .84fr); gap: 30px; align-items: start; }
.checkout-details-card { padding: 48px; background: var(--paper); border: 1px solid var(--line-light); }
.checkout-concept-note { display: grid; grid-template-columns: 28px 1fr; gap: 14px; margin-bottom: 45px; padding: 17px 18px; border-left: 3px solid var(--gold); background: rgba(195,162,92,.1); }
.checkout-concept-note > span { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid rgba(139,115,65,.36); border-radius: 50%; color: #806a3c; font-family: "Cormorant Garamond", Georgia, serif; font-size: 17px; }
.checkout-concept-note p { margin: 0; color: #6a6b63; font-size: 9px; line-height: 1.7; }
.checkout-concept-note strong { display: block; margin-bottom: 2px; color: #44453f; font-size: 10px; }
.checkout-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-bottom: 32px; border-bottom: 1px solid var(--line-light); }
.checkout-section-heading h2 { font-size: 53px; }
.checkout-section-heading > p { margin: 0 0 6px; color: #73746c; font-size: 10px; }
.checkout-section-heading > p a { color: #806a3c; border-bottom: 1px solid rgba(139,115,65,.35); }
.checkout-form { display: grid; gap: 22px; margin-top: 34px; }
.checkout-form label { display: grid; gap: 8px; }
.checkout-form label > span { color: #73746c; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.checkout-field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.checkout-form input:not([type="checkbox"]), .checkout-form select, .checkout-form textarea { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid rgba(23,24,20,.18); border-radius: 0; outline: none; background: var(--paper); color: var(--ink); font: inherit; font-size: 11px; }
.checkout-form textarea { min-height: 105px; padding-top: 14px; resize: vertical; }
.checkout-form input::placeholder, .checkout-form textarea::placeholder { color: #a1a299; }
.checkout-form select:disabled { opacity: 1; color: #77786f; -webkit-text-fill-color: #77786f; }
.checkout-form .checkout-account-choice { display: flex; align-items: center; gap: 10px; padding: 5px 0; }
.checkout-account-choice input { accent-color: #8b7341; }
.checkout-form .checkout-account-choice span { color: #62635b; font-size: 9px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.checkout-order-card { position: sticky; top: 24px; padding: 42px 36px; background: var(--ink); color: var(--ivory); }
.checkout-order-label { margin: 0 0 18px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.checkout-order-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.checkout-order-heading h2 { font-size: 42px; }
.checkout-order-heading > a { flex: 0 0 auto; margin-bottom: 5px; padding-bottom: 4px; border-bottom: 1px solid rgba(223,200,136,.3); color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.checkout-order-empty { display: grid; grid-template-columns: 78px 1fr; gap: 18px; align-items: center; margin-top: 30px; padding: 22px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.checkout-order-empty img { width: 78px; height: 78px; object-fit: cover; opacity: .58; filter: grayscale(.25); }
.checkout-order-empty strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; font-weight: 500; }
.checkout-order-empty p { margin: 4px 0 7px; color: rgba(244,240,231,.43); font-size: 9px; line-height: 1.55; }
.checkout-order-empty a { color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.checkout-totals { margin: 10px 0 0; }
.checkout-totals div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line-dark); }
.checkout-totals dt { color: rgba(244,240,231,.55); font-size: 11px; }
.checkout-totals dd { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; }
.checkout-totals .checkout-total { padding-top: 22px; border-bottom: 0; }
.checkout-total dt { color: var(--ivory); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.checkout-totals .checkout-total dd { color: var(--gold-light); font-size: 34px; }
.checkout-payment-placeholder { display: grid; grid-template-columns: 18px 1fr; gap: 13px; margin-top: 20px; padding: 20px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.checkout-payment-placeholder > span { width: 16px; height: 16px; margin-top: 2px; border: 1px solid rgba(244,240,231,.28); border-radius: 50%; }
.checkout-payment-placeholder p { margin: 0; color: rgba(244,240,231,.4); font-size: 9px; line-height: 1.65; }
.checkout-payment-placeholder strong { display: block; margin-bottom: 3px; color: rgba(244,240,231,.76); font-size: 10px; }
.checkout-terms-copy { margin: 20px 0 0; color: rgba(244,240,231,.4); font-size: 8px; line-height: 1.7; }
.checkout-terms-copy a { color: rgba(223,200,136,.75); }
.checkout-digital-consent { display: grid; grid-template-columns: 16px 1fr; gap: 11px; align-items: start; margin-top: 18px; padding: 17px; border: 1px solid var(--line-dark); color: rgba(244,240,231,.52); font-size: 8px; line-height: 1.7; }
.checkout-digital-consent input { margin: 2px 0 0; accent-color: var(--gold); }
.checkout-place-order { width: 100%; margin-top: 22px; background: rgba(195,162,92,.35); color: rgba(23,24,20,.62); cursor: not-allowed; }
.checkout-place-order:disabled:hover { transform: none; }
.checkout-disabled-note { margin: 13px 0 0; color: rgba(244,240,231,.36); font-size: 8px; letter-spacing: .04em; text-align: center; }
.checkout-assurance { background: #747d6d; color: white; }
.checkout-assurance-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.checkout-assurance article { display: grid; grid-template-columns: 40px 1fr; gap: 18px; min-height: 190px; align-content: center; padding: 34px; border-right: 1px solid rgba(255,255,255,.16); }
.checkout-assurance article:first-child { padding-left: 0; }
.checkout-assurance article:last-child { border-right: 0; }
.checkout-assurance article > span { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; }
.checkout-assurance h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.checkout-assurance p { margin: 9px 0 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.75; }
.checkout-faq { background: var(--paper); }
.checkout-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.checkout-faq-intro { position: sticky; top: 40px; align-self: start; }
.checkout-faq-intro h2 em { color: #8b7341; }
.checkout-faq-intro > p:last-child { max-width: 380px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.checkout-faq-list details { border-color: rgba(23,24,20,.2); }
.checkout-support { background: #171814; color: var(--ivory); }
.checkout-support-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; padding-top: 92px; padding-bottom: 92px; }
.checkout-support h2 { color: var(--ivory); }
.checkout-support h2 em { color: var(--gold-light); }
.checkout-support-inner > div:last-child > p { max-width: 640px; margin: 0; color: rgba(244,240,231,.62); line-height: 1.9; }
.checkout-support-actions { display: flex; align-items: center; gap: 28px; margin-top: 30px; }

/* Legal hub and policy pages */
.legal-hub-hero, .legal-hero { position: relative; overflow: hidden; background: linear-gradient(120deg, #141511 0%, #1b1c17 66%, #22231c 100%); color: var(--ivory); }
.legal-hub-hero::before, .legal-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.legal-hub-hero-inner { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 105px; }
.legal-hub-hero h1 { max-width: 800px; font-size: clamp(58px, 6vw, 88px); }
.legal-hub-hero-inner > p:last-child { max-width: 760px; margin: 30px 0 0; color: rgba(244,240,231,.66); line-height: 1.9; }
.legal-hub-main { background: var(--ivory); }
.legal-hub-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: end; }
.legal-hub-heading h2 em { color: #8b7341; }
.legal-hub-heading > p { max-width: 600px; margin: 0 0 7px auto; color: #67685f; line-height: 1.9; }
.legal-hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.legal-hub-grid article { min-height: 335px; padding: 40px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); background: rgba(255,255,255,.18); }
.legal-hub-grid article > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; }
.legal-hub-grid h3 { margin: 52px 0 15px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 32px; font-weight: 500; line-height: 1.05; }
.legal-hub-grid p { max-width: 470px; margin: 0; color: #6b6c64; font-size: 12px; line-height: 1.85; }
.legal-hub-grid a { display: inline-flex; gap: 13px; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid rgba(139,115,65,.34); color: #806a3c; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.legal-hub-principles { background: #747d6d; color: white; }
.legal-hub-principles-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; padding-top: 105px; padding-bottom: 105px; }
.legal-hub-principles h2 { color: white; }
.legal-hub-principles h2 em { color: var(--gold-light); }
.legal-principle-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.legal-principle-list article { display: grid; grid-template-columns: 32px 1fr; gap: 14px; min-height: 150px; align-content: center; padding: 25px; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.legal-principle-list article > span { color: var(--gold-light); font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; }
.legal-principle-list h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: 23px; font-weight: 500; }
.legal-principle-list p { margin: 7px 0 0; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.7; }
.legal-hub-contact { background: #171814; color: var(--ivory); }
.legal-hub-contact-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; padding-top: 92px; padding-bottom: 92px; }
.legal-hub-contact h2 { color: var(--ivory); }
.legal-hub-contact h2 em { color: var(--gold-light); }
.legal-hub-contact-inner > div:last-child > p { max-width: 620px; margin: 0; color: rgba(244,240,231,.62); line-height: 1.9; }
.legal-hub-contact .button { margin-top: 30px; }

.legal-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.13fr .87fr; gap: 90px; align-items: end; padding-top: 92px; padding-bottom: 98px; }
.legal-hero h1 { max-width: 800px; font-size: clamp(58px, 6vw, 86px); }
.legal-hero-grid > div:first-child > p:last-child { max-width: 720px; margin: 30px 0 0; color: rgba(244,240,231,.66); line-height: 1.9; }
.legal-updated-card { padding: 34px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.03); }
.legal-updated-card > span { color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.legal-updated-card > strong { display: block; margin-top: 22px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; font-weight: 500; line-height: 1.12; }
.legal-updated-card dl { margin: 25px 0 0; padding-top: 18px; border-top: 1px solid var(--line-dark); }
.legal-updated-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 7px 0; }
.legal-updated-card dt { color: rgba(244,240,231,.42); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.legal-updated-card dd { margin: 0; color: rgba(244,240,231,.72); font-size: 9px; text-align: right; }
.legal-content { background: var(--ivory); }
.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 90px; align-items: start; }
.legal-navigation { position: sticky; top: 30px; }
.legal-navigation > p { margin: 0 0 17px; color: #8b7341; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.legal-navigation nav { display: flex; flex-direction: column; border-top: 1px solid var(--line-light); }
.legal-navigation nav a { display: flex; min-height: 49px; align-items: center; justify-content: space-between; gap: 16px; padding: 0 13px; border-bottom: 1px solid var(--line-light); color: #6b6c64; font-size: 10px; }
.legal-navigation nav a span { color: #9a8048; }
.legal-navigation nav a.is-current { background: #1f201b; color: var(--ivory); }
.legal-help-card { margin-top: 28px; padding: 24px; background: #747d6d; color: white; }
.legal-help-card > span { color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.legal-help-card p { margin: 13px 0 16px; color: rgba(255,255,255,.7); font-size: 10px; line-height: 1.7; }
.legal-help-card a { padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.28); font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.legal-document { max-width: 780px; }
.legal-document > section { padding: 0 0 46px; margin-bottom: 46px; border-bottom: 1px solid var(--line-light); }
.legal-document > section:first-child { padding: 38px; background: var(--paper); border: 1px solid var(--line-light); }
.legal-document .legal-lead { margin-top: 0; color: #3f403a; font-family: "Cormorant Garamond", Georgia, serif; font-size: 27px; line-height: 1.45; }
.legal-document h2 { margin: 0 0 23px; color: #24251f; font-size: 37px; line-height: 1.08; }
.legal-document h3 { margin: 30px 0 12px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 25px; font-weight: 500; }
.legal-document p { margin: 0 0 17px; color: #62635c; font-size: 13px; line-height: 1.9; }
.legal-document p:last-child { margin-bottom: 0; }
.legal-document ul, .legal-document ol { display: grid; gap: 12px; margin: 20px 0; padding-left: 22px; color: #5e5f58; font-size: 12px; line-height: 1.8; }
.legal-document li::marker { color: #9a8048; }
.legal-document strong { color: #3f403a; }
.legal-document a { color: #806a3c; border-bottom: 1px solid rgba(139,115,65,.25); }
.legal-action-note { margin-top: 25px; padding: 22px; border-left: 3px solid var(--gold); background: var(--paper); }
.legal-action-note strong { display: block; margin-bottom: 7px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 21px; font-weight: 500; }
.legal-action-note p { font-size: 10px; }
.legal-contact-box { padding: 38px; background: #1f201b; color: var(--ivory); }
.legal-contact-box > span { color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.legal-contact-box h2 { margin: 20px 0 14px; color: var(--ivory); }
.legal-contact-box p { color: rgba(244,240,231,.56); }
.legal-contact-box a { color: var(--gold-light); }

/* Free growth insights */
.insights-hero { position: relative; overflow: hidden; min-height: 860px; background: linear-gradient(120deg, #141511 0%, #1b1c17 62%, #22231c 100%); color: var(--ivory); }
.insights-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.insights-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; padding-top: 86px; padding-bottom: 95px; }
.insights-hero-copy h1 { max-width: 780px; font-size: clamp(58px, 6vw, 88px); }
.insights-hero-copy > p:nth-of-type(2) { max-width: 680px; margin: 30px 0 0; color: rgba(244,240,231,.66); line-height: 1.9; }
.insights-author { display: flex; align-items: center; gap: 15px; margin-top: 34px; }
.insights-author img { width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; object-fit: cover; object-position: center 28%; filter: saturate(.72); }
.insights-author div { display: flex; flex-direction: column; }
.insights-author strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 19px; font-weight: 500; }
.insights-author span { margin-top: 2px; color: rgba(244,240,231,.42); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.insights-hero-promises { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.insights-hero-promises span { position: relative; padding-left: 14px; color: rgba(244,240,231,.48); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.insights-hero-promises span::before { content: ""; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.insights-form-wrap { justify-self: end; width: min(475px, 100%); }
.insights-form { padding: 45px; background: var(--ivory); color: var(--ink); box-shadow: 0 25px 70px rgba(0,0,0,.24); }
.insights-form-heading { margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid var(--line-light); }
.insights-form-heading > span { color: #8b7341; font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.insights-form-heading h2 { margin: 16px 0 9px; font-size: 45px; }
.insights-form-heading p { margin: 0; color: #72736b; font-size: 10px; line-height: 1.7; }
.insights-form > label:not(.insights-consent) { display: grid; gap: 8px; margin-bottom: 19px; }
.insights-form > label:not(.insights-consent) > span { color: #73746c; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.insights-form input[type="text"], .insights-form input[type="email"] { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid rgba(23,24,20,.18); border-radius: 0; outline: none; background: var(--paper); color: var(--ink); font: inherit; font-size: 11px; transition: border-color .2s ease, box-shadow .2s ease; }
.insights-form input[type="text"]:focus, .insights-form input[type="email"]:focus { border-color: #9a8048; box-shadow: 0 0 0 3px rgba(195,162,92,.12); }
.insights-consent { display: grid; grid-template-columns: 17px 1fr; gap: 11px; align-items: start; margin-top: 24px; padding: 17px; border: 1px solid var(--line-light); background: var(--paper); }
.insights-consent input { margin: 2px 0 0; accent-color: #8b7341; }
.insights-consent span { color: #62635b; font-size: 9px; line-height: 1.7; }
.insights-privacy-copy { margin: 15px 0 0; color: #85867e; font-size: 8px; line-height: 1.7; }
.insights-privacy-copy a { color: #806a3c; border-bottom: 1px solid rgba(139,115,65,.25); }
.insights-form .button { width: 100%; margin-top: 22px; cursor: pointer; }
.insights-form-note { margin: 13px 0 0; color: #8a8b83; font-size: 8px; letter-spacing: .04em; text-align: center; }
.insights-form-status { margin: 18px 0 0; padding: 14px 16px; border-left: 3px solid var(--gold); background: rgba(195,162,92,.1); color: #5d5e56; font-size: 9px; line-height: 1.7; }
.insights-themes { background: var(--ivory); }
.insights-themes-heading { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: end; }
.insights-themes-heading h2 em { color: #8b7341; }
.insights-themes-heading > p { max-width: 600px; margin: 0 0 7px auto; color: #67685f; line-height: 1.9; }
.insights-theme-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 68px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.insights-theme-grid article { min-height: 310px; padding: 32px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.insights-theme-grid article > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; }
.insights-theme-grid h3 { margin: 62px 0 16px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; font-weight: 500; line-height: 1.05; }
.insights-theme-grid p { margin: 0; color: #6b6c64; font-size: 10px; line-height: 1.8; }
.insights-reflection { background: #747d6d; color: white; }
.insights-reflection-grid { display: grid; grid-template-columns: 1.17fr .83fr; gap: 100px; align-items: end; padding-top: 110px; padding-bottom: 110px; }
.insights-reflection blockquote { max-width: 790px; margin: 0; color: white; font-size: clamp(42px, 5vw, 67px); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.insights-reflection-note { padding: 34px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.035); }
.insights-reflection-note > span { color: var(--gold-light); font-size: 8px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.insights-reflection-note p { margin: 22px 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.9; }
.insights-reflection-note strong { display: block; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.82); font-family: "Cormorant Garamond", Georgia, serif; font-size: 20px; font-weight: 500; line-height: 1.35; }
.insights-promise { background: var(--paper); }
.insights-promise-heading h2 em { color: #8b7341; }
.insights-promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 65px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.insights-promise-grid article { min-height: 270px; padding: 36px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.insights-promise-grid article > span { color: #9a8048; font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; }
.insights-promise-grid h3 { margin: 56px 0 15px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 28px; font-weight: 500; }
.insights-promise-grid p { margin: 0; color: #6b6c64; font-size: 11px; line-height: 1.8; }
.insights-faq { background: var(--ivory); }
.insights-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.insights-faq-intro { position: sticky; top: 40px; align-self: start; }
.insights-faq-intro h2 em { color: #8b7341; }
.insights-faq-intro > p:last-child { max-width: 370px; margin: 30px 0 0; color: #67685f; line-height: 1.9; }
.insights-faq-list details { border-color: rgba(23,24,20,.2); }
.insights-final { position: relative; overflow: hidden; background: #171814; color: var(--ivory); }
.insights-final::before { content: "CJ"; position: absolute; right: -3vw; bottom: -13vw; color: rgba(255,255,255,.035); font-family: "Cormorant Garamond", Georgia, serif; font-size: 31vw; line-height: 1; }
.insights-final-inner { position: relative; z-index: 1; padding-top: 105px; padding-bottom: 105px; }
.insights-final h2 { color: var(--ivory); }
.insights-final h2 em { color: var(--gold-light); }
.insights-final-inner > p:nth-of-type(2) { max-width: 650px; margin: 28px 0 0; color: rgba(244,240,231,.6); line-height: 1.9; }
.insights-final .button { margin-top: 34px; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-actions { display: none; }
  .mobile-menu { display: block; position: relative; justify-self: end; }
  .mobile-menu summary { list-style: none; cursor: pointer; color: var(--gold-light); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav { position: absolute; right: 0; top: 34px; display: flex; width: 220px; flex-direction: column; gap: 2px; padding: 12px; background: #24251f; border: 1px solid var(--line-dark); box-shadow: 0 18px 50px rgba(0,0,0,.35); }
  .mobile-menu nav a { padding: 11px 12px; color: rgba(244,240,231,.76); font-size: 12px; }
  .mobile-menu nav .mobile-menu-shop-link { margin-top: 7px; padding-top: 17px; border-top: 1px solid var(--line-dark); }
  .hero-content { grid-template-columns: 1fr .72fr; gap: 40px; }
  .portrait-card { left: -20px; }
  .two-column, .split-heading { gap: 54px; }
  .service-card { padding: 30px; }
  .about-grid, .faq-grid { gap: 65px; }
  .about-hero-grid { gap: 38px; }
  .about-portrait-label { right: -8px; }
  .about-opening-grid { gap: 65px; }
  .story-chapter { gap: 38px; }
  .principle-card { padding: 34px; }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
  .about-mission-grid { gap: 58px; }
  .coaching-hero-grid { gap: 42px; }
  .coaching-recognition-grid { gap: 58px; }
  .coaching-path-card { padding: 32px; }
  .coaching-step { padding: 27px; }
  .coaching-expectations-grid { gap: 58px; }
  .coaching-package-card { padding: 34px; }
  .coaching-faq-grid { gap: 64px; }
  .personal-hero-grid { gap: 44px; }
  .personal-opening-grid { gap: 64px; }
  .personal-process-step { padding: 27px; }
  .personal-package-card { padding: 32px; }
  .personal-faq-grid { gap: 64px; }
  .nlp-hero-grid { gap: 40px; }
  .nlp-hero-card { right: -8px; }
  .nlp-opening-grid { gap: 60px; }
  .nlp-process-step { padding: 24px; }
  .nlp-package-card { padding: 32px; }
  .nlp-faq-grid { gap: 64px; }
  .faith-hero-grid { gap: 40px; }
  .faith-hero-card { right: -8px; }
  .faith-opening-grid { gap: 60px; }
  .faith-process-step { padding: 24px; }
  .faith-package-card { padding: 32px; }
  .faith-faq-grid { gap: 64px; }
  .ebooks-hero-grid { gap: 42px; }
  .ebooks-cover-stack { transform: scale(.9); transform-origin: right center; }
  .ebooks-bundle-grid { gap: 60px; }
  .ebooks-bundle-card { padding: 38px; }
  .ebook-card-content { padding: 24px; }
  .ebooks-inside-heading { gap: 60px; }
  .ebooks-feature { padding: 28px; }
  .ebooks-faq-grid { gap: 64px; }
  .contact-hero-grid { gap: 44px; }
  .contact-call-card { right: -10px; }
  .contact-path-card { padding: 32px; }
  .contact-invitation-grid { gap: 60px; }
  .contact-enquiry-card { padding: 40px; }
  .contact-faq-grid { gap: 64px; }
  .account-hero-grid { gap: 55px; }
  .account-access-heading { gap: 55px; }
  .account-form-card { padding: 38px; }
  .account-feature { padding: 28px; }
  .account-faq-grid { gap: 64px; }
  .account-support-grid { gap: 60px; }
  .basket-layout { grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); }
  .basket-items-card { padding: 38px; }
  .basket-empty-state { grid-template-columns: 1fr; gap: 20px; }
  .basket-empty-covers { min-height: 275px; }
  .basket-faq-grid { gap: 64px; }
  .basket-support-inner { gap: 60px; }
  .checkout-hero-grid { gap: 55px; }
  .checkout-layout { grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); }
  .checkout-details-card { padding: 38px; }
  .checkout-order-card { padding: 38px 30px; }
  .checkout-faq-grid { gap: 64px; }
  .checkout-support-inner { gap: 60px; }
  .legal-hub-heading { gap: 55px; }
  .legal-hub-principles-grid { gap: 60px; }
  .legal-hub-contact-inner { gap: 60px; }
  .legal-hero-grid { gap: 55px; }
  .legal-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 55px; }
  .insights-hero-grid { gap: 55px; }
  .insights-form { padding: 38px; }
  .insights-themes-heading { gap: 55px; }
  .insights-theme-grid article { padding: 27px; }
  .insights-reflection-grid { gap: 60px; }
  .insights-faq-grid { gap: 64px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 35px; }
}

@media (max-width: 760px) {
  .page-shell { width: min(100% - 32px, 640px); }
  .section-pad { padding: 82px 0; }
  .site-header { min-height: 80px; }
  .hero-content { grid-template-columns: 1fr; padding-top: 70px; }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .hero-portrait { justify-self: center; width: min(360px, 90%); }
  .portrait-card { left: -18px; bottom: 24px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar div { min-height: 90px; padding: 0 14px; border-bottom: 1px solid var(--line-dark); }
  .trust-bar div:first-child { padding-left: 14px; }
  .trust-bar div:nth-child(2) { border-right: 0; }
  .two-column, .split-heading { grid-template-columns: 1fr; gap: 42px; }
  .challenge-grid, .service-grid, .steps-grid, .package-grid, .book-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 34px; }
  .belief-inner { padding-top: 82px; padding-bottom: 82px; }
  .belief-copy { margin-left: 0; }
  .step { min-height: auto; }
  .step h3 { margin-top: 34px; }
  .package-card, .package-card.featured { min-height: auto; transform: none; }
  .package-card h3 { min-height: auto; margin-top: 38px; }
  .package-note { line-height: 1.7; }
  .about-image { width: min(440px, calc(100% - 24px)); }
  .about-stamp { right: -24px; }
  .resource-heading { align-items: flex-start; flex-direction: column; }
  .book-grid { gap: 42px; }
  .faq-intro { position: static; }
  .final-cta-inner { padding-top: 82px; padding-bottom: 82px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 46px 26px; padding-top: 62px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 24px 0; }
  .about-hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 68px; }
  .about-hero-portrait { justify-self: center; width: min(390px, 88%); }
  .about-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .about-hero-stats div { min-height: 94px; border-bottom: 1px solid var(--line-dark); }
  .about-hero-stats div:first-child { padding-left: 25px; }
  .about-hero-stats div:nth-child(2) { border-right: 0; }
  .about-opening-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-chapter { grid-template-columns: 1fr; gap: 24px; padding: 72px 0; }
  .story-chapter h2 { max-width: 580px; }
  .about-belief-inner { padding-top: 84px; padding-bottom: 84px; }
  .about-belief-inner > p:last-child { margin-left: 0; }
  .principles-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .principle-card { min-height: auto; }
  .principle-card h3 { margin-top: 34px; }
  .about-impact-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .impact-item { min-height: 150px; }
  .impact-note { margin-left: 0; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 46px; }
  .about-mission-copy { padding: 34px 0 0; border-top: 1px solid var(--line-light); border-left: 0; }
  .coaching-hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 68px; }
  .coaching-hero-visual { justify-self: center; width: min(390px, 88%); }
  .coaching-assurance-bar { grid-template-columns: repeat(2, 1fr); }
  .coaching-assurance-bar div { min-height: 94px; border-bottom: 1px solid var(--line-dark); }
  .coaching-assurance-bar div:first-child { padding-left: 25px; }
  .coaching-assurance-bar div:nth-child(2) { border-right: 0; }
  .coaching-recognition-grid { grid-template-columns: 1fr; gap: 48px; }
  .coaching-path-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .coaching-path-card { min-height: auto; }
  .coaching-path-card h3 { margin-top: 34px; }
  .coaching-belief-panel-inner { padding-top: 82px; padding-bottom: 82px; }
  .coaching-belief-panel-inner > p:last-child { margin-left: 0; }
  .coaching-steps-grid { grid-template-columns: repeat(2, 1fr); margin-top: 50px; }
  .coaching-step { min-height: 290px; }
  .coaching-expectations-grid { grid-template-columns: 1fr; gap: 48px; }
  .coaching-boundary-note { grid-template-columns: 1fr; gap: 18px; margin-top: 50px; }
  .coaching-package-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 50px; }
  .coaching-package-card, .coaching-package-card.featured { min-height: auto; transform: none; }
  .coaching-package-description { min-height: auto; }
  .coaching-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .coaching-faq-intro { position: static; }
  .personal-hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 68px; }
  .personal-hero-visual { justify-self: center; width: min(390px, 88%); }
  .personal-session-bar { grid-template-columns: repeat(2, 1fr); }
  .personal-session-bar div { min-height: 94px; border-bottom: 1px solid var(--line-dark); }
  .personal-session-bar div:first-child { padding-left: 25px; }
  .personal-session-bar div:nth-child(2) { border-right: 0; }
  .personal-opening-grid { grid-template-columns: 1fr; gap: 44px; }
  .personal-signs-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .personal-outcomes-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .personal-outcomes-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .personal-belief-inner { padding-top: 82px; padding-bottom: 82px; }
  .personal-belief-inner > p:last-child { margin-left: 0; }
  .personal-process-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .personal-process-step { min-height: 280px; }
  .personal-tools-strip { grid-template-columns: 1fr; gap: 20px; }
  .personal-tools-strip ul { justify-content: flex-start; }
  .personal-package-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 50px; }
  .personal-package-card, .personal-package-card.featured { min-height: auto; transform: none; }
  .personal-package-focus { min-height: auto; }
  .personal-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .personal-faq-intro { position: static; }
  .nlp-hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 68px; }
  .nlp-hero-visual { justify-self: center; width: min(390px, 88%); }
  .nlp-principle-bar { grid-template-columns: repeat(2, 1fr); }
  .nlp-principle-bar div { min-height: 94px; border-bottom: 1px solid var(--line-dark); }
  .nlp-principle-bar div:first-child { padding-left: 25px; }
  .nlp-principle-bar div:nth-child(2) { border-right: 0; }
  .nlp-opening-grid { grid-template-columns: 1fr; gap: 44px; }
  .nlp-pattern-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .nlp-outcomes-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .nlp-outcome-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .nlp-belief-inner { padding-top: 82px; padding-bottom: 82px; }
  .nlp-belief-inner > p:last-child { margin-left: 0; }
  .nlp-process-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .nlp-process-step { min-height: 270px; }
  .nlp-package-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 50px; }
  .nlp-package-card, .nlp-package-card.featured { min-height: auto; transform: none; }
  .nlp-package-focus { min-height: auto; }
  .nlp-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .nlp-faq-intro { position: static; }
  .faith-hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 68px; }
  .faith-hero-visual { justify-self: center; width: min(390px, 88%); }
  .faith-principle-bar { grid-template-columns: repeat(2, 1fr); }
  .faith-principle-bar div { min-height: 94px; border-bottom: 1px solid var(--line-dark); }
  .faith-principle-bar div:first-child { padding-left: 25px; }
  .faith-principle-bar div:nth-child(2) { border-right: 0; }
  .faith-opening-grid { grid-template-columns: 1fr; gap: 44px; }
  .faith-sign-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .faith-outcomes-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .faith-outcome-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .faith-belief-inner { padding-top: 82px; padding-bottom: 82px; }
  .faith-belief-inner > p:last-child { margin-left: 0; }
  .faith-process-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .faith-process-step { min-height: 270px; }
  .faith-practices-strip { grid-template-columns: 1fr; gap: 20px; }
  .faith-practices-strip ul { justify-content: flex-start; }
  .faith-package-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 50px; }
  .faith-package-card, .faith-package-card.featured { min-height: auto; transform: none; }
  .faith-package-focus { min-height: auto; }
  .faith-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faith-faq-intro { position: static; }
  .ebooks-hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 68px; }
  .ebooks-cover-stack { justify-self: center; width: min(500px, 100%); transform: none; }
  .ebooks-value-bar { grid-template-columns: repeat(2, 1fr); }
  .ebooks-value-bar div { min-height: 92px; border-bottom: 1px solid var(--line-dark); }
  .ebooks-value-bar div:first-child { padding-left: 28px; }
  .ebooks-value-bar div:nth-child(2) { border-right: 0; }
  .ebooks-bundle-grid { grid-template-columns: 1fr; gap: 48px; }
  .ebooks-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .ebook-card { min-height: 570px; }
  .ebooks-inside-heading { grid-template-columns: 1fr; gap: 38px; }
  .ebooks-inside-heading > p { margin-left: 0; }
  .ebooks-feature-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .ebooks-purchase-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .ebooks-purchase-step { min-height: auto; }
  .ebooks-purchase-step h3 { margin-top: 36px; }
  .ebooks-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .ebooks-faq-intro { position: static; }
  .ebooks-final-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .contact-hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 68px; }
  .contact-hero-visual { justify-self: center; width: min(410px, 88%); }
  .contact-assurance-bar { grid-template-columns: repeat(2, 1fr); }
  .contact-assurance-bar div { min-height: 94px; border-bottom: 1px solid var(--line-dark); }
  .contact-assurance-bar div:first-child { padding-left: 28px; }
  .contact-assurance-bar div:nth-child(2) { border-right: 0; }
  .contact-path-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .contact-path-card { min-height: auto; }
  .contact-path-card h3 { margin-top: 36px; }
  .contact-path-card a { margin-top: 30px; }
  .contact-unsure-note { grid-template-columns: 1fr; gap: 16px; }
  .contact-unsure-note a { width: fit-content; }
  .contact-process-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .contact-process-step { min-height: auto; }
  .contact-process-step h3 { margin-top: 36px; }
  .contact-invitation-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-faq-intro { position: static; }
  .account-hero-grid { grid-template-columns: 1fr; gap: 46px; padding-top: 72px; padding-bottom: 82px; }
  .account-access-heading { grid-template-columns: 1fr; gap: 38px; }
  .account-access-heading > p { margin-left: 0; }
  .account-form-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .account-form-card { min-height: auto; }
  .account-feature-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .account-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .account-faq-intro { position: static; }
  .account-support-grid { grid-template-columns: 1fr; gap: 42px; padding-top: 82px; padding-bottom: 82px; }
  .basket-hero-inner { padding-top: 72px; padding-bottom: 82px; }
  .basket-layout { grid-template-columns: 1fr; }
  .basket-summary { padding: 38px 32px; }
  .basket-assurance-grid { grid-template-columns: 1fr; }
  .basket-assurance article { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .basket-assurance article:last-child { border-bottom: 0; }
  .basket-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .basket-faq-intro { position: static; }
  .basket-support-inner { grid-template-columns: 1fr; gap: 42px; padding-top: 82px; padding-bottom: 82px; }
  .checkout-hero-grid { grid-template-columns: 1fr; gap: 46px; padding-top: 72px; padding-bottom: 82px; }
  .checkout-progress { max-width: 520px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-order-card { position: static; }
  .checkout-assurance-grid { grid-template-columns: 1fr; }
  .checkout-assurance article { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .checkout-assurance article:last-child { border-bottom: 0; }
  .checkout-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .checkout-faq-intro { position: static; }
  .checkout-support-inner { grid-template-columns: 1fr; gap: 42px; padding-top: 82px; padding-bottom: 82px; }
  .legal-hub-hero-inner { padding-top: 72px; padding-bottom: 82px; }
  .legal-hub-heading { grid-template-columns: 1fr; gap: 38px; }
  .legal-hub-heading > p { margin-left: 0; }
  .legal-hub-grid { margin-top: 48px; }
  .legal-hub-principles-grid { grid-template-columns: 1fr; gap: 46px; padding-top: 82px; padding-bottom: 82px; }
  .legal-hub-contact-inner { grid-template-columns: 1fr; gap: 42px; padding-top: 82px; padding-bottom: 82px; }
  .legal-hero-grid { grid-template-columns: 1fr; gap: 46px; padding-top: 72px; padding-bottom: 82px; }
  .legal-updated-card { max-width: 520px; }
  .legal-layout { grid-template-columns: 1fr; gap: 54px; }
  .legal-navigation { position: static; }
  .legal-navigation nav { display: grid; grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--line-light); }
  .legal-navigation nav a { border-right: 1px solid var(--line-light); }
  .legal-help-card { max-width: 430px; }
  .legal-document { max-width: none; }
  .insights-hero { min-height: auto; }
  .insights-hero-grid { grid-template-columns: 1fr; gap: 54px; padding-top: 72px; padding-bottom: 82px; }
  .insights-form-wrap { justify-self: stretch; width: min(560px, 100%); }
  .insights-themes-heading { grid-template-columns: 1fr; gap: 38px; }
  .insights-themes-heading > p { margin-left: 0; }
  .insights-theme-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .insights-reflection-grid { grid-template-columns: 1fr; gap: 44px; padding-top: 82px; padding-bottom: 82px; }
  .insights-reflection-note { max-width: 590px; }
  .insights-promise-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .insights-promise-grid article { min-height: auto; }
  .insights-promise-grid h3 { margin-top: 34px; }
  .insights-faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .insights-faq-intro { position: static; }
  .insights-final-inner { padding-top: 82px; padding-bottom: 82px; }
}

@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr; }
  .trust-bar div { border-right: 0; }
  .challenge-grid { grid-template-columns: 1fr; }
  .about-facts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom div { flex-wrap: wrap; gap: 14px; }
  .about-hero-stats { grid-template-columns: 1fr; }
  .about-hero-stats div { border-right: 0; }
  .about-hero-portrait { width: calc(100% - 22px); min-height: 450px; }
  .about-portrait-label { right: -14px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-item { min-height: 130px; }
  .coaching-assurance-bar { grid-template-columns: 1fr; }
  .coaching-assurance-bar div { border-right: 0; }
  .coaching-signs { grid-template-columns: 1fr; }
  .coaching-hero-visual { width: calc(100% - 18px); padding-left: 18px; }
  .coaching-visual-card { min-width: 225px; }
  .coaching-steps-grid { grid-template-columns: 1fr; }
  .coaching-step { min-height: auto; }
  .coaching-step h3 { margin-top: 34px; }
  .expectations-list { grid-template-columns: 1fr; }
  .expectations-list > div { min-height: 180px; }
  .personal-session-bar { grid-template-columns: 1fr; }
  .personal-session-bar div { border-right: 0; }
  .personal-hero-visual { width: calc(100% - 18px); padding-left: 18px; }
  .personal-hero-note { min-width: 260px; }
  .personal-signs-grid, .personal-outcomes-grid { grid-template-columns: 1fr; }
  .personal-sign, .personal-outcome { min-height: auto; }
  .personal-outcome h3 { margin-top: 34px; }
  .personal-process-grid { grid-template-columns: 1fr; }
  .personal-process-step { min-height: auto; }
  .personal-process-step h3 { margin-top: 34px; }
  .personal-addons { grid-template-columns: 1fr; }
  .nlp-principle-bar { grid-template-columns: 1fr; }
  .nlp-principle-bar div { border-right: 0; }
  .nlp-hero-visual { width: calc(100% - 18px); min-height: 470px; }
  .nlp-hero-card { right: -10px; min-width: 225px; }
  .nlp-responsibility-note { grid-template-columns: 1fr; gap: 14px; }
  .nlp-pattern-grid, .nlp-outcome-grid { grid-template-columns: 1fr; }
  .nlp-pattern, .nlp-outcome { min-height: auto; }
  .nlp-outcome h3 { margin-top: 34px; }
  .nlp-process-grid { grid-template-columns: 1fr; }
  .nlp-process-step { min-height: auto; }
  .nlp-process-step h3 { margin-top: 34px; }
  .nlp-addons { grid-template-columns: 1fr; }
  .faith-principle-bar { grid-template-columns: 1fr; }
  .faith-principle-bar div { border-right: 0; }
  .faith-hero-visual { width: calc(100% - 18px); min-height: 470px; }
  .faith-hero-card { right: -10px; min-width: 215px; }
  .faith-welcome-note { grid-template-columns: 1fr; gap: 14px; }
  .faith-sign-grid, .faith-outcome-grid { grid-template-columns: 1fr; }
  .faith-sign, .faith-outcome { min-height: auto; }
  .faith-outcome h3 { margin-top: 34px; }
  .faith-process-grid { grid-template-columns: 1fr; }
  .faith-process-step { min-height: auto; }
  .faith-process-step h3 { margin-top: 34px; }
  .faith-addons { grid-template-columns: 1fr; }
  .ebooks-cover-stack { min-height: 370px; }
  .ebooks-cover { width: 205px; }
  .ebooks-cover-centre { left: 50%; top: 8px; width: 230px; transform: translateX(-50%); }
  .ebooks-cover-left { left: 0; top: 76px; }
  .ebooks-cover-right { right: 0; top: 92px; }
  .ebooks-series-card { right: 0; bottom: 0; min-width: 170px; }
  .ebooks-bundle-card { padding: 32px 25px; }
  .ebooks-bundle-card ul { grid-template-columns: 1fr; }
  .ebooks-bundle-price { align-items: flex-start; flex-direction: column; }
  .ebooks-bundle-price > span { text-align: left; }
  .ebooks-grid { grid-template-columns: 1fr; }
  .ebook-card { min-height: auto; }
  .ebook-card-content > p { min-height: 80px; }
  .ebooks-feature-grid { grid-template-columns: 1fr; }
  .ebooks-feature { min-height: auto; }
  .ebooks-feature h3 { margin-top: 34px; }
  .contact-hero-visual { width: calc(100% - 20px); }
  .contact-portrait, .contact-portrait img { min-height: 455px; }
  .contact-call-card { right: -10px; width: 245px; }
  .contact-assurance-bar { grid-template-columns: 1fr; }
  .contact-assurance-bar div { border-right: 0; }
  .contact-enquiry-card { padding: 34px 25px; }
  .contact-email-option { align-items: flex-start; flex-direction: column; gap: 10px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .account-assurance-card, .account-form-card { padding: 32px 24px; }
  .account-form-options { align-items: flex-start; flex-direction: column; }
  .account-feature-grid { grid-template-columns: 1fr; }
  .account-feature { min-height: auto; }
  .account-feature h3 { margin-top: 36px; }
  .account-support-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .basket-items-card { padding: 32px 24px; }
  .basket-card-heading { flex-direction: column; }
  .basket-empty-covers { min-height: 240px; }
  .basket-empty-covers img { width: 165px; }
  .basket-summary { padding: 34px 24px; }
  .checkout-progress { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line-dark); }
  .checkout-progress li { min-height: 62px; padding: 10px 16px; border-top: 1px solid var(--line-dark); border-right: 0; }
  .checkout-progress li::before { top: 0; left: -1px; width: 2px; height: 0; }
  .checkout-progress .is-complete::before, .checkout-progress .is-current::before { width: 2px; height: 100%; }
  .checkout-details-card { padding: 32px 24px; }
  .checkout-section-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .checkout-field-row { grid-template-columns: 1fr; }
  .checkout-order-card { padding: 34px 24px; }
  .checkout-order-heading { align-items: flex-start; flex-direction: column; }
  .checkout-support-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .legal-hub-grid { grid-template-columns: 1fr; }
  .legal-hub-grid article { min-height: auto; padding: 32px 24px; }
  .legal-hub-grid h3 { margin-top: 36px; }
  .legal-principle-list { grid-template-columns: 1fr; }
  .legal-hero h1 { font-size: clamp(48px, 14vw, 66px); }
  .legal-updated-card { padding: 28px 24px; }
  .legal-navigation nav { grid-template-columns: 1fr; }
  .legal-document > section:first-child, .legal-contact-box { padding: 30px 24px; }
  .legal-document h2 { font-size: 33px; }
  .insights-form { padding: 34px 24px; }
  .insights-hero-promises { flex-direction: column; }
  .insights-theme-grid { grid-template-columns: 1fr; }
  .insights-theme-grid article { min-height: auto; padding: 32px 24px; }
  .insights-theme-grid h3 { margin-top: 36px; }
  .insights-reflection-note { padding: 30px 24px; }
  .insights-promise-grid article { padding: 32px 24px; }
}

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

/* WordPress and WooCommerce integration */
.cj-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-form-status.is-success, .insights-form-status.is-success { border-left: 3px solid #5c7657; background: rgba(92, 118, 87, .12); color: #365033; }
.contact-form-status.is-error, .insights-form-status.is-error { border-left: 3px solid #a44d45; background: rgba(164, 77, 69, .1); color: #7a312c; }

/* Refined desktop cursor. Native cursors remain on touch devices and form fields. */
.cj-cursor-ring,
.cj-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: width .18s ease, height .18s ease, margin .18s ease, background-color .18s ease, border-color .18s ease, opacity .18s ease;
}
.cj-cursor-ring {
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 1px solid rgba(195, 162, 92, .9);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(23, 24, 20, .08);
}
.cj-cursor-dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 8px rgba(195, 162, 92, .45);
}
html.cj-custom-cursor,
html.cj-custom-cursor body,
html.cj-custom-cursor a,
html.cj-custom-cursor button,
html.cj-custom-cursor summary,
html.cj-custom-cursor [role="button"] { cursor: none !important; }
html.cj-custom-cursor input,
html.cj-custom-cursor textarea,
html.cj-custom-cursor select,
html.cj-custom-cursor label { cursor: auto !important; }
.cj-cursor-ring.is-visible,
.cj-cursor-dot.is-visible { opacity: 1; }
.cj-cursor-ring.is-link {
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  border-color: var(--gold-light);
  background: rgba(195, 162, 92, .13);
}
.cj-cursor-dot.is-link { background: #fff4d1; }
.cj-cursor-ring.is-pressed {
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  background: rgba(195, 162, 92, .24);
}
.cj-cursor-ring.is-hidden,
.cj-cursor-dot.is-hidden { opacity: 0 !important; }

.combined-legal-documents { background: var(--paper); }
.combined-policy { padding: 110px 0; border-top: 1px solid var(--line-light); scroll-margin-top: 24px; }
.combined-policy:nth-child(even) { background: var(--ivory); }
.combined-policy .legal-layout { align-items: start; }
.combined-policy-heading { position: sticky; top: 32px; }
.combined-policy-heading h2 { color: var(--ink); font-size: clamp(42px, 4vw, 58px); }
.combined-policy-heading > a { display: inline-block; margin-top: 24px; color: #7d683a; border-bottom: 1px solid rgba(125,104,58,.35); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.wp-fallback-page { min-height: 75vh; padding: 150px 0 110px; background: var(--ivory); }
.wp-fallback-content { max-width: 900px; }
.wp-fallback-content h1 { color: var(--ink); font-size: clamp(50px, 7vw, 82px); }
.wp-fallback-content > p, .wp-fallback-content article > p { color: #5f6057; font-size: 17px; }

.commerce-site-hero { background: var(--ink); color: var(--ivory); }
.commerce-site-heading { padding-top: 84px; padding-bottom: 90px; }
.commerce-site-heading h1 { max-width: 850px; }
.commerce-site-heading > p:last-child { max-width: 650px; margin-top: 26px; color: rgba(244,240,231,.65); }
.commerce-site-main { background: var(--ivory); }
.woocommerce-stage-card { padding: 48px; background: #fffdf8; border: 1px solid var(--line-light); box-shadow: 0 24px 70px rgba(23,24,20,.08); }
.woocommerce-stage-card > h2 { font-size: 42px; }

.woocommerce { color: var(--ink); font-family: "Manrope", Arial, sans-serif; }
.woocommerce a { color: #765f31; }
.woocommerce h1, .woocommerce h2, .woocommerce h3 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500; }
.woocommerce h2 { font-size: clamp(36px, 4vw, 52px); }
.woocommerce form .form-row { margin: 0 0 18px; }
.woocommerce form .form-row label { color: #3e3f38; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container--default .select2-selection--single { min-height: 52px; padding: 13px 15px; border: 1px solid rgba(23,24,20,.22); border-radius: 0; background: white; color: var(--ink); font: inherit; }
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 25px; }
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit { min-height: 48px; padding: 14px 24px; border-radius: 0; background: var(--ink); color: var(--ivory); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover { background: #34352d; color: white; }
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled] {
  opacity: 1;
  background: #d8d4cc;
  color: #4f504a;
}
.woocommerce button.button:disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button:disabled[disabled]:hover {
  background: #d8d4cc;
  color: #4f504a;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt { background: var(--gold); color: var(--ink); }
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover { background: var(--gold-light); color: var(--ink); }
.woocommerce-info, .woocommerce-message, .woocommerce-error { border-top-color: var(--gold); background: #f6f1e6; }
.woocommerce-info::before, .woocommerce-message::before { color: #8b7341; }
.woocommerce-error { border-top-color: #a44d45; }
.woocommerce table.shop_table { border: 1px solid var(--line-light); border-radius: 0; background: white; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { padding: 18px; }
.woocommerce table.shop_table th { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.woocommerce-cart table.cart img { width: 90px; }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals { width: min(520px, 100%); }
.woocommerce .cart_totals h2, .woocommerce-checkout h3 { font-size: 36px; }
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register { border: 1px solid var(--line-light); border-radius: 0; background: white; }
.woocommerce-account .woocommerce-MyAccount-navigation { width: 27%; }
.woocommerce-account .woocommerce-MyAccount-content { width: 69%; }
.woocommerce-MyAccount-navigation ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.woocommerce-MyAccount-navigation li { border-bottom: 1px solid var(--line-light); }
.woocommerce-MyAccount-navigation a { display: block; padding: 15px 12px; color: #4d4e47; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.woocommerce-MyAccount-navigation .is-active a { background: var(--ink); color: var(--gold-light); }
.woocommerce ul.products li.product { padding: 24px; border: 1px solid var(--line-light); background: #fffdf8; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { color: var(--ink); font-size: 28px; }
.woocommerce ul.products li.product .price { color: #7d683a; }
.single-product div.product { display: flow-root; }
.single-product div.product .product_title { color: var(--ink); font-size: clamp(46px, 5vw, 68px); }
.cj-digital-delivery-note { margin: 26px 0; padding: 20px 22px; border-left: 3px solid var(--gold); background: #f2ead8; color: #45463f; }
.cj-digital-delivery-note strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.cj-checkout-seller { margin: 18px 0 0; color: #686961; font-size: 11px; line-height: 1.75; }
.cj-checkout-seller a { color: #806a3c; border-bottom: 1px solid rgba(139,115,65,.25); }
.cj-digital-consent { margin: 24px 0 18px !important; padding: 18px 20px; border: 1px solid rgba(23,24,20,.18); background: #fffdf8; }
.cj-digital-consent label { display: flex; align-items: flex-start; gap: 12px; color: #45463f !important; font-size: 12px !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.7; text-transform: none !important; }
.cj-digital-consent input { flex: 0 0 auto; margin-top: 4px; }

@media (max-width: 760px) {
  .woocommerce-stage-card { padding: 28px 20px; }
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content { width: 100%; float: none; }
  .woocommerce-account .woocommerce-MyAccount-content { margin-top: 34px; }
  .woocommerce table.shop_table_responsive tr td { padding: 14px; }
  .combined-policy { padding: 78px 0; }
  .combined-policy-heading { position: static; margin-bottom: 34px; }
}

@media (pointer: coarse), (hover: none), (prefers-reduced-motion: reduce) {
  .cj-cursor-ring, .cj-cursor-dot { display: none !important; }
}
