:root {
  --paper: #efe3d6;
  --surface: #f6ece2;
  --card: #fbf4ed;
  --ink: #163f60;
  --muted: #5f7281;
  --band: #124e78;
  --sage: #ddb84b;
  --accent: #d74e09;
  --accent-soft: #f2d27a;
  --berry: #6e0e0a;
  --band-wave: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%201600%20220%27%20preserveAspectRatio=%27none%27%3E%3Cpath%20fill=%27%23efe3d6%27%20d=%27M0,0H1600V166C1510,159%201426,160%201336,175C1243,190%201156,182%201065,149C967,113%20881,80%20767,59C642,35%20518,35%20391,38C270,41%20187,32%20109,24C65,19%2033,16%200,18Z%27/%3E%3C/svg%3E");
  --line: rgba(18, 78, 120, 0.16);
  --shadow: 0 20px 48px rgba(14, 45, 69, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
blockquote,
ul {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--band);
}

.site-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Caveat", cursive;
  font-size: 1.8rem;
  line-height: 1;
}

.nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "Oswald", sans-serif;
  font-size: 0.94rem;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.3rem;
  border-radius: 0.35rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "Oswald", sans-serif;
  font-size: 0.98rem;
  line-height: 1;
}

.nav-cta {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.secondary {
  color: #fff;
  background: var(--band);
}

.button.light {
  color: var(--band);
  background: #fff;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.section-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  position: relative;
  isolation: isolate;
  padding: 5.5rem 0;
}

.hero {
  position: relative;
  isolation: isolate;
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 17rem;
  height: 17rem;
  background: var(--sage);
  border-bottom-right-radius: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  right: -5rem;
  bottom: -6rem;
  width: 19rem;
  height: 19rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 14px var(--paper);
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 3.25rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-visual {
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}

.hero-visual-card {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0 0 18rem 1.5rem / 0 0 4rem 1.5rem;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.hero-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(24, 33, 37, 0.04)),
    linear-gradient(180deg, rgba(239, 227, 214, 0), rgba(239, 227, 214, 0.07));
  z-index: 1;
}

.hero-visual-card::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: 5%;
  width: 48%;
  height: 45%;
  border: 8px solid rgba(239, 227, 214, 0.88);
  border-radius: 50%;
  z-index: 2;
}

.contact-page-main {
  max-width: none;
  margin: 0;
  padding: 0 0 4rem;
}

.contact-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
  padding: 4rem 0 2rem;
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14rem;
  height: 14rem;
  background: var(--sage);
  border-bottom-right-radius: 100%;
}

.contact-page-hero::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 14rem;
  height: 14rem;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px var(--paper);
}

.contact-page-shell {
  position: relative;
  z-index: 1;
}

.contact-page-copy {
  max-width: 46rem;
}

.contact-page-copy h1 {
  max-width: 10ch;
}

.contact-page-lede {
  max-width: 42rem;
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.eyebrow {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Oswald", sans-serif;
  font-size: 0.96rem;
  margin-bottom: 1rem;
}

.hero-visual-mark {
  position: absolute;
  left: 1.2rem;
  bottom: 1.4rem;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, rgba(239, 227, 214, 0.95), transparent);
  z-index: 2;
}

.hero-portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

h1 {
  max-width: 9ch;
  font-size: clamp(2.35rem, 4.6vw, 4.1rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

h3 {
  font-size: 1.58rem;
}

.lede {
  max-width: 28ch;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.55;
}

.hero-copy .button {
  margin-top: 1.55rem;
}

.checklist-section {
  overflow: visible;
  padding-top: 4.8rem;
}

.checklist-section::before {
  content: "";
  position: absolute;
  left: -7.5rem;
  top: 1.5rem;
  width: 13rem;
  height: 16rem;
  background: rgba(147, 170, 162, 0.18);
  border-radius: 60% 40% 55% 45% / 44% 56% 42% 58%;
  z-index: -1;
}

.checklist-section::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: 2.5rem;
  width: 11rem;
  height: 14rem;
  border: 2px solid rgba(55, 90, 99, 0.1);
  border-radius: 48% 52% 36% 64% / 44% 41% 59% 56%;
  z-index: -1;
}

.checklist-grid {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 2.75rem;
}

.checklist-grid li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1.5;
}

.checklist-grid li::before {
  content: "▢";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
}

.about-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--band);
}

.about-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 11rem;
  background: var(--band-wave) center top / 100% 100% no-repeat;
  z-index: 0;
}

.about-band::after {
  content: none;
}

.about-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(320px, 430px);
  gap: 0;
  justify-content: center;
  align-items: center;
  padding-top: 7.25rem;
  padding-bottom: 5.25rem;
}

.about-shell::before {
  content: "";
  position: absolute;
  left: -8.5rem;
  bottom: -7rem;
  width: 18rem;
  height: 15rem;
  background: linear-gradient(150deg, rgba(242, 210, 122, 0.92), rgba(242, 210, 122, 0.68));
  border-radius: 63% 37% 58% 42% / 52% 48% 52% 48%;
  transform: rotate(-18deg);
  z-index: 0;
}

.about-shell::after {
  content: "";
  position: absolute;
  left: -4.5rem;
  bottom: -4.8rem;
  width: 12rem;
  height: 12rem;
  border: 2px solid rgba(251, 244, 237, 0.42);
  border-radius: 42% 58% 52% 48% / 58% 42% 58% 42%;
  transform: rotate(12deg);
  z-index: 0;
}

.about-visual {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
}

.about-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-card {
  position: relative;
  z-index: 2;
  max-width: 430px;
  background: var(--card);
  border-radius: 0.5rem;
  padding: 2rem 2rem 2.1rem;
  box-shadow: var(--shadow);
  margin-top: 7.5rem;
  margin-left: -5rem;
}

.about-card h2 {
  color: var(--accent);
  font-size: clamp(2rem, 2.6vw, 2.55rem);
  margin-bottom: 1rem;
}

.bio-grid {
  display: grid;
  gap: 0.9rem;
}

.bio-grid p {
  color: rgba(22, 63, 96, 0.84);
  font-size: 1.03rem;
  line-height: 1.72;
}

.topics-section {
  position: relative;
  padding-top: 5.5rem;
  overflow: visible;
}

.topics-section::before {
  content: "";
  position: absolute;
  right: -6rem;
  top: 1.5rem;
  width: 14rem;
  height: 18rem;
  background: rgba(242, 187, 5, 0.16);
  border-radius: 52% 48% 62% 38% / 40% 56% 44% 60%;
  z-index: -1;
}

.topics-section::after {
  content: "";
  position: absolute;
  left: -6rem;
  bottom: 1rem;
  width: 11rem;
  height: 15rem;
  border: 2px solid rgba(55, 90, 99, 0.1);
  border-radius: 58% 42% 46% 54% / 41% 57% 43% 59%;
  z-index: -1;
}

.section-head {
  margin-bottom: 2rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.topic-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 10px 24px rgba(20, 33, 37, 0.06);
}

.topic-card::before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent-soft), transparent),
    var(--sage);
  box-shadow: inset 0 0 0 8px var(--surface);
}

.topic-card:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.5), transparent),
    rgba(215, 78, 9, 0.72);
}

.topic-card:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.5), transparent),
    rgba(55, 90, 99, 0.55);
}

.topic-card:nth-child(4)::before {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.5), transparent),
    rgba(110, 14, 10, 0.42);
}

.topic-card h3 {
  margin-bottom: 0.8rem;
  line-height: 1.05;
}

.topic-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-cta {
  margin-top: 2rem;
}

.engagements-section {
  position: relative;
  overflow: visible;
  padding-top: 4.2rem;
}

.engagements-section::before {
  content: "";
  position: absolute;
  left: -6rem;
  top: 5rem;
  width: 13rem;
  height: 17rem;
  background: rgba(147, 170, 162, 0.16);
  border-radius: 61% 39% 49% 51% / 39% 52% 48% 61%;
  z-index: -1;
}

.engagements-section::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: 3rem;
  width: 13rem;
  height: 16rem;
  border: 2px solid rgba(55, 90, 99, 0.1);
  border-radius: 42% 58% 55% 45% / 38% 46% 54% 62%;
  z-index: -1;
}

.engagements-section h2 {
  margin-bottom: 1.8rem;
}

.timeline {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.timeline li {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.35rem 1.4rem 1.45rem;
}

.timeline .meta {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Oswald", sans-serif;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.timeline h3 {
  margin-bottom: 0.55rem;
  line-height: 1.05;
}

.timeline p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.timeline a {
  font-weight: 700;
  color: var(--ink);
  text-underline-offset: 0.18em;
}

.testimonial-band {
  position: relative;
  isolation: isolate;
  overflow: visible;
  margin-top: 5rem;
  background: var(--band);
}

.testimonial-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10.25rem;
  background: var(--band-wave) center top / 100% 100% no-repeat;
  z-index: 0;
}

.testimonial-band::after {
  content: none;
}

.testimonial-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  gap: 2rem;
  align-items: start;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
}

.testimonial-copy {
  min-width: 0;
}

.testimonial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.testimonial-heading {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
}

.testimonial-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.testimonial-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.testimonial-control:hover,
.testimonial-control:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.testimonial-carousel {
  position: relative;
}

.testimonial-slide {
  display: none;
  max-width: 43rem;
}

.testimonial-slide.is-active {
  display: block;
  animation: testimonial-fade 220ms ease;
}

.testimonial-copy blockquote {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.8;
}

.quote-meta {
  margin-top: 1rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.quote-source {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease;
}

.testimonial-dot.is-active {
  background: var(--accent-soft);
  transform: scale(1.15);
}

.testimonial-control:focus-visible,
.testimonial-dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

.testimonial-accent {
  position: relative;
  justify-self: end;
  padding: 2rem 0 0 4rem;
}

.testimonial-accent::before {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -3rem;
  width: 11rem;
  height: 11rem;
  background: var(--accent);
  border-radius: 50%;
}

.testimonial-accent::after {
  content: "";
  position: absolute;
  top: 0;
  right: 5.6rem;
  width: 3rem;
  height: 3rem;
  background: var(--accent-soft);
  border-radius: 0.9rem 0.9rem 1.4rem 0.9rem;
  transform: rotate(22deg);
}

.testimonial-accent .button {
  position: relative;
  z-index: 1;
}

@keyframes testimonial-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.resource-band {
  position: relative;
  isolation: isolate;
  padding: 5rem 0 0;
}

.resource-band::before {
  content: "";
  position: absolute;
  left: -5.5rem;
  top: 7rem;
  width: 12rem;
  height: 16rem;
  border: 2px solid rgba(55, 90, 99, 0.1);
  border-radius: 59% 41% 50% 50% / 40% 50% 50% 60%;
  z-index: -1;
}

.resource-band::after {
  content: "";
  position: absolute;
  right: -6rem;
  top: 2rem;
  width: 13rem;
  height: 16rem;
  background: rgba(242, 187, 5, 0.16);
  border-radius: 46% 54% 64% 36% / 40% 55% 45% 60%;
  z-index: -1;
}

.resource-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.resource-accent {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(215, 78, 9, 0.92), rgba(215, 78, 9, 0.72));
  box-shadow: var(--shadow);
}

.resource-accent::before {
  content: "";
  position: absolute;
  right: -15%;
  bottom: -25%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.64);
}

.resource-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 35%);
}

.accent-glyph {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Caveat", cursive;
  font-size: 5rem;
}

.resource-panel {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.resource-panel h2 {
  margin-bottom: 1.5rem;
}

.resource-list {
  display: grid;
  gap: 1rem;
}

.resource-row {
  display: block;
  text-decoration: none;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}

.resource-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.resource-row:hover,
.profile-link:hover {
  color: var(--accent);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
  padding: 5rem 1.5rem 5.5rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -12rem;
  width: 16rem;
  height: 20rem;
  border: 2px solid rgba(55, 90, 99, 0.08);
  border-radius: 44% 56% 60% 40% / 38% 44% 56% 62%;
  z-index: -1;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: -7rem;
  top: 3rem;
  width: 13rem;
  height: 17rem;
  border: 2px solid rgba(110, 14, 10, 0.16);
  border-radius: 58% 42% 49% 51% / 42% 58% 44% 56%;
  z-index: -1;
}

.contact-page-section {
  padding-top: 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2.5rem;
  align-items: start;
}

.footer-inner-home {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
}

.contact-page-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.footer-summary {
  display: grid;
  gap: 1rem;
}

.footer-summary h2 {
  margin: 0;
}

.footer-summary p:not(.eyebrow) {
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-cta p {
  max-width: 34ch;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.footer-form {
  max-width: 34rem;
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.form-field label {
  font-family: "Oswald", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(18, 78, 120, 0.24);
  border-radius: 0.8rem;
  padding: 0.95rem 1rem;
  background: rgba(251, 244, 237, 0.72);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.form-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 3px solid rgba(221, 184, 75, 0.4);
  outline-offset: 2px;
  border-color: rgba(215, 78, 9, 0.55);
}

.footer-form .button {
  margin-top: 1.5rem;
  border: 0;
  cursor: pointer;
}

.footer-form .button:disabled {
  opacity: 0.72;
  cursor: wait;
}

.footer-form-note {
  max-width: 42ch;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.footer-form-note[data-state="pending"] {
  color: var(--ink);
}

.footer-form-note[data-state="success"] {
  color: var(--band);
  font-weight: 600;
}

.footer-form-note[data-state="error"] {
  color: var(--berry);
  font-weight: 600;
}

.footer-links {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 10px 24px rgba(20, 33, 37, 0.06);
  display: grid;
  gap: 1.75rem;
}

.footer-links h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-links-compact {
  align-self: center;
}

.contact-side-stack {
  display: grid;
  gap: 1.75rem;
  align-self: start;
}

.discovery-card {
  display: grid;
  gap: 1rem;
  scroll-margin-top: 8rem;
}

.discovery-card p {
  color: var(--muted);
  line-height: 1.65;
}

.calendly-embed {
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}

.calendly-embed iframe {
  display: block;
  width: 100%;
  height: 700px;
  border: 0;
}

.discovery-button {
  width: 100%;
}

.connect-links {
  display: grid;
  gap: 0.75rem;
}

.connect-links h2 {
  margin-bottom: 0.25rem;
}

.profiles-grid {
  display: grid;
  gap: 0.75rem;
}

.profile-link {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  font-weight: 600;
}

.profile-link:last-child {
  border-bottom: 0;
}

@media (max-width: 980px) {
  .hero-shell,
  .about-shell,
  .resource-shell,
  .footer-inner,
  .testimonial-shell,
  .topic-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .contact-page-hero {
    padding-top: 3rem;
  }

  .contact-page-copy h1 {
    max-width: none;
  }

  .site-header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
    padding-top: 0.35rem;
  }

  .hero-shell {
    min-height: auto;
    gap: 2rem;
    padding-top: 2.5rem;
  }

  .hero-visual {
    order: 2;
    min-height: 360px;
  }

  .hero-copy {
    order: 1;
  }

  h1 {
    max-width: none;
  }

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

  .about-band {
    background: var(--band);
  }

  .about-shell {
    gap: 1.5rem;
    justify-items: center;
    padding-top: 6rem;
    padding-bottom: 4.25rem;
  }

  .about-shell::before {
    left: -5.25rem;
    bottom: -5.75rem;
    width: 13rem;
    height: 11rem;
  }

  .about-shell::after {
    left: -1.75rem;
    bottom: -3.5rem;
    width: 8.75rem;
    height: 8.75rem;
  }

  .about-card {
    margin-top: -4rem;
    margin-left: 0;
    margin-bottom: 0;
  }

  .testimonial-shell {
    padding-top: 5.5rem;
  }

  .testimonial-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .testimonial-accent {
    justify-self: start;
    padding: 1rem 0 5rem;
  }

  .discovery-card {
    scroll-margin-top: 10.5rem;
  }

  .topics-section::after,
  .engagements-section::after,
  .site-footer::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header-inner,
  .section-shell,
  main,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand {
    font-size: 1.75rem;
  }

  .contact-page-hero::before {
    width: 10rem;
    height: 10rem;
  }

  .contact-page-hero::after {
    width: 9rem;
    height: 9rem;
    right: -2rem;
    bottom: -2rem;
  }

  .button {
    width: 100%;
  }

  .calendly-embed iframe {
    height: 660px;
  }

  .hero::before {
    width: 11rem;
    height: 11rem;
  }

  .hero::after {
    width: 10rem;
    height: 10rem;
    right: -2rem;
    bottom: -2rem;
  }

  .hero-visual-card,
  .about-visual,
  .resource-panel,
  .resource-accent,
  .footer-links {
    border-radius: 1.25rem;
  }

  .form-field input,
  .form-field textarea {
    border-radius: 0.95rem;
  }

  .hero-visual {
    min-height: 300px;
  }

  .checklist-grid li {
    font-size: 1.15rem;
  }

  .topic-card,
  .timeline li,
  .about-card,
  .resource-panel,
  .footer-links {
    padding: 1.35rem;
  }

  .resource-accent {
    min-height: 180px;
  }

  .checklist-section::before,
  .checklist-section::after,
  .resource-band::before,
  .resource-band::after,
  .site-footer::before {
    display: none;
  }

  .about-band::before,
  .testimonial-band::before {
    height: 7rem;
  }

  .about-shell::before {
    left: -4.75rem;
    bottom: -5rem;
    width: 10rem;
    height: 8.75rem;
  }

  .about-shell::after {
    left: -0.85rem;
    bottom: -2.85rem;
    width: 6.5rem;
    height: 6.5rem;
  }

  .about-card {
    margin-top: -2rem;
  }

  .testimonial-control {
    width: 2.55rem;
    height: 2.55rem;
  }

  .testimonial-copy blockquote {
    max-width: none;
  }
}
