/* =====================================================================
   bodySpan Studio — redesign stylesheet
   Ethos: CALM. Original site palette + original typography.
   Single stylesheet, no framework. Mobile-first.
   ===================================================================== */

/* ---- Design tokens (v2 — "Cool/Blue Hues" palette) ----
   Old v1 token NAMES are kept as aliases (remapped to cool values) so existing
   rules keep working; new semantic tokens (--accent/--plum/--divider) drive v2. */
:root {
  /* cool neutrals (flat — no texture) */
  --bg:          #f6f7f5;   /* page background */
  --bg-soft:     #e9ebf0;   /* secondary panels / tinted sections */
  --ink:         #2e2e2e;   /* body text */
  --ink-soft:    #5f6368;   /* secondary text */
  --divider:     #e1e3e8;   /* hairlines / borders */
  --white:       #ffffff;   /* cards */

  /* cool accents */
  --accent:      #7e8a9a;   /* primary accent (blue-grey) — CTAs / brand */
  --accent-deep: #6c7a89;   /* slate — CTA hover / secondary */
  --plum:        #5e5368;   /* deep plum — headings, dark footer */
  --plum-deep:   #463d50;   /* plum hover */
  --lilac:       #a8a0b3;   /* soft accent / tints */

  /* v1 aliases remapped to the cool palette (so legacy rules restyle automatically) */
  --sand:        var(--bg);
  --sand-soft:   var(--bg-soft);
  --cream:       var(--white);   /* cards are white now */
  --teal:        var(--plum);    /* headings / brand */
  --teal-deep:   var(--plum-deep);
  --indigo:      var(--plum);    /* secondary headings */
  --slate:       var(--accent-deep);
  --mint:        var(--divider); /* hairline rules */
  --pale-blue:   var(--bg-soft); /* soft fills */
  --sky:         var(--lilac);   /* light accent */
  --lavender:    var(--divider); /* borders */
  --brown:       var(--accent-deep); /* links, nav/footer */
  --brown-dark:  var(--plum-deep);
  --tan:         var(--lilac);

  /* pistachio-sage accent (v2.1) */
  --sage-soft:   #7fc4a6;   /* mint rule — hairlines / borders, hero tagline */
  --sage-tint:   #dbefe6;   /* pale mint — chips / tinted panels */
  --sage-ink:    #1f6049;   /* deep mint text on pale tint / ghost buttons */
  --btn-mint:      #9ad6bd; /* solid CTA fill — light mint (black text) */
  --btn-mint-deep: #83c8ab; /* solid CTA hover */

  /* type — serif-forward (DM Serif Display headings + Radley body) */
  --font-head: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body: "Radley", Georgia, "Times New Roman", serif;
  --font-logo: "DM Serif Display", Georgia, serif;

  /* rhythm */
  --maxw: 1080px;
  --maxw-text: 760px;
  --gap: clamp(1rem, 2vw, 1.6rem);
  --section-y: clamp(1.75rem, 3.6vw, 3rem);
  --radius: 14px;
  --shadow: 0 6px 28px rgba(35,35,35,.08);
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05rem, 18px);
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brown); text-decoration: underline; text-underline-offset: 2px; }
a:hover, a:focus { color: var(--brown-dark); text-decoration: none; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }

/* ---- Headings (Century Gothic, italic, light, teal — like existing) ---- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 400;
  font-style: normal;
  color: var(--plum);
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); text-align: center; }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--indigo); }
.section-title { text-align: center; }
.section-title::after, .page-head h1::after {
  content: ""; display: block; width: 54px; height: 2px;
  background: var(--sage-soft); margin: .55rem auto 0;
}
p { margin: 0 0 1.1em; }

/* ---- Layout helpers ---- */
.container { width: min(92%, var(--maxw)); margin-inline: auto; }
.narrow    { width: min(92%, var(--maxw-text)); margin-inline: auto; }
.section   { padding-block: var(--section-y); }
/* Homepage: tighter vertical rhythm between the stacked panels */
.home .section { padding-block: clamp(1.6rem, 3.2vw, 2.75rem); }
.center    { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.eyebrow {
  font-family: var(--font-head); font-style: italic; color: var(--sage-ink);
  letter-spacing: .04em; font-size: .95rem; margin: 0 0 .4rem;
}
.lead { font-size: 1.15em; color: var(--ink-soft); }
/* Trademark type rule: GYROTONIC® / GYROKINESIS® / GYROTONIC EXPANSION SYSTEM® are ALWAYS Times New Roman */
.tm { font-family: "Times New Roman", Times, serif; }

/* ---- Skip link ---- */
.skip {
  position: absolute; left: -999px; top: 0; background: var(--teal); color: #fff;
  padding: .6rem 1rem; z-index: 200; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---- Buttons (calm, marketing-forward CTA) ---- */
.btn {
  display: inline-block; font-family: var(--font-body); font-style: normal;
  font-weight: 400; font-size: 1.05rem; line-height: 1;
  padding: .95em 1.8em; border-radius: 999px; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; transition: .2s ease;
}
.btn-primary { background: var(--btn-mint); color: #111; }
.btn-primary:hover, .btn-primary:focus { background: var(--btn-mint-deep); color: #111; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--accent-deep); }
.btn-ghost:hover, .btn-ghost:focus { background: var(--accent-deep); color: #fff; }
.btn-brown { background: var(--brown); color: #fff; }
.btn-brown:hover, .btn-brown:focus { background: var(--brown-dark); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* =====================================================================
   Header / navigation
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,247,245,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--lavender);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .6rem;
}
.logo { display: inline-flex; align-items: center; line-height: 0; text-decoration: none; }
.logo img { height: 44px; width: auto; display: block; }
@media (max-width: 480px) { .logo img { height: 38px; } }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 40px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { height: 2px; background: var(--brown); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu { list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  font-family: var(--font-head); font-style: italic; font-size: 1rem;
  color: var(--ink); text-decoration: none; padding: .4rem .2rem; display: block;
}
.nav-menu a:hover, .nav-menu a:focus, .nav-menu a.active { color: var(--teal); }
.nav-menu .nav-cta a { color: var(--brown); font-weight: bold; }

@media (max-width: 860px) {
  .nav-menu {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--sand); border-bottom: 1px solid var(--lavender);
    display: grid; gap: .2rem; padding: .6rem 4%;
    transform: translateY(-130%); transition: transform .28s ease; box-shadow: var(--shadow);
  }
  .nav[data-open="true"] .nav-menu { transform: translateY(0); }
  .nav-menu a { padding: .7rem .2rem; border-bottom: 1px solid rgba(202,206,228,.5); }
}
@media (min-width: 861px) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex; gap: clamp(.8rem, 1.8vw, 1.6rem); align-items: center; }
}

/* =====================================================================
   Hero (homepage — full-bleed long-scroll)
   ===================================================================== */
.hero-photo { width: 100%; position: relative; }
.hero-photo > img { width: 100%; object-fit: cover; }
.hero-tag {
  position: absolute; top: clamp(.4rem, 1.8vw, 1.1rem); left: clamp(1rem, 3vw, 2.4rem);
  transform: translate(50px, 30px);
  font-family: var(--font-head); font-style: italic; color: var(--sage-soft);
  font-size: clamp(1.65rem, 4.8vw, 3.15rem); line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,.5); pointer-events: none;
}
.hero-copy { padding-block: clamp(1.5rem, 4vw, 2.6rem) 0; }
.hero-copy h1 { margin-bottom: .3em; }
.hero-sub { text-align: center; font-size: 1.2em; color: var(--ink-soft); max-width: 50ch; margin-inline: auto; }
.hero-cta { text-align: center; margin-top: 1.6rem; }

/* Background-photo hero with copy over the negative space (Sessions & Classes) */
.bg-hero {
  position: relative;
  background: url('/im/deb-sessions-hero.jpg') right center/cover no-repeat;
  min-height: clamp(360px, 46vw, 560px);
  display: flex; align-items: center;
}
.bg-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(246,247,245,.94) 0%, rgba(246,247,245,.88) 34%, rgba(246,247,245,0) 66%);
}
.bg-hero > .container { position: relative; }
.bg-hero-copy { max-width: 44ch; }
.bg-hero-copy h1 { text-align: left; }
.bg-hero-copy .lead { margin-inline: 0; }
@media (max-width: 640px) {
  .bg-hero::before {
    background: linear-gradient(90deg,
      rgba(246,247,245,.96) 0%, rgba(246,247,245,.9) 60%, rgba(246,247,245,.7) 100%);
  }
  .bg-hero-copy { max-width: none; }
}

/* full-bleed image band */
.band { width: 100%; margin-block: var(--gap); }
.band img { width: 100%; max-height: 360px; object-fit: cover; }

/* prose section with soft tint */
.prose-block { background: rgba(168,160,179,.16); }

/* ---- Testimonial quotes (homepage "What Clients Notice") ---- */
.quote-grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; margin-top: 1.5rem; }
@media (min-width: 760px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--white); border: .5px solid var(--divider);
  border-radius: var(--radius); padding: 1.4rem 1.5rem;
}
.quote p { font-style: italic; color: var(--ink); margin: 0 0 .8rem; }
.quote cite { font-style: normal; color: var(--accent-deep); }

/* ---- Centered feature list (no bullets, thin dividers) ---- */
.feature-list { list-style: disc; padding: 0 0 0 1.4rem; margin: 1.1rem auto; max-width: 560px; text-align: left; }
.feature-list li { padding: .12rem 0; color: var(--ink-soft); }
.prose-block .narrow { text-align: center; }

/* =====================================================================
   Cards: "How your body may feel" vs "Benefits"  (mockup motif)
   ===================================================================== */
.compare {
  display: grid; gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .compare { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--bg-soft); /* cool tinted panel (v2) */
  border: 1px solid var(--brown);
  border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem);
}
.card h3 {
  text-align: center; background: var(--white); color: var(--brown);
  border: 1px solid var(--brown); border-radius: 999px;
  padding: .5rem 1rem; margin: -2.4rem auto 1.4rem; width: fit-content;
  font-style: italic;
}
.card ul { margin: 0; padding-left: 1.2rem; }
.card li { margin-bottom: .9rem; }

/* closing pill banner */
.pill-banner {
  border: 1px solid var(--brown); border-radius: 999px; background: var(--white);
  text-align: center; padding: .9rem 1.4rem; max-width: 700px; margin: 2rem auto 0;
  font-family: var(--font-head); font-style: italic; color: var(--slate);
}

/* =====================================================================
   "Ways to participate" — calm grid (NOT a busy feed)
   ===================================================================== */
.ways { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 680px) { .ways { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .ways { grid-template-columns: repeat(4, 1fr); } }
/* 3-up variant: centered row of three cards (e.g. session options) */
.ways-3 { max-width: 820px; margin-inline: auto; }
@media (min-width: 720px) { .ways-3 { grid-template-columns: repeat(3, 1fr); } }
.way {
  background: var(--white); border: 1px solid var(--lavender);
  border-radius: var(--radius); padding: 1.4rem; text-align: center;
}
.way h3 { color: var(--teal); margin-bottom: .3em; }
.way p { font-size: .95em; color: var(--ink-soft); margin-bottom: .8em; }
.way .way-link { font-family: var(--font-head); font-style: italic; }

/* upcoming list — quiet rows */
.upcoming { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.upcoming li {
  display: flex; flex-wrap: wrap; gap: .3rem 1rem; align-items: baseline;
  padding: 1rem 0; border-bottom: 1px solid var(--lavender);
}
.upcoming .when {
  font-family: var(--font-body); background: var(--sage-tint); color: var(--sage-ink);
  border-radius: 999px; padding: .2em .7em; font-size: .85rem; text-align: center;
  min-width: 7ch; white-space: nowrap;
}
.upcoming .what { font-weight: bold; color: var(--ink); }
.upcoming .detail { color: var(--ink-soft); font-size: .95em; flex-basis: 100%; }

/* =====================================================================
   Newsletter feature block (prominent but calm)
   ===================================================================== */
.newsletter {
  background: var(--pale-blue); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem); text-align: center;
  border: 1px solid var(--lavender);
}
.newsletter h2 { color: var(--indigo); }
.news-form {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  max-width: 480px; margin: 1.2rem auto 0;
}
.news-form input[type="email"],
.news-form input[type="text"] {
  flex: 1 1 45%; padding: .8em 1em; border: 1px solid var(--slate);
  border-radius: 999px; font-family: var(--font-body); font-size: 1rem; min-width: 0;
}
.news-form input[type="email"] { flex: 1 1 72%; }                       /* ~3/4 of the line */
.news-form input.news-human { flex: 0 1 22%; text-align: center; min-width: 0; }  /* < 1/4 */
.news-note { font-size: .85em; color: var(--ink-soft); margin-top: .8rem; }

/* form submit feedback (inline AJAX result) */
.form-status { margin-top: .9rem; font-size: .92rem; }
.form-status.form-ok  { color: var(--teal);  font-weight: bold; }
.form-status.form-err { color: #9e3a2f; font-weight: bold; }
.news-form .form-status { flex-basis: 100%; text-align: center; margin-top: .4rem; }

/* Brevo (Sendinblue) embedded signup form — fluid width, fixed height.
   It's cross-origin (sibforms.com), so JS can't auto-size it; instead the
   Brevo form reflows to the iframe width (stays full-size/legible on mobile)
   and we give it a fixed height tall enough for the whole form. */
.sib-embed { max-width: 480px; margin: 1.4rem auto 0; }
.sib-embed iframe { display: block; width: 100%; height: 800px; border: 0; background: transparent; overflow: hidden; }

/* =====================================================================
   Pricing tables
   ===================================================================== */
.price-grid { display: grid; gap: var(--gap); grid-template-columns: 1fr; }
@media (min-width: 720px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--white); border: 1px solid var(--lavender);
  border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow);
}
.price-card h3 { text-align: center; color: var(--teal); }
.price-card .sub { text-align: center; color: var(--ink-soft); font-size: .9em; margin-top: -.4rem; }
.price-card table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.price-card td { padding: .5rem 0; border-bottom: 1px solid var(--lavender); }
.price-card td:last-child { text-align: right; font-weight: bold; color: var(--brown); white-space: nowrap; }
.price-note { text-align: center; color: var(--ink-soft); margin-top: 1.5rem; font-style: italic; }

/* Sessions & Classes — two practices side by side, each with rate cards + schedule */
.practices { display: grid; gap: var(--gap); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 760px) { .practices { grid-template-columns: 1fr 1fr; } }
.sub-label { font-family: var(--font-head); color: var(--sage-ink); font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase; text-align: center; margin: 1.5rem 0 .7rem; }
.rate-card { background: var(--white); border: 1px solid var(--divider); border-radius: var(--radius);
  padding: .9rem 1.1rem; margin: 0 0 .8rem; }
.rate-card h4 { font-family: var(--font-head); font-weight: 400; color: var(--plum);
  text-align: center; font-size: 1.15rem; margin: 0; }
.rate-card .sub { text-align: center; color: var(--ink-soft); font-size: .85rem; margin: .15rem 0 0; }
.rate-card table { width: 100%; border-collapse: collapse; margin-top: .55rem; font-size: .95rem; }
.rate-card td { padding: .35rem 0; border-bottom: 1px solid var(--divider); }
.rate-card tr:last-child td { border-bottom: 0; }
.rate-card td:last-child { text-align: right; font-weight: bold; color: var(--accent-deep); white-space: nowrap; }
.sched { list-style: none; padding: 0; margin: .4rem 0 0; }
.sched li { display: grid; grid-template-columns: 2.6rem 1fr auto; gap: .5rem; align-items: baseline;
  padding: .55rem 0; border-bottom: 1px solid var(--divider); }
.sched li:last-child { border-bottom: 0; }
.sched .d { font-family: var(--font-head); color: var(--plum); }
.sched .t { color: var(--ink-soft); font-size: .85rem; white-space: nowrap; text-align: right; }
.sched .note { display: block; font-size: .78rem; color: var(--ink-soft); margin-top: .1rem; }

/* =====================================================================
   Testimonials
   ===================================================================== */
.quote-grid { columns: 1; column-gap: var(--gap); }
@media (min-width: 640px) { .quote-grid { columns: 2; } }
@media (min-width: 1000px){ .quote-grid { columns: 3; } }
.quote {
  break-inside: avoid; background: var(--white); border: 1px solid var(--lavender);
  border-radius: var(--radius); padding: 1.3rem; margin-bottom: var(--gap);
}
.quote p { font-size: .98em; }
.quote cite {
  display: block; font-style: italic; color: var(--teal);
  font-family: var(--font-head); margin-top: .6rem;
}

/* =====================================================================
   Generic content pages
   ===================================================================== */
.page-head { text-align: center; padding-block: clamp(2rem, 5vw, 3.5rem) 1rem; }
.page-head .eyebrow { text-align: center; }
.feature-row { display: grid; gap: var(--gap); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 760px) { .feature-row { grid-template-columns: 1fr 1fr; } .feature-row.reverse > :first-child { order: 2; } }
.feature-row img { border-radius: var(--radius); box-shadow: var(--shadow); }
.media-logos { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; margin-top: 1.5rem; }
.media-logos img { max-height: 70px; width: auto; }

/* equal-height photo row (e.g. About studio gallery) */
.photo-pair { display: flex; flex-wrap: wrap; gap: var(--gap); justify-content: center; }
.photo-pair img {
  height: clamp(220px, 30vw, 330px); width: auto; max-width: 100%;
  object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow);
}
@media (max-width: 560px) { .photo-pair img { height: auto; width: 100%; } }

/* portrait image — centered focal image in the About intro */
.portrait-feature {
  display: block; width: 100%; max-width: 440px; margin-inline: auto;
  border-radius: var(--radius); box-shadow: var(--shadow);
}

/* inline instructor headshots — text wraps around them */
.headshot { width: 160px; border-radius: var(--radius); box-shadow: var(--shadow); }
.headshot.left  { float: left;  margin: .2rem 1.4rem .4rem 0; }
.headshot.right { float: right; margin: .2rem 0 .4rem 1.4rem; }
@media (max-width: 520px) {
  .headshot.left, .headshot.right { float: none; display: block; margin: .4rem auto 1rem; }
}

/* slow crossfade carousel */
.carousel {
  position: relative; max-width: 600px; margin-inline: auto; aspect-ratio: 3 / 2;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--cream);
}
.carousel .cslide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.5s ease;
}
.carousel .cslide.is-active { opacity: 1; }
.cdots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; gap: 8px; justify-content: center; }
.cdots button {
  width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.55); transition: background .2s;
}
.cdots button[aria-current="true"] { background: #fff; }
@media (prefers-reduced-motion: reduce) { .carousel .cslide { transition: none; } }

/* embedded map (contact page) */
.map-embed {
  margin-top: 1rem; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--lavender);
}
.map-embed iframe { display: block; width: 100%; height: 400px; border: 0; }

/* embedded newsletter (iframe of /newsletters/latest.shtml) */
/* Newsletter embed: a fixed-600px email scaled to fit the container width.
   .news-frame is the responsive box; .news-embed is the iframe at its native
   600px, scaled down via JS (see main.js data-scaleframe). */
.news-frame {
  position: relative; width: 100%; max-width: 620px; min-height: 320px; margin-inline: auto;
  overflow: hidden; border: 1px solid var(--lavender);
  border-radius: var(--radius); box-shadow: var(--shadow); background: #fff;
}
/* absolutely positioned so the scaled-down iframe doesn't reserve its full
   unscaled height in normal flow (avoids an empty gap below). The wrapper's
   JS-set height (= content height × scale) is the only space it occupies. */
.news-embed { position: absolute; top: 0; left: 0; width: 620px; border: 0; transform-origin: top left; }

/* small CTA strip reused on every page (marketing hook) */
.cta-strip {
  background: rgba(0,104,146,.08); border-block: 1px solid var(--mint);
  text-align: center; padding-block: clamp(2rem, 5vw, 3.2rem);
}
.cta-strip h2 { color: var(--teal); }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
  background: var(--plum); color: #e7e3ee; margin-top: var(--section-y);
  font-size: .92rem;
}
.site-footer a { color: var(--sky); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: var(--gap); grid-template-columns: 1fr; padding-block: 2.5rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.site-footer h4 { font-family: var(--font-head); font-style: italic; color: #fff; margin: 0 0 .6rem; font-weight: 300; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .35rem; }
.footer-social a { display: inline-block; margin-right: .6rem; }
.footer-social img { width: 28px; height: 28px; display: inline-block; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.18); padding-block: 1.2rem;
  font-size: .78rem; color: #c6c0d0; text-align: center; line-height: 1.6;
}

/* ---- scroll-reveal (progressive enhancement) ----
   Content is visible by default. Only when JS is active (html.js) do we
   hide-then-reveal, so no-JS visitors always see everything. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
