/* ============================================================
   cnt.css
   Cheroenhaka (Nottoway) Indian Tribe — section styles

   Structure:
   1.  Section tokens
   2.  Base / Body
   3.  Buttons
   4.  River divider (three-rivers motif)
   5.  Hero
   6.  Homepage — Quick facts strip
   7.  Homepage — Message from the Chief
   8.  Homepage — Upcoming Events
   9.  Homepage — Cattashowrock Town
   10. Homepage — About Us intro
   11. Homepage — Tribal Leadership
   12. Homepage — Closing CTA band
   13. Split-story (reserved, reusable two-tone panel component)
   14. Interior banner
   15. Breadcrumb
   16. Accordion
   17. Interior content — prose, headings
============================================================ */

/* ── 1. Section tokens ──────────────────────────────────────── */
:root {
  --transition: 0.3s ease;
  --accordion-speed: 0.28s;
  --header-height: 68px;
}

/* ── 2. Base ────────────────────────────────────────────────── */
body.cnt {
  font-family: var(--font-bodyAlt);
  color: var(--color-text);
  background: var(--color-page-bg);
}
body.cnt.-interior {
  background-color: var(--page-bg);
}

.main {
  min-height: 60vh;
  background: var(--color-page-bg);
}

p,
li {
  color: var(--color-text-soft);
}

a {
  color: var(--color-brand-primary);
}

a:hover {
  color: var(--color-brand-primary-hover);
}

:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

/* ── 3. Buttons ─────────────────────────────────────────────── */
.btn {
	display: inline-block;
	padding: 0.55rem 1.25rem;
	border-radius: 3px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.03em;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--transition) .2s, color var(--transition) .2s, transform var(--transition) .2s, box-shadow var(--transition) .2s;
	border: 1px solid transparent;
}
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: rgba(23, 15, 11, 0.16) 0px 3px 6px, rgba(23, 15, 11, 0.23) 0px 3px 6px;
}
.btn--sm {
  padding: 0.3rem 0.85rem;
  font-size: 0.95rem;
}
.btn--sand {
  background-color: var(--color-sand-500);
  border-color: var(--color-sand-600);
  color: #ffffff !important;
  text-decoration: none !important;
}
.btn--sand:hover, .btn--sand:focus-visible {
  background-color: var(--color-sand-700);
  border-color: var(--color-sand-800);
  color: #ffffff !important;
  text-decoration: none;
}
.btn--river {
  background-color: var(--color-river-500);
  border-color: var(--color-river-600);
  color: #ffffff !important;
  text-decoration: none !important;
}
.btn--river:hover, .btn--river:focus-visible {
  background-color: var(--color-river-700);
  border-color: var(--color-river-800);
  color: #ffffff !important;
  text-decoration: none;
}
.btn--clay {
  background-color: var(--color-clay-500);
  border-color: var(--color-clay-600);
  color: #ffffff !important;
  text-decoration: none !important;
}
.btn--clay:hover, .btn--clay:focus-visible {
  background-color: var(--color-clay-700);
  border-color: var(--color-clay-800);
  color: #ffffff !important;
  text-decoration: none;
}
.btn--ember {
  background-color: var(--color-ember-500);
  border-color: var(--color-ember-600);
  color: #ffffff !important;
  text-decoration: none !important;
}
.btn--ember:hover, .btn--ember:focus-visible {
  background-color: var(--color-ember-700);
  border-color: var(--color-ember-800);
  color: #ffffff !important;
  text-decoration: none;
}
.btn--maize {
  background-color: var(--color-maize-500);
  border-color: var(--color-maize-600);
  color: #ffffff !important;
  text-decoration: none !important;
}
.btn--maize:hover, .btn--maize:focus-visible {
  background-color: var(--color-maize-700);
  border-color: var(--color-maize-800);
  color: #ffffff !important;
  text-decoration: none;
}
.btn--bark {
  background-color: var(--color-bark-500);
  border-color: var(--color-bark-600);
  color: #ffffff !important;
  text-decoration: none !important;
}
.btn--bark:hover, .btn--bark:focus-visible {
  background-color: var(--color-bark-700);
  border-color: var(--color-bark-800);
  color: #ffffff !important;
  text-decoration: none;
}
.btn--sage {
  background-color: var(--color-sage-500);
  border-color: var(--color-sage-600);
  color: #ffffff !important;
  text-decoration: none !important;
}
.btn--sage:hover, .btn--sage:focus-visible {
  background-color: var(--color-sage-700);
  border-color: var(--color-sage-800);
  color: #ffffff !important;
  text-decoration: none;
}

.btn--slate {
  background-color: var(--color-slate-500);
  border-color: var(--color-slate-600);
  color: #ffffff !important;
  text-decoration: none !important;
}
.btn--slate:hover, .btn--slate:focus-visible {
  background-color: var(--color-slate-700);
  border-color: var(--color-slate-800);
  color: #ffffff !important;
  text-decoration: none;
}
.btn--outline-white {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn--outline-white:hover, .btn--outline-white:focus-visible {
  background-color: var(--color-white);
  color: initial;
  text-decoration: none;
}
.btn--outline-clay {
  background-color: transparent;
  border-color: var(--color-clay-500);
  color: var(--color-clay-600);
}
.btn--outline-clay:hover, .btn--outline-clay:focus-visible {
  background-color: var(--color-clay-500);
  color: #ffffff !important;
  text-decoration: none;
}
.btn--ghost {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-clay-600);
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background-color: transparent;
  color: var(--color-clay-800);
  text-decoration: underline;
  transform: none;
  box-shadow: none;
}

/* ── 4. Section defaults ─────────────────────────────────────────────── */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
@media (max-width: 1179px) {
  .section .row {
    gap: 2rem;
  }
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-river-600);
}
.section--dark .section-title {
	color: var(--color-maize-300);
}
.section p.section-subtitle {
  font-family: var(--font-subheading);
  font-size: 1.2rem;
}
.section-intro {
  color: var(--color-white);
}
.section--dark .section-intro, .section--dark  p.section-subtitle, .section--dark  p {
  color: var(--color-white);
}

.section-text {
  font-size: 1.15rem;
  color: var(--color-clay-600);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.section--cta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 1.5rem;
}

/* ── 5. River divider ───────────────────────────────────────
   Cheroenhaka: "People at the Fork of the Stream."
   The three lines are the three rivers of the tribal homeland —
   the Nottoway and the Blackwater forking into the Chowan
   (Onos-chi-oke Jo-ke, "a Great River of Water"). The middle
   line runs dark for the Blackwater's tannic water.
   Not decoration — this is the tribe's name, drawn.

     <div class="river-divider" role="separator" aria-hidden="true"></div>

     <h2>Our History</h2>
     <div class="river-divider river-divider--heading" aria-hidden="true"></div>
── */

.river-divider {
  height: 18px;
  margin: 2.5rem auto;
  /* line 1: Nottoway (river-400 #5D8FB2)
     line 2: Blackwater (bark-400 #876959 — dark tannic water)
     line 3: Chowan (river-500 #094279) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 18' preserveAspectRatio='none'%3E%3Cpath d='M0 4 C 20 1, 40 7, 60 4 S 100 1, 120 4' fill='none' stroke='%235D8FB2' stroke-width='2.5' opacity='.85'/%3E%3Cpath d='M0 9 C 20 6, 40 12, 60 9 S 100 6, 120 9' fill='none' stroke='%23876959' stroke-width='2.5' opacity='.85'/%3E%3Cpath d='M0 14 C 20 11, 40 17, 60 14 S 100 11, 120 14' fill='none' stroke='%23094279' stroke-width='2.5' opacity='.85'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  max-width: 480px;
}
.river-divider--heading {
	max-width: 180px;
	margin: 0 0 1.5rem;
	background-position: left center;
}
/*.river-divider--heading {
	width: 5rem;
	height: 4px;
	margin-block: 0.75rem 1.5rem;
	background: linear-gradient( 90deg, var(--color-river-500) 0 70%, var(--color-maize-500) 70% 100% );
}*/
.text-center .river-divider--heading,
.river-divider--heading.mx-auto {
  margin-left: auto;
  margin-right: auto;
  background-position: center;
}

.river-divider--onDark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 18' preserveAspectRatio='none'%3E%3Cpath d='M0 4 C 20 1, 40 7, 60 4 S 100 1, 120 4' fill='none' stroke='%23C9DDED' stroke-width='1.5' opacity='.7'/%3E%3Cpath d='M0 9 C 20 6, 40 12, 60 9 S 100 6, 120 9' fill='none' stroke='%23FFB28A' stroke-width='1.5' opacity='.55'/%3E%3Cpath d='M0 14 C 20 11, 40 17, 60 14 S 100 11, 120 14' fill='none' stroke='%239DBFD9' stroke-width='1.5' opacity='.65'/%3E%3C/svg%3E");
}

.hero {
  /* Layout */
  --hero-padding: 4em 1em 6em;
  --hero-height-primary: clamp(420px, 60vw, 600px);
  --hero-max-width: 1200px;
  /* Colors — tinted bark-900 instead of flat black so the
     overlay reads as "ours" rather than a generic dark scrim */
  --hero-title-color: #fff;
  --hero-subtitle-color: #fff;
  --hero-text-color: #fff;
  --hero-overlay: rgba(23, 15, 11, 0.45);
  --hero-title-shadow: var(--text-shadow-hero);
  --hero-subtitle-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  --hero-text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  --hero-btn-shadow: rgba(0, 0, 0, 0.3);
  /* Typography — Alegreya SC title, Literata subtitle
     (matches the h1/h3 pairing used everywhere else) */
  --hero-title-font-family: var(--font-heading);
  --hero-title-size: clamp(3rem, 8vw, 5rem);
  --hero-subtitle-font-family: var(--font-subheading);
  --hero-subtitle-size: clamp(1.5rem, 3vw, 2.25rem);
  --hero-text-font-family: var(--font-body);
  --hero-text-size: clamp(1rem, 3vw, 1.25rem);
  /* CTAs — reuse the site's clay button pair for consistency
     with .btn--clay everywhere else on the site */
  --hero-btn-gap: 1rem;
  --hero-btn-font-size: 1rem;
  --hero-btn-radius: 4px;
  --hero-btn-padding: 0.75rem 1.5rem;
  --hero-btn-primary-bg: var(--color-clay-600);
  --hero-btn-primary-bg-hover: var(--color-clay-800);
  --hero-btn-primary-color: #fff;
  --hero-btn-secondary-border: 2px solid #fff;
  --hero-btn-secondary-color: #fff;
  --hero-btn-secondary-bg: transparent;
  --hero-btn-secondary-hover-bg: #fff;
  --hero-btn-secondary-hover-color: var(--color-bark-800);
  /* Video play/pause button */
  --video-btn-bg: rgba(23, 15, 11, 0.6);
  --video-btn-color: #fff;
  --video-btn-radius: 4px;
  --video-btn-padding: 0.5em 0.75em;
  --video-btn-size: 1rem;
  --video-btn-icon-size: 1.5em;
}
/* Core hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--hero-text-color);
  overflow: hidden;
  padding: var(--hero-padding);
}
.hero--primary {
  min-height: var(--hero-height-primary);
}
.hero--secondary {
  --hero-height-primary: clamp(220px, 40vw, 320px);
}
/* Image background */
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}
/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--hero-max-width);
  margin: 0 auto;
}
.hero-title {
  font-family: var(--hero-title-font-family);
  color: var(--hero-title-color);
  font-size: var(--hero-title-size);
  margin-bottom: 0.3em;
  text-shadow: var(--hero-title-shadow);
  line-height: 1.15;
}
.hero-subtitle {
  font-family: var(--hero-subtitle-font-family);
  font-style: italic;
  color: var(--hero-subtitle-color);
  font-size: var(--hero-subtitle-size);
  margin-bottom: .5rem;
  line-height: 1.3;
  text-shadow: var(--hero-subtitle-shadow);
}
.hero-text {
  font-family: var(--hero-text-font-family);
  color: var(--hero-text-color);
  font-size: var(--hero-text-size);
  line-height: 1.4;
  text-shadow: var(--hero-text-shadow);
}
/* CTA buttons */
.hero-cta {
  display: flex;
  gap: var(--hero-btn-gap);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5em;
}
.btn-hero-primary, .btn-hero-secondary {
  display: inline-block;
  padding: var(--hero-btn-padding);
  border-radius: var(--hero-btn-radius);
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--hero-btn-font-size);
  min-width: 175px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-hero-primary {
	color: var(--color-maize-900);
	background: var(--color-maize-400);
	border: 1px solid var(--color-maize-700);
}
.btn-hero-primary:hover, .btn-hero-primary:focus-visible {
    background: var(--color-bloodroot-800);
  border-color: var(--color-warpaint-800);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--hero-btn-shadow);
}
.btn-hero-secondary {
  color: var(--color-sand-100);
  background: rgb(255 255 255 / 0.08);
  border: 2px solid var(--color-sand-200);
}
.btn-hero-secondary:hover, .btn-hero-secondary:focus-visible {
  color: var(--color-river-900);
  background: var(--color-sand-100);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px var(--hero-btn-shadow);
}
.btn-hero-primary:focus-visible, .btn-hero-secondary:focus-visible {
  outline: 3px solid var(--color-ember-300);
  outline-offset: 2px;
}
/* Video variant */
.hero--video {
  position: relative;
  min-height: var(--hero-height-primary);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Floating play/pause button */
.video-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--video-btn-bg);
  border: none;
  color: var(--video-btn-color);
  padding: var(--video-btn-padding);
  border-radius: var(--video-btn-radius);
  cursor: pointer;
  font-size: var(--video-btn-size);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform .2s ease, opacity .5s ease;
  opacity: .6;
}
.video-btn:hover, .video-btn:focus-visible {
  opacity: 1;
  transform: scale(1.1);
}
.video-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.video-btn svg {
  width: var(--video-btn-icon-size);
  height: var(--video-btn-icon-size);
  fill: currentColor;
}
/* ── 6. Homepage — Quick facts strip ───────────────────────────
   Thin credibility band directly under the hero. These are the
   numbers a skimming visitor (or a federal reviewer) should see
   in the first few seconds, before committing to reading anything.
── */
.quick-facts {
	background: var(--color-ember-700);
	padding: 1.75rem 0;
}
.quick-facts--list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem 3rem;
  text-align: center;
}
.quick-facts--list li {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 140px;
}
.quick-facts--stat {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
	color: var(--color-maize-300);
}
.quick-facts--label {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color:var(--color-sand-200);
}

/* ── 7. Homepage — Message from the Chief ──────────────────────
   Two-column: portrait + caption on one side, welcome message +
   blockquote + CTAs on the other. Background uses a corn motif.
── */

.section--chief {
	border-top: 4px solid #A64B2A;
	background-color: #fbeed9;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23fbeed9' fill-opacity='0.4'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/*.section--chief {
background: radial-gradient(circle at top,transparent 60%, #FFF0E2 61%,#FFF0E2 66%, transparent 67%),radial-gradient(circle at bottom,transparent 60%, #FFF0E2 61%,#FFF0E2 66%, transparent 67%),radial-gradient(circle at left,transparent 60%, #FFF0E2 61%,#FFF0E2 66%, transparent 67%),radial-gradient(circle at right,transparent 60%, #FFF0E2 61%,#FFF0E2 66%, transparent 67%);
background-size: 1em 1em;
background-color: #fff5ec;
opacity: 1;
}*/
.section--chief figure {
  margin: 0;
}
.section--chief img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(23, 15, 11, .18);
}
/* Generic figure-caption utility — not chief-specific, reusable
   anywhere a photo needs a small italic credit line. */
.img-caption {
  display: block;
  margin-top: .75rem;
  font-family: var(--font-subheading);
  font-style: italic;
  font-size: .9rem;
  color: var(--text-muted);
  text-align: center;
}

.section--chief blockquote {
	margin: 1.75rem 0;
	padding: 1.25rem 1.5rem;
	color: var(--color-bark-800);
	background: var(--color-sand-200);
	border-left: 5px solid var(--color-sand-600);
}
.section--chief blockquote p {
  font-family: var(--font-subheading);
  font-style: italic;
  color: var(--color-river-700);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.section--chief-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* ── 8. Homepage — Upcoming Events ──────────────────────────────
   4 recurring annual gatherings. Each card links to a dedicated
   event page for downloads (flyers, vendor contracts, brochures)
   and photo galleries — those vary per event, so they live on
   the event page rather than cluttering the card. Cards lead
   with a photo since these are recurring events with a photo
   history, not one-offs needing placeholder art.
── */
.section--events {
	/* background-image: url("/img/home/events.jpg"); */
	/* background-size: cover; */
	/* background-position: center; */
	/* background-attachment: fixed; */
	/* background-repeat: no-repeat; */
	/* background-blend-mode: multiply; */
	background-color: var(--color-matchcoat-700);
  background: radial-gradient(circle,rgba(22, 40, 64, 1) 60%, rgba(7, 13, 21, 1) 100%);
	color: #fff;
}
.section--events .container {
  max-width: 1600px;
}
.section--events .interior-section--lead {
  color: #fff;
}
.events--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .events--grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.event-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-sand-600);
  border-radius: 6px;
  /*overflow: hidden;*/
  transition: box-shadow .25s ease, transform .25s ease;
	box-shadow: 0 0.75rem 2rem rgb(var(--shadow-color) / 0.1);
}
.event-card:hover {
	border-color: var(--color-maize-500);
	box-shadow: 0px 5px 10px 3px rgba(242, 197, 73, .25);
	transform: translateY(-3px);
}
.event-card--img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-sand-300); /* shows through until a real photo lands */
}

.event-card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.event-card--date {
	position: absolute;
	top: .85rem;
	left: .85rem;
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-family: var(--font-body);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	border-radius: 999px;
	padding: .3rem .75rem;
	color: var(--color-river-900);
	background: var(--color-maize-300);
	border: 1px solid var(--color-maize-700);
}

.event-card--link {
  color: var(--color-clay-600);
  text-decoration-color: var(--color-clay-300);
}

.event-card--link:hover {
  color: var(--color-clay-700);
  text-decoration-color: currentColor;
}

.section--cattashowrock {
  background: var(--color-sage-100);
}

.cattashowrock--factbox {
  color: var(--color-sage-900);
  background: var(--color-sand-100);
  border-left: 5px solid var(--color-sage-600);
}

.cattashowrock--factbox p {
  color: inherit;
}
.event-card--body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.event-card--title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: .5rem;
  line-height: 1.25;
  color: var(--color-river-800);
}

.event-card--desc {
  font-size: 1.1rem;
  color: var(--color-gray-700)!important;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.event-card--link {
	align-self: flex-start;
	font-family: var(--font-body);
	font-size: .95rem;
	font-weight: 600;
	background: var(--color-bloodroot-600);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: .3rem;
	border-radius: 3px;
	color: #fff;
	padding: .35rem .75rem;
  transition: color var(--transition), gap var(--transition);
}
.event-card--link::after {
  content: "\2192";
}
.event-card--link:hover, .event-card--link:focus-visible {
	color: var(--color-maize-200);
	gap: .5rem;
}

/* ── 9. Homepage — Cattashowrock Town ───────────────────────────
   Image + text. Swapped from the chief section above (image
   left there) for rhythm — text column first in the markup,
   image column second, so image lands on the right.
── */
.section--cattashowrock {
	background: var(--color-sage-100);
	background-image: url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c2c7b5' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M0 0h35v35H0V0zm5 5h25v25H5V5zm5 5h15v15H10V10zm5 5h5v5h-5v-5zM40 5h25v25H40V5zm5 5h15v15H45V10zm5 5h5v5h-5v-5zM70 35H35v35h35V35zm-5 5H40v25h25V40zm-5 5H45v15h15V45zm-5 5h-5v5h5v-5zM30 40H5v25h25V40zm-5 5H10v15h15V45zm-5 5h-5v5h5v-5z'/%3E%3C/g%3E%3C/svg%3E"),url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c2c7b5' fill-opacity='0.4' fill-rule='evenodd'%3E%3Cpath d='M0 0h35v35H0V0zm5 5h25v25H5V5zm5 5h15v15H10V10zm5 5h5v5h-5v-5zM40 5h25v25H40V5zm5 5h15v15H45V10zm5 5h5v5h-5v-5zM70 35H35v35h35V35zm-5 5H40v25h25V40zm-5 5H45v15h15V45zm-5 5h-5v5h5v-5zM30 40H5v25h25V40zm-5 5H10v15h15V45zm-5 5h-5v5h5v-5z'/%3E%3C/g%3E%3C/svg%3E");
	background-position: top left, bottom left;
	background-repeat: repeat-x, repeat-x;
	background-size: auto 50px, auto 50px;
}
.section--cattashowrock .row {
  align-items: center;
}
.section--cattashowrock img {

}
.section--cattashowrock h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-river-600);
  margin-bottom: .5rem;
}
.section--cattashowrock p {
  font-size: 1.02rem;
  color: var(--text-content);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.cattashowrock--factbox {
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--color-sage-900);
  background: var(--color-sand-100);
  border-left: 5px solid var(--color-sage-600);
}

.cattashowrock--factbox p {
  margin-bottom: 0;
  font-size: .95rem;
}
.cattashowrock--factbox strong {
  color: var(--color-bark-800);
}

/* ── 10. Homepage — About Us intro ──────────────────────────────
   Full-width band, copy constrained to a centered column for
   readability. Short teaser + link out to the full About Us page.
── */
.section--about {
  background:  var(--color-slate-700);
}

.section--about .river-divider--heading {
  margin-left: auto;
  margin-right: auto;
}


/* ── 11. Homepage — Tribal Leadership ───────────────────────────
   Each person is one flowing line — name, then titles joined
   with a middot delimiter — instead of a stacked title list.
   Considerably shorter than the earlier multi-line version while
   keeping every role visible. Dark bark panel, light text.
── */
.section--leadership {
  background: var(--color-bark-900);
}
.section--leadership h2 {
  color: #ffffff;
}
.leadership--group {
  margin-top: 2rem;
}
.leadership--group + .leadership--group {
  margin-top: 3rem;
}
.leadership--group-heading {
  font-family: var(--font-subheading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-sand-200);
  margin-bottom: .25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}
.leadership--group-subheading {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-size: .85rem;
  color: var(--color-bark-300);
  margin: .5rem 0 1.25rem;
}
.leadership--list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
@media (min-width: 768px) {
  .leadership--list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.leadership--person {
  border-left: 3px solid var(--color-ember-500);
  padding: .3rem 0 .3rem 1rem;
  font-size: .9rem;
  line-height: 1.6;
  color: var(--color-bark-200);
}
.leadership--name {
  font-family: var(--font-subheading);
  font-weight: 700;
  color: #ffffff;
}
.leadership--sep {
  color: var(--color-bark-400);
  padding: 0 .35rem;
}

/* ── 12. Homepage — Closing CTA band ────────────────────────────
   Deliberately its own button classes rather than reusing
   .btn-hero-* — those are scoped to custom properties defined on
   .hero and would resolve to nothing outside it.
── */
.cta-band {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
	color: var(--color-text-on-dark);
	background: linear-gradient( 135deg, var(--color-warpaint-700), var(--color-autumn-700) );
}
.cta-band--text {
  color: var(--color-sand-200);
}
.cta-band--title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-sand-100);
  margin-bottom: .5rem;
}
.cta-band--text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-sand-200);
  max-width: 600px;
  margin: 0 auto 1.75rem;
  line-height: 1.7;
}
.cta-band--actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-cta-primary, .btn-cta-secondary {
  display: inline-block;
  padding: .75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-cta-primary {
  color: var(--color-river-900);
  background: var(--color-maize-400);
  border: 2px solid var(--color-maize-400);
}

.btn-cta-primary:hover, .btn-cta-primary:focus-visible {
  background: var(--color-maize-500);
  border-color: var(--color-maize-500);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}
.btn-cta-secondary {
  color: var(--color-sand-100);
  background: transparent;
  border: 2px solid var(--color-sand-200);
}

.btn-cta-secondary:hover, .btn-cta-secondary:focus-visible {
  color: var(--color-warpaint-800);
  background: var(--color-sand-100);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

/* ── 13. Split-story (reserved, reusable) ───────────────────────
   Two full-height color panels side by side (stacks on mobile).
   Not currently used on the homepage — Cattashowrock/About Us
   went back to standard image+text layouts below — but kept
   here since it works well and may fit a future page.
   Usage: <section class="section--split-story">
            <div class="split-story--panel -dark">...</div>
            <div class="split-story--panel -light">...</div>
          </section>
── */
.section--split-story {
  display: flex;
  flex-wrap: wrap;
}
.split-story--panel {
  flex: 1 1 100%;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .split-story--panel {
    flex: 1 1 50%;
  }
}
.split-story--panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: .5rem;
}
.split-story--panel p {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
  max-width: 560px;
}
.split-story--panel .btn {
  align-self: flex-start;
}
/* -dark: Cattashowrock Town */
.split-story--panel.-dark {
  background: var(--color-river-700);
  color: var(--color-river-100);
}
.split-story--panel.-dark h2 {
  color: #ffffff;
}
.split-story--panel.-dark .cattashowrock--factbox {
  background: var(--color-river-800);
  border-left: 4px solid var(--color-ember-400);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  max-width: 560px;
}
.split-story--panel.-dark .cattashowrock--factbox p {
  margin-bottom: 0;
  font-size: .95rem;
  color: var(--color-river-100);
}
.split-story--panel.-dark .cattashowrock--factbox strong {
  color: #ffffff;
}
/* -light: About Us */
.split-story--panel.-light {
  background: var(--color-sand-100);
  color: var(--text-content);
}
.split-story--panel.-light h2 {
  color: var(--color-river-600);
}

/* ── 14. Interior banner ────────────────────────────────────── */
.page-banner {
  position: relative;
  background-color: var(--color-sand-200);
  overflow: hidden;
  border-bottom: 1px solid var(--color-content-border);
}
.page-banner--img .page-banner--overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 242, 228, .84);
}
.page-banner--body {
  position: relative;
  z-index: 1;
  padding: 1.75rem 0 1.5rem;
}
.page-banner--sm .page-banner--body {
  padding: 1.25rem 0 1rem;
}
.page-banner--kicker {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-clay-600);
  margin-bottom: .4rem;
}
.page-banner--title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-river-600);
  line-height: 1.15;
  margin: 0;
}
.page-banner--title span {
  color: var(--color-clay-500);
}
.page-banner--desc {
  font-size: clamp(.9rem, 1.2vw, 1rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin: .6rem 0 0;
  max-width: 700px;
}

/* ── 15. Breadcrumb ──────────────────────────────────────────── */
.breadcrumb-strip {
  padding: .75rem 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb--item {
  display: flex;
  align-items: center;
  gap: .25rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 400;
}
.breadcrumb--item a {
  color: var(--color-river-600);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb--item a:hover, .breadcrumb--item a:focus-visible {
  color: var(--color-clay-600);
}
.breadcrumb--item + .breadcrumb--item::before {
  content: '/';
  color: var(--color-ember-300);
  font-size: .65rem;
}
.breadcrumb--item[aria-current="page"] {
  color: var(--text-muted);
}

/* ── 16. Accordion ───────────────────────────────────────────── */
.accordion {
  border-top: 2px solid var(--color-ember-200);
}
.accordion--item {
  border-bottom: 1px solid var(--color-ember-200);
}
.accordion--heading {
  margin: 0;
}
.accordion--trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 0.25rem;
  background: none;
  border: none;
  color: var(--color-river-600);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.accordion--trigger:hover, .accordion--trigger:focus-visible {
  color: var(--color-clay-600);
  outline: none;
}
.accordion--trigger:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 2px;
}
.accordion--trigger[aria-expanded="true"] {
  color: var(--color-clay-700);
}
.accordion--icon {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  transition: transform var(--accordion-speed) ease;
  color: var(--color-clay-500);
}
.accordion--trigger[aria-expanded="true"] .accordion--icon {
  transform: rotate(180deg);
}
.accordion--panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height var(--accordion-speed) ease, opacity var(--accordion-speed) ease;
}
.accordion--panel[hidden] {
  display: block !important;
  visibility: hidden;
  max-height: 0;
  opacity: 0;
}
.accordion--panel.is-open {
  max-height: 2000px;
  opacity: 1;
  visibility: visible;
}
.accordion--body {
  padding: 0.25rem 0.25rem 1.5rem;
  color: var(--text-content);
  font-size: 0.95rem;
  line-height: 1.7;
}
.accordion--body p:last-child {
  margin-bottom: 0;
}

/* ── 17. Interior content — prose, headings ───────────────────
   .interior-content wraps the main copy area. Type scale:
   Alegreya SC display (h1/h2) · Literata subheads (h3/h4) ·
   Source Sans 3 body + eyebrow levels (h5/h6).
──────────────────────────────────────────────────────────────── */
.interior-content {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(2rem, 3vw, 3.5rem);
}

.interior-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-river-600);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.interior-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--color-river-600);
  line-height: 1.25;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.interior-content h2:first-child {
  margin-top: 0;
}
.interior-content h3 {
  font-family: var(--font-subheading);
  font-size: clamp(1.2rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: var(--color-bark-700);
  line-height: 1.3;
  margin-bottom: .75rem;
  margin-top: 2rem;
}
.interior-content h4 {
  font-family: var(--font-subheading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-bark-600);
  margin-bottom: .5rem;
  margin-top: 1.5rem;
}
.interior-content h5 {
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-clay-600);
  margin-bottom: .5rem;
  margin-top: 1.5rem;
}
.interior-content h6 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .4rem;
  margin-top: 1.25rem;
}

.interior-content p {
  font-size: 1rem;
  color: var(--text-content);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.interior-content p:last-child {
  margin-bottom: 0;
}
.interior-content .lede {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  color: var(--color-ember-700);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.interior-content .content-meta {
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}

.interior-content ul,
.interior-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1.1rem;
}
.interior-content li {
  font-size: 1rem;
  color: var(--text-content);
  line-height: 1.75;
  margin-bottom: .35rem;
}
.interior-content li:last-child {
  margin-bottom: 0;
}
.interior-content ul li::marker {
  color: var(--color-leaf-700);
}
.interior-content ol li::marker {
  color: var(--color-clay-600);
  font-weight: 600;
}

.interior-content a {
  color: var(--text-link);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.interior-content a:hover,
.interior-content a:focus-visible {
  color: var(--text-link-hover);
}

.interior-content strong {
  font-weight: 700;
  color: var(--color-bark-800);
}
.interior-content em {
  font-style: italic;
}
.interior-content small {
  font-size: .85em;
  color: var(--text-muted);
}

.interior-content hr {
  border: none;
  border-top: 1px solid var(--color-content-border);
  margin: 2.5rem 0;
}

.interior-content blockquote {
  margin: 2rem 0;
  padding: 0 0 0 1.5rem;
  border-left: 4px solid var(--color-river-400);
}
.interior-content blockquote p {
  font-family: var(--font-subheading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--color-river-700);
  line-height: 1.7;
  margin-bottom: 0;
}
.interior-content blockquote cite {
  display: block;
  margin-top: .75rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.interior-content table {
  width: 100%;
  margin-bottom: 1.5rem;
  border: 1px solid var(--color-content-border);
  font-size: .95rem;
  background: var(--color-sand-200);
}
.interior-content th,
.interior-content td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-content-border);
}
.interior-content thead th {
  background-color: var(--color-river-700);
  color: var(--color-sand-100);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.interior-content tbody tr:nth-child(even) {
  background-color: var(--color-sand-300);
}
.interior-content tbody tr:last-child td {
  border-bottom: none;
}

/* Section anchor scroll offset compensation */
.interior-section {
  scroll-margin-top: 56px;
}
.interior-section + .interior-section {
  border-top: 1px solid var(--color-sand-300);
}
.interior-section--lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 2rem;
}