/* ============================================================
   Care Assembly website stylesheet
   Design: WPA poster idiom × "Open Window" palette × Besley
   (design-test winner, Aug 2026; see the rebrand handoff note)

   §1 is the brand knob layer. Everything below reads §2 aliases,
   so a palette or type swap is a §1 edit, not a rewrite.
   ============================================================ */


/* ===== §1 Brand knobs ===== */

:root {
  /* Open Window palette (locked) */
  --ow-ground:      #FBFDFC;   /* page ground: 25% tint of #F8FBFA */
  --ow-ground-deep: #F8FBFA;
  --ow-ink:         #1C3A3E;   /* body text */
  --ow-teal:        #1D5F6B;   /* primary: nav, footer, poster field, borders */
  --ow-teal-dk:     #12333B;   /* skyline ink: headings, hover fill */
  --ow-band:        #23768A;   /* band / links / eyebrows */
  --ow-mint:        #8FD9B7;   /* highlight on dark */
  --ow-mint-pale:   #CFEFE0;
  --ow-green:       #2FA35C;   /* accent green (sparingly) */
  --ow-cream:       #EEF7F3;   /* poster cream: text on dark */
  --ow-tint:        #EAF5F0;   /* alternating section ground */
  --ow-panel:       #F3FAF7;   /* example / callout panel */
  --ow-card:        #F8FCFA;   /* card surface */
  --ow-on-dark-muted: #B8DBD3; /* secondary text on teal */
  --ow-numeral:     #C24C31;   /* step numerals only (from the winning mock) */
  --ow-muted:       #4A6467;   /* secondary text on light */
  --ow-hairline:    #C9DDD8;   /* 1px rules */

  /* Type */
  --font-display: 'Besley', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-label:   'Oswald', 'Arial Narrow', 'Helvetica Neue', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;
}


/* ===== §2 Semantic aliases (legacy names kept so page-level CSS still resolves) ===== */

:root {
  --primary:       var(--ow-teal);
  --primary-dark:  var(--ow-teal-dk);
  --accent:        var(--ow-band);
  --bg:            var(--ow-ground);
  --text:          var(--ow-ink);
  --text-light:    var(--ow-muted);
  --white:         var(--ow-card);      /* "white" surfaces read as the card tint */
  --surface-card:  var(--ow-card);
  --surface-panel: var(--ow-panel);
  --surface-tint:  var(--ow-tint);
  --border:        var(--ow-hairline);
  --border-strong: var(--ow-teal);
  --link:          var(--ow-band);
  --radius:        0;
  --shadow:        none;
  --transition:    0.2s ease;
  --nav-height:    62px;
}


/* ===== Reset & base ===== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--ow-teal-dk);
  text-wrap: balance;
}

h4 {
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ow-teal);
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--ow-teal-dk);
}

p a,
li a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.nav a,
.footer a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

strong, b {
  font-weight: 700;
  color: var(--ow-teal);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Wordmark: the building-blocks lockup, inline SVG (Besley text; falls back to Georgia) */
.wm {
  display: block;
  height: 40px;
  width: auto;
}

.footer .wm {
  height: 52px;
}

/* Rename banner: shown to visitors who arrived via the arluckconsulting.com redirect */
.rename-banner {
  background: var(--ow-mint);
  color: var(--ow-teal-dk);
}

.rename-banner-inner {
  max-width: 1136px;
  margin: 0 auto;
  padding: 9px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  line-height: 1.45;
}

.rename-banner p {
  margin: 0;
  flex: 1;
}

.rename-banner strong {
  color: var(--ow-teal-dk);
}

.rename-banner-close {
  background: none;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  padding: 0 4px;
}

.rename-banner-close:focus-visible {
  outline: 2px solid var(--ow-teal-dk);
}

/* Eyebrow: mono, tracked, band teal */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ow-band);
  margin-bottom: 16px;
}


/* ===== Navigation ===== */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ow-teal);
  color: var(--ow-cream);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 0 var(--ow-mint);
}

.nav-inner {
  max-width: 1136px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
}

.nav-brand {
  display: flex;
  align-items: baseline;
  color: var(--ow-cream);
}

.nav-brand:hover {
  color: var(--ow-cream);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 22px;
  list-style: none;
}

.nav-links > li > a,
.nav-links > li > .nav-dropdown-toggle {
  white-space: nowrap;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ow-cream);
}

.nav-links a:hover {
  color: var(--ow-mint);
}

.has-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ow-cream);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"] {
  color: var(--ow-mint);
}

.nav-caret {
  transition: transform var(--transition);
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 240px;
  background: var(--ow-teal-dk);
  border: 2px solid var(--ow-cream);
  outline: 2px solid var(--ow-teal-dk);
  padding: 6px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  z-index: 1001;
}

/* Keeps the hover bridge between the toggle and the panel */
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown li {
  list-style: none;
}

.nav-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--ow-cream);
}

.nav-dropdown a:hover {
  color: var(--ow-teal-dk);
  background: var(--ow-mint);
}

.nav-cta {
  font-family: var(--font-label) !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--ow-mint);
  padding: 6px 13px;
  color: var(--ow-mint) !important;
}

.nav-cta:hover {
  background: var(--ow-mint);
  color: var(--ow-teal-dk) !important;
}

/* Slim bar variant for single-purpose landing pages */
.nav-site {
  font-size: 13px;
  color: var(--ow-on-dark-muted);
}

.nav-site:hover {
  color: var(--ow-mint);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 2px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ow-cream);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ===== Buttons ===== */

.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  background: var(--ow-teal);
  color: var(--ow-cream);
  padding: 13px 30px;
  border: 2px solid var(--ow-teal);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  background: var(--ow-teal-dk);
  border-color: var(--ow-teal-dk);
  color: var(--ow-cream);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--ow-teal);
  color: var(--ow-cream);
}

.btn-secondary,
.btn.alt {
  background: transparent;
  color: var(--ow-teal);
}

.btn-secondary:hover,
.btn.alt:hover {
  background: var(--ow-teal);
  color: var(--ow-cream);
}


/* ===== Home: poster hero ===== */

.poster {
  background: var(--ow-teal);
  padding: 34px 20px 40px;
}

.frame {
  max-width: 880px;
  margin: 0 auto;
  border: 4px solid var(--ow-cream);
  outline: 2px solid var(--ow-cream);
  outline-offset: 6px;
  padding: 34px 28px 0;
  text-align: center;
  color: var(--ow-cream);
  overflow: hidden;
}

.kick {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ow-mint);
}

.poster h1 {
  font-size: clamp(32px, 4.8vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--ow-cream);
  margin: 16px auto 8px;
  max-width: 16em;
}

.cred {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ow-on-dark-muted);
  margin-bottom: 18px;
}

.frame svg {
  display: block;
  width: 100%;
  height: auto;
}

.band {
  background: var(--ow-band);
  color: #F4FBF8;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  margin: 0 -28px;
}

.herosub {
  padding: 32px 28px 8px;
  text-align: center;
}

.herosub p {
  font-size: 17px;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 auto 20px;
}

.herosub .btn {
  margin: 4px 6px;
}


/* ===== Home: sections ===== */

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--surface-tint);
}

.section-heading {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 22em;
  margin-bottom: 14px;
}

.section-intro,
.lead {
  font-size: 19px;
  line-height: 1.5;
  max-width: 60ch;
  margin-bottom: 14px;
}

.body {
  font-size: 16px;
  line-height: 1.65;
  max-width: 64ch;
  margin-bottom: 12px;
}

.example {
  border: 3px solid var(--ow-teal);
  background: var(--surface-panel);
  padding: 26px 28px;
  margin: 28px 0;
}

.exnum {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ow-band);
}

.exlbl {
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 56ch;
  margin-top: 10px;
}

.fine {
  font-size: 11.5px;
  color: var(--text-light);
  margin-top: 8px;
}

.isnt {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.isnt > div {
  border: 3px solid var(--ow-teal);
  background: var(--surface-card);
  padding: 18px 16px;
}

.isnt h4 {
  font-size: 14.5px;
  margin-bottom: 6px;
}

.isnt p {
  font-size: 13.5px;
  line-height: 1.5;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.steps > div {
  border: 3px solid var(--ow-teal);
  background: var(--surface-card);
  padding: 20px 18px;
}

.steps .n {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--ow-numeral);
}

.steps h3 {
  font-size: 19px;
  margin: 8px 0;
}

.steps p {
  font-size: 14px;
  line-height: 1.55;
}

.who-grid {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 36px;
  align-items: start;
}

.who-photo {
  width: 168px;
  height: 168px;
  border: 3px solid var(--ow-teal);
  background: var(--ow-mint-pale);
  overflow: hidden;
}

.who-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-pull {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ow-teal);
  margin-top: 16px;
  max-width: 40ch;
}


/* ===== Home: contact ===== */

.cgrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  margin-top: 26px;
}

.cform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cform label {
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cform .full {
  grid-column: 1 / -1;
}

.cform .btn {
  grid-column: 1 / -1;
  justify-self: start;
}

.fld {
  font-family: inherit;
  font-size: 14.5px;
  padding: 10px 12px;
  width: 100%;
  border: 2px solid var(--ow-teal);
  background: #fff;
  color: var(--text);
  border-radius: 0;
}

select.fld {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231D5F6B' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

textarea.fld {
  resize: vertical;
  min-height: 110px;
}

.fld:focus {
  outline: 3px solid var(--ow-mint);
  outline-offset: 0;
}

.calt {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.altcard {
  display: block;
  border: 3px solid var(--ow-teal);
  background: var(--surface-card);
  padding: 16px;
  color: var(--text);
  transition: background var(--transition);
}

a.altcard:hover {
  background: var(--surface-tint);
  color: var(--text);
}

.altcard h4 {
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.altcard p {
  font-size: 13.5px;
  line-height: 1.55;
}

.altcard p a {
  text-decoration: none;
  font-weight: 600;
}

/* Honeypot field: off-screen for humans, present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success {
  display: none;
  border: 3px solid var(--ow-teal);
  background: var(--surface-panel);
  padding: 28px 24px;
  margin-top: 26px;
  text-align: center;
}

.form-success.visible {
  display: block;
}

.form-success p {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--ow-teal);
}

/* Legacy contact-form classes (kept so /contact deep links and old markup still style) */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: inherit;
  font-size: 14.5px;
  padding: 10px 12px;
  border: 2px solid var(--ow-teal);
  background: #fff;
  color: var(--text);
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: 3px solid var(--ow-mint); }


/* ===== Footer ===== */

.footer {
  background: var(--ow-teal);
  color: var(--ow-on-dark-muted);
  padding: 38px 0 44px;
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ow-cream);
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  max-width: 78ch;
  margin-bottom: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(238, 247, 243, 0.22);
  padding-top: 16px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px 20px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--ow-cream);
}

.footer-bottom a:hover {
  color: var(--ow-mint);
}

.footer-links {
  display: flex;
  gap: 18px;
}


/* ===== Interior pages: hero + body ===== */

.page-hero {
  padding: 56px 0 28px;
  background: var(--bg);
}

.page-hero .breadcrumb,
.breadcrumb {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ow-band);
  margin-bottom: 18px;
}

.page-hero .breadcrumb a,
.breadcrumb a {
  color: var(--ow-band);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  color: var(--ow-teal-dk);
}

.page-hero h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  max-width: 20em;
  margin-bottom: 18px;
}

.page-hero .lede {
  font-size: 19px;
  line-height: 1.55;
  max-width: 62ch;
}

.page-body {
  padding: 28px 0 80px;
}

.page-body-article {
  padding-top: 48px;
}

.page-body .prose {
  max-width: 720px;
}

.page-body .prose h2 {
  font-size: 26px;
  margin: 40px 0 14px;
}

.page-body .prose h2:first-child {
  margin-top: 0;
}

.page-body .prose p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.page-body .prose ul {
  margin: 8px 0 24px 22px;
}

.page-body .prose li {
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 10px;
}

.page-body .prose .small-print {
  font-size: 14px;
  color: var(--text-light);
  border-left: 3px solid var(--ow-teal);
  padding: 6px 0 6px 16px;
  margin: 28px 0;
}

.cta-card {
  border: 3px solid var(--ow-teal);
  background: var(--surface-card);
  padding: 36px 32px;
  margin: 40px 0 0;
  text-align: center;
}

.cta-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cta-note {
  font-size: 13px !important;
  color: var(--text-light) !important;
  margin-bottom: 4px !important;
}


/* ===== Audience selector (contact page) ===== */

.audience-heading {
  font-size: 26px;
  margin-bottom: 24px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  border: 3px solid var(--ow-teal);
  background: var(--surface-card);
  padding: 24px 22px;
  color: var(--text);
  transition: background var(--transition);
}

.audience-card:hover {
  background: var(--surface-tint);
  color: var(--text);
}

.audience-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.audience-arrow {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ow-band);
}


/* ===== Blog & resource lists ===== */

.blog-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.blog-card {
  border: 3px solid var(--ow-teal);
  background: var(--surface-card);
  padding: 26px 30px;
  transition: background var(--transition);
}

.blog-card:hover {
  background: var(--surface-tint);
}

.blog-card a {
  color: inherit;
  display: block;
  text-decoration: none;
}

.blog-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ow-band);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 15.5px;
  line-height: 1.55;
}

.blog-card a:hover h3 {
  color: var(--ow-teal);
}

.blog-article {
  max-width: 700px;
}

.blog-article .blog-meta {
  margin-bottom: 14px;
}

.blog-article h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 24px;
}

.blog-article h2 {
  font-size: 24px;
  margin: 40px 0 16px;
}

.blog-article p {
  font-size: 17.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.blog-article p:first-of-type {
  font-size: 19px;
}

.blog-article ul,
.blog-article ol {
  margin: 0 0 24px 24px;
}

.blog-article li {
  font-size: 17.5px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.blog-article img {
  margin: 28px auto;
  border: 3px solid var(--ow-teal);
}

.blog-article .sources-box {
  border: 3px solid var(--ow-teal);
  background: var(--surface-panel);
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.blog-article .sources-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.blog-article .blog-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 3px solid var(--ow-teal);
  font-size: 15px;
}

.blog-article .blog-footer p {
  font-size: 15px;
  line-height: 1.6;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ow-band);
  margin-bottom: 22px;
}

.back-link:hover {
  color: var(--ow-teal-dk);
}


/* ===== Source list ===== */

.source-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 24px 28px;
  border: 3px solid var(--ow-teal);
  background: var(--surface-card);
}

.source-list li {
  list-style: none;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.source-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.source-list li:last-child {
  padding-bottom: 0;
}

.source-list a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  line-height: 1.3;
  color: var(--ow-teal);
  text-decoration: none;
}

.source-list a:hover {
  color: var(--ow-band);
}

.source-list .source-note {
  display: block;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
  margin-top: 4px;
}


/* ===== Notes & disclaimers ===== */

.page-note {
  font-size: 15px;
  line-height: 1.7;
  margin: 28px 0 0;
  max-width: 72ch;
}

.page-disclaimer {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
  border-left: 3px solid var(--ow-teal);
  padding: 4px 0 4px 16px;
  margin: 32px 0 0;
  max-width: 78ch;
}

.blog-footer .page-disclaimer {
  margin-top: 20px;
}

/* Legacy homepage helpers still referenced by a few pages */
.wti-body { max-width: 760px; }
.wti-body p { margin-bottom: 18px; font-size: 17px; line-height: 1.65; }
.wti-subheading { font-size: 26px; margin: 40px 0 22px; }


/* ===== Responsive ===== */

/* Nav collapses to the hamburger below this width. Keep in sync with isMobile() in main.js. */
@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ow-teal-dk);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 28px 26px;
    gap: 16px;
    border-top: 2px solid var(--ow-mint);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.2s ease, visibility 0.25s;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a,
  .nav-dropdown-toggle {
    font-size: 15px;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 4px 0;
  }

  .nav-dropdown {
    position: static;
    border: none;
    outline: none;
    border-left: 2px solid var(--ow-mint);
    margin: 8px 0 4px 6px;
    padding: 2px 0 2px 14px;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    background: transparent;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown:not(.open) {
    margin: 0;
    border-left-width: 0;
  }

  .nav-dropdown.open {
    max-height: 360px;
  }

  .nav-dropdown a {
    padding: 8px 0;
    font-size: 14px;
  }

  .nav-dropdown a:hover {
    background: transparent;
    color: var(--ow-mint);
  }

  .nav-cta {
    align-self: flex-start;
  }
}

@media (max-width: 860px) {
  .isnt,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .cgrid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 52px 0;
  }

  .page-hero {
    padding: 40px 0 20px;
  }

  .page-body {
    padding: 20px 0 60px;
  }

  .cta-card {
    padding: 28px 20px;
  }

  .blog-card {
    padding: 22px 20px;
  }

  .source-list {
    padding: 20px 18px;
  }

  .who-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 20px;
  }

  .isnt,
  .steps,
  .cform,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .poster {
    padding: 22px 14px 28px;
  }

  .frame {
    padding: 26px 18px 0;
  }

  .poster h1 {
    font-size: 30px;
    letter-spacing: 0;
  }

  .kick {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .cred {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .band {
    font-size: 12px;
    margin: 0 -18px;
  }

  .exnum {
    font-size: 32px;
  }

  .herosub .btn {
    display: block;
    margin: 10px auto 0;
    max-width: 320px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .page-hero h1 {
    font-size: 30px;
  }
}
