/* ============================================================
   Stacked & Sorted
   Brand palette, read from Kelly's logo.
   Terracotta accent · sage + deep teal · warm sand/cream/taupe.
   ============================================================ */

:root {
  /* Neutrals & canvas */
  --cream:      #F5EFE3;   /* background canvas */
  --sand-tint:  #EFE7D6;   /* section tint, between cream and sand */
  --sand:       #E4DAC2;   /* warm sand, plank tones, image blocks */
  --rule:       #E1D6BF;   /* hairlines */
  --taupe:      #8A7B67;   /* muted labels, subtitle text */

  /* Ink */
  --ink:        #302C26;   /* charcoal wordmark, primary text */
  --ink-2:      #635A4B;   /* secondary/body text (darkened taupe, AA on cream) */

  /* Statement colors */
  --terra:      #C06E4B;   /* PRIMARY accent: buttons, rules, underlines */
  --terra-deep: #A85535;   /* button hover */
  --sage:       #6E9B8E;   /* soft supporting green */
  --teal:       #357168;   /* grounding dark sections + inline text links */
  --teal-deep:  #2B5C54;   /* teal hover */

  /* Type */
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --body:    "Karla", "Helvetica Neue", Arial, sans-serif;

  /* Space */
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(3.25rem, 7vw, 6rem);

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

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .22vw, 1.125rem);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
  text-wrap: balance;
}

p { text-wrap: pretty; }

a { color: inherit; }

::selection { background: var(--terra); color: var(--cream); }

/* ---------- Paper grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .28;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 48rem; }

.section { padding-block: var(--section-y); }
.section--tint { background: var(--sand-tint); }

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--cream);
  padding: .75rem 1rem; z-index: 10000;
}
.skip:focus { left: 1rem; top: 1rem; }

:where(a, button, summary, input, textarea):focus-visible {
  outline: 2px solid var(--terra);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Motion ---------- */
.reveal, .fade {
  opacity: 0;
  transform: translateY(18px);
}
.reveal {
  animation: settle .9s var(--ease) forwards;
  animation-delay: var(--d, 0ms);
}
.fade { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.fade.in { opacity: 1; transform: none; }

@keyframes settle {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .fade { animation: none !important; opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Type helpers ---------- */
.eyebrow, .sect-num {
  font-family: var(--body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe);
}
.sect-num { margin-bottom: .9rem; }
.sect-num--light { color: var(--sage); }

.sect-title {
  font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem);
  margin-bottom: 1.85rem;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav--stuck { border-bottom-color: var(--rule); }

.nav__inner {
  display: flex; align-items: center; gap: 2rem;
  min-height: 4.75rem;
}

.brand {
  display: flex; align-items: center; gap: .7rem;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.brand__name em { font-style: italic; color: var(--terra); }

/* real logo stack mark */
.brand__logo {
  height: 2.35rem;
  width: auto;
  display: block;
  transition: transform .3s var(--ease);
}
.brand:hover .brand__logo { transform: translateY(-1px) rotate(-1.5deg); }

.nav__links {
  display: flex; gap: 1.85rem;
  margin-left: auto;
  font-size: .9rem;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink-2);
  position: relative;
  padding-block: .25rem;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--terra);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__inner { justify-content: space-between; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--terra);
  color: #fff;
  font-family: var(--body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .95rem 1.6rem;
  border: 0; border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -12px rgba(168,85,53,.7);
}
.btn:active { transform: translateY(0); }
.btn--sm { padding: .7rem 1.15rem; font-size: .85rem; }
.btn--full { width: 100%; }
/* Light button, for the dark teal sections */
.btn--light { background: var(--cream); color: var(--teal-deep); }
.btn--light:hover { background: #fff; color: var(--teal-deep); }

.link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: .9rem;
  color: var(--teal);
  text-decoration: none;
  margin-top: auto;
  padding-top: 1.5rem;
}
.link span { transition: transform .3s var(--ease); color: var(--terra); }
.link:hover { color: var(--teal-deep); }
.link:hover span { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-block: clamp(2rem, 4.5vw, 4rem) clamp(2.5rem, 6vw, 5rem); }

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 1.5rem + 7vw, 6.4rem);
  line-height: .95;
  margin: 1rem 0 1.4rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--terra);
}

.lede {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.28rem);
  color: var(--ink-2);
  max-width: 34ch;
  line-height: 1.6;
}

.hero__cta {
  display: flex; align-items: center; gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.hero__note {
  font-size: .85rem; color: var(--taupe); font-style: italic;
}

/* Overlapping frames: the "before" tucked under the "after" */
.hero__media { position: relative; }

.frame {
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 30px 60px -35px rgba(48,44,38,.35);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }

.frame--a {
  border-radius: 200px 200px 12px 12px; /* arch: soft, architectural, not a plain box */
  aspect-ratio: 4 / 5;
}
.frame--b {
  position: absolute;
  left: -12%;
  bottom: -8%;
  width: 46%;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  border: 6px solid var(--cream);
  box-shadow: 0 18px 40px -22px rgba(48,44,38,.45);
}
.frame--b figcaption {
  position: absolute; left: 0; bottom: 0;
  background: var(--ink);
  color: var(--cream);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .6rem;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero { padding-block: 1.75rem 2.75rem; }
  /* Headline leads. The image never pushes the H1 or the CTA below the fold. */
  .hero__copy { order: 1; }
  .hero__media {
    order: 2;
    width: 100%;
    max-width: 22rem;
    margin-top: 1rem;
    margin-left: 3%;
  }
  .frame--a { aspect-ratio: 5 / 5.4; border-radius: 150px 150px 10px 10px; }
  .frame--b { width: 40%; left: -8%; bottom: -6%; }
  .lede { max-width: 46ch; }
}

/* ============================================================
   EMPATHY
   ============================================================ */
.empathy {
  background: var(--teal);
  color: var(--cream);
  padding-block: var(--section-y);
}
.empathy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.empathy h2 {
  font-size: clamp(2rem, 1.2rem + 3.4vw, 3.6rem);
  color: var(--cream);
}
.empathy__body { display: grid; gap: 1.25rem; }
.empathy__body p { color: color-mix(in srgb, var(--cream) 82%, transparent); }
.empathy__body .mark {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem);
  line-height: 1.45;
  border-left: 2px solid var(--terra);
  padding-left: 1.25rem;
  margin-top: .5rem;
}
@media (max-width: 820px) {
  .empathy__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}
.card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
  box-shadow: 0 24px 50px -32px rgba(48,44,38,.45);
}
.card__rule {
  display: block; width: 2.5rem; height: 3px;
  background: var(--terra); border-radius: 2px;
  margin-bottom: 1.5rem;
}
.card h3 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 1.95rem);
  margin-bottom: 1rem;
}
.card p { color: var(--ink-2); margin-bottom: 1rem; }
.card__for {
  font-size: .9rem;
  color: var(--taupe);
  font-style: italic;
}
.card__for strong { font-style: normal; color: var(--ink-2); }

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 2.1rem; }
.step__n {
  position: absolute; top: 0; left: 0;
  font-family: var(--display);
  font-size: 3.25rem;
  line-height: 1;
  color: var(--sand);
  font-weight: 500;
}
.step h3 {
  font-size: 1.3rem;
  margin-bottom: .65rem;
  position: relative;
}
.step p { color: var(--ink-2); font-size: .98rem; }

/* ============================================================
   METHOD (the moat)
   ============================================================ */
.method {
  background: var(--ink);
  color: var(--cream);
  padding-block: var(--section-y);
}
.method__grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.method h2 {
  font-size: clamp(2rem, 1.3rem + 3vw, 3.4rem);
  color: var(--cream);
  margin-bottom: 1.75rem;
}
.method p {
  color: color-mix(in srgb, var(--cream) 74%, transparent);
  margin-bottom: 1.25rem;
  max-width: 56ch;
}
.method strong { color: var(--cream); font-weight: 600; }
.method em { color: var(--sage); }
.method__kicker {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1rem + .8vw, 1.6rem);
  line-height: 1.4;
  color: var(--cream) !important;
  border-top: 1px solid rgba(245,239,227,.16);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
}

.method__aside {
  text-align: center;
  border: 1px solid rgba(245,239,227,.18);
  border-radius: 4px;
  padding: 2rem 1.5rem;
}
.method__mark { display: block; }

.method__cred {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--cream) !important;
  margin-bottom: .75rem !important;
}
.method__sub {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--taupe) !important;
  margin: 0 !important;
}

@media (max-width: 880px) {
  .method__grid { grid-template-columns: 1fr; }
  .method__aside { max-width: 20rem; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__photo {
  border-radius: 240px 240px 8px 8px;
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -35px rgba(48,44,38,.4);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__copy p { color: var(--ink-2); margin-bottom: 1.15rem; }
.about__copy em { color: var(--ink); font-family: var(--display); font-size: 1.15em; }
.about__note {
  font-size: .85rem;
  color: var(--taupe);
  border-top: 1px solid var(--rule);
  padding-top: 1.25rem;
  margin-top: 1.75rem;
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 22rem; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 2rem;
}
.quote blockquote {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}
.quote blockquote::before { content: "\201C"; color: var(--terra); }
.quote blockquote::after { content: "\201D"; color: var(--terra); }
.quote figcaption { font-size: .85rem; color: var(--taupe); }
.quote figcaption span::before { content: " \00B7 "; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.area h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); margin-bottom: 1.25rem; }
.area__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .5rem .75rem;
  margin-bottom: 1.25rem;
}
.area__list span {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink-2);
  padding: .35rem .9rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--cream);
}
.area__note { font-size: .9rem; color: var(--taupe); font-style: italic; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; }
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 1.05rem 0;
}
.faq details:first-child { border-top: 1px solid var(--rule); }
.faq summary {
  font-family: var(--display);
  font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--teal); }
.faq summary::after {
  content: "+";
  font-family: var(--body);
  font-size: 1.4rem;
  color: var(--terra);
  flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  color: var(--ink-2);
  margin-top: .9rem;
  max-width: 62ch;
  font-size: .98rem;
}

/* ============================================================
   FINAL CTA + FORM
   ============================================================ */
.final {
  background: var(--teal);
  color: var(--cream);
  padding-block: var(--section-y);
}
.final__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.final h2 {
  font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.8rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.final__copy > p {
  color: color-mix(in srgb, var(--cream) 80%, transparent);
  max-width: 34ch;
}
.final__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.75rem 0 1rem;
}
.final__or { font-size: .9rem; color: color-mix(in srgb, var(--cream) 66%, transparent); }
.final__or a { color: var(--cream); text-decoration-color: var(--terra); text-underline-offset: 3px; }

.form {
  background: rgba(245,239,227,.07);
  border: 1px solid rgba(245,239,227,.18);
  border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: color-mix(in srgb, var(--cream) 72%, transparent);
  margin-bottom: .45rem;
}
.field input, .field textarea {
  width: 100%;
  background: rgba(245,239,227,.06);
  border: 1px solid rgba(245,239,227,.2);
  border-radius: 3px;
  color: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  padding: .8rem .9rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(245,239,227,.42); }
.field input:focus, .field textarea:focus {
  border-color: var(--sage);
  background: rgba(245,239,227,.1);
}
.form .btn--full { background: var(--terra); color: #fff; margin-top: .5rem; }
.form .btn--full:hover { background: var(--terra-deep); }
.form__note {
  font-size: .8rem;
  text-align: center;
  margin-top: .9rem;
  color: color-mix(in srgb, var(--cream) 58%, transparent);
  font-style: italic;
}
.hp { position: absolute; left: -9999px; }

@media (max-width: 880px) {
  .final__grid { grid-template-columns: 1fr; }
  .final__copy > p { max-width: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(2.25rem, 4.5vw, 3.25rem);
}
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.25rem;
}
.foot__brand {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.foot__logo { height: 2.4rem; width: auto; display: block; }
.foot__brand em {
  font-style: italic;
  color: var(--terra);
  /* Fraunces has an optical-size axis and swaps in a SWASH ampersand above roughly
     20px, which reads as a cursive "g" rather than an "&". The nav wordmark is
     19.2px so it stays under the threshold; the footer is 24px and does not.
     Pin opsz to the nav's value so both ampersands match. */
  font-optical-sizing: none;
  font-variation-settings: "opsz" 19;
}
.foot__tag { color: var(--taupe); font-size: .95rem; max-width: 26ch; }
.foot__col { display: grid; gap: .6rem; align-content: start; }
.foot__col a {
  color: color-mix(in srgb, var(--cream) 72%, transparent);
  text-decoration: none;
  font-size: .92rem;
  width: fit-content;
  transition: color .25s var(--ease);
}
.foot__col a:hover { color: var(--cream); }
.foot__base {
  border-top: 1px solid rgba(245,239,227,.12);
  padding-block: 1.5rem;
}
.foot__base p { font-size: .8rem; color: var(--taupe); }

@media (max-width: 760px) {
  .foot__grid { grid-template-columns: 1fr; gap: 2rem; }
}

.area__base {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink-2);
  margin-bottom: 1.25rem;
}

/* ============================================================
   SCORECARD BAND (lead magnet)
   Sits between the charcoal Method and the cream About, so it
   breaks the rhythm right after the "why systems fail" argument.
   ============================================================ */
.score {
  background: var(--sand-tint);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(2.75rem, 5.5vw, 4.5rem);
  text-align: center;
}
.score__inner { max-width: 44rem; margin-inline: auto; }
.score h2 {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem);
  margin-bottom: 1rem;
}
.score > .wrap > p,
.score__inner > p {
  color: var(--ink-2);
  margin-inline: auto;
  max-width: 46ch;
}
.score .btn { margin-top: 1.5rem; }
.score__note {
  font-size: .85rem;
  color: var(--taupe);
  font-style: italic;
  margin-top: 1.1rem;
}

/* Hero: soft secondary CTA under the primary button */
.hero__alt {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  flex-basis: 100%;
  font-size: .92rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-top: .35rem;
}
.hero__alt span { transition: transform .3s var(--ease); color: var(--terra); }
.hero__alt:hover { color: var(--teal-deep); }
.hero__alt:hover span { transform: translateX(4px); }

/* Soft scorecard alternative in the closing CTA */
.final__score {
  font-size: .9rem;
  color: color-mix(in srgb, var(--cream) 70%, transparent);
  margin-top: -.35rem;
  margin-bottom: 1.25rem;
}
.final__score a {
  color: var(--cream);
  font-weight: 600;
  text-decoration-color: var(--terra);
  text-underline-offset: 3px;
}
.final__score a span { color: var(--terra); }

/* Secondary hero CTA: real button weight, visibly not the primary */
.btn--ghost {
  background: transparent;
  color: var(--teal);
  box-shadow: inset 0 0 0 1.5px var(--teal);
}
.btn--ghost:hover {
  background: var(--teal);
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px var(--teal), 0 10px 22px -12px rgba(53,113,104,.7);
}

/* CPES certification badge on the Method card. Left in its own blue/gold
   on purpose: a certification mark should never be recoloured to fit a palette. */
.method__mark {
  width: 6.5rem;
  height: auto;
  margin: 0 auto 1.15rem;
}

/* ============================================================
   BOOKING PAGE (/book)
   ============================================================ */
.booking { padding-block: clamp(1.75rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem); }
.booking__head { max-width: 46rem; text-align: center; margin-inline: auto; }
.booking__head h1 {
  font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4rem);
  margin-bottom: 1.1rem;
}
.booking__lede {
  color: var(--ink-2);
  font-size: clamp(1rem, .96rem + .3vw, 1.15rem);
  max-width: 40ch;
  margin-inline: auto;
}
.booking__embed {
  margin-top: clamp(.65rem, 1.4vw, 1.1rem);
  /* Clips the iframe's negative pull below. Without this the iframe rides UP over
     the lede and its background paints over the text. */
  overflow: hidden;
  /* Three-column layout (Kelly's preference). The widget flips to three columns at
     roughly 70rem, so this sits just above that breakpoint: wide enough to trigger
     them, tight enough that the left info panel does not strand a lot of empty space.
     Going much wider (76rem+) makes that panel look emptier, not better.
     NOTE: the panel's own emptiness can only be fixed inside GHL, by giving the
     calendar a Description + Meeting Location. It is a cross-origin iframe. */
  max-width: 72rem;
}
/* min-height stops the page collapsing before form_embed.js sizes the iframe */
.booking__embed iframe {
  width: 100%;
  /* The widget carries its own padding above its card, inside the iframe, which we
     cannot style (cross-origin). This pull crops it, and .booking__embed's
     overflow:hidden keeps the crop inside the container instead of letting the
     iframe overlap the lede above. If the card ever looks cut off at the top,
     reduce these values. */
  margin-top: -2rem;
  min-height: 38rem;
  border: none;
  overflow: hidden;
  background: var(--cream);
  border-radius: 6px;
}
.booking__fallback,
.booking__alt {
  text-align: center;
  margin-top: 2rem;
  color: var(--ink-2);
  font-size: .95rem;
}
.booking__alt a,
.booking__fallback a {
  color: var(--teal);
  font-weight: 600;
  text-decoration-color: var(--terra);
  text-underline-offset: 3px;
}

/* Outline button for the DARK teal sections (mirrors .btn--ghost on cream) */
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px color-mix(in srgb, var(--cream) 55%, transparent);
}
.btn--ghost-light:hover {
  background: var(--cream);
  color: var(--teal-deep);
  box-shadow: inset 0 0 0 1.5px var(--cream), 0 10px 22px -12px rgba(0,0,0,.45);
}
