:root {
  --bg: #f3efe7;
  --bg-deep: #ece5db;
  --surface: #f8f4ec;
  --surface-soft: #f2ede4;
  --surface-storm: #313944;
  --text: #2a3138;
  --muted: #5e6670;
  --border: #d7cfc2;
  --line: #c8beb0;
  --primary: #a36b4e;
  --primary-dark: #87563d;
  --focus-ring: rgba(163, 107, 78, 0.34);
  --focus-ring-offset: rgba(247, 242, 233, 0.98);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 16px 34px rgba(33, 28, 20, 0.08);
  --shadow-card: 0 10px 24px rgba(33, 28, 20, 0.07);
  --shadow-card-soft: 0 5px 14px rgba(33, 28, 20, 0.045);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% -10%, #faf7f0 0%, var(--bg) 44%, var(--bg-deep) 100%);
  line-height: 1.55;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 120;
  padding: 0.62rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #b78f72;
  background: #fff7ea;
  color: #1f2933;
  box-shadow: 0 10px 24px rgba(33, 28, 20, 0.14);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 620;
  transform: translateY(-165%);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
}

.skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  outline: 2px solid transparent;
  box-shadow:
    0 0 0 3px #fffdf9,
    0 0 0 7px rgba(163, 107, 78, 0.5),
    0 12px 28px rgba(15, 23, 42, 0.2);
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 238, 227, 0.82);
  border-bottom: 1px solid rgba(196, 183, 167, 0.74);
  backdrop-filter: blur(14px) saturate(135%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.1px;
  white-space: nowrap;
}

.home-page :is(
  .site-nav a,
  .btn,
  .text-link,
  .explore-link,
  .footer-links a,
  .mobile-nav-toggle
):focus-visible {
  outline: 2px solid transparent;
  box-shadow:
    0 0 0 3px var(--focus-ring-offset),
    0 0 0 6px var(--focus-ring);
}

:is(.brand, .site-nav a, .btn, .mobile-nav-toggle, input, select, textarea):focus-visible {
  outline: 2px solid transparent;
  box-shadow:
    0 0 0 3px var(--focus-ring-offset),
    0 0 0 6px var(--focus-ring);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.site-nav {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.45rem 0.68rem;
  border-radius: 999px;
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
  background: rgba(250, 245, 236, 0.96);
  border-color: var(--border);
}

.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(252, 247, 239, 0.98);
  border-color: #bfaa93;
  text-decoration: none;
}


.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 183, 167, 0.9);
  background: rgba(250, 246, 237, 0.84);
  color: var(--text);
  box-shadow: 0 7px 20px rgba(33, 28, 20, 0.08);
  backdrop-filter: blur(8px);
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  background: rgba(252, 247, 240, 0.98);
  border-color: #ccb8a4;
  box-shadow: 0 9px 24px rgba(33, 28, 20, 0.12);
}

.mobile-nav-toggle-bar {
  width: 1rem;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  transition: transform 210ms ease, opacity 180ms ease;
}

.site-header.mobile-nav-open .mobile-nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.mobile-nav-open .mobile-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.mobile-nav-open .mobile-nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav-panel {
  display: none;
}

main {
  padding: 1.5rem 0 3.8rem;
  flex: 1 0 auto;
}

section,
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.section-pad {
  padding: clamp(1.2rem, 2.1vw, 2rem);
}

.stack {
  display: grid;
  gap: clamp(1rem, 2vw, 1.55rem);
}

.home-main.stack {
  gap: clamp(1.4rem, 3.1vw, 2.7rem);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.75rem, 4.2vw, 3.1rem);
  line-height: 1.08;
}

.hero h1 {
  max-width: 20ch;
}

.hero-content {
  display: grid;
  align-content: center;
  gap: 0.72rem;
}

.hero-eyebrow {
  margin: 0;
  font-size: clamp(0.76rem, 1.25vw, 0.94rem);
  font-weight: 560;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(214, 196, 175, 0.88);
  white-space: nowrap;
}

h2 {
  font-size: clamp(1.24rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.28;
}

p,
ul {
  margin: 0;
}

p + p,
ul + p,
p + ul,
.button-row,
.btn + .btn {
  margin-top: 0.9rem;
}

.lead {
  margin-top: 0.85rem;
  color: #3d444d;
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  max-width: 64ch;
}

.muted {
  color: var(--muted);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(145deg, #2f3741 0%, #39434f 55%, #434f5d 100%);
  color: #f7f2ea;
  border-color: #4f5c6a;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(163, 107, 78, 0.26), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.hero .lead,
.hero .muted {
  color: rgba(242, 234, 221, 0.92);
}

.hero .lead {
  margin-top: 0;
  max-width: 58ch;
}

.hero .btn {
  border-color: rgba(218, 201, 181, 0.36);
  background: rgba(34, 39, 45, 0.32);
  color: #f5eee3;
}

.hero .btn:hover,
.hero .btn:focus-visible {
  background: rgba(255, 244, 228, 0.14);
}

.hero .btn-primary {
  background: #ba8264;
  border-color: #ba8264;
  color: #fdf9f3;
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: #a97458;
}

.headshot-panel {
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(222, 205, 185, 0.44);
  background: rgba(255, 245, 230, 0.08);
}

.headshot-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero .button-row .btn {
  flex: 1 1 calc(50% - 0.35rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  border: 1px solid var(--line);
  background: #faf6ef;
  color: #2a3138;
  font-weight: 590;
  font-size: 0.92rem;
  min-height: 2.75rem;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: #b9aa98;
  box-shadow: 0 6px 16px rgba(33, 28, 20, 0.09);
}

.btn:focus-visible {
  border-color: #b49d87;
  box-shadow:
    0 0 0 3px var(--focus-ring-offset),
    0 0 0 6px var(--focus-ring),
    0 6px 16px rgba(17, 24, 39, 0.09);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background: #f8f2e9;
  border-color: #cfc0af;
  color: #30373f;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #f4ece1;
  border-color: #baaa98;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: #b49d87;
  background: #fffdfa;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.tier-proof {
  padding-block: clamp(1rem, 1.7vw, 1.3rem);
}

.tier-primary {
  padding-block: clamp(1.3rem, 2.2vw, 2rem);
}

.tier-support {
  padding-block: clamp(1.05rem, 1.8vw, 1.45rem);
}


.home-main .tier-proof {
  margin-top: clamp(0.4rem, 1vw, 0.8rem);
  padding-block: clamp(1.2rem, 2.1vw, 1.7rem);
}

.home-main .tier-primary {
  padding-block: clamp(1.95rem, 3.4vw, 3rem);
}

.home-main .tier-support {
  padding-block: clamp(1.15rem, 2vw, 1.7rem);
}

.section-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 630;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #6d665f;
}

.section-kicker-soft {
  color: #6f7988;
}

.stat {
  padding: 0.82rem 0.72rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #f6f1e8 0%, #f1e9de 100%);
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
  color: #555d67;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 0.95rem;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.item {
  background: #f9f4eb;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  box-shadow: var(--shadow-card-soft);
}

.item h3,
.item h2 {
  margin-bottom: 0.45rem;
}

.available-grid .item {
  border-color: #cfbfad;
  box-shadow: var(--shadow-card);
}


.home-main .available-section {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.home-main .available-grid {
  margin-top: 1.1rem;
}

.home-main .available-grid .item {
  padding: 1.08rem;
}

.highlight {
  background: linear-gradient(180deg, #f5efe7 0%, #efe5d8 100%);
  border: 1px solid #d7c4ad;
}

.training-notice {
  box-shadow: none;
}

.closing-cta {
  padding-block: clamp(1.35rem, 2.3vw, 2rem);
  margin-top: clamp(0.7rem, 1.8vw, 1.35rem);
}


.home-main .closing-cta {
  margin-top: clamp(1.4rem, 2.8vw, 2.2rem);
  padding-block: clamp(1.9rem, 3.1vw, 2.55rem);
  box-shadow: 0 20px 44px rgba(82, 52, 36, 0.17);
}

.closing-cta-content {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.8rem;
  max-width: 46rem;
  margin: 0 auto;
}

.closing-cta-content h2 {
  margin-bottom: 0;
}

.closing-cta-content .muted {
  max-width: 44ch;
}

.closing-cta-support {
  font-size: 0.93rem;
  font-weight: 590;
  color: #614332;
  letter-spacing: 0.01em;
}

.closing-cta-button {
  width: min(100%, 16rem);
  min-height: 2.95rem;
  padding: 0.74rem 1.35rem;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 610;
  letter-spacing: 0.01em;
  background: #a36b4e;
  border-color: #a36b4e;
  color: #fdf8f2;
  box-shadow: 0 12px 24px rgba(82, 52, 36, 0.26);
}

.closing-cta-button:hover,
.closing-cta-button:focus-visible {
  background: #87563d;
  border-color: #87563d;
  color: #fdf8f2;
  box-shadow: 0 14px 26px rgba(82, 52, 36, 0.3);
}

.firm-section {
  background: linear-gradient(180deg, #f8f3ea 0%, #f0e8dc 100%);
}


.home-main .firm-section {
  background: linear-gradient(180deg, #f5efe6 0%, #f1e9de 100%);
  margin-top: clamp(0.45rem, 1.2vw, 0.9rem);
}

.firm-intro {
  color: #676059;
  max-width: 66ch;
  margin-bottom: 1rem;
}

.firm-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 0.2rem;
  border: 1px solid #d2c2b1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #faf6ee 0%, #f2eadf 100%);
}

.firm-pill {
  display: grid;
  place-items: center;
  min-height: 5.25rem;
  padding: 1rem;
  border-right: 1px solid #dacbbc;
  border-bottom: 1px solid #dacbbc;
  font-size: clamp(0.8rem, 1.5vw, 0.94rem);
  font-weight: 580;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333a43;
  text-align: center;
}

.firm-pill:nth-child(3n) {
  border-right: 0;
}

.firm-pill:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.media-panel {
  background: linear-gradient(180deg, #f6f1e8 0%, #efe8dc 100%);
  border-color: #d7c8b7;
  color: #303741;
}

.naca-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.1rem, 3vw, 2.25rem);
  padding-block: clamp(1.1rem, 2.5vw, 1.8rem);
}

.naca-hero-copy {
  display: grid;
  gap: 0.5rem;
}

.naca-hero .lead {
  margin-top: 0;
  max-width: 58ch;
}

.naca-hero-logo {
  width: clamp(12rem, 16vw, 13.75rem);
  max-width: 100%;
  height: auto;
  justify-self: end;
}

.podcast-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.2vw, 1.4rem);
  margin-top: 0.8rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border: 1px solid #d4c5b3;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #f8f2e9 0%, #efe5d7 100%);
  box-shadow: 0 16px 30px rgba(33, 28, 20, 0.12);
}

.podcast-feature-thumbnail {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  border-radius: 14px;
  border: 1px solid #d3c3b1;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-card);
}

.podcast-feature-media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
}

.podcast-feature-media .podcast-feature-thumbnail {
  min-height: 0;
  border-radius: 0;
}

.podcast-feature-media:focus-visible {
  outline: 2px solid transparent;
  box-shadow:
    0 0 0 3px var(--focus-ring-offset),
    0 0 0 6px var(--focus-ring),
    0 10px 24px rgba(33, 28, 20, 0.18);
}


.podcast-feature-content {
  display: grid;
  align-content: center;
  gap: 0.72rem;
}

.podcast-feature-content h3 {
  font-size: clamp(1.28rem, 2vw, 1.65rem);
}

.podcast-feature-content .btn {
  width: fit-content;
}

.podcast-support-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}



.media-featured-resource {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}


.home-main .support-section {
  background: linear-gradient(180deg, #f8f3ea 0%, #f1eadf 100%);
  border-color: #d7cabc;
  box-shadow: var(--shadow-card-soft);
}

.support-intro {
  max-width: 64ch;
}

.home-main .support-grid {
  margin-top: 1rem;
}

.home-main .support-grid .media-panel {
  background: linear-gradient(180deg, #f8f3ea 0%, #f1eadf 100%);
  border-color: #d8cab9;
  box-shadow: 0 2px 10px rgba(33, 28, 20, 0.04);
}

.home-main .highlight.tier-support {
  background: linear-gradient(180deg, #f7f1e8 0%, #efe6da 100%);
  border-color: #ddd0c1;
}

.home-main .highlight.tier-support h2 {
  font-size: clamp(1.12rem, 1.8vw, 1.36rem);
  margin-bottom: 0.5rem;
}

.home-main .highlight.tier-support p {
  font-size: 0.95rem;
}

.explore-section {
  background: linear-gradient(180deg, #f8f3ea 0%, #f1eadf 100%);
  border-color: #d9ccbd;
  box-shadow: none;
  opacity: 0.95;
}

.home-main .explore-section {
  margin-top: clamp(0.15rem, 0.6vw, 0.4rem);
  padding-block: clamp(0.9rem, 1.6vw, 1.2rem);
}

.explore-label {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #746d66;
}

.explore-links {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #d0c1b0;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 560;
  color: #4c5058;
  background: #faf6ef;
}

.explore-link:hover,
.explore-link:focus-visible {
  border-color: #bcae9c;
  color: #343c45;
}

.media-panel .lead,
.media-panel .muted {
  color: #5f615f;
}

.media-panel p + .btn {
  margin-top: 0.95rem;
}

.media-panel .btn {
  background: #fbf6ee;
  border-color: #d1c2b0;
}

.naca-page main {
  padding-bottom: clamp(2.1rem, 4.6vw, 3rem);
}

.naca-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.2rem;
}

.naca-cta-row .muted {
  color: #565d67;
  margin: 0;
}

.naca-cta-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(10.5rem, max-content));
  justify-content: end;
  gap: 0.72rem;
}

.naca-cta-buttons .btn {
  width: 100%;
  justify-content: center;
  min-height: 2.75rem;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6e4a38;
  text-decoration: underline;
  text-decoration-color: rgba(110, 74, 56, 0.34);
  text-underline-offset: 0.16rem;
  transition: color 150ms ease, text-decoration-color 150ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #5a3a2c;
  text-decoration-color: rgba(90, 58, 44, 0.62);
}

.text-link:focus-visible {
  border-radius: 8px;
  box-shadow:
    0 0 0 3px var(--focus-ring-offset),
    0 0 0 6px rgba(163, 107, 78, 0.3);
}

.tier-support .item h3 {
  font-size: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.86rem;
}

label {
  display: grid;
  gap: 0.36rem;
  font-weight: 580;
  font-size: 0.93rem;
}

input,
select,
textarea {
  font: inherit;
  border: 1px solid #cabdae;
  border-radius: 10px;
  padding: 0.68rem 0.76rem;
  min-height: 2.85rem;
  background: #faf6ef;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #b48366;
  box-shadow: 0 0 0 4px rgba(163, 107, 78, 0.14);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0 2rem;
  color: #65605a;
  font-size: 0.88rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-links a {
  color: #4c4e55;
  text-decoration: none;
  font-weight: 560;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #333840;
  text-decoration: underline;
  text-underline-offset: 0.14rem;
}

@media (max-width: 940px) {
  .hero,
  .grid-3,
  .grid-2,
  .firm-wall {
    grid-template-columns: 1fr 1fr;
  }

  .podcast-feature {
    grid-template-columns: 1fr;
  }

  .naca-hero {
    gap: clamp(1rem, 2.2vw, 1.5rem);
  }

  .podcast-feature-thumbnail {
    min-height: 12.5rem;
  }

  .podcast-feature-media .podcast-feature-thumbnail {
    min-height: 0;
  }

  .firm-pill:nth-child(3n) {
    border-right: 1px solid #dacbbc;
  }

  .firm-pill:nth-child(2n) {
    border-right: 0;
  }

  .firm-pill:nth-last-child(-n + 3) {
    border-bottom: 1px solid #dacbbc;
  }

  .firm-pill:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .naca-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .naca-cta-buttons {
    width: 100%;
    justify-content: stretch;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    background: rgba(242, 235, 224, 0.96);
    border-bottom-color: rgba(184, 169, 152, 0.9);
    backdrop-filter: blur(18px) saturate(145%);
  }

  .nav-wrap {
    min-height: 4.5rem;
    padding: 0.78rem 0;
  }

  .site-nav--desktop {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    gap: 0.28rem;
    border-color: rgba(180, 164, 147, 0.95);
    background: linear-gradient(180deg, rgba(251, 247, 239, 0.98), rgba(241, 231, 218, 0.95));
    box-shadow:
      0 11px 28px rgba(33, 28, 20, 0.15),
      inset 0 1px 0 rgba(255, 248, 239, 0.9);
  }

  .mobile-nav-toggle-bar {
    width: 1.05rem;
    height: 2.2px;
  }

  .mobile-nav-panel {
    display: block;
    position: absolute;
    top: calc(100% + 0.42rem);
    left: 0;
    right: 0;
    z-index: 42;
    padding: 0 0 0.88rem;
    transform: translateY(-0.55rem);
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
    opacity: 0;
  }

  .mobile-nav-panel[hidden] {
    display: none;
  }

  .site-header.mobile-nav-open .mobile-nav-panel {
    transform: translateY(0);
    pointer-events: auto;
    opacity: 1;
  }

  .site-nav--mobile {
    display: grid;
    gap: 0.38rem;
    width: min(var(--max-width), 92%);
    background: linear-gradient(180deg, rgba(249, 244, 236, 1), rgba(239, 231, 220, 0.99));
    border: 1px solid rgba(177, 159, 140, 0.88);
    border-radius: 16px;
    box-shadow:
      0 28px 56px rgba(33, 28, 20, 0.2),
      0 12px 30px rgba(33, 28, 20, 0.12),
      inset 0 1px 0 rgba(255, 248, 239, 0.78);
    backdrop-filter: blur(6px) saturate(130%);
    padding: 0.72rem;
  }

  .mobile-nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 39;
    border: 0;
    margin: 0;
    padding: 0;
    background: rgba(34, 39, 45, 0.42);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-nav-scrim[hidden] {
    display: none;
  }

  body.mobile-nav-open .mobile-nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav--mobile a {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 11px;
    padding: 0.94rem 1rem;
    font-size: 1.01rem;
    font-weight: 560;
    line-height: 1.4;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.18rem;
    color: #1b2534;
    border: 1px solid transparent;
  }

  .site-nav--mobile a:hover,
  .site-nav--mobile a:focus-visible {
    background: rgba(252, 247, 239, 0.97);
    border-color: rgba(186, 168, 149, 0.95);
    color: #0f1726;
  }

  .site-nav--mobile a:focus-visible {
    box-shadow:
      0 0 0 3px rgba(255, 248, 239, 0.98),
      0 0 0 6px rgba(163, 107, 78, 0.34);
  }

  .site-nav--mobile a.active {
    color: #0f1624;
    background: linear-gradient(180deg, rgba(252, 248, 241, 0.985), rgba(240, 232, 221, 0.965));
    border-color: rgba(176, 158, 140, 0.96);
    box-shadow:
      0 5px 12px rgba(33, 28, 20, 0.09),
      inset 0 1px 0 rgba(255, 248, 239, 0.94);
  }

  main {
    padding-top: 1rem;
  }

  .naca-page main {
    padding-bottom: 2.2rem;
  }

  .section-pad {
    padding: 1rem;
  }

  .hero,
  .proof-bar,
  .grid-3,
  .grid-2,
  .firm-wall {
    grid-template-columns: 1fr;
  }

  .podcast-feature {
    padding: 1rem;
  }

  .naca-hero {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.9rem;
  }

  .naca-hero-logo {
    width: clamp(7.5rem, 40vw, 9.25rem);
    justify-self: start;
  }

  .podcast-feature-thumbnail {
    min-height: 11rem;
  }

  .podcast-feature-media .podcast-feature-thumbnail {
    min-height: 0;
  }

  .firm-pill {
    border-right: 0;
    min-height: 4.2rem;
    letter-spacing: 0.07em;
  }

  .firm-pill:not(:last-child) {
    border-bottom: 1px solid #dacbbc;
  }

  .firm-pill:nth-last-child(-n + 2) {
    border-bottom: 1px solid #dacbbc;
  }

  .firm-pill:last-child {
    border-bottom: 0;
  }

  .hero .button-row .btn {
    flex: 1 1 100%;
  }

  .naca-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .naca-cta-buttons {
    width: 100%;
    justify-content: stretch;
    grid-template-columns: 1fr;
  }

  .headshot-panel {
    width: min(82vw, 20.5rem);
    margin: 0.25rem auto 0;
  }

  .closing-cta-content {
    gap: 0.7rem;
  }

  .footer-content {
    align-items: flex-start;
  }

  .closing-cta-button {
    width: 100%;
    max-width: 18rem;
  }

  .hero-content {
    gap: 0.72rem;
  }

  .hero-eyebrow {
    white-space: normal;
    line-height: 1.45;
    letter-spacing: 0.05em;
  }
}

.security-hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn:hover {
    transform: none;
  }

  .mobile-nav-panel,
  .mobile-nav-scrim,
  .mobile-nav-toggle-bar {
    transition: none;
  }
}

.about-page section {
  box-shadow: var(--shadow-card-soft);
}

.about-intro {
  padding-block: clamp(1.6rem, 2.7vw, 2.6rem);
}

.about-intro h1 {
  max-width: 18ch;
}

.about-intro .lead {
  margin-top: 1rem;
  max-width: 72ch;
}

.about-main-copy {
  display: grid;
  gap: 1rem;
}

.about-main-copy p {
  max-width: 70ch;
  color: #3f4750;
}

.about-mini-sections {
  align-items: stretch;
}

.about-item {
  padding: 1.1rem 1.05rem;
}

.about-item h2 {
  margin-bottom: 0.6rem;
}

.about-closing .closing-cta-content {
  justify-items: start;
  text-align: left;
  max-width: 64ch;
}

.about-closing .closing-cta-content h2 {
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.about-closing .closing-cta-content .muted {
  max-width: 62ch;
}

.about-closing .button-row {
  margin-top: 0.5rem;
}


.about-closing-buttons {
  flex-direction: column;
  align-items: flex-start;
}

.about-closing-buttons .btn {
  width: auto;
}

.about-closing .closing-cta-button {
  width: auto;
  min-width: 12.5rem;
}

@media (max-width: 780px) {
  .about-closing .closing-cta-content {
    justify-items: center;
    text-align: center;
  }

  .about-closing-buttons {
    align-items: center;
  }
}
