/* ==========================================================================
   Relationship & Personal Coach — Gail W. Fisher, Sarasota FL
   Single stylesheet. Mobile-first. No external dependencies.
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES
     Swap the file inside url() to change the picture; nothing else needs editing. */
  --img-band-texture: url("assets/Footsteps_v2.jpg"); /* decorative sand/surf band behind call-to-action strips */

  /* Brand colour — sampled from the practice's own banner artwork */
  --sage:        #8cbcb4;
  --sage-tint:   #e9f2f0;
  --sage-tint-2: #f3f8f7;
  --brand:       #2c6b63;
  --brand-deep:  #1c4a45;
  --brand-dark:  #143733;

  --ink:       #16302d;
  --ink-body:  #35504c;
  --ink-soft:  #5c7571;
  --line:      #dde7e5;

  --paper:     #fbfaf7;
  --white:     #ffffff;
  --sand:      #8f5f22;   /* required-field marks — darkened to clear 4.5:1 on white */

  --font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Type scale */
  --t-xs:   0.8125rem;
  --t-sm:   0.9375rem;
  --t-base: 1.0625rem;
  --t-md:   clamp(1.125rem, 0.4vw + 1.05rem, 1.25rem);
  --t-lg:   clamp(1.3rem, 0.7vw + 1.15rem, 1.6rem);
  --t-xl:   clamp(1.6rem, 1.4vw + 1.3rem, 2.15rem);
  --t-2xl:  clamp(2rem, 2.6vw + 1.35rem, 3.05rem);

  --measure: 66ch;
  --r:    14px;
  --r-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(20, 55, 51, .06), 0 2px 8px rgba(20, 55, 51, .05);
  --shadow-md: 0 2px 6px rgba(20, 55, 51, .07), 0 12px 32px rgba(20, 55, 51, .09);

  --wrap: 1120px;
  --gut: clamp(1.1rem, 4vw, 2.5rem);
}

/* ---------- 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-body);
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-deep); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 3px; }
/* the teal ring disappears on the dark bands — switch it to white there */
.cta-band :focus-visible, .site-footer :focus-visible, .tel-mini:focus-visible { outline-color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 600;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: var(--t-2xl); letter-spacing: -.018em; }
h2 { font-size: var(--t-xl); }
h3 { font-size: var(--t-lg); }
h4 { font-size: var(--t-md); }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.3em; }
li { margin-bottom: .4em; }
strong { color: var(--ink); font-weight: 600; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.measure { max-width: var(--measure); }
.skip {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  background: var(--brand-deep); color: #fff; padding: .7rem 1.2rem;
  border-radius: 0 0 var(--r-sm) var(--r-sm); z-index: 200; font-weight: 600;
  text-decoration: none;
}
.skip:focus { transform: translate(-50%, 0); color: #fff; }
.vh {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-size: var(--t-sm); font-weight: 650;
  letter-spacing: .012em; line-height: 1.2;
  padding: .92rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--brand-deep); border-color: var(--sage); }
.btn--ghost:hover { background: var(--sage-tint); color: var(--brand-deep); border-color: var(--brand); }
.btn--onDark { background: #fff; color: var(--brand-deep); }
.btn--onDark:hover { background: var(--sage-tint); color: var(--brand-dark); transform: translateY(-1px); }
.btn--onDarkGhost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--onDarkGhost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 247, .94);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex; align-items: center; gap: 1rem;
  min-height: 66px; padding-block: .6rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name {
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 600;
  color: var(--ink); letter-spacing: -.005em;
}
.brand__sub {
  font-size: .675rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600; margin-top: .18em;
}
.nav { display: none; }
.nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__link {
  display: block; padding: .5rem .72rem; border-radius: var(--r-sm);
  font-size: var(--t-sm); font-weight: 550; color: var(--ink-body); text-decoration: none;
  transition: background-color .16s ease, color .16s ease;
}
.nav__link:hover { background: var(--sage-tint); color: var(--brand-deep); }
.nav__link[aria-current="page"] { color: var(--brand-deep); font-weight: 700; background: var(--sage-tint); }
.header-cta { display: inline-flex; }
.nav-toggle {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--white); border: 1.5px solid var(--line); color: var(--ink);
  border-radius: 999px; padding: .5rem .85rem; font: inherit; font-size: var(--t-xs);
  font-weight: 650; cursor: pointer;
}
.nav-toggle:hover { border-color: var(--sage); }
.nav-toggle__bars { position: relative; width: 16px; height: 10px; }
.nav-toggle__bars span,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.8px;
  background: var(--ink); border-radius: 2px;
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars span { top: 4.1px; }
.nav-toggle__bars::after { bottom: 0; }
.tel-mini {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--brand); color: #fff; border-radius: 999px;
  padding: .55rem .9rem; font-size: var(--t-xs); font-weight: 700; text-decoration: none;
}
.tel-mini:hover { background: var(--brand-deep); color: #fff; }
.tel-mini svg { width: 14px; height: 14px; }
.tel-mini__full { display: none; }

/* Without JavaScript the mobile menu is simply always open, so every page
   stays reachable. The inline <html class="js"> flag lets JS collapse it. */
#mobile-nav { display: block; padding-bottom: 1rem; }
.js #mobile-nav { display: none; }
.js #mobile-nav.is-open { display: block; }
html:not(.js) .nav-toggle { display: none; }
#mobile-nav ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
#mobile-nav li { margin: 0; }
#mobile-nav a {
  display: block; padding: .82rem .2rem; font-weight: 600; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid var(--line);
}
#mobile-nav a[aria-current="page"] { color: var(--brand); }
#mobile-nav .btn { width: 100%; margin-top: 1rem; }

@media (min-width: 900px) {
  .nav { display: block; }
  .nav-toggle { display: none !important; }
  #mobile-nav { display: none !important; }
  .tel-mini__full { display: inline; }
}
@media (max-width: 380px) {
  .brand__sub { display: none; }
  .brand__name { font-size: .95rem; }
  .brand__mark { width: 30px; height: 30px; }
}

/* ---------- brand plate ---------- */
.plate { padding-top: clamp(1rem, 2.6vw, 1.9rem); }
.plate__inner { max-width: 985px; margin-inline: auto; }
.plate img {
  width: 100%; height: auto; border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}

/* ---------- sections ---------- */
.section { padding-block: clamp(2.6rem, 6vw, 4.6rem); }
[id] { scroll-margin-top: 88px; }
.section--tight { padding-block: clamp(2rem, 4.5vw, 3.2rem); }
.section--tint { background: var(--sage-tint-2); border-block: 1px solid var(--line); }
.section--white { background: var(--white); border-block: 1px solid var(--line); }
.eyebrow {
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--brand); margin: 0 0 .85rem;
  font-family: var(--font-body);
}
.section__head { max-width: 62ch; margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem); }
.section__head p { font-size: var(--t-md); color: var(--ink-body); }
.lede { font-size: var(--t-md); color: var(--ink-body); }

/* ---------- hero ---------- */
.hero { padding-block: clamp(2.2rem, 5.5vw, 3.6rem) clamp(2.2rem, 5vw, 3.4rem); }
.hero__grid { display: grid; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
.hero h1 { margin-bottom: .45em; }
.hero__lede { font-size: var(--t-md); max-width: 36ch; }
.hero .btn-row { margin-top: 1.6rem; }
.hero__note {
  margin-top: 1.1rem; font-size: var(--t-sm); color: var(--ink-soft);
  display: flex; flex-wrap: wrap; gap: .3rem .85rem; align-items: center;
}
.hero__note span { display: inline-flex; align-items: center; gap: .4rem; }
.hero__note svg { width: 15px; height: 15px; color: var(--sage); flex: none; }

.creds {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.3rem, 3vw, 1.8rem); box-shadow: var(--shadow-sm);
}
.creds h2 { font-size: var(--t-md); margin-bottom: .9rem; }
.creds ul { list-style: none; padding: 0; margin: 0; }
.creds li {
  position: relative; padding-left: 1.7rem; margin-bottom: .72rem;
  font-size: var(--t-sm); line-height: 1.55;
}
.creds li:last-child { margin-bottom: 0; }
.creds li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--sage-tint);
  box-shadow: inset 0 0 0 1.5px var(--sage);
}
.creds li::after {
  content: ""; position: absolute; left: 4.4px; top: .64em;
  width: 6px; height: 3.2px; border-left: 1.7px solid var(--brand);
  border-bottom: 1.7px solid var(--brand); transform: rotate(-45deg);
}

@media (min-width: 880px) {
  .hero__grid { grid-template-columns: 1.15fr .85fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: center; }
}

/* ---------- figures ---------- */
.fig { margin: 0; }
.fig img { width: 100%; height: auto; border-radius: var(--r); box-shadow: var(--shadow-sm); }
.fig figcaption {
  margin-top: .7rem; font-size: var(--t-sm); color: var(--ink-soft);
  font-style: italic; line-height: 1.5;
}
.fig--plain img { box-shadow: none; }
.fig--narrow { max-width: 340px; }
.band-img { max-width: 720px; margin-inline: auto; }
.band-img img { border-radius: var(--r-sm); }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.5rem); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 760px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(1.25rem, 2.6vw, 1.75rem);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.card h3 { margin-bottom: .5rem; }
.card p { font-size: var(--t-sm); margin-bottom: 0; }
.card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--sage-tint); color: var(--brand-deep);
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  margin-bottom: .9rem;
}

/* service cards */
.svc { display: flex; flex-direction: column; }
.svc__price {
  display: block; margin-top: 1rem; font-weight: 700; color: var(--brand-deep);
  font-size: var(--t-sm);
}
.svc__more { margin-top: auto; padding-top: 1.1rem; }
.svc__more a { font-size: var(--t-sm); font-weight: 650; text-decoration: none; }
.svc__more a:hover { text-decoration: underline; }

/* topic chips */
.topics { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 0; }
.topics li { margin: 0; }
.topic {
  display: block; background: var(--white); border: 1px solid var(--sage);
  color: var(--brand-deep); border-radius: 999px;
  padding: .5rem 1.05rem; font-size: var(--t-sm); font-weight: 600;
}
.section--tint .topic { background: var(--white); }

/* ---------- quote ---------- */
.quote { margin: 0; }
.quote blockquote {
  margin: 0; font-family: var(--font-display); font-size: var(--t-lg);
  line-height: 1.42; color: var(--ink); font-style: italic;
}
.quote blockquote p { margin: 0; }
.quote cite {
  display: block; margin-top: .85rem; font-style: normal; font-family: var(--font-body);
  font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 650;
}
.quote--rule { border-left: 3px solid var(--sage); padding-left: clamp(1rem, 2.5vw, 1.7rem); }
.quote--center { text-align: center; max-width: 30ch; margin-inline: auto; }

/* ---------- prose blocks ---------- */
.prose { max-width: var(--measure); }
.prose h2 { margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.9em; }
.split { display: grid; gap: clamp(1.6rem, 4vw, 2.8rem); align-items: start; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1.25fr .75fr; }
  .split--even { grid-template-columns: 1fr 1fr; align-items: center; }
  .split--flip > :first-child { order: 2; }
}
.sticky-aside { position: sticky; top: 92px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--brand-deep); color: #fff;
  padding-block: clamp(2.6rem, 6vw, 4.2rem);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image: var(--img-band-texture);
  background-size: cover; background-position: center 35%;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(20,55,51,.94) 0%, rgba(28,74,69,.9) 55%, rgba(44,107,99,.86) 100%);
}
.cta-band h2 { color: #fff; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 46ch; font-size: var(--t-md); }
.cta-band .btn-row { margin-top: 1.7rem; }
.cta-band__inner { max-width: 62ch; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: clamp(1.8rem, 4vw, 3rem); align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr .82fr; } }

.info-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(1.3rem, 3vw, 1.9rem);
  box-shadow: var(--shadow-sm);
}
.info-card + .info-card { margin-top: 1.1rem; }
.info-card h2, .info-card h3 { font-size: var(--t-md); margin-bottom: 1rem; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li { display: flex; gap: .85rem; margin-bottom: 1rem; font-size: var(--t-sm); }
.info-list li:last-child { margin-bottom: 0; }
.info-list svg { width: 18px; height: 18px; flex: none; color: var(--brand); margin-top: .22em; }
.info-list .k {
  display: block; font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 700; margin-bottom: .15rem;
}
.info-list a { font-weight: 600; text-decoration: none; }
.info-list a:hover { text-decoration: underline; }
.big-tel {
  font-family: var(--font-display); font-size: var(--t-lg); font-weight: 600;
  color: var(--brand-deep); text-decoration: none; display: inline-block;
}
.big-tel:hover { color: var(--brand); text-decoration: underline; }

/* hours table */
.hours { width: 100%; border-collapse: collapse; font-size: var(--t-sm); }
.hours th { text-align: left; font-weight: 600; color: var(--ink); padding: .55rem 0; }
.hours td { text-align: right; color: var(--ink-body); padding: .55rem 0; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px solid var(--line); }

/* FAQ */
.faq-list { display: grid; gap: .7rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 0 clamp(1rem, 2.4vw, 1.4rem);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.05rem 2rem 1.05rem 0;
  font-weight: 650; color: var(--ink); position: relative; font-size: var(--t-sm);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 2px; top: 1.45rem;
  width: 8px; height: 8px; border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg); top: 1.7rem; }
.faq-item p { padding-bottom: 1.15rem; margin: 0; font-size: var(--t-sm); max-width: 62ch; }

/* ---------- form ---------- */
.form { display: grid; gap: 1.05rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--t-sm); font-weight: 650; color: var(--ink); }
.field .req { color: var(--sand); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: var(--t-sm); color: var(--ink);
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: .8rem .95rem; transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--sage); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(44,107,99,.14);
}
.field__hint { font-size: var(--t-xs); color: var(--ink-soft); }
.hp {
  position: absolute !important; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; opacity: 0; pointer-events: none;
}
.form .cf-turnstile { min-height: 65px; }
.form-note { font-size: var(--t-xs); color: var(--ink-soft); margin: 0; }
.form-status { border-radius: var(--r-sm); padding: .95rem 1.1rem; font-size: var(--t-sm); margin: 0; }
.form-status[hidden] { display: none; }
.form-status--ok { background: var(--sage-tint); color: var(--brand-dark); border: 1px solid var(--sage); }
.form-status--err { background: #fdf1ea; color: #7c3a12; border: 1px solid #edc7ab; }
.form .btn[aria-busy="true"] { opacity: .65; pointer-events: none; }

.map-link {
  display: flex; align-items: center; gap: .8rem; text-decoration: none;
  background: var(--sage-tint); border: 1px solid var(--sage); border-radius: var(--r-sm);
  padding: .9rem 1.1rem; font-size: var(--t-sm); font-weight: 650; color: var(--brand-deep);
}
.map-link:hover { background: #dcebe8; color: var(--brand-dark); }
.map-link svg { width: 18px; height: 18px; flex: none; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--brand-dark); color: rgba(255,255,255,.76);
  padding-block: clamp(2.4rem, 5vw, 3.4rem) 1.6rem; font-size: var(--t-sm);
}
.site-footer h2, .site-footer h3 {
  color: #fff; font-family: var(--font-body); font-size: var(--t-xs);
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.3fr .8fr .9fr; gap: 2.5rem; } }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--sage); text-decoration: underline; }
.footer-brand__name { font-family: var(--font-display); font-size: 1.15rem; color: #fff; margin-bottom: .25rem; }
.footer-brand__sub { font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--sage); font-weight: 600; }
.footer-brand p { margin-top: .9rem; max-width: 34ch; line-height: 1.6; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .55rem; }
.footer-tel { font-family: var(--font-display); font-size: 1.28rem; color: #fff !important; text-decoration: none; }
.footer-bottom {
  margin-top: clamp(2rem, 4vw, 2.8rem); padding-top: 1.3rem;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: var(--t-xs); color: rgba(255,255,255,.6);
}
.footer-bottom p { margin: 0; }
[data-ss-credit] a { color: rgba(255,255,255,.78); text-decoration: underline; }
[data-ss-credit] a:hover { color: #fff; }

/* ---------- misc ---------- */
.disclaimer { font-size: var(--t-xs); color: var(--ink-soft); max-width: var(--measure); }
[data-ss-empty] { color: var(--ink-soft); font-style: italic; }
[hidden] { display: none !important; }
