/* =========================================================
   Saelira — site styles
   A single stylesheet, no build step, no framework.
   ========================================================= */

:root {
  /* Ink & depth — warm-shadowed, never cold */
  --ink:        #12312f;
  --ink-soft:   #2f5551;
  --ink-mute:   #62807c;

  /* Lagoon */
  --deep:       #06333a;
  --deep-2:     #0c5158;
  --sea:        #0f7c7c;
  --sea-light:  #2fb0a6;
  --aqua:       #7ed8cd;
  --foam:       #d5f1ec;

  /* Pearl, sand & sun */
  --pearl:      #fffcf6;
  --pearl-2:    #f8f0e3;
  --sand:       #ecdfc9;
  --gold:       #c1934c;
  --gold-light: #e5c58c;
  --coral:      #e07f66;

  --line:       #ebdfcd;
  --line-dark:  rgba(255, 255, 255, .15);

  --serif: "Cormorant Garamond", ui-serif, "Iowan Old Style", "Palatino Linotype",
           Palatino, "Book Antiqua", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
           "Helvetica Neue", Arial, sans-serif;

  --wrap: 68rem;
  --wrap-narrow: 46rem;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(14, 31, 43, .06), 0 4px 14px rgba(14, 31, 43, .05);
  --shadow-md: 0 2px 6px rgba(14, 31, 43, .07), 0 18px 44px rgba(14, 31, 43, .09);

  --step: clamp(3rem, 7vw, 6rem);
}

/* ---------------------------------------------------------
   Base
   --------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--sea); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--deep-2); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.005em;
  color: var(--deep);
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.3vw, 1.6rem); }
h4 { font-size: 1.14rem; font-family: var(--sans); font-weight: 600; letter-spacing: .01em; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--deep); }

blockquote {
  margin: 2.2rem 0;
  padding: .2rem 0 .2rem 1.6rem;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-style: italic;
}

hr {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: var(--step) 0;
}

::selection { background: var(--gold-light); color: var(--deep); }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.5rem; }
.wrap-narrow { max-width: var(--wrap-narrow); }

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

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--deep); color: #fff; padding: .7rem 1.1rem;
  border-radius: var(--r-sm); transition: top .18s ease;
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--sea);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------------------------------------------------------
   Small shared pieces
   --------------------------------------------------------- */

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.eyebrow--light { color: var(--gold-light); }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  line-height: 1.55;
  color: var(--ink-soft);
}

.ipa {
  font-family: var(--sans);
  font-variant-ligatures: none;
  white-space: nowrap;
}

.said {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .04em;
}
.said .stress { color: var(--gold); }

.rule {
  width: 3.5rem; height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.8rem;
}
.rule--center { margin-inline: auto; }

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .92rem; font-weight: 600;
  letter-spacing: .02em;
  padding: .82rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s ease, background-color .16s ease,
              border-color .16s ease, color .16s ease, box-shadow .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold); color: #14202a; }
.btn--primary:hover { background: var(--gold-light); color: #14202a; }

.btn--ghost { border-color: rgba(255,255,255,.36); color: #fff; background: transparent; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.btn--outline { border-color: var(--sand); color: var(--deep); background: #fff; }
.btn--outline:hover { border-color: var(--gold); background: #fff; }

/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 243, .88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 18px rgba(14,31,43,.05);
}

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.4rem;
}

.brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: .1em;
  color: var(--deep);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: .6rem;
}
.brand:hover { color: var(--sea); }
.brand svg { width: 1.15rem; height: 1.15rem; flex: none; }

.nav { display: flex; align-items: center; gap: 1.55rem; }
.nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: .01em;
  padding: .3rem 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}
.nav a:hover { color: var(--deep); border-bottom-color: var(--gold); }
.nav a[aria-current="page"] { color: var(--deep); border-bottom-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: .5rem .7rem; cursor: pointer; color: var(--deep);
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--pearl);
    border-bottom: 1px solid var(--line);
    padding: .5rem 1.5rem 1.2rem;
    box-shadow: var(--shadow-sm);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .75rem 0; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */

.hero {
  position: relative;
  background: linear-gradient(166deg, #05303a 0%, #0b5a5e 46%, #158a84 78%, #2fb0a6 100%);
  color: #effaf8;
  overflow: hidden;
  isolation: isolate;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(58rem 30rem at 80% -12%, rgba(229,197,140,.26), transparent 62%),
    radial-gradient(44rem 28rem at 6% 104%, rgba(126,216,205,.34), transparent 66%),
    radial-gradient(38rem 26rem at 50% 118%, rgba(224,127,102,.16), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  padding-block: clamp(4.5rem, 11vw, 8.5rem) clamp(6rem, 12vw, 9rem);
  text-align: center;
  max-width: 52rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  letter-spacing: .045em;
  margin: 0 0 1.1rem;
  font-weight: 400;
}

.hero__say {
  display: inline-flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: .55rem 1.1rem;
  font-size: 1.02rem;
  color: var(--foam);
  margin-bottom: 1.9rem;
}
.hero__say .ipa { color: rgba(238,246,246,.66); }

.hero__meaning {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-style: italic;
  color: var(--gold-light);
  margin: 0 0 1.4rem;
  line-height: 1.35;
}

.hero__blurb {
  font-size: 1.08rem;
  color: rgba(238,246,246,.84);
  max-width: 38rem;
  margin-inline: auto;
  margin-bottom: 2.4rem;
}

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

.hero__wave {
  position: absolute; bottom: -1px; left: 0; width: 100%;
  height: clamp(48px, 7vw, 96px);
  display: block; color: var(--pearl);
}

/* --- Photographic hero ------------------------------- */

.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Stronger scrim when a photo sits behind the type, so the
   white name keeps its contrast ratio whatever the water does. */
.hero.hero--photo::after {
  background:
    linear-gradient(168deg, rgba(3,34,42,.90) 0%, rgba(6,64,70,.80) 52%, rgba(12,100,98,.74) 100%),
    radial-gradient(52rem 26rem at 78% -12%, rgba(229,197,140,.16), transparent 62%);
}

.hero--photo h1,
.hero--photo .hero__say,
.hero--photo .hero__meaning,
.hero--photo .hero__blurb,
.hero--photo .eyebrow {
  text-shadow: 0 1px 14px rgba(2, 26, 32, .5);
}

/* --- Photographic page header ------------------------ */

.page-head--photo { isolation: isolate; }
.page-head__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
/* Doubled class so this beats the later `.page-head::after` rule
   regardless of source order — these photos are pale sand and the
   white type needs a real scrim, not a tint. */
.page-head.page-head--photo::after {
  background:
    linear-gradient(162deg, rgba(3,34,42,.93) 0%, rgba(5,58,64,.88) 55%, rgba(9,86,85,.82) 100%),
    radial-gradient(40rem 20rem at 88% -20%, rgba(229,197,140,.14), transparent 64%);
}

/* Belt and braces: a soft shadow keeps the type legible even where a
   highlight in the photograph pushes through the scrim. */
.page-head--photo h1,
.page-head--photo .lede,
.page-head--photo .crumbs {
  text-shadow: 0 1px 12px rgba(2, 26, 32, .55);
}

/* --- Figures ----------------------------------------- */

.figure { margin: 2.8rem 0; }
.figure img {
  width: 100%;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  background: var(--pearl-2);
}
.figure figcaption {
  margin-top: .85rem;
  font-size: .87rem;
  line-height: 1.6;
  color: var(--ink-mute);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
}

/* Let a figure breathe past the narrow prose column on wide screens */
@media (min-width: 62rem) {
  .figure--wide { width: 116%; margin-inline: -8%; }
}

.section--deep .figure figcaption { color: rgba(233,242,242,.72); }

/* Full-bleed band image between sections */
.band {
  position: relative;
  height: clamp(180px, 26vw, 340px);
  overflow: hidden;
}
.band img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Speak button */
.say-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  border-radius: 999px;
  padding: .42rem .95rem .42rem .7rem;
  font: inherit; font-size: .84rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease;
}
.say-btn:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.4); }
.say-btn svg { width: 1rem; height: 1rem; }
.say-btn.is-speaking { border-color: var(--gold-light); }

.say-btn--dark {
  background: #fff; border-color: var(--sand); color: var(--deep);
}
.say-btn--dark:hover { background: var(--pearl-2); border-color: var(--gold); }

/* ---------------------------------------------------------
   Sections
   --------------------------------------------------------- */

.section { padding-block: var(--step); }
.section--tint { background: var(--pearl-2); }
.section--deep {
  background: linear-gradient(158deg, #05303a 0%, #0d5f62 60%, #16867f 100%);
  color: #e6f6f3;
}
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep a { color: var(--gold-light); }

.section__head { max-width: 42rem; margin-bottom: 3rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p { color: var(--ink-mute); margin-bottom: 0; }
.section--deep .section__head p { color: rgba(233,242,242,.78); }

/* Page header (interior pages) */
.page-head {
  background: linear-gradient(162deg, #05303a 0%, #0c5b60 62%, #14807b 100%);
  color: #effaf8;
  padding-block: clamp(3.2rem, 7vw, 5.2rem) clamp(3.6rem, 8vw, 5.6rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-head::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(46rem 22rem at 88% -20%, rgba(229,197,140,.22), transparent 64%);
  pointer-events: none;
}
.page-head h1 { color: #fff; margin-bottom: .7rem; }
.page-head .lede { color: rgba(238,246,246,.82); font-style: normal; }
.page-head .rule { background: var(--gold-light); }

/* Breadcrumbs */
.crumbs { font-size: .82rem; margin-bottom: 1.5rem; color: rgba(238,246,246,.6); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: .45rem; opacity: .5; }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: rgba(238,246,246,.78); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }

/* ---------------------------------------------------------
   Prose (article body)
   --------------------------------------------------------- */

.prose { max-width: var(--wrap-narrow); }
.prose > h2 { margin-top: 2.8rem; }
.prose > h3 { margin-top: 2.2rem; }
.prose > h2:first-child, .prose > h3:first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.3em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--gold); }

.prose .footnote { font-size: .9rem; color: var(--ink-mute); }

/* ---------------------------------------------------------
   Cards & grids
   --------------------------------------------------------- */

.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card h3 { margin-bottom: .55rem; }
.card p:last-child { margin-bottom: 0; }
.card__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

a.card { display: block; text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
a.card .more {
  display: inline-block; margin-top: 1rem;
  font-size: .85rem; font-weight: 600; color: var(--sea); letter-spacing: .02em;
}
a.card:hover .more { color: var(--gold); }

.section--deep .card {
  background: rgba(255,255,255,.05);
  border-color: var(--line-dark);
  box-shadow: none;
  color: #e9f2f2;
}
.section--deep a.card:hover { border-color: var(--gold-light); background: rgba(255,255,255,.08); }

/* Stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.stat { background: #fff; padding: 1.6rem 1.4rem; text-align: center; }
.stat__value {
  font-family: var(--serif); font-size: 2.4rem; line-height: 1.1;
  color: var(--deep); display: block;
}
.stat__label {
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: .45rem; display: block;
}
.section--deep .stats { background: var(--line-dark); border-color: var(--line-dark); }
.section--deep .stat { background: rgba(255,255,255,.04); }
.section--deep .stat__value { color: var(--gold-light); }
.section--deep .stat__label { color: rgba(233,242,242,.7); }

/* ---------------------------------------------------------
   Etymology diagram
   --------------------------------------------------------- */

.etym {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 1.1rem;
  margin: 2.4rem 0;
}
.etym__part {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.etym__glyph {
  font-family: var(--serif);
  font-size: 2.6rem; line-height: 1.1; color: var(--deep);
  display: block; margin-bottom: .35rem;
}
.etym__lang {
  font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: .6rem;
}
.etym__gloss { font-size: .95rem; color: var(--ink-mute); margin: 0; }
.etym__plus {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.8rem; color: var(--sand);
}
.etym__result {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  margin-top: .4rem;
}
.etym__result strong {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem); color: var(--deep);
  display: block; letter-spacing: .02em;
}
.etym__result span { font-family: var(--serif); font-style: italic; color: var(--sea); font-size: 1.25rem; }

@media (max-width: 620px) {
  .etym { grid-template-columns: 1fr; }
  .etym__plus { padding: .2rem 0; }
}

/* ---------------------------------------------------------
   Syllable / pronunciation blocks
   --------------------------------------------------------- */

.syllables {
  display: flex; flex-wrap: wrap; gap: .8rem; align-items: stretch;
  margin: 2rem 0;
}
.syl {
  flex: 1 1 8rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.4rem 1rem; text-align: center; box-shadow: var(--shadow-sm);
}
.syl--stress { border-color: var(--gold); background: linear-gradient(180deg, #fff, #fdf9f1); }
.syl__text {
  font-family: var(--serif); font-size: 2rem; color: var(--deep);
  display: block; line-height: 1.2;
}
.syl--stress .syl__text { color: var(--gold); font-weight: 600; }
.syl__hint { font-size: .82rem; color: var(--ink-mute); display: block; margin-top: .3rem; }
.syl__tag {
  font-size: .66rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--gold); display: block; margin-top: .6rem;
}

/* ---------------------------------------------------------
   Name lists / pairings
   --------------------------------------------------------- */

.namelist { list-style: none; margin: 0; padding: 0; }
.namelist li {
  display: flex; align-items: baseline; gap: .9rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}
.namelist li:last-child { border-bottom: 0; }
.namelist .n {
  font-family: var(--serif); font-size: 1.35rem; color: var(--deep);
  flex: none; min-width: 8.5rem;
}
.namelist .why { font-size: .95rem; color: var(--ink-mute); margin: 0; }

@media (max-width: 560px) {
  .namelist li { flex-direction: column; gap: .15rem; }
  .namelist .n { min-width: 0; }
}

.chips { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.6rem 0; padding: 0; list-style: none; }
.chips li {
  font-family: var(--serif); font-size: 1.15rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: .35rem 1.05rem; color: var(--deep);
}
.section--deep .chips li { background: rgba(255,255,255,.07); border-color: var(--line-dark); color: #eef6f6; }

/* ---------------------------------------------------------
   Table
   --------------------------------------------------------- */

.table-scroll { overflow-x: auto; margin: 2rem 0; -webkit-overflow-scrolling: touch; }
table {
  width: 100%; border-collapse: collapse; font-size: .95rem;
  min-width: 32rem;
}
th, td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th {
  font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute);
  border-bottom-color: var(--sand);
}
tbody tr:hover { background: var(--pearl-2); }
td .n, th .n { font-family: var(--serif); font-size: 1.15rem; color: var(--deep); }

/* ---------------------------------------------------------
   FAQ
   --------------------------------------------------------- */

.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.35rem 2.5rem 1.35rem 0;
  position: relative;
  font-family: var(--serif); font-size: 1.3rem; color: var(--deep);
  transition: color .16s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--sea); }
.faq summary::after {
  content: ""; position: absolute; right: .5rem; top: 50%;
  width: .6rem; height: .6rem;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq__body { padding: 0 2.5rem 1.5rem 0; color: var(--ink-soft); }
.faq .faq__body p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------
   Pull / callout
   --------------------------------------------------------- */

.callout {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.5rem 1.7rem;
  margin: 2.2rem 0;
  box-shadow: var(--shadow-sm);
}
/* Callout headings are h3 for a valid heading sequence, but keep the
   smaller sans styling that h4 had. */
.callout h3,
.callout h4 {
  font-family: var(--sans);
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.4;
  margin: 0 0 .4rem;
  color: var(--deep);
}
.prose .callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }
.callout--quiet { background: var(--pearl-2); box-shadow: none; }

/* ---------------------------------------------------------
   Next / prev page links
   --------------------------------------------------------- */

.explore {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  margin-top: 1rem;
}
.explore a {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.2rem 1.3rem;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.explore a:hover { border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.explore .t { font-family: var(--serif); font-size: 1.25rem; color: var(--deep); display: block; }
.explore .d { font-size: .88rem; color: var(--ink-mute); display: block; margin-top: .2rem; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */

.site-footer {
  background: var(--deep);
  color: rgba(233,242,242,.72);
  padding-block: 4rem 2.5rem;
  font-size: .92rem;
}
.site-footer a { color: rgba(233,242,242,.86); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; }
.site-footer h2, .site-footer h3 {
  font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem;
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.4fr repeat(auto-fit, minmax(10rem, 1fr));
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .6rem; }
.footer-brand .brand { color: #fff; font-size: 1.9rem; }
.footer-brand p { margin-top: .8rem; max-width: 24rem; color: rgba(233,242,242,.62); }
.footer-bottom {
  padding-top: 1.8rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between;
  font-size: .84rem; color: rgba(233,242,242,.5);
}

/* ---------------------------------------------------------
   Motion
   --------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(14px); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------
   Print
   --------------------------------------------------------- */

@media print {
  .site-header, .site-footer, .hero__cta, .say-btn, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero, .page-head, .section--deep { background: #fff !important; color: #000 !important; }
  .hero h1, .page-head h1, .section--deep h2 { color: #000 !important; }
  a { color: #000; text-decoration: underline; }
}
