@charset "UTF-8";

:root {
  --color-ink: #384038;
  --color-ink-soft: #626c63;
  --color-paper: #fffdf7;
  --color-canvas: #faf8f2;
  --color-soft: #edf1e7;
  --color-mist: #eceaf1;
  --color-accent: #6d7f36;
  --color-accent-dark: #53652a;
  --color-accent-light: #edf2df;
  --color-clay: #f47b35;
  --color-clay-dark: #d55d1d;
  --color-sand: #b9d7df;
  --color-border: #deddd3;
  --shadow-soft: 0 22px 58px rgba(56, 64, 56, 0.11);
  --shadow-card: 0 12px 34px rgba(56, 64, 56, 0.08);
  --radius-small: 0.75rem;
  --radius-medium: 1.35rem;
  --radius-large: 2rem;
  --container: 72rem;
  --header-offset: 6.25rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.16;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 5.4vw, 4.75rem);
  letter-spacing: -0.035em;
}

h2 {
  max-width: 18ch;
  margin-bottom: 1.15rem;
  font-size: clamp(1.9rem, 3.8vw, 3.15rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.62rem);
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-accent-dark);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--color-clay-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--color-sand);
  outline-offset: 4px;
}

address {
  font-style: normal;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-right: auto;
  margin-left: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--color-paper);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-card);
  transform: translateY(-160%);
}

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

.eyebrow,
.card-label,
.notice-label,
.strip-label {
  margin-bottom: 0.7rem;
  color: var(--color-accent-dark);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #fff1bd;
}

.section {
  padding-top: clamp(4.25rem, 7vw, 7.25rem);
  padding-bottom: clamp(4.25rem, 7vw, 7.25rem);
}

.section-light {
  background: var(--color-paper);
}

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

.section-mist {
  background: var(--color-mist);
}

.not-found-section {
  display: grid;
  min-height: calc(100vh - var(--header-offset));
  place-items: center;
  background:
    radial-gradient(circle at 16% 14%, rgba(185, 215, 223, 0.32), transparent 32rem),
    radial-gradient(circle at 86% 82%, rgba(237, 242, 223, 0.76), transparent 34rem),
    var(--color-soft);
}

.not-found-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem);
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-clay);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.not-found-code {
  margin-bottom: 0.35rem;
  color: var(--color-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 11vw, 6.5rem);
  line-height: 0.9;
}

.not-found-card h1 {
  margin-bottom: 1rem;
}

.not-found-card > p:not(.eyebrow, .not-found-code) {
  max-width: 37rem;
  margin-right: auto;
  margin-left: auto;
  color: var(--color-ink-soft);
}

.not-found-actions {
  justify-content: center;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--color-accent-dark);
  color: #ffffff;
}

.button-secondary {
  background: rgba(255, 253, 249, 0.88);
  border-color: rgba(64, 55, 47, 0.18);
  color: var(--color-ink);
}

.button-secondary:hover {
  background: #ffffff;
  border-color: var(--color-clay);
  color: var(--color-ink);
}

.button.is-unavailable,
.button.is-unavailable:hover,
.button.is-unavailable:focus-visible {
  background: #9da29b;
  border-color: #9da29b;
  color: #ffffff;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.button.is-checking,
.button.is-checking:hover,
.button.is-checking:focus-visible {
  background: #b4b8b1;
  border-color: #b4b8b1;
  color: #ffffff;
  cursor: wait;
  transform: none;
}

.button-light {
  background: var(--color-paper);
  color: var(--color-accent-dark);
}

.button-light:hover {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(0.25rem);
}

.small-note {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.97);
  border-bottom: 1px solid rgba(56, 64, 56, 0.10);
  box-shadow: 0 8px 28px rgba(56, 64, 56, 0.05);
}

.navigation {
  position: relative;
}

.nav-inner {
  position: relative;
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-ink);
  text-decoration: none;
}

.brand img {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.16;
}

.brand-copy strong {
  overflow: hidden;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 0.22rem;
  color: var(--color-ink-soft);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.menu-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.menu-button {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-ink);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-button-icon,
.menu-button-icon::before,
.menu-button-icon::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 160ms ease, background-color 160ms ease;
}

.menu-button-icon {
  position: relative;
}

.menu-button-icon::before,
.menu-button-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-button-icon::before {
  top: -0.34rem;
}

.menu-button-icon::after {
  top: 0.34rem;
}

.menu-toggle:checked + .menu-button .menu-button-icon {
  background: transparent;
}

.menu-toggle:checked + .menu-button .menu-button-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle:checked + .menu-button .menu-button-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.menu-toggle:focus-visible + .menu-button {
  outline: 3px solid var(--color-sand);
  outline-offset: 4px;
}

.main-nav {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  overflow: hidden;
  max-height: 0;
  background: var(--color-paper);
  border-radius: 0 0 var(--radius-medium) var(--radius-medium);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transition: max-height 220ms ease, opacity 180ms ease;
}

.menu-toggle:checked ~ .main-nav {
  max-height: 28rem;
  opacity: 1;
}

.main-nav ul {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  list-style: none;
}

.main-nav a {
  display: block;
  padding: 0.88rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-ink);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
}

.main-nav li:last-child a {
  border-bottom: 0;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--color-accent-dark);
}

.main-nav a.is-active {
  font-weight: 600;
}

/* Hero */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-soft);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero {
  display: grid;
  min-height: clamp(32rem, 64vh, 42rem);
  align-items: center;
}

.hero-home {
  background-color: var(--color-paper);
  background-image: none;
}

.hero-home::before {
  position: absolute;
  inset: -2rem;
  background-image: url("img/hero-aanbod-combinatie-v4.webp");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto calc(100% - 1rem);
  content: "";
  -webkit-mask-image: radial-gradient(ellipse 78% 76% at 78% 50%, #000 48%, rgba(0, 0, 0, 0.82) 68%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 76% at 78% 50%, #000 48%, rgba(0, 0, 0, 0.82) 68%, transparent 100%);
}

.hero-home .hero-panel {
  max-width: 36rem;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.96) 0%, rgba(255, 248, 236, 0.84) 46%, rgba(255, 248, 236, 0.25) 77%, rgba(255, 248, 236, 0.08) 100%),
    linear-gradient(0deg, rgba(56, 64, 56, 0.06), rgba(56, 64, 56, 0.06));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.hero-panel {
  max-width: 43rem;
  padding: clamp(1.55rem, 4vw, 2.8rem);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-top: 4px solid rgba(244, 123, 53, 0.86);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-intro {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--color-ink-soft);
  font-size: clamp(1.04rem, 2vw, 1.2rem);
}

.page-hero {
  min-height: clamp(32rem, 64vh, 42rem);
  display: grid;
  align-items: center;
}

.page-hero-individual {
  background-image: url("img/sessie-individueel-abstract-v2.webp");
}

.page-hero-groups {
  background-image: url("img/sessie-groepssessies-abstract.webp");
}

.page-hero-camps {
  background-image: url("img/sessie-kinderkampen-abstract-v2.webp");
}

.page-hero-equitherapy {
  background-image: url("img/sessie-equitherapie-abstract-v3.webp");
  background-position: center 46%;
}

.page-hero-contact {
  background-color: var(--color-paper);
  background-image: url("img/hero-contact-abstract-v2.webp");
  background-position: center 48%;
}

.page-hero-contact .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.96) 0%, rgba(255, 248, 236, 0.78) 44%, rgba(255, 248, 236, 0.18) 78%, rgba(255, 248, 236, 0.08) 100%),
    linear-gradient(0deg, rgba(56, 64, 56, 0.04), rgba(56, 64, 56, 0.04));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.page-hero-panel {
  max-width: 43rem;
  padding: clamp(1.55rem, 4vw, 2.8rem);
  background: rgba(255, 253, 247, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-top: 4px solid rgba(245, 130, 60, 0.86);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.page-hero-panel > p:not(.eyebrow) {
  max-width: 40rem;
  color: var(--color-ink-soft);
  font-size: clamp(1.03rem, 2vw, 1.18rem);
}

.page-hero-inner .button {
  margin-top: 1rem;
}

.page-hero-inner .button-row {
  margin-top: 1rem;
}

.page-hero-inner .button-row .button {
  margin-top: 0;
}

/* General layouts */
.intro-layout,
.about-layout,
.content-grid,
.equi-layout,
.rates-layout,
.integration-grid,
.camp-layout,
.included-layout,
.contact-page-grid,
.schedule-layout,
.credentials-layout,
.process-layout,
.cta-layout {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.prose,
.content-main > p,
.about-panel > p,
.camp-layout p,
.equi-layout p,
.schedule-layout > div > p {
  color: var(--color-ink-soft);
}

.prose {
  max-width: 43rem;
  font-size: 1.04rem;
}

.section-heading {
  display: grid;
  gap: 1.4rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.8rem);
}

.section-heading > p {
  max-width: 39rem;
  color: var(--color-ink-soft);
}

.cards-grid,
.topic-grid,
.values-grid {
  display: grid;
  gap: 1.2rem;
}

.service-card,
.info-card,
.action-card,
.topic-card,
.value-card,
.facts-card,
.contact-card,
.notice-card {
  border: 1px solid rgba(64, 55, 47, 0.09);
  border-radius: var(--radius-medium);
}

.service-card,
.info-card,
.action-card,
.topic-card,
.facts-card,
.contact-card {
  background: var(--color-paper);
  box-shadow: var(--shadow-card);
}

.service-card {
  overflow: hidden;
  border-top: 4px solid var(--color-clay);
}

.service-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-accent-light);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.025);
}

.service-content,
.info-card,
.action-card,
.topic-card,
.value-card,
.facts-card,
.contact-card,
.notice-card {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.service-content p:not(.card-label),
.info-card p,
.action-card p,
.topic-card p,
.value-card p,
.notice-card p:not(.notice-label) {
  color: var(--color-ink-soft);
}

.rates-stack {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.client-actions {
  display: grid;
  gap: 1rem;
}

.waitlist-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.waitlist-card p:last-child {
  margin-bottom: 0;
}

.waitlist-card .button {
  justify-self: start;
}

.info-card h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.action-card .button {
  margin-top: 0.75rem;
}

/* About and facts */
.about-panel {
  max-width: 46rem;
}

.facts-card {
  align-self: start;
}

.facts-list,
.credentials-list,
.schedule-list {
  margin: 0;
}

.facts-list > div,
.credentials-list > div,
.schedule-list > div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.facts-list > div:first-child,
.credentials-list > div:first-child,
.schedule-list > div:first-child {
  padding-top: 0;
}

.facts-list > div:last-child,
.credentials-list > div:last-child,
.schedule-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.facts-list dt,
.credentials-list dt,
.schedule-list dt {
  color: var(--color-ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.facts-list dd,
.credentials-list dd,
.schedule-list dd {
  color: var(--color-ink);
  font-weight: 500;
}

.facts-options {
  display: grid;
  gap: 0.3rem;
  margin: 0.2rem 0 0;
  padding-left: 1.15rem;
}

.location-options {
  gap: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.location-options li {
  display: grid;
  gap: 0.1rem;
}

.location-options strong,
.location-options span,
.location-options small {
  display: block;
}

.location-options strong {
  color: var(--color-accent-dark);
  font-weight: 600;
}

.location-options small {
  color: var(--color-ink-soft);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.45;
}

/* Individual */
.individual-hero-actions {
  display: grid;
  width: 100%;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.hero-location-buttons .button {
  margin-top: 0;
}

.hero-action-card {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 0.6rem;
  padding: 0.9rem;
  background: rgba(255, 253, 247, 0.66);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
}

.hero-waitlist-choice {
  background: rgba(243, 243, 237, 0.9);
  border-color: rgba(83, 101, 42, 0.18);
}

.hero-action-kicker,
.hero-action-title {
  margin: 0;
}

.hero-action-kicker {
  color: var(--color-accent-dark);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-waitlist-choice .hero-action-kicker {
  color: var(--color-accent-dark);
}

.hero-booking-choices .hero-action-kicker {
  letter-spacing: 0.05em;
}

.hero-action-title {
  color: var(--color-ink);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-location-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.home-intro-section {
  padding-top: clamp(3.25rem, 5vw, 5rem);
  padding-bottom: clamp(3.25rem, 5vw, 5rem);
}

.home-first-step .cta-layout > div > p:not(.eyebrow) {
  color: var(--color-ink-soft);
}

#aanbod {
  scroll-margin-top: var(--header-offset);
}

.about-layout-single {
  grid-template-columns: minmax(0, 1fr) !important;
}

.about-layout-single .about-panel {
  max-width: 56rem;
}

.hero-location-buttons .button {
  min-height: 2.8rem;
  padding: 0.68rem 1.05rem;
}

.content-main {
  max-width: 48rem;
}

.content-main h3 {
  margin-top: 2.4rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.55rem 0.85rem;
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
}

.notice-card {
  align-self: start;
  background: #f3f3ed;
  border-color: #dcdfd2;
}

.notice-card p:not(.notice-label) {
  color: var(--color-ink-soft);
}

.notice-label {
  color: var(--color-accent-dark);
}

.new-client-card .notice-label {
  color: var(--color-accent-dark);
}

.existing-client-card {
  background: var(--color-soft);
  border-color: #cbd6ba;
}

.existing-client-card .notice-label,
.existing-client-card h3 {
  color: var(--color-accent-dark);
}

.location-client-card {
  background: var(--color-paper);
  border-color: var(--color-border);
}

.location-client-card .notice-label,
.location-client-card h3 {
  color: var(--color-accent-dark);
}

.client-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.equi-image,
.camp-image {
  overflow: hidden;
  min-height: 19rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.equi-image img,
.camp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.practical-strip {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.practical-strip > div {
  display: grid;
  gap: 0.2rem;
}

.practical-strip strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 400;
}

.strip-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

/* Groups */
.topic-card {
  position: relative;
  padding-top: 3.35rem;
}

#groepsaanbod {
  scroll-margin-top: 5.5rem;
}

.topic-choice-card {
  display: flex;
  flex-direction: column;
}

.topic-choice-card p {
  flex: 1 1 auto;
}

.topic-choice-card .button {
  align-self: flex-start;
  margin-top: 0.8rem;
}

.group-card-meta {
  display: flex;
  min-height: 1.7rem;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  align-items: center;
  margin-top: 0.85rem;
  color: var(--color-accent-dark);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

.group-card-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.group-card-icon {
  position: relative;
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 1.1rem;
  color: var(--color-accent-dark);
}

.group-card-icon-horse {
  width: auto;
  height: auto;
  flex-basis: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 0.8;
}

.group-card-icon-child::before,
.group-card-icon-child::after,
.group-card-icon-people::before,
.group-card-icon-people::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.group-card-icon-child::before {
  top: 0.06rem;
  left: 0.37rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
}

.group-card-icon-child::after {
  bottom: 0.05rem;
  left: 0.2rem;
  width: 0.7rem;
  height: 0.56rem;
  border-radius: 0.42rem 0.42rem 0.16rem 0.16rem;
}

.group-card-icon-people {
  width: 1.28rem;
  flex-basis: 1.28rem;
}

.group-card-icon-people::before {
  top: 0.04rem;
  left: 0.18rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  box-shadow: 0.58rem 0 currentColor;
}

.group-card-icon-people::after {
  bottom: 0.05rem;
  left: 0.06rem;
  width: 0.58rem;
  height: 0.52rem;
  border-radius: 0.38rem 0.38rem 0.14rem 0.14rem;
  box-shadow: 0.58rem 0 currentColor;
}

.topic-index,
.value-number {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--color-clay-dark);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.topic-index {
  position: absolute;
  top: 1.45rem;
  right: 1.55rem;
}

.step-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--color-border);
}

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

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

.step-list > li > span {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: 50%;
  color: var(--color-accent-dark);
  font-weight: 600;
}

.step-list h3 {
  margin-bottom: 0.3rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.step-list p {
  margin-bottom: 0;
  color: var(--color-ink-soft);
}

/* Camps */
.value-card {
  background: var(--color-canvas);
}

.value-card p {
  margin-bottom: 0;
}

.included-layout > div > p:not(.eyebrow) {
  color: #6f5e51;
}

/* Contact */
.contact-practical-stack,
.contact-locations-block {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-section-heading {
  margin-bottom: 0;
}

.horizontal-facts {
  display: grid;
  gap: 0.8rem;
}

.horizontal-facts > div,
.horizontal-facts > div:first-child,
.horizontal-facts > div:last-child {
  display: grid;
  align-content: start;
  gap: 0.35rem;
  min-width: 0;
  padding: 1rem;
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
}

.horizontal-facts dt {
  color: var(--color-accent-dark);
}

.horizontal-facts dd {
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 400;
}

.contact-location-grid {
  display: grid;
  gap: 1rem;
}

.contact-location-card {
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: clamp(1.2rem, 3vw, 1.6rem);
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-clay);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.contact-location-card h3,
.contact-location-card address,
.contact-location-card p {
  margin-bottom: 0;
}

.contact-location-card h3 {
  font-size: 1.45rem;
}

.contact-location-card address {
  color: var(--color-ink);
  font-style: normal;
  font-weight: 500;
}

.contact-location-card p {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
}

.contact-list {
  margin-top: 2rem;
}

.contact-block {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-block:first-child {
  padding-top: 0;
}

.contact-block span {
  color: var(--color-ink-soft);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-block a,
.contact-block address {
  overflow-wrap: anywhere;
  color: var(--color-ink);
  font-size: 1.04rem;
  font-weight: 500;
  text-decoration: none;
}

.contact-reveal-form {
  margin: 0;
}

.contact-reveal-link {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.contact-reveal-link:hover {
  color: #ffffff;
}

.contact-reveal-link-dark {
  color: var(--color-accent-dark);
  font-size: 1.04rem;
  font-weight: 600;
}

.contact-reveal-link-dark:hover {
  color: var(--color-clay-dark);
}

/* Future integrations */
.integration-grid {
  display: grid;
  gap: 1.25rem;
}

.integration-placeholder {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--color-paper);
  border: 1px dashed #c9cba7;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.integration-heading,
.calendar-toolbar,
.calendar-slot,
.form-preview > div {
  display: flex;
  align-items: center;
}

.integration-heading {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.integration-heading h3,
.integration-heading .card-label {
  margin-bottom: 0;
}

.status-pill {
  flex: 0 0 auto;
  padding: 0.35rem 0.65rem;
  background: var(--color-mist);
  border-radius: 999px;
  color: var(--color-clay-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-shell {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.booking-intro {
  max-width: 42rem;
}

.booking-intro > p:not(.eyebrow),
.integration-note {
  color: var(--color-ink-soft);
}

.booking-switch {
  width: 100%;
  --booking-frame-height: 50rem;
}

.integration-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.booking-trigger {
  display: flex;
  height: var(--booking-frame-height);
  min-height: var(--booking-frame-height);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-clay);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  text-align: center;
}

.booking-trigger span,
.booking-trigger strong,
.booking-trigger small {
  display: block;
}

.booking-trigger strong {
  margin-bottom: 0.25rem;
  color: var(--color-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 400;
}

.booking-trigger small {
  color: var(--color-ink-soft);
  font-size: 0.9rem;
}

.booking-trigger b {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 50%;
  color: #ffffff;
  font-size: 2.35rem;
  font-weight: 400;
}

.integration-reveal {
  display: none;
}

.integration-toggle:checked + .booking-trigger,
.waitlist-card .integration-toggle:checked + .button {
  display: none;
}

.integration-toggle:checked ~ .integration-reveal {
  display: block;
}

.integration-toggle:focus-visible + label {
  outline: 3px solid var(--color-sand);
  outline-offset: 4px;
}

.integration-reveal-inner {
  min-height: 0;
}

.appointlet-popup-card {
  padding: clamp(2rem, 6vw, 4.5rem);
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-clay);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.appointlet-popup-content {
  display: grid;
  max-width: 42rem;
  justify-items: center;
  gap: 0.85rem;
  margin: 0 auto;
  text-align: center;
}

.appointlet-popup-content h3,
.appointlet-popup-content p,
.appointlet-popup-content .card-label {
  margin-bottom: 0;
}

.appointlet-popup-content > p:not(.card-label),
.appointlet-popup-content small {
  color: var(--color-ink-soft);
}

.appointlet-popup-button {
  margin-top: 0.5rem;
}

.appointlet-mobile-toolbar {
  display: none;
}

@media (max-width: 70rem) {
  body .appointlet-popover {
    top: calc(4rem + env(safe-area-inset-top)) !important;
    height: calc(100dvh - 4rem - env(safe-area-inset-top)) !important;
  }

  .appointlet-mobile-toolbar {
    position: fixed;
    z-index: 1000002;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    min-height: calc(4rem + env(safe-area-inset-top));
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: calc(0.55rem + env(safe-area-inset-top)) 0.75rem 0.55rem;
    background: var(--color-paper);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 0.25rem 1rem rgba(38, 48, 36, 0.16);
    color: var(--color-ink);
  }

  .appointlet-mobile-toolbar strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
  }

  .appointlet-mobile-close {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.65rem 0.9rem;
    background: var(--color-accent-dark);
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
  }

  .appointlet-mobile-close:focus-visible {
    outline: 3px solid var(--color-clay);
    outline-offset: 2px;
  }
}

.booking-confirmation-section {
  min-height: calc(100vh - var(--header-offset));
  background: var(--color-soft);
}

.booking-confirmation-card {
  display: grid;
  width: min(100%, 52rem);
  min-height: 34rem;
  align-content: center;
  justify-items: center;
  gap: 0.8rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--color-paper);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-clay);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.booking-confirmation-card .eyebrow,
.booking-confirmation-card h1,
.booking-confirmation-card p {
  margin-bottom: 0;
}

.booking-confirmation-card h1 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 6vw, 4rem);
}

.booking-confirmation-intro,
.booking-confirmation-note {
  max-width: 42rem;
  color: var(--color-ink-soft);
}

.booking-confirmation-note {
  font-size: 0.92rem;
}

.booking-validation {
  display: flex;
  width: min(100%, 44rem);
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0.65rem 0;
  padding: 1.1rem 1.25rem;
  background: #fffaf0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  text-align: left;
}

.booking-validation[hidden],
.confirmation-details[hidden],
.confirmation-details [hidden] {
  display: none;
}

.booking-validation p:last-child {
  margin-top: 0.2rem;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
}

.booking-validation-spinner {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  border: 3px solid rgba(89, 107, 49, 0.2);
  border-top-color: var(--color-accent);
  border-radius: 50%;
  animation: booking-validation-spin 0.9s linear infinite;
}

@keyframes booking-validation-spin {
  to { transform: rotate(360deg); }
}

.booking-return-notice {
  min-width: 0;
  flex: 1 1 auto;
  width: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 0.92rem;
}

.booking-return-notice strong {
  color: var(--color-accent-dark);
}

.booking-return-row {
  display: flex;
  width: min(100%, 44rem);
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.booking-return-row .button {
  flex: 0 0 auto;
}

.confirmation-mark {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 50%;
  color: #ffffff;
  font-size: 2rem;
}

.confirmation-details {
  display: grid;
  width: min(100%, 44rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0.65rem 0;
  background: #fffaf0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
}

.confirmation-details.is-received {
  animation: booking-details-received 0.35s ease-out;
}

@keyframes booking-details-received {
  from {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-validation-spinner,
  .confirmation-details.is-received {
    animation: none;
  }
}

.confirmation-details div {
  padding: 1rem;
}

.confirmation-details div:nth-child(even) {
  border-left: 1px solid var(--color-border);
}

.confirmation-details div:nth-child(n + 3) {
  border-top: 1px solid var(--color-border);
}

.confirmation-details dt {
  margin-bottom: 0.25rem;
  color: var(--color-ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confirmation-details dd {
  margin: 0;
  color: var(--color-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

@media (max-width: 560px) {
  .booking-switch {
    --booking-frame-height: 52rem;
  }

  .confirmation-details {
    grid-template-columns: 1fr;
  }

  .confirmation-details div + div {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .booking-return-row {
    flex-direction: column-reverse;
  }

  .booking-return-notice {
    width: 100%;
    border-radius: var(--radius-small);
  }
}

.integration-close {
  cursor: pointer;
}

.client-action-reveal {
  grid-column: 1 / -1;
  width: 100%;
}

.integration-note {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.calendar-preview,
.form-preview {
  margin-bottom: 1.35rem;
  padding: 0.85rem 1rem;
  background: #fffaf0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
}

.calendar-toolbar {
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.82rem;
}

.calendar-toolbar span,
.calendar-slot small,
.form-preview small {
  color: var(--color-ink-soft);
}

.calendar-slot {
  display: grid;
  grid-template-columns: 2rem 4rem 1fr;
  gap: 0.65rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--color-border);
}

.calendar-slot:last-child,
.form-preview > div:last-child {
  border-bottom: 0;
}

.calendar-slot span,
.form-preview > div > span {
  color: var(--color-clay-dark);
  font-size: 0.76rem;
  font-weight: 700;
}

.form-preview > div {
  gap: 0.8rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--color-border);
}

.form-preview > div > span {
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: 50%;
  color: var(--color-accent-dark);
}

.form-preview p,
.form-preview strong,
.form-preview small {
  display: block;
  margin: 0;
}

.button-muted {
  background: var(--color-soft);
  border-color: var(--color-border);
  color: var(--color-ink-soft);
  cursor: not-allowed;
}

.check-list {
  margin: 1.3rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.62rem 0 0.62rem 1.7rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 0.62rem;
  left: 0;
  color: var(--color-accent);
  content: "✓";
}

.cta-layout {
  align-items: center;
}

.cta-layout p:not(.eyebrow) {
  max-width: 40rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

/* Footer */
.site-footer {
  padding-top: 3rem;
  background: #394735;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand img {
  width: 4.75rem;
  height: 4.75rem;
  object-fit: contain;
}

.footer-brand strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.footer-brand p {
  margin: 0.2rem 0 0;
  font-size: 0.92rem;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: grid;
  gap: 0.35rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 42rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

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

  .individual-hero-actions {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
    align-items: stretch;
  }

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

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

  .practical-strip .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (min-width: 55rem) {
  .nav-inner {
    min-height: 5.25rem;
  }

  .menu-button {
    display: none;
  }

  .main-nav {
    position: static;
    overflow: visible;
    max-height: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
  }

  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.18rem;
    padding: 0;
  }

  .main-nav a {
    position: relative;
    padding: 0.7rem 0.78rem;
    border: 0;
    font-size: 0.89rem;
  }

  .main-nav a:not(.nav-contact)::after {
    position: absolute;
    right: 0.78rem;
    bottom: 0.35rem;
    left: 0.78rem;
    height: 1px;
    background: var(--color-clay);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav a:hover::after,
  .main-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .main-nav .nav-contact {
    margin-left: 0.4rem;
    padding: 0.68rem 1rem;
    background: var(--color-accent);
    border-radius: 999px;
    color: #ffffff;
  }

  .main-nav .nav-contact:hover,
  .main-nav .nav-contact.is-active {
    background: var(--color-accent-dark);
    color: #ffffff;
  }

  .intro-layout,
  .section-heading,
  .about-layout,
  .content-grid,
  .process-layout,
  .schedule-layout,
  .credentials-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .equi-layout,
  .rates-layout,
  .integration-grid,
  .camp-layout,
  .included-layout,
  .contact-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

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

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

  .waitlist-card {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .booking-shell {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

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

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

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

  .cta-layout {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .practical-strip .button {
    grid-column: auto;
    justify-self: end;
  }

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

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 72rem) {
  .hero-home::before {
    inset: -2.5rem;
    background-position: calc(50% + clamp(4rem, 7vw, 8rem)) center;
    background-size: auto calc(100% - 1.5rem);
    -webkit-mask-image: radial-gradient(ellipse 66% 78% at 66% 50%, #000 50%, rgba(0, 0, 0, 0.86) 68%, transparent 100%);
    mask-image: radial-gradient(ellipse 66% 78% at 66% 50%, #000 50%, rgba(0, 0, 0, 0.86) 68%, transparent 100%);
  }

  .hero-home .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 248, 236, 0.98) 0%, rgba(255, 248, 236, 0.86) 35%, rgba(255, 248, 236, 0.2) 58%, rgba(255, 248, 236, 0.04) 76%, rgba(255, 248, 236, 0.42) 100%),
      linear-gradient(0deg, rgba(56, 64, 56, 0.05), rgba(56, 64, 56, 0.05));
  }

  .main-nav ul {
    gap: 0.35rem;
  }

  .main-nav a {
    padding-right: 0.95rem;
    padding-left: 0.95rem;
  }

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

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

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

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