/* =========================================================================
   Saprina A Coaching — Private Coaching Landing Page
   Calm Luxury palette
   Pale Blue        #DFE5F3
   Slate Teal       #557373
   Near-Black Olive #272401
   Warm Off-White   #F2EFEA
   Near Black       #0D0D0D
   ========================================================================= */

:root {
  --pale-blue: #DFE5F3;
  --slate-teal: #557373;
  --olive: #272401;
  --off-white: #F2EFEA;
  --near-black: #0D0D0D;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1120px;
  --gutter: 24px;

  --transition-soft: 0.4s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--off-white);
  color: var(--near-black);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
  color: var(--near-black);
}

h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.7rem); }

p {
  margin: 0 0 20px 0;
}

a {
  color: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ---------- Layout helpers ---------- */

.section {
  padding: 96px 0;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

.center {
  text-align: center;
}

/* ---------- Eyebrow / small label ---------- */

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-teal);
  margin: 0 0 20px 0;
}

/* ---------- CTA buttons ---------- */

.cta-button {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-align: center;
  padding: 18px 38px;
  border-radius: 2px;
  background: var(--near-black);
  color: var(--off-white);
  border: 1px solid var(--near-black);
  transition: background var(--transition-soft), color var(--transition-soft), transform var(--transition-soft);
}

.cta-button:hover {
  background: var(--slate-teal);
  border-color: var(--slate-teal);
  color: var(--off-white);
  transform: translateY(-1px);
}

.cta-button-light {
  background: var(--off-white);
  color: var(--near-black);
  border: 1px solid var(--off-white);
}

.cta-button-light:hover {
  background: transparent;
  color: var(--off-white);
  border-color: var(--off-white);
}

/* ---------- Hero ---------- */

.hero {
  background: var(--off-white);
  padding: 72px 0 88px 0;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column-reverse;
  gap: 48px;
  align-items: center;
}

.hero-text {
  max-width: 640px;
  text-align: center;
}

.hero-headline {
  margin-bottom: 24px;
  text-align: center;
}

.hero-subhead {
  font-size: 1.1rem;
  color: var(--near-black);
  margin-bottom: 36px;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  right: 24px;
  bottom: 24px;
  background: var(--pale-blue);
  z-index: 0;
  border-radius: 2px;
}

.headshot-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--pale-blue);
  border-radius: 2px;
}

.headshot-hero.placeholder-broken {
  display: none;
}

.headshot-placeholder-note {
  display: none;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--pale-blue);
  color: var(--slate-teal);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.8;
  border: 1.5px dashed var(--slate-teal);
  border-radius: 2px;
  padding: 20px;
}

.headshot-hero.placeholder-broken + .headshot-placeholder-note {
  display: flex;
}

/* ---------- Problem section ---------- */

.problem {
  background: var(--off-white);
}

.problem p {
  font-size: 1.1rem;
}

.problem p:last-of-type {
  color: var(--olive);
  font-weight: 500;
}

/* ---------- Accent blocks (Who This Is For / Walk Away With) ---------- */

.accent-block {
  background: var(--pale-blue);
}

.check-list li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid rgba(13, 13, 13, 0.1);
  font-size: 1.05rem;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--slate-teal);
}

.walkaway {
  background: var(--slate-teal);
  color: var(--off-white);
}

.walkaway h2 {
  color: var(--off-white);
}

.walkaway .check-list li {
  border-bottom: 1px solid rgba(242, 239, 234, 0.25);
}

.walkaway .check-list li::before {
  background: var(--off-white);
}

/* ---------- Program overview ---------- */

.program {
  background: var(--off-white);
}

.program-intro {
  max-width: 560px;
  margin: 0 auto 56px auto;
  font-size: 1.1rem;
  color: var(--olive);
}

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

.milestone-card {
  background: var(--off-white);
  border: 1px solid rgba(39, 36, 1, 0.15);
  padding: 40px 32px;
  border-radius: 2px;
  transition: border-color var(--transition-soft);
}

.milestone-card:hover {
  border-color: var(--slate-teal);
}

.milestone-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--pale-blue);
  -webkit-text-stroke: 1.5px var(--slate-teal);
  color: transparent;
  margin-bottom: 8px;
}

.milestone-card h3 {
  margin-bottom: 12px;
  color: var(--near-black);
}

.milestone-card p {
  margin: 0;
  color: var(--near-black);
  font-size: 0.98rem;
}

.program-promise {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--olive);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- About (full-bleed editorial layout) ---------- */

.about {
  background: var(--off-white);
  padding: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.about-image-wrap {
  position: relative;
  width: 100%;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  background: var(--pale-blue);
}

.about-photo.placeholder-broken {
  display: none;
}

.about-photo-placeholder {
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--pale-blue);
  color: var(--slate-teal);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.8;
  border: 1.5px dashed var(--slate-teal);
  padding: 20px;
}

.about-photo.placeholder-broken + .about-photo-placeholder {
  display: flex;
}

.about-content {
  padding: 56px var(--gutter) 72px var(--gutter);
}

.about-content h2 {
  margin-bottom: 28px;
}

.about-content p {
  font-size: 1.05rem;
}

.about-divider {
  border: none;
  border-top: 1px solid rgba(13, 13, 13, 0.15);
  margin: 32px 0;
}

.arrow-list {
  margin: 4px 0 36px 0;
}

.arrow-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

.arrow-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--slate-teal);
  font-weight: 700;
}

/* ---------- Final CTA ---------- */

.final-cta {
  background: var(--near-black);
  color: var(--off-white);
}

.final-cta h2 {
  color: var(--off-white);
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--off-white);
  opacity: 0.85;
  margin-bottom: 36px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--near-black);
  color: var(--off-white);
  padding: 32px 0 120px 0;
}

.disclaimer {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-brand {
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 0;
}

/* ---------- Sticky CTA ---------- */

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 140%);
  z-index: 100;
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-align: center;
  padding: 15px 28px;
  border-radius: 999px;
  background: var(--near-black);
  color: var(--off-white);
  box-shadow: 0 6px 24px rgba(13, 13, 13, 0.25);
  transition: transform var(--transition-soft), background var(--transition-soft);
  white-space: nowrap;
}

.sticky-cta.visible {
  transform: translate(-50%, 0);
}

.sticky-cta:hover {
  background: var(--slate-teal);
}

/* ---------- Responsive ---------- */

@media (min-width: 720px) {
  .section {
    padding: 128px 0;
  }

  .hero {
    padding: 96px 0 120px 0;
  }

  .hero-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 72px;
  }

  .hero-text {
    text-align: left;
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
  }

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

  .sticky-cta {
    right: 32px;
    left: auto;
    bottom: 32px;
    transform: translateY(140%);
  }

  .sticky-cta.visible {
    transform: translateY(0);
  }
}

@media (min-width: 1000px) {
  .milestone-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .milestone-card {
    padding: 36px 24px;
  }
}

@media (min-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .about-image-wrap {
    height: 100%;
  }

  .about-photo,
  .about-photo-placeholder {
    aspect-ratio: auto;
    height: 100%;
    min-height: 640px;
  }

  .about-content {
    max-width: 620px;
    padding: 88px 64px 88px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-content p {
    text-align: justify;
  }
}
