/* ==========================================================================
   Perfect World Coaching, Inc. — site stylesheet
   Palette derived from the original teal → navy brand banner.
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES ---------------------------------------------------
     Swap a photo site-wide by pointing these at a new file in assets/.
     ---------------------------------------------------------------------- */
  --img-coaches: url("assets/coaches-together.jpg");
  --img-skyline: url("assets/executive-skyline.jpg");
  --img-globe: url("assets/globe-clients.jpg");
  /* END REPLACEABLE IMAGES */

  --navy: #0b1942;
  --navy-deep: #071130;
  --navy-soft: #16264f;
  --teal: #0a7d66;
  --teal-dark: #066453;
  --teal-tint: #e7f2ef;
  --brass: #b9873f;
  --brass-ink: #8c6124;
  --ink: #141a2b;
  --muted: #545e74;
  --line: #e4e1d8;
  --line-strong: #cfcabc;
  --paper: #fbfaf7;
  --cream: #f4f0e8;
  --white: #ffffff;

  --serif: ui-serif, Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1140px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(7, 17, 48, .06), 0 6px 18px rgba(7, 17, 48, .06);
  --shadow-md: 0 2px 6px rgba(7, 17, 48, .08), 0 18px 44px rgba(7, 17, 48, .10);
}

/* --- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
/* long email addresses must never push a narrow phone into horizontal scroll */
p, li, dd, figcaption, .form-msg { overflow-wrap: break-word; }
a[href^="mailto:"] { overflow-wrap: anywhere; word-break: break-word; }
a { color: var(--teal-dark); text-underline-offset: .18em; text-decoration-thickness: 1px; }
a:hover { color: var(--navy); }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; border-radius: 2px; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; color: var(--navy); line-height: 1.18; margin: 0 0 .55em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.05rem, 1.35rem + 2.7vw, 3.3rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.6vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 1.03rem + .45vw, 1.35rem); }
h4 { font-size: 1.02rem; font-family: var(--sans); font-weight: 700; letter-spacing: .01em; }
p { margin: 0 0 1.15em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
strong { color: var(--navy); }

/* --- layout helpers ------------------------------------------------------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.narrow { max-width: 68ch; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--tight { padding: clamp(2.25rem, 5vw, 3.5rem) 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section-head { max-width: 62ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }

.eyebrow {
  display: block; font-family: var(--sans); font-size: .76rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--teal-dark); margin: 0 0 .85rem;
}
.eyebrow--light { color: #7fd8c3; }
.lede { font-size: clamp(1.08rem, 1rem + .35vw, 1.24rem); color: #35405a; line-height: 1.65; }
.rule { width: 58px; height: 3px; background: var(--brass); border: 0; margin: 0 0 1.6rem; }

.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 950px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* --- skip link ------------------------------------------------------------ */
.skip-link {
  position: absolute; left: .75rem; top: -100px; z-index: 200;
  background: var(--navy); color: #fff; padding: .7rem 1.1rem; border-radius: var(--radius);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: .75rem; color: #fff; }

/* --- header --------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 1px 0 var(--line); }
.utility {
  background: var(--navy-deep); color: #c6cfe4; font-size: .84rem;
}
.utility__inner { display: flex; flex-wrap: wrap; gap: .35rem 1.4rem; align-items: center; justify-content: flex-end; padding: .45rem 0; }
.utility__tag { margin-right: auto; font-family: var(--serif); font-style: italic; color: #93a3c4; letter-spacing: .01em; }
.utility a { color: #eaf1ff; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.utility a:hover { color: #7fd8c3; text-decoration: underline; }
.utility svg { width: 14px; height: 14px; flex: none; fill: #7fd8c3; }
@media (max-width: 560px) { .utility__tag { display: none; } .utility__inner { justify-content: center; } }

.masthead { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--navy); flex: none; }
.brand svg { width: 38px; height: 38px; flex: none; }
.brand b { display: block; font-family: var(--serif); font-size: 1.16rem; font-weight: 600; line-height: 1.05; letter-spacing: -.01em; }
.brand span { display: block; font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; color: var(--teal-dark); font-weight: 700; margin-top: .18rem; }
.brand:hover b { color: var(--teal-dark); }

.nav-toggle {
  margin-left: auto; display: none; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--line-strong); color: var(--navy);
  font: 600 .9rem/1 var(--sans); padding: .6rem .8rem; border-radius: var(--radius); cursor: pointer;
}
.nav-toggle svg { width: 16px; height: 16px; fill: currentColor; }
.js .nav-toggle { display: inline-flex; }

.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .15rem; margin: 0; padding: 0; }
.site-nav a {
  display: block; text-decoration: none; color: var(--navy); font-size: .87rem; font-weight: 600;
  letter-spacing: .015em; padding: .55rem .62rem; border-radius: var(--radius); white-space: nowrap;
}
.site-nav a:hover { background: var(--teal-tint); color: var(--teal-dark); }
.site-nav a[aria-current="page"] { color: var(--teal-dark); box-shadow: inset 0 -2px 0 var(--brass); }
.site-nav .nav-cta { margin-left: .5rem; }
.site-nav .nav-cta a { background: var(--teal); color: #fff; padding: .6rem 1.1rem; }
.site-nav .nav-cta a:hover { background: var(--navy); color: #fff; }

@media (max-width: 1080px) {
  .site-nav { width: 100%; margin-left: 0; }
  /* Without JavaScript the toggle stays hidden and the full nav is simply visible. */
  .js .site-nav { display: none; }
  .js .site-nav.is-open { display: block; padding-bottom: .85rem; }
  .masthead { flex-wrap: wrap; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; border-top: 1px solid var(--line); padding-top: .5rem; }
  .site-nav a { padding: .78rem .4rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--brass); padding-left: .8rem; }
  .site-nav .nav-cta { margin: .8rem 0 0; }
  .site-nav .nav-cta a { text-align: center; border-bottom: 0; }
}

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: 600 1rem/1.2 var(--sans); text-decoration: none; cursor: pointer;
  padding: .92rem 1.6rem; border-radius: var(--radius); border: 1px solid transparent;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}
.btn svg { width: 17px; height: 17px; fill: currentColor; flex: none; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--navy); background: var(--white); color: var(--navy); }
.btn--onDark { background: #fff; color: var(--navy); }
.btn--onDark:hover { background: var(--brass-ink); color: #fff; transform: translateY(-1px); }
.btn--outlineLight { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outlineLight:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* --- hero ----------------------------------------------------------------- */
.hero { position: relative; background: var(--cream); overflow: hidden; border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 420px at 88% -10%, rgba(10,125,102,.14), transparent 62%),
    radial-gradient(760px 420px at 6% 110%, rgba(11,25,66,.10), transparent 60%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; gap: clamp(2rem, 5vw, 3.5rem); padding: clamp(2.6rem, 6vw, 4.75rem) 0; align-items: center; }
@media (min-width: 900px) { .hero__inner { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); } }
.hero h1 { margin-bottom: .5em; }
.hero h1 em { font-style: normal; color: var(--teal-dark); }
.hero__promise { font-size: clamp(1.08rem, .98rem + .45vw, 1.28rem); color: #333d57; max-width: 40ch; }
.hero__actions { margin-top: 1.9rem; }
.hero__note { margin-top: 1.1rem; font-size: .93rem; color: var(--muted); }
.hero__note strong { color: var(--navy); }

.portrait-card { background: var(--white); padding: 14px; border: 1px solid var(--line); box-shadow: var(--shadow-md); border-radius: var(--radius); width: max-content; max-width: 100%; margin-inline: auto; }
/* Photos keep their natural aspect ratio and are never upscaled or cropped. */
.portrait-card img { width: auto; max-width: 100%; height: auto; border-radius: 2px; }
.portrait-card figcaption { margin-top: .85rem; padding-top: .8rem; border-top: 2px solid var(--brass); font-size: .88rem; color: var(--muted); line-height: 1.5; }
.portrait-card figcaption b { display: block; color: var(--navy); font-family: var(--serif); font-size: 1.02rem; font-weight: 600; }

/* --- trust bar ------------------------------------------------------------ */
.trustbar { background: var(--navy); color: #dbe3f3; }
.trustbar ul { list-style: none; margin: 0; padding: clamp(1.5rem, 3vw, 2.1rem) 0; display: grid; gap: 1.1rem 2rem; }
@media (min-width: 620px) { .trustbar ul { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .trustbar ul { grid-template-columns: repeat(4, 1fr); } }
.trustbar li { display: flex; gap: .8rem; align-items: flex-start; font-size: .95rem; line-height: 1.5; }
.trustbar b { display: block; font-family: var(--serif); font-size: 1.5rem; color: #fff; font-weight: 600; line-height: 1.1; }
.trustbar svg { width: 20px; height: 20px; fill: var(--brass); flex: none; margin-top: .3rem; }

/* --- cards ---------------------------------------------------------------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.35rem, 2.6vw, 1.85rem); display: flex; flex-direction: column; gap: .2rem;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card h3 { margin-bottom: .35rem; }
.card p { color: var(--muted); margin-bottom: .9rem; }
.card__for { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--brass-ink); margin: 0 0 .6rem; }
.card__link { margin-top: auto; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.card__link::after { content: "→"; transition: transform .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card:hover .card__link::after { transform: translateX(3px); }
.card--flat:hover { transform: none; box-shadow: none; border-color: var(--line); }
.card .price { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--navy); font-weight: 600; margin-bottom: .3rem; }
.card .duration { display: block; font-size: .86rem; color: var(--muted); }
.card--onCream { background: var(--white); }

/* --- lists ---------------------------------------------------------------- */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
@media (min-width: 760px) { .checklist--2 { grid-template-columns: repeat(2, 1fr); gap: .6rem 2rem; } }
.checklist li { position: relative; padding-left: 1.85rem; line-height: 1.55; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .48em; width: 1.05rem; height: .55rem;
  border-left: 2.5px solid var(--teal); border-bottom: 2.5px solid var(--teal);
  transform: rotate(-45deg);
}
.bulletlist { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.bulletlist li { position: relative; padding-left: 1.4rem; line-height: 1.6; }
.bulletlist li::before { content: ""; position: absolute; left: .15rem; top: .72em; width: 6px; height: 6px; background: var(--brass); border-radius: 50%; }
.deflist { margin: 0; display: grid; gap: 1.1rem; }
.deflist dt { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--navy); }
.deflist dd { margin: .25rem 0 0; color: var(--muted); }

.taglist { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.taglist li { background: var(--teal-tint); color: var(--teal-dark); font-size: .84rem; font-weight: 600; padding: .35rem .8rem; border-radius: 99px; }

/* --- page header ---------------------------------------------------------- */
.page-head { background: var(--navy); color: #dde4f4; position: relative; overflow: hidden; }
.page-head::after {
  content: ""; position: absolute; right: -80px; top: -120px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(10,125,102,.55), rgba(10,125,102,0) 65%);
}
.page-head__inner { position: relative; padding: clamp(2.5rem, 5.5vw, 4.25rem) 0; max-width: 62ch; }
.page-head h1 { color: #fff; }
.page-head p { color: #c3cee6; font-size: clamp(1.02rem, .97rem + .3vw, 1.18rem); margin-bottom: 0; }
.page-head .eyebrow { color: #86dcc6; }
.breadcrumb { font-size: .82rem; color: #93a3c4; margin: 0 0 1rem; }
.breadcrumb a { color: #c3cee6; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* --- prose panels --------------------------------------------------------- */
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3.2vw, 2.4rem); }
.panel--accent { border-left: 4px solid var(--brass); }
.panel + .panel { margin-top: 1.25rem; }
.split { display: grid; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
@media (min-width: 880px) { .split--media { grid-template-columns: minmax(0, 1fr) 260px; } }
@media (min-width: 880px) { .split--sidebar { grid-template-columns: minmax(0, 1fr) 320px; } }
.aside-img { border: 1px solid var(--line); background: var(--white); padding: 10px; box-shadow: var(--shadow-sm); border-radius: var(--radius); width: max-content; max-width: 100%; }
.aside-img img { width: auto; max-width: 100%; height: auto; }
.aside-img figcaption { font-size: .82rem; color: var(--muted); margin-top: .6rem; line-height: 1.45; }

/* --- bios ----------------------------------------------------------------- */
.bio { display: grid; gap: clamp(1.4rem, 3.5vw, 2.5rem); scroll-margin-top: 130px; }
@media (min-width: 820px) { .bio { grid-template-columns: 210px minmax(0, 1fr); } }
.bio__photo { background: var(--white); border: 1px solid var(--line); padding: 10px; border-radius: var(--radius); box-shadow: var(--shadow-sm); align-self: start; width: max-content; max-width: 100%; }
.bio__photo img { width: auto; max-width: 100%; height: auto; }
.bio__role { font-size: .8rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; color: var(--brass-ink); margin: 0 0 .25rem; }
.bio h2 { margin-bottom: .3rem; }
.bio__contact { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin: 0 0 1.4rem; font-size: .95rem; }
.credentials { background: var(--cream); border-radius: var(--radius); padding: 1.35rem 1.5rem; margin-top: 1.5rem; }
.credentials h3 { font-size: .8rem; font-family: var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--brass-ink); margin-bottom: .8rem; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band { background: linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 45%, var(--teal-dark) 130%); color: #fff; }
.cta-band__inner { padding: clamp(2.5rem, 5.5vw, 4rem) 0; display: grid; gap: 1.6rem; align-items: center; }
@media (min-width: 860px) { .cta-band__inner { grid-template-columns: minmax(0, 1fr) auto; gap: 2.5rem; } }
.cta-band h2 { color: #fff; margin-bottom: .45rem; }
.cta-band p { color: #cbd6ec; margin-bottom: 0; max-width: 56ch; }
.cta-band .btn-row { flex-shrink: 0; }

/* --- FAQ ------------------------------------------------------------------ */
.faq { display: grid; gap: .75rem; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.faq summary {
  cursor: pointer; padding: 1.05rem 1.3rem; font-family: var(--serif); font-size: 1.08rem; font-weight: 600;
  color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-size: 1.35rem; color: var(--teal); line-height: 1; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .faq__a { padding: 1.05rem 1.3rem; color: var(--muted); margin: 0; }

/* --- contact -------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); } }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list svg { width: 20px; height: 20px; fill: var(--teal); flex: none; margin-top: .35rem; }
.contact-list b { display: block; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-ink); }
.contact-list a { font-size: 1.08rem; font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

form .field { margin-bottom: 1.15rem; }
form label { display: block; font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: .4rem; }
form .req { color: var(--brass-ink); }
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: var(--white);
  border: 1px solid var(--line-strong); border-radius: var(--radius); padding: .75rem .85rem;
}
input:focus, textarea:focus, select:focus { border-color: var(--teal); outline: 2px solid rgba(10,125,102,.25); outline-offset: 0; }
textarea { min-height: 150px; resize: vertical; }
.hp-field { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.form-msg { margin-top: 1.1rem; padding: .95rem 1.15rem; border-radius: var(--radius); font-size: .96rem; }
.form-msg[hidden] { display: none; }
.form-msg--ok { background: var(--teal-tint); border: 1px solid #9ed3c5; color: #06503f; }
.form-msg--err { background: #fdf0e7; border: 1px solid #edbf9c; color: #8a3c0c; }
.cf-turnstile { margin-bottom: 1.15rem; }

/* --- footer --------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: #aebbd6; font-size: .95rem; }
.site-footer a { color: #dfe7f7; text-decoration: none; }
.site-footer a:hover { color: #7fd8c3; text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; padding: clamp(2.5rem, 5vw, 3.75rem) 0 2rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.55fr 1fr 1fr 1fr; } }
.footer-grid h2 { font-size: .78rem; font-family: var(--sans); letter-spacing: .15em; text-transform: uppercase; color: #7fd8c3; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-brand b { display: block; font-family: var(--serif); font-size: 1.22rem; color: #fff; font-weight: 600; }
.footer-brand .tag { font-family: var(--serif); font-style: italic; color: #7fd8c3; margin: .2rem 0 1rem; display: block; }
.footer-brand p { color: #9fadca; max-width: 38ch; }
.footer-contact { display: grid; gap: .5rem; margin-top: 1.1rem; }
.footer-contact a { font-weight: 600; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 1.25rem 0 2rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .84rem; color: #8493b3;
}
.footer-bottom p { margin: 0; }
[data-ss-credit] a { color: #a9b7d4; text-decoration: underline; }
[data-ss-credit] a:hover { color: #7fd8c3; }

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* --- numbered steps ------------------------------------------------------- */
.steplist { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; gap: .7rem; }
.steplist li { counter-increment: step; position: relative; padding-left: 2.35rem; line-height: 1.55; }
.steplist li::before {
  content: counter(step); position: absolute; left: 0; top: .1em;
  width: 1.65rem; height: 1.65rem; border-radius: 50%; background: var(--teal-tint); color: var(--teal-dark);
  font: 700 .84rem/1.65rem var(--sans); text-align: center;
}
