/* =========================================================
   Storied Echoes Coaching — shared stylesheet
   Faithful recreation of the original site structure & sections
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400&family=Lora:ital,wght@0,400;0,500;1,400;1,500&family=Work+Sans:wght@300;400;500;600&display=swap');

:root{
  --cream:        #F7F2E9;
  --cream-2:      #EFE7D6;
  --ink:          #3A4A50;
  --ink-soft:     #5C6A70;
  --forest-dark:  #57695B;
  --forest-mid:   #46564A;
  --clay:         #B8752E;
  --clay-dark:    #9A5F24;
  --clay-darker:  #7F4C1C;
  --box-light:    #ADC2AB;
  --gold:         #C9A46B;
  --white-bold:   #FFFDF9;

  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-italic: 'Lora', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1120px;
  --radius: 2px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; font-size: 17px; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; letter-spacing: -0.01em; }
h2{ font-size: clamp(1.6rem, 3.2vw, 2.4rem); letter-spacing: -0.005em; }
h3{ font-family: var(--font-italic); font-size: clamp(1.15rem, 2vw, 1.5rem); font-style: italic; font-weight: 400; }
p{ margin: 0 0 1.1em; font-size: 0.96rem; }
h1 + h3, h2 + h3{ font-size: clamp(1.2rem, 2.1vw, 1.55rem); }
/* .hero-subhead: an h2 styled to look like the italic h3 "eyebrow" subhead,
   used directly under a hero h1 so the heading order doesn't skip a level
   (was a literal h3, which meant no h2 existed on the page at all). */
.hero-subhead{ font-family: var(--font-italic); font-style: italic; font-weight: 400; }
h1 + .hero-subhead{ font-size: clamp(1.2rem, 2.1vw, 1.55rem); }
.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 6vw;
}

a:focus-visible, button:focus-visible{
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation: none !important; transition: none !important; }
}
::selection{ background: var(--gold); color: var(--ink); }

/* ---------------- Header / Nav ---------------- */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,242,233,0.98);
  border-bottom: 1px solid rgba(43,33,21,0.08);
}
.nav-inner{
  display:flex; align-items:center;
  padding: 0.7rem 6vw;
  max-width: var(--max-width); margin: 0 auto;
}
.brand{ display:flex; align-items:center; gap:0.6rem; }
.brand img{ height: 60px; width:auto; }
.nav-links{ display:flex; gap: 1.5rem; list-style:none; margin:0 0 0 auto; padding:0; }
.nav-links a{
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  padding: 0.2rem 0;
  white-space: nowrap;
}
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:1px;
  background: var(--clay); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ transform: scaleX(1); }
.nav-toggle{ display:none; background:none; border:0; cursor:pointer; }

@media (max-width: 780px){
  .nav-links{
    position: fixed; top: 90px; right: 0; bottom: 0; left: 0; height: calc(100vh - 90px);
    background: var(--cream);
    flex-direction: column; padding: 2rem 6vw; gap: 1.5rem;
    transform: translateY(-110%); transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-toggle{ display:block; margin-left:auto; }
  .nav-links a{ font-size: 1.1rem; white-space: normal; }
}

/* ---------------- Sections & themes ---------------- */
.section{ padding: clamp(3.25rem, 7vw, 5.75rem) 0; }
.section-inner{ max-width: 980px; margin: 0 auto; padding: 0 clamp(1.5rem, 3vw, 2.5rem); }
.section-inner.wide{ max-width: 1080px; }

.theme-cream{ background: var(--cream); color: var(--ink); }
.theme-white{ background: var(--white-bold); color: var(--ink); }
.theme-dark{ background: var(--forest-dark); color: var(--cream); }
.theme-dark h1, .theme-dark h2, .theme-dark h3{ color: var(--white-bold); }
/* Gold text at this lightness only reaches ~2.5:1 against the sage-green
   dark theme — well under WCAG AA's 4.5:1 minimum for body-size text.
   Keep gold as the underline accent (decorative, no contrast requirement)
   but set the readable text itself to the same off-white used for dark-
   theme headings, which comfortably passes. */
.theme-dark a.link-underline{ color: var(--white-bold); text-decoration-color: var(--gold); }

.hero{
  position: relative;
  min-height: 90vh;
  display:flex; align-items:center;
  background-size: cover; background-position: left center;
  color: var(--ink);
}
.hero::before{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(247,242,233,0.78) 0%, rgba(247,242,233,0.45) 55%, rgba(247,242,233,0.08) 78%);
  pointer-events: none;
}
.hero .container{ position:relative; z-index:2; max-width: 720px; margin: 0; }
.hero .container.narrow{ max-width: 640px; }
.hero .container.centered{ margin: 0 auto; }
.hero .eyebrow{
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; opacity: 0.85; margin-bottom: 1.1rem;
}
.hero h1{ color: var(--ink); margin-bottom: 0.6rem; }
.hero h3, .hero .hero-subhead{ color: var(--ink); font-style: italic; font-family: var(--font-italic); margin-bottom: 1.2rem; font-weight: 400; }
.hero p{ color: var(--ink); margin-bottom: 0.5em; }
.hero.hero-custom-overlay p{ color: var(--white-bold); }
.hero.hero-custom-overlay h1, .hero.hero-custom-overlay p{ text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.4); }

/* .hero-dense: for hero sections with an unusually long content stack (e.g.
   Story Work's headline + subhead + 5 lines + two stacked buttons). That
   much content runs past the 90vh min-height at any screen size, so
   centering collapses into flush-top/flush-bottom text with no breathing
   room. Switch to a top-anchored, content-driven layout with real padding
   and looser paragraph spacing instead — applies at all widths, not just
   mobile, since the overflow isn't a mobile-only problem here. */
.hero-dense{
  min-height: auto;
  align-items: flex-start;
  padding: 3.25rem 0 2.75rem;
}
.hero-dense p{ margin-bottom: 0.9em; }
.hero-dense h1{ margin-bottom: 0.75em; }

/* On mobile, a full-bleed photo hero centered in 90vh leaves a large,
   inconsistent dead-space gap below short content before the next section
   starts (varies a lot with content length and phone height). Give the
   full photo heroes (Home, Story Groups) the same top-anchored, padded
   treatment as .hero-dense so the gap after the CTA is consistent across
   every page instead of swinging with viewport math. Simple text-only
   .page-hero headers (FAQ, Resources) are excluded — they're short and
   don't have this problem. */
@media (max-width: 780px){
  .hero:not(.page-hero){
    min-height: auto;
    align-items: flex-start;
    padding: 3.25rem 0 2.75rem;
  }
}

.page-hero{ min-height: 28vh; }
.page-hero.dark-hero{ background: var(--forest-dark); color: var(--white-bold); }
.page-hero.dark-hero::before{ display: none; }
.hero.hero-custom-overlay::before{ display: none; }
.hero-photo-layer{
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(1.3) saturate(1.08);
  z-index: 0;
}
.hero.hero-custom-overlay .hero-scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,49,41,0.12), rgba(38,49,41,0.3));
  z-index: 1;
}
.page-hero.dark-hero h1, .page-hero.dark-hero h2, .page-hero.dark-hero h3{ color: var(--white-bold); }

/* Full-bleed feature section — a photo section that fills the page like the hero,
   used where a photo should read as a moment, not a small inset thumbnail */
.feature{
  position: relative;
  min-height: 62vh;
  display:flex; align-items:center; justify-content:center;
  background-size: cover; background-position: center 92%;
  color: var(--ink);
  text-align: center;
}
@media (max-width: 780px){
  /* Zoom in and anchor to the bottom so only a sliver of leaves shows at the
     top of the section, keeping the rest clear/blurred for the heading and
     body copy that sit over it. */
  .feature{ background-size: 220% auto; background-position: center bottom; }
}
@media (max-width: 600px){
  /* Narrow phones need a bit more zoom to keep the same top-heavy crop,
     since the section's width-to-height ratio is more extreme. */
  .feature{ background-size: 340% auto; background-position: center bottom; }
}
.feature::before{
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(247,242,233,0.72) 0%, rgba(247,242,233,0.4) 45%, rgba(247,242,233,0.05) 75%);
  pointer-events: none;
}
.feature .container{ position:relative; z-index:1; max-width: 720px; }
.feature h2{ color: var(--ink); }
.feature p{ color: var(--ink); }

/* ---------------- Buttons / CTAs ---------------- */
.btn{
  display:inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 2.1rem;
  line-height: 1.3;
  border-radius: 0;
  font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none !important;
}
/* White text on the original --clay only reached 3.68:1 — under WCAG AA's
   4.5:1 minimum, on the site's most-repeated interactive element. Using
   --clay-dark as the resting state (5.1:1) fixes that; hover moves to a
   new, darker --clay-darker so the interaction still reads clearly. */
.btn-primary{ background: var(--clay-dark); color: var(--white-bold); box-shadow: 0 4px 14px -6px rgba(154,95,36,0.45); }
.btn-primary:hover{ background: var(--clay-darker); transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(154,95,36,0.55); }
.btn-outline{ border-color: currentColor; }
.btn-outline:hover{ background: rgba(255,255,255,0.12); }
.btn-row{ display:flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-row.center{ justify-content: center; }

/* When a row holds two (or more) CTA buttons together, make them match.
   Height: a shared min-height (sized to fit a two-line label) applies to any
   multi-button row, regardless of flex direction — safe either way. */
.btn-row:has(.btn + .btn) .btn{
  min-height: 4.4rem;
}
/* Width: standard side-by-side CTA pairs stack full-width on mobile (so both
   buttons match at 100%), then share the row equally once there's room.
   The one hero row that's deliberately left-anchored & stacked
   (flex-direction:column inline style) is excluded — it keeps its natural,
   unequal per-button width by design. */
.btn-row:has(.btn + .btn):not([style*="column"]){
  flex-direction: column;
}
.btn-row:has(.btn + .btn):not([style*="column"]) .btn{
  width: 100%;
}
@media (min-width: 780px){
  .btn-row:has(.btn + .btn):not([style*="column"]){
    flex-direction: row;
  }
  .btn-row:has(.btn + .btn):not([style*="column"]) .btn{
    width: auto;
    flex: 1 1 0%;
  }
  /* The Story Work hero's column is narrower than the rest of the site's
     wide sections, so forcing this pair side-by-side there squeezes each
     button down to 2-3 wrapped lines. Keep it stacked full-width instead —
     that's how it already looks on mobile, and it reads cleanly here too. */
  .hero.hero-dense .btn-row:has(.btn + .btn){
    flex-direction: column;
  }
  .hero.hero-dense .btn-row:has(.btn + .btn) .btn{
    width: 100%;
  }
}

.link-underline{
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--clay);
  font-weight: 600;
}

/* ---------------- Cards / lists ---------------- */
.card-grid{
  display:grid; gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}
.card{
  background: var(--white-bold);
  border: 1px solid rgba(43,33,21,0.08);
  padding: 1.9rem;
  border-radius: var(--radius);
}
.card h3{ font-style: normal; font-weight: 500; font-family: var(--font-display); margin-bottom: 0.6rem; }
.card ul{ margin: 0; padding-left: 1.1rem; }

.detail-list{ list-style:none; margin:1.5rem 0; padding:0; }
.detail-list li{
  display:flex; justify-content:space-between; gap:1rem;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(43,33,21,0.1);
}
.detail-list li span:first-child{ color: var(--ink-soft); }
.detail-list li span:last-child{ font-weight: 600; font-family: var(--font-display); }
.theme-dark .detail-list li{ border-bottom-color: rgba(255,255,255,0.18); }
.theme-dark .detail-list li span:first-child{ color: rgba(255,255,255,0.65); }
.theme-dark .detail-list li span:last-child{ color: var(--white-bold); }

.faq-item{ margin-bottom: 1.8rem; }
.faq-item h3{ font-style: normal; font-family: var(--font-display); font-weight: 600; margin-bottom: 0.4rem; }
.faq-item p{ max-width: 68ch; }

/* image with caption block used for portraits */
.portrait{
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(36,23,8,0.35);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.two-col{
  display:grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items:center;
}
.two-col.reverse{ grid-template-columns: 1.1fr 1fr; }
.two-col.reverse img{ order: 2; }
@media (max-width: 780px){
  .two-col{ grid-template-columns: 1fr; }
  .two-col.reverse img{ order: -1; }
}

/* ---------------- Centered text stacks — short lines kept separate, matching the original's pacing ---------------- */
.stack{ max-width: 900px; margin: 0 auto; text-align: center; }
.stack p{ margin: 0 0 0.9em; }
.stack.tight p{ margin: 0 0 0.5em; }

/* ---------------- Question boxes — a literal row of cards, not a text list ---------------- */
.question-boxes{
  display:grid; grid-template-columns: repeat(4, minmax(0, 220px)); gap: 1.25rem; justify-content: center;
  max-width: 940px; margin: 2.5rem auto;
}
@media (max-width: 900px){
  .question-boxes{ grid-template-columns: repeat(2, minmax(0, 220px)); }
}
@media (max-width: 480px){
  /* .question-boxes has no .section-inner wrapper (it's meant to run wider
     than body copy), so on a single mobile column it was rendering edge-to-
     edge as full-width stripes instead of contained cards. Add the same
     side gutter the rest of the page uses so each qbox reads as a box. */
  .question-boxes{ grid-template-columns: 1fr; padding: 0 6vw; }
}
.question-boxes .qbox{
  background: var(--box-light);
  color: var(--ink);
  padding: 1.5rem 1.75rem;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 10px 24px -12px rgba(0,0,0,0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.question-boxes .qbox:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -12px rgba(0,0,0,0.32);
}

/* ---------------- Split heading — heading alone in one column, text alone in the other ---------------- */
.split-heading{
  display:grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items:center;
}
.split-heading h2{ margin: 0; }
.split-heading.wide-text{ grid-template-columns: 0.85fr 1.4fr; }
.split-heading.wide-heading{ grid-template-columns: 1.3fr 1fr; }
@media (max-width: 780px){
  .split-heading, .split-heading.wide-text, .split-heading.wide-heading{ grid-template-columns: 1fr; gap: 1.25rem; }
}

.plain-photo{
  display:block; width:100%;
  box-shadow: 0 24px 48px -20px rgba(58,74,80,0.28);
  filter: saturate(0.96) sepia(0.04) contrast(1.02);
}

/* Custom bullet marker — a small clay dash instead of the default browser bullet */
.custom-list{ list-style: none; padding-left: 0; }
.custom-list li{
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.custom-list li::before{
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 12px; height: 2px;
  background: var(--clay);
}

/* Lede — a step up from body text for emphasis lines under a heading */
.lede{ font-size: 1.2rem; color: var(--ink); }

/* Pull-line — a large italic statement, the emotional peak of a section */
.pull-line{
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  margin-top: 2.5rem;
}

/* Uppercase heading modifier — some sections use all-caps headings */
.heading-caps{ text-transform: uppercase; letter-spacing: 0.02em; }

/* Two equal columns, each a self-contained block with its own heading, text, and CTA */
.two-col-equal{
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  margin-top: 2rem;
}
.two-col-equal .col{ display: flex; flex-direction: column; }
.two-col-equal .col .btn{ align-self: flex-start; margin-top: 1.75rem; }
@media (max-width: 780px){
  .two-col-equal{ grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Accordion */
.accordion-item{ border-bottom: 1px solid rgba(58,74,80,0.15); }
.accordion-item:first-child{ border-top: 1px solid rgba(58,74,80,0.15); }
.theme-dark .accordion-item, .theme-dark .accordion-item:first-child{ border-color: rgba(255,255,255,0.18); }
.accordion-q{
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 1.3rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-family: var(--font-display); font-size: 1.05rem; color: inherit;
}
.accordion-q .plus{ flex-shrink: 0; width: 18px; height: 18px; position: relative; }
.accordion-q .plus::before, .accordion-q .plus::after{
  content: ''; position: absolute; background: var(--clay);
  transition: transform 0.25s ease;
}
.accordion-q .plus::before{ left: 0; top: 8px; width: 18px; height: 2px; }
.accordion-q .plus::after{ left: 8px; top: 0; width: 2px; height: 18px; }
.accordion-item.open .accordion-q .plus::after{ transform: rotate(90deg); opacity: 0; }
.accordion-a{ max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-a-inner{ padding: 0 0 1.4rem; }
.accordion-item.open .accordion-a{ max-height: 400px; }
@media (prefers-reduced-motion: reduce){ .accordion-a{ transition: none; } }

/* Contact form card */
.form-card{
  background: var(--box-light);
  max-width: 620px;
  margin: 2.5rem auto 0;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}
.form-card h2{ font-size: 1.6rem; }
.form-card .sub{ font-family: var(--font-italic); font-style: italic; font-size: 1.2rem; margin-bottom: 1.5rem; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }
.form-field{ text-align: left; margin-bottom: 1.2rem; }
.form-field label{
  display: block; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.4rem;
}
.form-field label .req{ font-size: 0.75rem; opacity: 0.7; }
.form-field input, .form-field textarea, .form-field select{
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(58,74,80,0.35);
  background: var(--white-bold);
  color: var(--ink);
}
.form-field textarea{ min-height: 110px; resize: vertical; }
.form-field select{ appearance: auto; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  outline: 2px solid var(--clay); outline-offset: 1px;
}
.form-card .btn{ border: none; cursor: pointer; }
.honeypot-field{ position: absolute; left: -9999px; }

.choice-group{ display: flex; flex-wrap: wrap; gap: 0.6rem 1.4rem; margin-top: 0.3rem; }
.choice-option{
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.95rem; color: var(--ink); cursor: pointer;
}
.choice-option input{ width: auto; margin: 0; accent-color: var(--clay-dark); }

/* ---------------- Statement — an isolated, oversized line with no card, the emotional peak of a page ---------------- */
.statement{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 0;
}
.statement p{
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.35;
  color: inherit;
}

/* ---------------- Footer ---------------- */
.site-footer{
  background: var(--forest-dark); color: var(--cream-2);
  padding: 4rem 0 2rem;
  /* A quiet gold hairline so the footer reads as its own beat rather than
     running straight into whatever section (cream or dark) precedes it. */
  border-top: 1px solid rgba(201,164,107,0.35);
}
.footer-inner{
  max-width: var(--max-width); margin:0 auto; padding: 0 6vw;
  display:flex; flex-direction:column; gap: 1.5rem;
}
.footer-links{
  display:flex; flex-wrap:wrap; gap: 1.6rem; list-style:none; padding:0; margin:0;
}
/* Both were dimmed via opacity for visual hierarchy (0.85 / 0.65), which
   dropped them under WCAG AA's 4.5:1 minimum against the footer's forest-
   dark background (3.95:1 and 3.01:1). Raised just enough to clear it. */
.footer-links a{ font-size: 0.9rem; opacity: 0.96; }
.footer-links a:hover{ opacity: 1; text-decoration: underline; }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
  font-size: 0.82rem; opacity: 0.97; border-top: 1px solid rgba(247,242,233,0.12); padding-top: 1.5rem;
}
.footer-badge img{ height: 88px; }
@media (max-width: 480px){
  .footer-badge img{ height: 64px; }
}
.footer-note{
  font-size: 0.82rem;
  opacity: 0.97;
  text-align: center;
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto;
}

/* Plain content page (Terms of Service) */
.plain-page{ max-width: 760px; margin: 0 auto; padding: 140px 6vw 80px; }
.plain-page h1{ font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 0.3em; }
.plain-page h2{ font-size: 1.3rem; margin: 2rem 0 0.6em; }
.plain-page ul{ padding-left: 1.2rem; }

/* Utility */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.small-caps{ text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--clay-dark); font-weight: 600; }
