/* ============================================
   Designing My Best Life — Style System
   ============================================ */

:root{
  --cream:        #FFFFFF;
  --cream-deep:   #F3FAF2;
  --ink:          #16281C;
  --ink-soft:     #4C5C50;
  --clay:         #169314;
  --clay-deep:    #0E7A10;
  --green-bright: #3FCB3F;
  --olive:        #1CA61C;
  --gold:         #FFC93C;
  --line:         rgba(22,40,28,0.12);
  --white:        #FFFFFF;

  --serif: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.22,.68,0,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1,h2,h3{
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.015em;
}

h2{ font-size: clamp(2rem, 3.2vw, 2.9rem); font-weight: 600; }
h3{ font-size: 1.3rem; font-weight: 600; }

p{ margin: 0 0 1em; color: var(--ink-soft); }

em{ font-style: italic; }

.mark{
  font-weight: 700;
  color: var(--clay-deep);
  background: linear-gradient(to bottom, transparent 64%, rgba(255,201,60,0.45) 64%);
  padding: 0 0.05em;
}

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

section[id], article[id]{ scroll-margin-top: 96px; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow{
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 1rem;
}
.eyebrow-light{ color: var(--gold); }

.section-lede{
  font-size: 1.08rem;
  max-width: 46ch;
}

.section-head{ max-width: 700px; margin-bottom: 3.5rem; }

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
  white-space: nowrap;
}
.btn-primary{
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover{
  background: var(--clay-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14,122,16,0.28);
}
.btn-ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover{
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-full{ width: 100%; }

.link-arrow{
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--clay-deep);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, gap .3s;
  gap: 4px;
}
.link-arrow:hover{ border-color: var(--clay-deep); gap: 9px; }

/* ============================================
   HEADER
   ============================================ */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .3s;
}
.site-header.is-scrolled{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: padding .3s;
}
.site-header.is-scrolled .header-inner{ padding-top: 14px; padding-bottom: 14px; }

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.logo-mark{ color: var(--clay); flex-shrink: 0; display: inline-flex; }
.logo-mark img{ display: block; height: 60px; width: auto; }
.logo-text{
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer-logo .logo-mark img{
  height: 48px;
  background: #fff;
  border-radius: 10px;
  padding: 4px 6px;
}
.footer-logo .logo-text{ font-size: 1.1rem; }

.main-nav{
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.main-nav a{
  position: relative;
  padding: 4px 0;
  transition: color .3s;
}
.main-nav a:not(.nav-cta)::after{
  content:'';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--clay-deep);
  transition: width .3s var(--ease);
}
.main-nav a:not(.nav-cta):hover::after{ width: 100%; }
.nav-cta{
  background: var(--ink);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background .3s, transform .3s;
}
.nav-cta:hover{ background: var(--clay-deep); transform: translateY(-1px); }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span{
  display: block; height: 1.5px; width: 22px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s;
  margin: 0 auto;
}

/* ============================================
   HERO
   ============================================ */
.hero{
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  padding-top: clamp(110px, 14vh, 160px);
  overflow: hidden;
  background: linear-gradient(170deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  color: var(--ink);
}
.blueprint-grid{
  position: absolute;
  inset: 0;
  color: var(--clay);
  opacity: 0.05;
}
.hero-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding-bottom: clamp(40px, 6vw, 70px);
}
.hero-title{
  font-size: clamp(2.2rem, 4.3vw, 3.7rem);
  margin-bottom: 0.4em;
}
.hero-title .mark{ white-space: nowrap; }
.hero-sub{
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  font-weight: 500;
  color: var(--ink);
  max-width: 34ch;
  margin-bottom: 1.1rem;
}
.hero-body{
  font-size: 1.02rem;
  max-width: 46ch;
  margin-bottom: 2.1rem;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero portrait */
.hero-visual{ position: relative; max-width: 360px; justify-self: end; width: 100%; }
.portrait-card{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px rgba(22,40,28,0.18);
  z-index: 1;
}
.portrait-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-visual::after{
  content:'';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--clay);
  border-radius: 26px;
  opacity: 0.5;
  z-index: 0;
}
.portrait-caption{
  position: absolute;
  left: -14px;
  bottom: 26px;
  z-index: 2;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 20px;
  box-shadow: 0 12px 28px rgba(22,40,28,0.14);
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.portrait-caption strong{
  font-family: var(--serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
}
.portrait-caption span{
  font-size: 0.8rem;
  color: var(--clay-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-inner{ padding: 26px var(--pad); text-align: center; }
.trust-inner p{
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============================================
   ABOUT
   ============================================ */
.about{ padding: clamp(80px, 12vw, 140px) 0; background: var(--cream-deep); }
.about-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.about-copy h2{ margin-bottom: 0.6em; }
.about-copy p{ font-size: 1.04rem; }

.about-visual{
  position: relative;
  max-width: 440px;
  width: 100%;
  padding-bottom: 60px;
}
.about-visual::before{
  content:'';
  position: absolute;
  inset: -18px 18px 78px -18px;
  border: 1.5px solid var(--clay);
  border-radius: 26px;
  opacity: 0.5;
}
.about-photo{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 900 / 1067;
  box-shadow: 0 30px 60px rgba(22,40,28,0.16);
}
.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-quote{
  position: absolute;
  right: -28px;
  bottom: 0;
  width: min(270px, 78%);
  background: var(--ink);
  color: var(--cream);
  border-radius: 20px;
  padding: 1.4rem 1.5rem;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(22,40,28,0.22);
}
.quote-leaf{
  position: absolute;
  right: -16px; top: -16px;
  width: 96px; height: 96px;
  color: var(--clay);
  opacity: 0.3;
}
.about-quote p{
  position: relative;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.about-quote span{
  position: relative;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   QUESTIONS
   ============================================ */
.questions{ padding: clamp(80px, 12vw, 130px) 0; }
.section-head-center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head-center .section-lede{ margin-left: auto; margin-right: auto; }

.question-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.1rem;
  margin-bottom: 3.2rem;
}
.question-card{
  margin: 0;
  background: var(--cream-deep);
  border-left: 3px solid var(--clay);
  border-radius: 0 16px 16px 0;
  padding: 1.5rem 1.7rem;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.question-card:hover{
  transform: translateX(4px);
  box-shadow: 0 14px 30px rgba(22,40,28,0.08);
}
.questions-close{ text-align: center; max-width: 620px; margin: 0 auto; }
.questions-close p{ font-size: 1.05rem; }
.questions-kicker{
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0;
}

/* ============================================
   COACHING PATHS
   ============================================ */
.coaching{ padding: clamp(80px, 12vw, 140px) 0; background: var(--cream-deep); }
.path-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.path-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.8rem, 2.8vw, 2.4rem);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.path-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(22,40,28,0.1);
}
.path-icon{
  display: inline-flex;
  width: 44px; height: 44px;
  color: var(--clay-deep);
  margin-bottom: 1.2rem;
}
.path-icon svg{ width: 100%; height: 100%; }
.path-card h3{ font-size: 1.42rem; margin-bottom: 0.35em; }
.path-tag{
  font-weight: 600;
  color: var(--clay-deep);
  font-size: 1rem;
  margin-bottom: 1em;
}
.path-card p{ font-size: 0.97rem; }
.path-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.5rem;
}
.path-list li{
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.path-list li::before{
  content:'';
  position: absolute;
  left: 0; top: 0.5em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clay);
}
.path-card .link-arrow{ margin-top: auto; align-self: flex-start; }

.path-card-feature{
  grid-column: 1 / -1;
  background: var(--ink);
  border-color: transparent;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.path-card-feature h3{ color: var(--cream); font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.path-card-feature p{ color: rgba(250,246,239,0.76); max-width: 62ch; }
.path-card-feature .path-tag{ color: var(--gold); font-size: 1.06rem; }
.path-flag{
  display: inline-flex;
  align-self: flex-start;
  background: var(--clay);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.btn-light{
  background: var(--cream);
  color: var(--ink);
  margin-top: 0.6rem;
  align-self: flex-start;
}
.btn-light:hover{ background: var(--gold); transform: translateY(-2px); }

/* ============================================
   THE SHIFT
   ============================================ */
.shift{ padding: clamp(80px, 12vw, 130px) 0; }
.shift-grid{
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.shift-copy p{ font-size: 1.04rem; }
.shift-list{ display: flex; flex-direction: column; gap: 0.9rem; }
.shift-row{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 1rem 1.6rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.shift-row:hover{
  transform: translateX(6px);
  box-shadow: 0 14px 28px rgba(22,40,28,0.08);
}
.shift-from{
  font-size: 0.98rem;
  color: var(--ink-soft);
  text-align: right;
  opacity: 0.75;
}
.shift-arrow{ color: var(--clay); font-size: 1.15rem; }
.shift-to{
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--clay-deep);
}

/* ============================================
   APPROACH / PROCESS
   ============================================ */
.approach{
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.approach .eyebrow{ color: var(--gold); }
.approach h2, .approach h3{ color: var(--cream); }
.approach .section-lede{ color: rgba(250,246,239,0.7); }

.process-track{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(250,246,239,0.12);
  border-radius: 18px;
  overflow: hidden;
}
.process-step{
  background: var(--ink);
  padding: 2.4rem 1.8rem;
  position: relative;
}
.process-num{
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--clay);
  margin-bottom: 1.4rem;
  letter-spacing: 0.05em;
}
.process-step p{ color: rgba(250,246,239,0.68); font-size: 0.95rem; margin-bottom: 0; }

/* ============================================
   PRICING
   ============================================ */
.pricing{ padding: clamp(80px, 12vw, 140px) 0; background: var(--cream-deep); }
.pricing .section-lede{ max-width: 56ch; }
.price-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
.price-card{
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(22,40,28,0.1);
}
.price-card h3{ font-size: 1.2rem; margin-bottom: 0.3em; }
.price-desc{ font-size: 0.9rem; min-height: 4.8em; margin-bottom: 1.2rem; }
.price{ display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-amount{
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.price-unit{ font-size: 0.88rem; color: var(--ink-soft); }
.price-alt{
  font-size: 0.88rem;
  color: var(--ink);
  margin: 0.5rem 0 0;
  min-height: 1.5em;
}
.price-save{
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clay-deep);
  margin: 0.35rem 0 0;
  min-height: 2.6em;
}
.price-badge{
  align-self: flex-start;
  margin-top: 0.7rem;
  background: rgba(255,201,60,0.18);
  color: var(--gold);
  border: 1px solid rgba(255,201,60,0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  padding: 5px 10px;
  border-radius: 10px;
}
.price-card-feature .price-alt{ color: #fff; }
.pricing-fine{
  text-align: center;
  font-size: 0.8rem;
  max-width: 70ch;
  margin: 2rem auto 0;
  opacity: 0.8;
}
.price-list{
  list-style: none;
  padding: 1.3rem 0 0;
  margin: 1.3rem 0 1.6rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.65rem;
}
.price-list li{
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.price-list li::before{
  content:'';
  position: absolute;
  left: 2px; top: 0.35em;
  width: 10px; height: 6px;
  border-left: 2px solid var(--clay);
  border-bottom: 2px solid var(--clay);
  transform: rotate(-45deg);
}
.price-card{ min-width: 0; }
.price-card .btn{ margin-top: auto; white-space: normal; text-align: center; padding-left: 16px; padding-right: 16px; }

.price-card-feature{
  background: var(--ink);
  border-color: transparent;
  box-shadow: 0 24px 50px rgba(22,40,28,0.22);
}
.price-card-feature h3,
.price-card-feature .price-amount{ color: var(--cream); }
.price-card-feature .price-desc,
.price-card-feature .price-unit,
.price-card-feature .price-list li{ color: rgba(255,255,255,0.75); }
.price-card-feature .price-save{ color: var(--gold); }
.price-card-feature .price-list{ border-top-color: rgba(255,255,255,0.15); }
.price-card-feature .price-list li::before{ border-color: var(--gold); }
.price-card-feature .btn-light{ align-self: stretch; }
.price-flag{
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-note{
  text-align: center;
  margin: 1.4rem 0 0;
  font-size: 0.98rem;
}

/* ============================================
   IMAGINE
   ============================================ */
.imagine-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: stretch;
  margin-bottom: clamp(50px, 8vw, 90px);
}
.imagine-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  display: grid;
  gap: 0.75rem;
}
.imagine-list li{
  position: relative;
  padding-left: 2rem;
  font-size: 1.01rem;
  color: var(--ink);
}
.imagine-list li::before{
  content:'';
  position: absolute;
  left: 0; top: 0.42em;
  width: 13px; height: 8px;
  border-left: 2px solid var(--clay);
  border-bottom: 2px solid var(--clay);
  transform: rotate(-45deg);
}
.imagine-kicker{
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 0;
}
.aside-strong{ font-weight: 500; }
.booking-block .section-head{ margin-bottom: 2.4rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials{ padding: clamp(80px, 12vw, 140px) 0; }
.testi-track{
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  min-height: 260px;
}
.testi-card{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
  text-align: center;
}
.testi-card.is-active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.stars{ color: var(--gold); letter-spacing: 3px; margin-bottom: 1.2rem; font-size: 0.95rem; }
.testi-card p{
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 1.6rem;
}
.testi-name{
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.testi-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.testi-controls button{
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 1rem;
  transition: background .3s, color .3s, border-color .3s;
}
.testi-controls button:hover{ background: var(--ink); color: var(--cream); border-color: var(--ink); }
.testi-dots{ display: flex; gap: 2px; }
.testi-controls .testi-dots button{
  position: relative;
  width: 24px; height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.testi-controls .testi-dots button::before{
  content:'';
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: rgba(22,40,28,0.25);
  transition: background .3s, transform .3s;
}
.testi-controls .testi-dots button:hover{ background: transparent; }
.testi-controls .testi-dots button.is-active::before{ background: var(--clay); transform: scale(1.3); }

/* Keyboard focus rings and skip link */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}
.skip-link{
  position: absolute;
  top: -60px; left: 16px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus{ top: 0; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter{
  background: var(--olive);
  color: var(--cream);
  padding: clamp(60px, 8vw, 90px) 0;
}
.newsletter-inner{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.newsletter h2{ color: var(--cream); font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 0; }
.newsletter-form{
  display: flex;
  gap: 10px;
}
.newsletter-form input{
  flex: 1;
  padding: 15px 20px;
  border-radius: 100px;
  border: 1px solid rgba(250,246,239,0.3);
  background: rgba(250,246,239,0.08);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
}
.newsletter-form input::placeholder{ color: rgba(250,246,239,0.55); }
.newsletter-form input:focus{ outline: 2px solid var(--gold); outline-offset: 2px; }
.newsletter-status{ margin: 0.8rem 0 0; font-size: 0.9rem; color: #fff; min-height: 0; }
.newsletter-status:empty{ display: none; }
.newsletter-status a{ color: #fff; text-decoration: underline; font-weight: 600; }

/* ============================================
   FINAL CTA / CONTACT
   ============================================ */
.final-cta{ padding: clamp(80px, 12vw, 140px) 0; }
.calendly-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(0.6rem, 1.4vw, 1.2rem);
  overflow: hidden;
}

.contact-aside{
  background: var(--ink);
  color: var(--cream);
  border-radius: 22px;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-aside h3{ color: var(--cream); }
.contact-aside p{ color: rgba(250,246,239,0.65); }
.contact-links{ list-style: none; padding: 0; margin: 1.4rem 0 0; display: flex; flex-direction: column; gap: 0.7rem; }
.contact-links a{ font-weight: 600; color: var(--gold); transition: opacity .3s; }
.contact-links a:hover{ opacity: 0.75; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer{
  background: var(--ink);
  color: rgba(250,246,239,0.6);
  padding: 40px 0;
  border-top: 1px solid rgba(250,246,239,0.1);
}
.footer-inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.footer-logo{ color: var(--cream); }
.footer-nav{ display: flex; gap: 1.6rem; font-size: 0.88rem; flex-wrap: wrap; }
.footer-nav a{ transition: color .3s; }
.footer-nav a:hover{ color: var(--cream); }
.footer-disclaimer{
  width: 100%;
  margin: 0.6rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
}
.footer-bottom{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem 1.4rem;
}
.footer-copy{ font-size: 0.8rem; margin: 0; color: rgba(255,255,255,0.45); }
.footer-legal{ display: flex; flex-wrap: wrap; gap: 1.2rem; font-size: 0.8rem; }
.footer-legal a{ color: rgba(255,255,255,0.6); transition: color .3s; }
.footer-legal a:hover{ color: var(--gold); }

/* ============================================
   SCROLL REVEAL
   Content stays visible unless JavaScript is running (html.js).
   ============================================ */
.js .reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.is-visible{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .js .reveal{ opacity: 1; transform: none; transition: none; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page{ padding: clamp(130px, 16vh, 170px) 0 clamp(70px, 10vw, 110px); }
.legal-wrap{ max-width: 760px; }
.legal-page h1{ font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 0.3em; }
.legal-updated{ font-size: 0.9rem; margin-bottom: 2.4rem; }
.legal-page h2{ font-size: 1.3rem; margin: 2.2rem 0 0.6rem; }
.legal-page p, .legal-page li{ font-size: 1rem; line-height: 1.7; }
.legal-page ul{ padding-left: 1.3rem; margin: 0 0 1em; color: var(--ink-soft); }
.legal-page li{ margin-bottom: 0.4rem; }
.legal-page a:not(.btn){ color: var(--clay-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal-callout{
  background: var(--cream-deep);
  border-left: 3px solid var(--clay);
  border-radius: 0 14px 14px 0;
  padding: 1.1rem 1.4rem;
  margin: 1rem 0 1.4rem;
}
.legal-callout p{ margin: 0; color: var(--ink); }
.notfound{
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: clamp(130px, 16vh, 170px) 0 80px;
  background: linear-gradient(170deg, var(--cream) 0%, var(--cream-deep) 100%);
  text-align: center;
}
.notfound-inner{ max-width: 640px; }
.notfound-tree{ margin: 0 auto 1.4rem; border-radius: 24px; box-shadow: 0 14px 30px rgba(22,40,28,0.1); }
.notfound h1{ font-size: clamp(2rem, 4.5vw, 3rem); }
.notfound-actions{ display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 1.8rem 0; }
.notfound-help{ font-size: 0.92rem; }
.notfound-help a{ color: var(--clay-deep); font-weight: 600; text-decoration: underline; }
.site-header.is-solid{ background: rgba(255,255,255,0.95); box-shadow: 0 1px 0 var(--line); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px){
  .main-nav{ gap: 1.3rem; font-size: 0.88rem; }
}

@media (max-width: 980px){
  .about-grid, .newsletter-inner, .hero-grid, .shift-grid, .imagine-grid{
    grid-template-columns: 1fr;
  }
  .hero{ min-height: 0; padding-bottom: 20px; }
  .hero-grid{ gap: 2.6rem; }
  .hero-visual{ max-width: 320px; justify-self: start; }
  .hero-sub, .hero-body{ max-width: 100%; }
  .shift-grid, .about-grid{ gap: 2.5rem; }
  .process-track{ grid-template-columns: 1fr 1fr; }
  .path-grid{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr 1fr; row-gap: 1.8rem; }
  .newsletter-form{ max-width: 480px; }
  .about-visual{ max-width: 380px; }
}

@media (max-width: 900px){
  .main-nav{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    padding: 2rem var(--pad);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    font-size: 1.1rem;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .nav-cta{ margin-top: 0.5rem; }
  .nav-toggle{ display: flex; }
  .nav-toggle.is-open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2){ opacity: 0; }
  .nav-toggle.is-open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
}

@media (max-width: 760px){
  .about-quote{ right: -6px; }
  .about-visual::before{ inset: -12px 12px 72px -12px; }
  .process-track{ grid-template-columns: 1fr; }
  .question-grid{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
  .price-desc{ min-height: 0; }
  .logo-mark img{ height: 46px; }
  .logo-text{ font-size: 1rem; }
  .portrait-caption{ left: 0; }
  .hero-visual::after{ inset: 14px -14px -14px 14px; }
  .shift-row{ border-radius: 18px; }
}
