/* ==========================================================================
   PAve the Way Mentoring — design system
   Navy + burnt orange on warm cream. Soft, generous, welcoming.
   ========================================================================== */

/* -------------------------------------------------- tokens */
:root {
  /* brand */
  --navy-900: #081C2E;
  --navy-800: #0E2B45;
  --navy-700: #16395A;
  --navy-600: #245179;
  --orange-700: #A84420;
  --orange-600: #C4552A;
  --orange-500: #DB6634;
  --orange-400: #E4703A;
  --orange-300: #F0955F;
  --orange-100: #FBE3D3;
  --orange-50:  #FDF0E7;

  /* warm neutrals */
  --cream:     #FFF9F4;
  --cream-2:   #FDF2E9;
  --sand:      #F6EADE;
  --sand-deep: #EEDCCB;
  --white:     #FFFFFF;

  /* text */
  --ink:    #14273A;
  --body:   #45586A;
  --muted:  #6F8296;
  --on-dark:        #F4E9E0;
  --on-dark-muted:  #B9C8D6;

  /* type */
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --t-xs:  0.8125rem;
  --t-sm:  0.9375rem;
  --t-base: 1.0625rem;
  --t-md:  clamp(1.125rem, 0.35vw + 1.05rem, 1.25rem);
  --t-lg:  clamp(1.3rem, 0.7vw + 1.1rem, 1.55rem);
  --h4:    clamp(1.2rem, 0.6vw + 1.05rem, 1.4rem);
  --h3:    clamp(1.45rem, 1vw + 1.15rem, 1.85rem);
  --h2:    clamp(2rem, 2.4vw + 1.25rem, 3rem);
  --h1:    clamp(2.3rem, 4vw + 1.15rem, 4.25rem);

  /* space + shape */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --section-y: clamp(4rem, 8vw, 7.5rem);
  --r-sm: 10px;
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --pill: 999px;

  --shadow-sm: 0 1px 2px rgba(14, 43, 69, .05), 0 4px 14px -6px rgba(14, 43, 69, .10);
  --shadow: 0 2px 6px rgba(14, 43, 69, .05), 0 18px 40px -22px rgba(14, 43, 69, .28);
  --shadow-lg: 0 4px 10px rgba(14, 43, 69, .06), 0 40px 80px -40px rgba(14, 43, 69, .40);
  --ring: 0 0 0 3px var(--cream), 0 0 0 6px rgba(196, 85, 42, .55);

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

/* -------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--orange-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-700); }
:focus-visible { outline: 3px solid var(--orange-500); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--orange-100); color: var(--navy-800); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); line-height: 1.2; }
h4 { font-size: var(--h4); line-height: 1.25; }
p { text-wrap: pretty; }

/* -------------------------------------------------- helpers */
.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - var(--gutter) * 2, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.lede { font-size: var(--t-md); color: var(--body); }
.muted { color: var(--muted); }
.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: 100;
  background: var(--navy-800); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--r-sm); text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 1rem; color: #fff; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .6;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 46rem; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin-top: .75rem; }
.section-head p { margin-top: 1rem; font-size: var(--t-md); }

/* -------------------------------------------------- buttons */
.btn {
  --btn-bg: var(--orange-600);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.6rem;
  font-weight: 600; font-size: var(--t-sm); letter-spacing: .01em;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1px solid transparent; border-radius: var(--pill);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  box-shadow: 0 10px 24px -14px rgba(168, 68, 32, .9);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { --btn-bg: var(--orange-700); color: var(--btn-fg); transform: translateY(-2px);
  box-shadow: 0 16px 30px -16px rgba(168, 68, 32, .95); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy-800);
  border-color: rgba(14, 43, 69, .22); box-shadow: none; }
.btn--ghost:hover { --btn-bg: rgba(14, 43, 69, .05); --btn-fg: var(--navy-800);
  border-color: rgba(14, 43, 69, .35); box-shadow: none; }

.btn--light { --btn-bg: #fff; --btn-fg: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn--light:hover { --btn-bg: var(--cream-2); --btn-fg: var(--navy-900); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .38); box-shadow: none; }
.btn--outline-light:hover { --btn-bg: rgba(255, 255, 255, .12); --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .6); box-shadow: none; }

.btn--lg { padding: 1.05rem 2rem; font-size: var(--t-base); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--center { justify-content: center; }

.textlink {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: var(--t-sm); text-decoration: none;
  color: var(--orange-600);
}
.textlink::after { content: "→"; transition: transform .25s var(--ease); }
.textlink:hover::after { transform: translateX(4px); }

/* -------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 249, 244, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.site-header.is-stuck {
  border-bottom-color: rgba(14, 43, 69, .09);
  box-shadow: 0 10px 30px -24px rgba(14, 43, 69, .55);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 5.25rem;
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: clamp(168px, 20vw, 218px); }
.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(.35rem, 1.4vw, 1.1rem); }
.nav > a {
  position: relative; flex: none; padding: .45rem .2rem;
  font-size: var(--t-sm); font-weight: 500; color: var(--navy-800);
  text-decoration: none; white-space: nowrap;
}
.nav > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .05rem; height: 2px;
  border-radius: 2px; background: var(--orange-500);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav > a:hover::after, .nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav > a[aria-current="page"] { color: var(--orange-700); font-weight: 600; }
.header-cta { margin-left: clamp(.5rem, 1.5vw, 1rem); flex: none; }

.nav-toggle {
  margin-left: auto; display: none; align-items: center; gap: .5rem;
  padding: .6rem .95rem; background: #fff; color: var(--navy-800);
  border: 1px solid rgba(14, 43, 69, .16); border-radius: var(--pill);
  font-size: var(--t-sm); font-weight: 600; cursor: pointer; box-shadow: var(--shadow-sm);
}
.nav-toggle__bars { position: relative; width: 17px; height: 11px; flex: none; }
.nav-toggle__bars span {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: currentColor; transition: transform .3s var(--ease), opacity .2s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 4.5px; }
.nav-toggle__bars span:nth-child(3) { top: 9px; }
[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: var(--gutter); right: var(--gutter); top: calc(100% + .5rem);
    flex-direction: column; align-items: stretch; gap: .15rem;
    padding: .75rem; background: #fff; border: 1px solid rgba(14, 43, 69, .08);
    border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s var(--ease), visibility .25s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav > a { padding: .8rem .9rem; border-radius: var(--r-sm); font-size: var(--t-base); }
  .nav > a:hover { background: var(--cream-2); }
  .nav > a::after { display: none; }
  .header-cta { margin: .4rem 0 .15rem; }
  .header-cta .btn { width: 100%; }
}

/* -------------------------------------------------- hero */
.hero { position: relative; padding-block: clamp(3rem, 6vw, 5.5rem) clamp(4rem, 8vw, 7rem); overflow: hidden; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; z-index: -1; }
.hero::before {
  width: 46rem; height: 46rem; top: -24rem; right: -14rem;
  background: radial-gradient(circle, rgba(228, 112, 58, .16), transparent 68%);
}
.hero::after {
  width: 40rem; height: 40rem; bottom: -22rem; left: -16rem;
  background: radial-gradient(circle, rgba(36, 81, 121, .12), transparent 68%);
}
.hero__grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { margin-top: 1.1rem; }
.hero h1 em {
  font-style: normal; color: var(--orange-600);
  background: linear-gradient(transparent 68%, var(--orange-100) 68%);
  padding-inline: .1em;
}
.hero__lede { margin-top: 1.5rem; font-size: var(--t-md); max-width: 34rem; }
.hero .btn-row { margin-top: 2rem; }
.hero__note { margin-top: 1.25rem; font-size: var(--t-sm); color: var(--muted); display: flex; gap: .5rem; align-items: center; }
.hero__note svg { width: 1.1em; height: 1.1em; color: var(--orange-500); flex: none; }

/* hero collage */
.hero__art { position: relative; }
.hero__card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.3;
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__panel {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  gap: 1.35rem; padding: clamp(1.75rem, 3.4vw, 2.75rem); color: var(--on-dark);
}
.hero__panel .eyebrow { color: var(--orange-300); }
.hero__panel h2 { font-size: clamp(1.4rem, 1.9vw, 1.8rem); color: #fff; }
.hero__panel ul { list-style: none; padding: 0; display: grid; gap: .85rem; }
.hero__panel li { display: flex; gap: .75rem; align-items: flex-start; font-size: var(--t-sm); color: var(--on-dark); }
.hero__panel li svg { width: 1.15rem; height: 1.15rem; flex: none; margin-top: .2rem; color: var(--orange-300); }
.hero__pulse { width: 100%; height: auto; color: rgba(255, 255, 255, .55); margin-top: .35rem; }
.hero__chip {
  position: absolute; display: flex; align-items: center; gap: .7rem;
  padding: .85rem 1.15rem; background: #fff; border-radius: var(--pill);
  box-shadow: var(--shadow); font-size: var(--t-sm); font-weight: 600; color: var(--navy-800);
  white-space: nowrap;
}
.hero__chip svg { width: 1.15rem; height: 1.15rem; color: var(--orange-500); flex: none; }
.hero__chip--one { top: 8%; left: -6%; animation: float 7s ease-in-out infinite; }
.hero__chip--two { bottom: 16%; right: -5%; animation: float 8s ease-in-out infinite reverse; }
.hero__chip--three { bottom: 4%; left: 6%; animation: float 9s ease-in-out infinite .6s; }
@media (max-width: 520px) {
  .hero__chip--one { left: -2%; }
  .hero__chip--two { right: -2%; }
  .hero__chip { font-size: var(--t-xs); padding: .7rem .95rem; }
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* -------------------------------------------------- pulse divider */
.pulse-rule { display: block; width: 100%; height: auto; color: rgba(14, 43, 69, .18); }
.pulse-rule path { stroke: currentColor; }

/* -------------------------------------------------- marquee / trust */
.trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1rem, 4vw, 3rem); padding: 1.6rem clamp(1rem, 4vw, 2.5rem);
  background: var(--white); border: 1px solid rgba(14, 43, 69, .07);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}
.trust__item { display: flex; align-items: center; gap: .65rem; font-size: var(--t-sm); font-weight: 600; color: var(--navy-800); }
.trust__item svg { width: 1.3rem; height: 1.3rem; color: var(--orange-500); flex: none; }

/* -------------------------------------------------- cards */
.grid { display: grid; gap: clamp(1.1rem, 2vw, 1.75rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }
.grid--duo { grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }

.card {
  position: relative; display: flex; flex-direction: column; gap: .85rem;
  padding: clamp(1.5rem, 2.4vw, 2.1rem);
  background: var(--white); border: 1px solid rgba(14, 43, 69, .07);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(228, 112, 58, .3); }
.card--flat:hover { transform: none; box-shadow: var(--shadow-sm); }
.card p { font-size: var(--t-sm); }
.card__icon {
  display: grid; place-content: center; width: 3.1rem; height: 3.1rem;
  border-radius: 16px; background: var(--orange-50); color: var(--orange-600);
  border: 1px solid rgba(228, 112, 58, .18);
}
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.card--navy { background: linear-gradient(160deg, var(--navy-700), var(--navy-900)); border-color: transparent; color: var(--on-dark-muted); }
.card--navy h3, .card--navy h4 { color: #fff; }
.card--navy p { color: var(--on-dark-muted); }

.tag {
  display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start;
  padding: .3rem .75rem; border-radius: var(--pill);
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .04em;
  background: var(--orange-50); color: var(--orange-700); border: 1px solid rgba(228, 112, 58, .2);
}
.tag--navy { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .22); }
.tag--sand { background: var(--sand); color: var(--navy-700); border-color: rgba(14, 43, 69, .1); }

/* -------------------------------------------------- steps */
.steps { counter-reset: step; display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); position: relative; }
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding-top: 3.9rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  display: grid; place-content: center; width: 2.9rem; height: 2.9rem;
  border-radius: 50%; background: var(--navy-800); color: #fff;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  box-shadow: 0 0 0 6px var(--cream);
}
.step::after {
  content: ""; position: absolute; top: 1.45rem; left: 3.4rem; right: -1.5rem; height: 2px;
  background-image: linear-gradient(90deg, rgba(14, 43, 69, .22) 55%, transparent 55%);
  background-size: 12px 2px;
}
.step:last-child::after { display: none; }
@media (max-width: 819px) { .step::after { display: none; } .step { padding-top: 0; padding-left: 4rem; min-height: 3rem; } .step::before { top: -.25rem; } }
.step h3 { font-size: var(--h4); }
.step p { margin-top: .5rem; font-size: var(--t-sm); }

/* -------------------------------------------------- pricing */
.price-card {
  display: flex; flex-direction: column; gap: 1rem;
  padding: clamp(1.6rem, 2.4vw, 2.25rem);
  background: #fff; border: 1px solid rgba(14, 43, 69, .08);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(228, 112, 58, .35); }
.price-card--featured {
  border-color: rgba(228, 112, 58, .45);
  box-shadow: 0 30px 60px -38px rgba(168, 68, 32, .75);
  background: linear-gradient(180deg, var(--orange-50), #fff 42%);
}
.price-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.price-card h3 { font-size: var(--h4); }
.price {
  font-family: var(--font-display); font-size: clamp(2rem, 2.6vw, 2.5rem);
  font-weight: 600; color: var(--navy-800); line-height: 1; white-space: nowrap;
}
.price small { font-family: var(--font-body); font-size: var(--t-xs); font-weight: 600; color: var(--muted); display: block; margin-top: .35rem; letter-spacing: .03em; }
.price-card__desc { font-size: var(--t-sm); }
.ticks { list-style: none; padding: 0; display: grid; gap: .65rem; font-size: var(--t-sm); }
.ticks li { display: flex; gap: .65rem; align-items: flex-start; }
.ticks svg { width: 1.15rem; height: 1.15rem; flex: none; margin-top: .22rem; color: var(--orange-500); }
.price-card .btn { margin-top: auto; }

/* -------------------------------------------------- bands */
.band { position: relative; color: var(--on-dark); background: var(--navy-800); overflow: hidden; }
.band::before {
  content: ""; position: absolute; width: 44rem; height: 44rem; border-radius: 50%;
  top: -22rem; right: -14rem;
  background: radial-gradient(circle, rgba(228, 112, 58, .26), transparent 66%);
}
.band::after {
  content: ""; position: absolute; width: 36rem; height: 36rem; border-radius: 50%;
  bottom: -20rem; left: -12rem;
  background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 66%);
}
.band .wrap, .band .wrap-narrow { position: relative; }
.band h2, .band h3, .band h4 { color: #fff; }
.band p { color: var(--on-dark-muted); }
.band .eyebrow { color: var(--orange-300); }
.band-sand { background: var(--sand); }
.band-cream { background: var(--cream-2); }

/* -------------------------------------------------- founder */
.founder { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
@media (max-width: 880px) { .founder { grid-template-columns: 1fr; } }
.portrait {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4 / 4.6; background: linear-gradient(160deg, var(--sand), var(--sand-deep));
  box-shadow: var(--shadow); border: 1px solid rgba(14, 43, 69, .07);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__fallback { position: absolute; inset: 0; display: grid; place-content: center; gap: .9rem; padding: 2rem; text-align: center; color: var(--navy-700); }
.portrait__fallback svg { width: 4rem; margin-inline: auto; opacity: .5; }
.portrait__fallback p { font-size: var(--t-xs); color: var(--muted); }
.signature { font-family: var(--font-display); font-style: italic; font-size: var(--t-lg); color: var(--navy-800); }

/* -------------------------------------------------- quote */
.quote {
  position: relative; padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 4vw, 3.5rem);
  background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14, 43, 69, .07);
}
.quote::before {
  content: "“"; position: absolute; top: -.35em; left: .35em;
  font-family: var(--font-display); font-size: 7rem; line-height: 1; color: var(--orange-100);
}
.quote p { position: relative; font-family: var(--font-display); font-size: var(--t-lg); line-height: 1.45; color: var(--ink); }
.quote footer { margin-top: 1.1rem; font-size: var(--t-sm); font-weight: 600; color: var(--muted); }

/* -------------------------------------------------- FAQ */
.faq { display: grid; gap: .85rem; }
.faq details {
  background: #fff; border: 1px solid rgba(14, 43, 69, .08); border-radius: var(--r);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: border-color .25s;
}
.faq details[open] { border-color: rgba(228, 112, 58, .35); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.35rem; cursor: pointer; list-style: none;
  font-weight: 600; color: var(--navy-800); font-size: var(--t-base);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: .7rem; height: .7rem;
  border-right: 2px solid var(--orange-500); border-bottom: 2px solid var(--orange-500);
  transform: rotate(45deg) translateY(-2px); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq summary:hover { background: var(--cream-2); }
.faq .faq__body { padding: 0 1.35rem 1.3rem; font-size: var(--t-sm); }

/* -------------------------------------------------- misc blocks */
.callout {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.35rem 1.5rem; border-radius: var(--r);
  background: var(--orange-50); border: 1px solid rgba(228, 112, 58, .22);
  font-size: var(--t-sm);
}
.callout svg { width: 1.4rem; height: 1.4rem; color: var(--orange-600); flex: none; margin-top: .1rem; }
.callout strong { color: var(--navy-800); }

.resource-list { display: grid; gap: .75rem; list-style: none; padding: 0; }
.resource-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.35rem; background: #fff; border: 1px solid rgba(14, 43, 69, .08);
  border-radius: var(--r); text-decoration: none; color: var(--navy-800); font-weight: 600;
  font-size: var(--t-sm); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.resource-list a:hover { transform: translateX(4px); border-color: rgba(228, 112, 58, .35); box-shadow: var(--shadow); }
.resource-list span { color: var(--muted); font-weight: 500; }
.resource-list a::after { content: "↗"; color: var(--orange-500); }

/* -------------------------------------------------- scheduler */
.scheduler {
  border-radius: var(--r-xl); overflow: hidden; background: #fff;
  border: 1px solid rgba(14, 43, 69, .08); box-shadow: var(--shadow-sm);
}
.calendly-inline-widget { min-width: 320px; height: 760px; }
@media (max-width: 640px) { .calendly-inline-widget { height: 1020px; } }
.scheduler__placeholder {
  display: grid; place-items: center; gap: 1rem; padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
  text-align: center;
}
.scheduler__placeholder svg { width: 3.4rem; color: var(--orange-400); }
.scheduler__placeholder p { font-size: var(--t-sm); max-width: 34ch; }

/* -------------------------------------------------- footer */
.site-footer { background: var(--navy-900); color: var(--on-dark-muted); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
.footer__brand img { width: 220px; }
.footer__brand p { margin-top: 1.1rem; font-size: var(--t-sm); max-width: 32ch; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: var(--t-sm); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer__links { list-style: none; padding: 0; margin-top: 1.1rem; display: grid; gap: .6rem; }
.footer__links a { color: var(--on-dark-muted); text-decoration: none; font-size: var(--t-sm); }
.footer__links a:hover { color: var(--orange-300); }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: var(--t-xs); color: rgba(185, 200, 214, .8);
}
.footer__bottom a { color: inherit; text-decoration: none; }
.footer__bottom a:hover { color: var(--orange-300); }
.social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social a {
  display: grid; place-content: center; width: 2.4rem; height: 2.4rem;
  border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff;
  transition: background-color .2s, transform .2s var(--ease);
}
.social a:hover { background: var(--orange-500); transform: translateY(-2px); }
.social svg { width: 1.1rem; height: 1.1rem; }

/* -------------------------------------------------- page header (inner pages) */
.page-head { position: relative; padding-block: clamp(2.75rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; width: 38rem; height: 38rem; border-radius: 50%;
  top: -22rem; right: -12rem; z-index: -1;
  background: radial-gradient(circle, rgba(228, 112, 58, .15), transparent 68%);
}
.page-head h1 { margin-top: 1rem; }
.page-head p { margin-top: 1.15rem; font-size: var(--t-md); max-width: 46rem; }
.breadcrumb { font-size: var(--t-xs); color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-600); }

/* -------------------------------------------------- tagline strip */
.tagline-strip { display: grid; justify-items: center; gap: 1rem; text-align: center; }
.tagline-strip p {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.45rem, 2.6vw, 2.15rem); line-height: 1.25;
  letter-spacing: -0.01em; color: var(--ink); max-width: 24ch;
}
.tagline-strip .pulse-line {
  width: min(100%, 20rem); height: auto; color: var(--orange-400); opacity: .85;
}
.band .tagline-strip p { color: #fff; }
.band .tagline-strip .pulse-line { color: var(--orange-300); }
.page-head .tagline {
  margin-top: .85rem; font-family: var(--font-display); font-style: italic;
  font-size: var(--t-lg); color: var(--orange-600);
}

/* -------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
