@font-face {
  font-family: "Anton";
  src: url("../assets/fonts/anton-latin-ext-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-latin-ext-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-latin-ext-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-latin-ext-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --navy: #18233c;
  --navy-deep: #101a31;
  --blue: #235877;
  --blue-bright: #1d6b92;
  --white: #ffffff;
  --ink: #111827;
  --muted: #566174;
  --line: #dbe2e9;
  --line-dark: rgba(255, 255, 255, 0.22);
  --danger: #b42318;
  --container: 1280px;
  --gutter: clamp(1.25rem, 5.55vw, 5rem);
  --section-space: clamp(6rem, 10.5vw, 9.5rem);
  --header-height: 6.5rem;
  --radius-md: 16px;
  --radius-pill: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 2rem);
  background: var(--navy-deep);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

figure,
blockquote,
h1,
h2,
h3,
p {
  margin-top: 0;
}

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(74, 125, 155, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-md);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 260ms ease, border-color 260ms ease, background-color 260ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(24, 35, 60, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(24, 35, 60, 0.08);
  backdrop-filter: blur(16px);
}

.site-main {
  padding-top: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.wordmark {
  color: var(--navy);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.75rem);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.75rem;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.625rem;
  padding: 0.9rem 1.65rem;
  border: 1px solid var(--blue);
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(24, 35, 60, 0.09);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

.button:hover {
  border-color: var(--navy);
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(24, 35, 60, 0.16);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 3rem;
  padding: 0.75rem 1.55rem;
  font-size: 0.9rem;
}

.menu-toggle {
  position: relative;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0.5rem;
  display: block;
  width: calc(100% - 1rem);
  height: 2px;
  margin: 0;
  background: var(--navy);
  transform-origin: center;
  transition: top 200ms ease, transform 200ms ease, opacity 200ms ease;
}

.menu-toggle span:nth-child(1) {
  top: calc(50% - 7px);
}

.menu-toggle span:nth-child(2) {
  top: calc(50% - 1px);
}

.menu-toggle span:nth-child(3) {
  top: calc(50% + 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 29;
  top: calc(var(--header-height) + 0.75rem);
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-height: calc(100svh - var(--header-height) - 1.5rem);
  padding: 1rem 1.25rem 1.4rem;
  overflow-y: auto;
  border: 1px solid rgba(24, 35, 60, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 24px 60px rgba(24, 35, 60, 0.18);
}

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

.mobile-nav a {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
  font-weight: 500;
}

.mobile-nav .button {
  margin-top: 2rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: clamp(3.75rem, 7vh, 6.5rem);
  padding-bottom: clamp(3.75rem, 8vh, 6.5rem);
  text-align: center;
}

.hero-badge {
  position: relative;
  margin: 0 0 2rem;
  padding: 0.72rem 1.35rem;
  border: 1px solid #ffce6e;
  border-radius: var(--radius-pill);
  color: #0c0f1a;
  background: #ffa787;
  box-shadow: 0 16px 40px rgba(217, 119, 90, 0.22);
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  font-weight: 600;
  line-height: 1.35;
  animation: badge-float 5s ease-in-out infinite;
}

.hero h1,
.section-title,
.final-cta h2,
.modal-dialog h2,
.activities-list h3,
.outcome h3 {
  color: var(--navy);
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 2.25rem;
  font-size: clamp(4rem, 6.35vw, 5.75rem);
  line-height: 1.055;
  letter-spacing: -0.015em;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 2.5rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.55;
  text-wrap: balance;
}

.button-hero {
  min-width: min(100%, 20.5rem);
}

.proof-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.6rem 0 0;
  color: var(--ink);
  font-size: 0.92rem;
}

.proof-line span + span::before {
  margin-right: 0.8rem;
  content: "•";
  color: var(--navy);
}

.vortex-lines {
  position: absolute;
  z-index: -1;
  width: 18rem;
  height: 28rem;
  border: 1px solid rgba(74, 125, 155, 0.16);
  border-radius: 46% 54% 50% 50% / 41% 45% 55% 59%;
  pointer-events: none;
}

.vortex-lines::before,
.vortex-lines::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(74, 125, 155, 0.14);
  border-radius: inherit;
  inset: 1.5rem;
}

.vortex-lines::after {
  inset: 3rem;
}

.hero-lines {
  top: 6%;
  right: -7.5rem;
  transform: rotate(7deg);
}

.hero-media {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin: 0 auto;
}

.hero-media-frame {
  position: relative;
  height: auto;
  aspect-ratio: 431 / 207;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy);
}

.hero-media-frame::before {
  display: none;
}

.hero-media-frame img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: none;
  transition: transform 700ms var(--ease);
}

.hero-media figcaption {
  margin-top: 0.9rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
}

.section-title {
  margin-bottom: 0;
  font-size: clamp(3.25rem, 5.3vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.section-title em {
  color: var(--blue-bright);
  font-style: normal;
}

.title-accent {
  color: var(--blue-bright);
}

.transformation-title {
  max-width: 870px;
}

.transformation-lines {
  top: 5rem;
  left: -11rem;
  width: 23rem;
  height: 22rem;
  transform: rotate(38deg);
}

.outcomes-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(5rem, 9vw, 8.5rem) 0 0;
  padding: 0;
  list-style: none;
}

.outcome {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1.5rem;
  min-height: 13rem;
  padding: 2.75rem clamp(2rem, 4vw, 4rem) 2.75rem 0;
  border-top: 1px solid var(--line);
  transition: transform 300ms var(--ease), background-color 300ms ease;
}

.outcome:nth-child(even) {
  padding-right: 0;
  padding-left: clamp(2rem, 4vw, 4rem);
  border-left: 1px solid var(--line);
}

.outcome-wide {
  grid-column: 1 / -1;
  max-width: 72%;
}

.outcome-number {
  color: var(--blue-bright);
  font-family: "Anton", Impact, sans-serif;
  font-size: 5rem;
  line-height: 0.92;
}

.outcome h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.outcome p {
  max-width: 30rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.activities {
  color: var(--white);
  background: var(--navy);
}

.activities-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: stretch;
}

.section-title-light,
.activities-list h3 {
  color: var(--white);
}

.section-lead {
  max-width: 32rem;
  margin: 2rem 0 0;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.65;
}

.section-lead-light {
  color: rgba(255, 255, 255, 0.76);
}

.activities-list {
  margin: 4.25rem 0 0;
  padding: 0;
  list-style: none;
}

.activities-list li {
  position: relative;
  padding: 1.35rem 0 1.35rem 1.25rem;
  border-bottom: 1px solid var(--line-dark);
}

.activities-list li::before {
  position: absolute;
  top: 1.92rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  content: "";
  background: var(--blue-bright);
}

.activities-list h3 {
  margin-bottom: 0.28rem;
  font-size: 1.45rem;
  line-height: 1.1;
}

.activities-list p {
  max-width: 31rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

.activities-media {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  margin: 0;
}

.activities-media img {
  width: 100%;
  height: clamp(37rem, 56vw, 52rem);
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-md);
  transition: transform 700ms var(--ease);
}

.activities-media figcaption {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.65rem;
  width: fit-content;
  margin-top: 1rem;
  padding: 0.58rem 0.95rem;
  border-radius: var(--radius-pill);
  color: var(--white);
  background: var(--blue);
  font-size: 0.84rem;
  font-weight: 600;
}

.activities-media figcaption::before {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  content: "";
  background: #ff4d4d;
  box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.15);
}

.activities-lines {
  bottom: -7rem;
  left: -12rem;
  width: 25rem;
  height: 33rem;
  border-color: rgba(255, 255, 255, 0.12);
  transform: rotate(8deg);
}

.activities-lines::before,
.activities-lines::after {
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonials {
  padding-bottom: clamp(7rem, 12vw, 11rem);
}

.quotes-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
  margin-top: clamp(5rem, 8vw, 7.5rem);
}

.quote {
  position: relative;
  margin: 0;
}

.quote p {
  margin-bottom: 0;
  color: var(--navy);
  line-height: 1.4;
}

.quote-mark {
  display: block;
  height: 3.5rem;
  color: var(--blue-bright);
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.quote-featured p {
  max-width: 53rem;
  font-size: clamp(2rem, 3.45vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.quote-secondary {
  padding: 3rem 0 3rem clamp(3rem, 5vw, 5rem);
  border-left: 1px solid var(--line);
}

.quote-secondary p {
  max-width: 28rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.about {
  padding-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
  padding-top: var(--section-space);
  border-top: 1px solid var(--line);
}

.about-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.about-media img {
  width: 100%;
  height: clamp(28rem, 48vw, 44rem);
  object-fit: cover;
  object-position: center 74%;
  border-radius: var(--radius-md);
  transform: scale(1.3);
  transition: transform 700ms var(--ease);
}

.about-content {
  max-width: 41rem;
}

.about-content .section-title {
  margin-bottom: 2.25rem;
  font-size: clamp(3.25rem, 4.6vw, 4.6rem);
  line-height: 1;
}

.about-content .section-title span {
  display: block;
  white-space: nowrap;
}

.about-content p {
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.about-button {
  margin-top: 1.2rem;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% + 2rem);
  margin-inline: -1rem;
  padding: 2rem 1rem;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: transparent;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease;
}

.accordion-trigger:hover {
  color: var(--blue-bright);
  background: rgba(43, 135, 181, 0.06);
}

.accordion-trigger svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
  transition: transform 220ms var(--ease);
}

.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.accordion-panel {
  padding: 0 4rem 2rem 0;
  color: var(--muted);
}

.accordion-panel p {
  max-width: 45rem;
  margin-bottom: 0;
}

.final-cta {
  position: relative;
  padding-block: clamp(5.5rem, 8vw, 8rem);
  color: var(--white);
  background: var(--navy);
}

.final-cta-grid {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  align-items: center;
  text-align: center;
}

.final-cta h2 {
  max-width: 1180px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(3rem, 4.6vw, 4.5rem);
  line-height: 0.98;
}

.final-cta h2 span {
  display: block;
  white-space: nowrap;
}

.button-light {
  align-self: center;
  min-width: 20rem;
  border-color: var(--blue-bright);
  background: var(--blue-bright);
}

.button-light:hover {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}

.final-cta-note {
  margin: -1rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  text-align: center;
}

.site-footer {
  padding-block: 2rem;
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-deep);
  font-size: 0.78rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.footer-inner p {
  margin-bottom: 0;
  text-align: center;
}

.footer-inner > a:last-child {
  justify-self: end;
}

.wordmark-light {
  color: var(--white);
  font-size: 1.15rem;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  background: rgba(10, 17, 31, 0.72);
  backdrop-filter: blur(4px);
  inset: 0;
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 31rem);
  max-height: calc(100svh - 2.5rem);
  padding: clamp(2rem, 4vw, 3rem);
  overflow-y: auto;
  border: 1px solid rgba(24, 35, 60, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 32px 80px rgba(10, 17, 31, 0.3);
}

.modal-dialog h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(2.15rem, 4vw, 3rem);
  line-height: 1.05;
}

.modal-dialog > p {
  margin-bottom: 2rem;
  color: var(--muted);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: var(--radius-md);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.modal-close svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 500;
}

.form-field input {
  width: 100%;
  height: 3.15rem;
  padding: 0 0.85rem;
  border: 1px solid #bfc9d4;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: var(--white);
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74, 125, 155, 0.14);
  outline: 0;
}

.form-field input[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  display: block;
  min-height: 1.25rem;
  padding-top: 0.2rem;
  color: var(--danger);
  font-size: 0.74rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.35rem;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-status {
  min-height: 1.35rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: #067647;
}

.form-note {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
  text-align: center;
}

.site-main p,
.site-footer p,
.modal-dialog p {
  line-height: 1.3;
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .hero-media:hover img,
  .activities-media:hover img {
    transform: scale(1.025);
  }

  .about-media:hover img {
    transform: scale(1.5);
  }

  .outcome:hover {
    background: rgba(43, 135, 181, 0.035);
    transform: translateY(-4px);
  }
}

.privacy-page {
  min-height: 100vh;
  padding: 4rem 0 7rem;
}

.privacy-content {
  max-width: 780px;
}

.privacy-content h1 {
  margin: 5rem 0 2.5rem;
  color: var(--navy);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1;
}

.privacy-content h2 {
  margin: 2.5rem 0 0.8rem;
  color: var(--navy);
}

@media (max-width: 980px) {
  :root {
    --section-space: 7rem;
  }

  .desktop-nav {
    gap: 1.25rem;
  }

  .hero h1 {
    max-width: 850px;
  }

  .activities-grid,
  .about-grid,
  .quotes-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .activities-media img {
    height: 42rem;
  }

  .quote-secondary {
    max-width: 38rem;
    padding: 3rem 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-grid {
    gap: 4.5rem;
  }

  .about-media,
  .about-content {
    max-width: 720px;
  }

  .faq-grid {
    gap: 4rem;
  }

  .button-light {
    align-self: center;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 4.75rem;
    --gutter: 1.25rem;
    --section-space: 5.5rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .wordmark {
    font-size: 1.45rem;
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: clamp(2.6rem, 6vh, 4.25rem);
    padding-bottom: 5.25rem;
  }

  .hero-badge {
    max-width: 22rem;
    margin-bottom: 1.6rem;
    padding: 0.65rem 1.1rem;
  }

  .hero h1 {
    max-width: 22rem;
    margin-bottom: 1.8rem;
    font-size: clamp(2.4rem, 3vw, 4rem);
    /*font-size: clamp(3.25rem, 13vw, 4.25rem);*/
    line-height: 1.055;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-copy {
    max-width: 23rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.62;
  }

  .button-hero {
    width: min(100%, 23rem);
    min-width: 0;
  }

  .proof-line {
    flex-wrap: wrap;
    max-width: 24rem;
    gap: 0.2rem 0.7rem;
    margin-top: 1.35rem;
    font-size: 0.84rem;
  }

  .proof-line span:nth-child(3) {
    flex-basis: 100%;
  }

  .proof-line span:nth-child(3)::before {
    display: none;
  }

  .hero-lines {
    display: none;
  }

  .hero-media {
    height: auto;
  }

  .hero-media-frame {
    height: 33rem;
    aspect-ratio: auto;
  }

  .hero-media-frame img {
    object-fit: cover;
    object-position: center 16%;
    filter: none;
  }

  .hero-media-frame::before {
    display: none;
  }

  .section-title {
    font-size: clamp(3rem, 13vw, 4.25rem);
  }

  .outcomes-list {
    grid-template-columns: 1fr;
    margin-top: 4.5rem;
  }

  .outcome,
  .outcome:nth-child(even) {
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 1rem;
    min-height: 0;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .outcome-wide {
    max-width: none;
  }

  .outcome-number {
    font-size: 3.75rem;
  }

  .outcome h3 {
    font-size: 1.65rem;
  }

  .activities-grid {
    gap: 4rem;
  }

  .activities-list {
    margin-top: 3rem;
  }

  .activities .section-lead {
    margin-top: 1rem;
  }

  .activities-media img {
    height: 36rem;
  }

  .quotes-grid {
    gap: 4rem;
    margin-top: 4rem;
  }

  .quote-featured p {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .quote-secondary p {
    font-size: 1.35rem;
  }

  .about-grid {
    gap: 3.5rem;
  }

  .about-media img {
    height: 31rem;
    transform: scale(1.08);
  }

  .about-button {
    width: 100%;
  }

  .about-content .section-title span {
    white-space: normal;
  }

  .faq-grid {
    gap: 3rem;
  }

  .accordion-trigger {
    width: 100%;
    margin-inline: 0;
    padding: 1.6rem 0;
  }

  .accordion-panel {
    padding-right: 1rem;
  }

  .final-cta {
    padding-block: 5.5rem;
  }

  .final-cta h2 {
    font-size: clamp(3rem, 13vw, 4.25rem);
  }

  .final-cta h2 span {
    white-space: normal;
  }

  .button-light {
    width: 100%;
    min-width: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
    text-align: center;
  }

  .footer-inner p {
    text-align: center;
  }

  .footer-inner > a:last-child {
    justify-self: center;
  }

  .modal-dialog {
    padding: 2rem 1.35rem 1.5rem;
  }

  .modal-dialog h2 {
    padding-right: 2.75rem;
    font-size: 2rem;
  }

  .site-main p,
  .site-footer p,
  .modal-dialog p {
    line-height: 1.25;
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  .hero h1 {
    font-size: clamp(3.8rem, 6vw, 5rem);
  }

  .hero-inner {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

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

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