:root {
  --bg: oklch(0.985 0.012 64);
  --ink: oklch(0.23 0.035 33);
  --muted: oklch(0.43 0.035 34);
  --soft: oklch(0.945 0.026 42);
  --soft-2: oklch(0.965 0.027 21);
  --brand: oklch(0.36 0.095 166);
  --brand-dark: oklch(0.25 0.07 164);
  --accent: oklch(0.59 0.09 25);
  --accent-soft: oklch(0.928 0.045 28);
  --champagne: oklch(0.76 0.08 76);
  --rose: oklch(0.67 0.075 18);
  --plum: oklch(0.36 0.075 333);
  --green: oklch(0.48 0.105 145);
  --white: oklch(1 0 0);
  --line: oklch(0.84 0.025 39);
  --shadow: 0 8px 18px oklch(0.31 0.05 33 / 0.09);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 4% 0%, oklch(0.96 0.035 25 / 0.9) 0 280px, transparent 520px),
    linear-gradient(180deg, var(--bg), oklch(0.975 0.012 78));
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  border-radius: 999px;
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 800;
  padding: 10px 14px;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px clamp(18px, 4vw, 56px);
  background: oklch(0.985 0.012 64 / 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand span {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  max-width: 100%;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  padding: 0 14px;
  white-space: nowrap;
}

.nav a:hover {
  background: var(--brand);
  color: var(--white);
}

.resource-button {
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.hero {
  display: grid;
  position: relative;
  background:
    linear-gradient(135deg, oklch(0.97 0.032 30) 0%, oklch(0.94 0.03 74) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 26%, oklch(0.93 0.045 18 / 0.72) 0 170px, transparent 360px),
    radial-gradient(circle at 96% 12%, oklch(0.86 0.06 78 / 0.4) 0 120px, transparent 300px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(42px, 11vw, 96px) clamp(18px, 7vw, 80px);
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  color: var(--brand-dark);
  font-size: clamp(2.7rem, 9vw, 5.6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 14ch;
  color: var(--brand-dark);
  font-size: clamp(2.15rem, 7vw, 4.3rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.16;
}

.hero-lede {
  max-width: 62ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 4.5vw, 1.28rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.resource-button:hover {
  transform: translateY(-1px);
}

.trust-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--brand-dark);
  font-weight: 700;
  list-style: none;
}

.trust-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.trust-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 8px;
  flex: none;
  border-radius: 999px;
  background: var(--accent);
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: 440px;
  margin: 0;
  background: var(--brand-dark);
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero-media figcaption {
  position: absolute;
  right: clamp(18px, 4vw, 36px);
  bottom: clamp(18px, 4vw, 36px);
  max-width: 260px;
  border-radius: 8px;
  background: oklch(0.99 0.009 66 / 0.92);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 16px;
}

.hero-media figcaption span {
  display: block;
  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.truth-band {
  background: var(--brand-dark);
  color: var(--white);
  padding: clamp(42px, 10vw, 86px) clamp(18px, 8vw, 112px);
}

.truth-band p {
  max-width: 980px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 5.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.quick-menu {
  display: grid;
  gap: clamp(24px, 5vw, 42px);
  padding: clamp(42px, 8vw, 78px) clamp(18px, 7vw, 96px);
  background:
    radial-gradient(circle at 12% 0%, oklch(0.9 0.035 166 / 0.34) 0 190px, transparent 430px),
    var(--white);
}

.quick-menu-copy {
  display: grid;
  gap: 8px;
  max-width: 720px;
}

.quick-menu-copy h2 {
  margin-bottom: 0;
}

.quick-menu-copy p:not(.section-label) {
  max-width: 60ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.quick-menu-actions {
  display: grid;
  gap: 14px;
}

.quick-menu-card {
  display: grid;
  gap: 8px;
  min-height: 138px;
  align-content: end;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  padding: clamp(20px, 5vw, 30px);
  transition: transform 180ms ease, background-color 180ms ease;
}

.quick-menu-card:hover {
  transform: translateY(-2px);
  background: var(--brand);
}

.quick-menu-card-accent {
  background: var(--green);
}

.quick-menu-card-accent:hover {
  background: var(--brand);
}

.quick-menu-card-rose {
  background: var(--green);
}

.quick-menu-card-rose:hover {
  background: var(--brand);
}

.quick-menu-card-green {
  background: var(--green);
}

.quick-menu-card-green:hover {
  background: var(--brand);
}

.quick-menu-card span {
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-menu-card strong {
  max-width: 24ch;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
}

.split-section,
.program-section,
.videos-section,
.resources-section,
.about-section,
.faq-section {
  padding: clamp(54px, 10vw, 108px) clamp(18px, 7vw, 96px);
}

.split-section,
.program-section,
.videos-heading,
.resources-heading,
.about-section {
  display: grid;
  gap: clamp(26px, 6vw, 70px);
}

.section-intro,
.program-copy p,
.videos-heading p,
.resources-heading p,
.section-heading p,
.about-copy p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.method-list,
.program-grid,
.resource-grid {
  display: grid;
  gap: 16px;
}

.method-list article,
.program-grid article,
.resource-card {
  border-radius: 10px;
  background: var(--white);
  padding: clamp(20px, 5vw, 30px);
  box-shadow: var(--shadow);
}

.method-list span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--plum);
  font-weight: 800;
}

.method-list p,
.program-grid p,
.resource-card p,
.site-footer p {
  color: var(--muted);
}

.program-section {
  background: var(--accent-soft);
}

.member-guide {
  background:
    linear-gradient(135deg, oklch(0.94 0.042 26), oklch(0.96 0.024 76));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.about-section {
  background: oklch(0.972 0.026 21);
  align-items: center;
}

.member-note {
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1.4fr);
}

.about-photo {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px oklch(0.31 0.05 33 / 0.12);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

.about-copy {
  max-width: 720px;
}

.about-copy h2 {
  max-width: 15ch;
}

.note,
.form-note,
.form-status,
.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status:not(:empty) {
  border-radius: 8px;
  background: var(--soft);
  color: var(--brand-dark);
  font-weight: 800;
  padding: 10px 12px;
}

.resources-section {
  background:
    radial-gradient(circle at 92% 0%, oklch(0.92 0.045 25 / 0.72) 0 220px, transparent 460px),
    linear-gradient(180deg, var(--soft-2) 0%, var(--bg) 42%);
}

.videos-section {
  background:
    radial-gradient(circle at 8% 12%, oklch(0.92 0.04 166 / 0.55) 0 180px, transparent 420px),
    linear-gradient(135deg, oklch(0.975 0.018 66), oklch(0.955 0.025 26));
}

.videos-heading {
  align-items: end;
  margin-bottom: clamp(24px, 5vw, 42px);
}

.video-grid {
  display: grid;
  grid-auto-columns: minmax(230px, 270px);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 16px;
  margin-inline: calc(clamp(18px, 7vw, 96px) * -1);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px clamp(18px, 7vw, 96px) 18px;
  scroll-padding-inline: clamp(18px, 7vw, 96px);
  scroll-snap-type: inline proximity;
  scrollbar-color: var(--brand-dark) oklch(0.9 0.022 43);
  scrollbar-width: thin;
}

.video-grid::-webkit-scrollbar {
  height: 10px;
}

.video-grid::-webkit-scrollbar-track {
  background: oklch(0.9 0.022 43);
}

.video-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--brand-dark);
}

.video-card {
  display: grid;
  position: relative;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  gap: 0;
  border: 1px solid oklch(0.88 0.025 40);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  padding: 0;
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--video-color, var(--brand));
}

.video-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklch, var(--video-color, var(--brand)) 36%, var(--line));
  background: oklch(0.995 0.004 65);
}

.video-thumb {
  position: relative;
  margin: 0;
  background: oklch(0.93 0.032 28);
  overflow: hidden;
}

.video-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.video-content {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 18px 0;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-number {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in oklch, var(--video-color, var(--brand)) 14%, var(--white));
  color: var(--video-color, var(--brand));
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.video-day {
  margin-bottom: 0;
  color: var(--video-color, var(--brand));
  font-size: 0.84rem;
  font-weight: 800;
}

.video-card h3 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(1.15rem, 4vw, 1.38rem);
  line-height: 1.08;
  text-wrap: balance;
}

.video-card p:not(.video-day) {
  margin-bottom: 0;
  color: var(--muted);
}

.video-status,
.video-action {
  display: inline-flex;
  width: max-content;
  min-height: 36px;
  align-items: center;
  align-self: end;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  margin: 16px 18px 18px;
  padding: 0 12px;
}

.video-status {
  background: oklch(0.985 0.008 64);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--muted);
}

.video-action {
  gap: 7px;
  background: var(--brand-dark);
  color: var(--white);
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.video-action:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

.video-action svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.resources-heading {
  align-items: end;
  margin-bottom: clamp(24px, 5vw, 42px);
}

.resource-groups {
  display: grid;
  gap: clamp(32px, 7vw, 62px);
}

.resource-group {
  display: grid;
  gap: 18px;
  scroll-margin-top: 96px;
}

.resource-group-heading {
  display: grid;
  gap: 4px;
  max-width: 760px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.resource-group-heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 5vw, 2rem);
  letter-spacing: -0.02em;
}

.resource-group-heading p {
  margin: 0;
  color: var(--muted);
}

.resource-grid {
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
}

.resource-grid-featured {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.resource-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid oklch(0.89 0.025 38);
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.resource-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--resource-color, var(--brand));
}

.resource-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklch, var(--resource-color, var(--brand)) 36%, var(--line));
  background: oklch(0.995 0.004 65);
}

.resource-card[hidden] {
  display: none;
}

.resource-top {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.resource-mark {
  display: inline-grid;
  min-width: 66px;
  min-height: 34px;
  place-items: center;
  border-radius: 999px;
  background: oklch(0.985 0.008 64);
  box-shadow: inset 0 0 0 1px var(--resource-color, var(--brand));
  color: var(--resource-color, var(--brand));
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0 12px;
}

.resource-type {
  border-radius: 999px;
  background: oklch(0.985 0.008 64);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 10px;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  width: 100%;
}

.resource-button {
  display: inline-flex;
  flex: 1 1 145px;
  width: auto;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--brand-dark);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0 15px;
  text-align: center;
}

.resource-button.primary {
  background: var(--brand-dark);
  box-shadow: none;
  color: var(--white);
}

.resource-button.primary:hover {
  background: var(--resource-color, var(--brand-dark));
}

.resource-button.secondary {
  background: oklch(0.985 0.008 64);
  color: var(--resource-color, var(--brand-dark));
}

.resource-button.secondary:hover {
  background: var(--resource-color, var(--brand-dark));
  box-shadow: none;
  color: var(--white);
}

.access-modal[hidden] {
  display: none;
}

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
}

.access-backdrop {
  position: absolute;
  inset: 0;
  background: oklch(0.22 0.04 33 / 0.52);
  backdrop-filter: blur(10px);
}

.access-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 0%, oklch(0.95 0.04 25) 0 100px, transparent 210px),
    var(--bg);
  box-shadow: 0 18px 48px oklch(0.24 0.05 33 / 0.22);
  padding: clamp(24px, 6vw, 36px);
}

.access-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: oklch(0.985 0.008 64);
  color: var(--muted);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.access-close:hover {
  background: var(--soft);
  color: var(--brand-dark);
}

.access-kicker {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.access-panel h2 {
  max-width: 9ch;
  margin-bottom: 12px;
  font-size: clamp(2rem, 8vw, 3rem);
}

.access-panel p {
  color: var(--muted);
}

.access-field {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--brand-dark);
  font-weight: 800;
}

.access-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 1.05rem;
  padding: 0 14px;
  outline: none;
}

.access-field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px oklch(0.48 0.105 145 / 0.18);
}

.access-error {
  min-height: 1.4em;
  margin: 10px 0 14px;
  color: oklch(0.42 0.13 25);
  font-size: 0.92rem;
  font-weight: 800;
}

.access-submit {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--brand-dark);
  color: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, background-color 160ms ease;
}

.access-submit:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

.access-consent {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.resource-card.is-featured {
  min-height: 290px;
}

.resource-card.is-featured h3 {
  font-size: clamp(1.35rem, 4vw, 1.7rem);
}

.faq-section {
  background: oklch(0.952 0.026 156);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

details {
  border-radius: 8px;
  background: var(--white);
  border: 1px solid oklch(0.86 0.023 150);
  box-shadow: none;
  padding: 18px 20px;
}

summary {
  color: var(--brand-dark);
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  gap: 20px;
  padding: 30px clamp(18px, 7vw, 96px) 104px;
  background: var(--ink);
}

.site-footer p {
  margin: 0 0 6px;
  color: var(--white);
}

.site-footer .small {
  max-width: 90ch;
  color: oklch(0.84 0.02 174);
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 50;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: #25d366;
  color: #082c16;
  font-size: 0.94rem;
  font-weight: 800;
  padding: 0 18px 0 14px;
  box-shadow: 0 8px 18px oklch(0.22 0.04 174 / 0.2);
  transition: transform 160ms ease, background-color 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #1fbd5a;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex: none;
  fill: currentColor;
}

@media (min-width: 760px) {
  .site-header {
    flex-wrap: nowrap;
  }

  .nav {
    gap: 12px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
    min-height: 620px;
  }

  .hero-media {
    min-height: 620px;
  }

  .split-section,
  .program-section,
  .videos-heading,
  .resources-heading,
  .quick-menu,
  .about-section {
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  }

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

  .method-list {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

@media (min-width: 1040px) {
  .program-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  h1 {
    max-width: 12ch;
    font-size: clamp(2.15rem, 11vw, 3.1rem);
    line-height: 1.05;
  }

  .resource-button {
    width: 100%;
  }

  .access-panel h2 {
    max-width: 10ch;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    max-width: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-copy {
    padding-block: 34px;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-media figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

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

  .resource-card,
  .video-card {
    min-height: 0;
  }

  .member-note {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 280px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding-inline: 13px 15px;
    font-size: 0.88rem;
  }

  .whatsapp-float svg {
    width: 23px;
    height: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .resource-button:hover,
  .video-card:hover,
  .access-submit:hover,
  .whatsapp-float:hover {
    transform: none;
  }
}
