:root {
  --bg: #f6f0e8;
  --surface: #fffdf8;
  --surface-soft: #efe4d5;
  --surface-muted: #e8dccb;
  --ink: #1d1a18;
  --ink-soft: #61584f;
  --brand: #6b2632;
  --brand-deep: #46161f;
  --brand-gold: #bf9a63;
  --brand-line: rgba(107, 38, 50, 0.18);
  --white: #ffffff;
  --shadow-lg: 0 30px 80px rgba(39, 21, 18, 0.18);
  --shadow-md: 0 18px 40px rgba(39, 21, 18, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(191, 154, 99, 0.18), transparent 30%),
    linear-gradient(180deg, #faf5ee 0%, #f4ede3 100%);
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading--left {
  margin: 0 0 32px;
  text-align: left;
}

.section-heading--light h2,
.section-heading--light p {
  color: var(--white);
}

.section-heading h2 {
  margin: 14px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button--primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(74, 18, 29, 0.22);
}

.button--primary:hover {
  background: var(--brand-deep);
}

.button--ghost {
  border-color: var(--brand-line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--brand);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(57, 50, 73, 0.1);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__crest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 38px;
  border-radius: 6px;
  border: 1px solid rgba(107, 38, 50, 0.25);
  background: linear-gradient(145deg, #ffffff, #f7f3ed);
  color: var(--brand);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: #403b50;
}

.desktop-nav > a,
.nav-item--dropdown {
  position: relative;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  color: #403b50;
  white-space: nowrap;
  transition: color 180ms ease;
}

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

.chevron {
  font-size: 10px;
  opacity: 0.75;
  transition: transform 180ms ease;
}

.nav-item--dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 195px;
  padding: 8px 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(30, 20, 45, 0.14), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(107, 38, 50, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 100;
}

.nav-item--dropdown:hover .dropdown-menu,
.nav-item--dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #332d3d;
  transition: background-color 150ms ease, color 150ms ease;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: #f7ede8;
  color: var(--brand);
}

.mobile-nav__group {
  border-bottom: 1px solid rgba(107, 38, 50, 0.1);
  padding: 8px 0;
}

.mobile-nav__label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 4px;
  font-weight: 600;
}

.mobile-nav__group a {
  display: block;
  padding: 5px 0 5px 10px;
  border-bottom: none !important;
  font-size: 14px;
  color: var(--ink);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icon {
  position: relative;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header-icon__lens {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 16px;
  height: 16px;
  border: 2px solid #403b50;
  border-radius: 50%;
}

.header-icon__lens::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #403b50;
  transform: rotate(45deg);
}

.explore-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(64, 59, 80, 0.45);
  background: #ffffff;
  color: #403b50;
  cursor: pointer;
}

.explore-button__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(107, 38, 50, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--brand);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 0 20px 20px;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(107, 38, 50, 0.1);
  font-weight: 600;
}

.mobile-nav.is-open {
  display: flex;
}

.button--apply {
  min-height: 38px;
  padding: 0 20px;
  border-radius: 8px;
  background: #15c3c9;
  color: var(--white);
  box-shadow: none;
}

.button--apply:hover {
  background: #10aeb4;
}

.hero-carousel {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  color: var(--white);
  background: #c9c6d1;
}

.hero-carousel__track {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__media,
.hero-slide__overlay,
.hero-slide__content {
  position: absolute;
  inset: 0;
}

.hero-slide__media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.92);
}

.hero-slide__overlay {
  background:
    linear-gradient(180deg, rgba(132, 126, 145, 0.22) 0%, rgba(109, 104, 122, 0.5) 100%),
    linear-gradient(90deg, rgba(104, 98, 118, 0.16) 0%, rgba(104, 98, 118, 0.12) 100%);
}

.hero-slide__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 140px;
  z-index: 1;
}

.hero-slide__eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.hero-slide h1 {
  margin: 0 0 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(76px, 10vw, 122px);
  line-height: 0.78;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 12px 42px rgba(55, 49, 70, 0.24);
}

.button--cta {
  min-height: 38px;
  padding: 0 18px;
  border-radius: 6px;
  background: #15c3c9;
  color: var(--white);
  box-shadow: none;
}

.button--cta:hover {
  background: #10aeb4;
}

.hero-carousel__controls {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-carousel__arrow,
.hero-carousel__pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.hero-carousel__arrow span {
  font-size: 32px;
  line-height: 1;
  transform: translateY(-2px);
}

.hero-carousel__dots {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px;
}

.hero-carousel__dots button {
  width: 13px;
  height: 13px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-carousel__dots button.is-active {
  background: #15c3c9;
  transform: scale(1.05);
}

.hero-carousel__pause-bars {
  position: relative;
  width: 14px;
  height: 14px;
}

.hero-carousel__pause-bars::before,
.hero-carousel__pause-bars::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 14px;
  border-radius: 999px;
  background: currentColor;
}

.hero-carousel__pause-bars::before {
  left: 3px;
}

.hero-carousel__pause-bars::after {
  right: 3px;
}

.hero-carousel__pause.is-paused .hero-carousel__pause-bars::before {
  left: 4px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
  background: transparent;
}

.hero-carousel__pause.is-paused .hero-carousel__pause-bars::after {
  display: none;
}

.hero-intro-bar {
  background: #f7f4f8;
  border-bottom: 1px solid rgba(57, 50, 73, 0.08);
}

.hero-intro-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  color: #5c556c;
  font-size: 14px;
}

.hero-intro-bar__actions {
  display: flex;
  gap: 18px;
}

.hero-intro-bar__actions a {
  color: var(--brand);
  font-weight: 600;
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.intro__copy h2 {
  margin: 16px 0 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.intro__copy p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.intro__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.intro__facts article {
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(107, 38, 50, 0.08);
  box-shadow: var(--shadow-md);
}

.intro__facts strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  color: var(--brand);
}

.intro__facts span {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.pathways {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.68));
}

.pathways__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(107, 38, 50, 0.08);
  box-shadow: var(--shadow-md);
}

.path-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 0.95;
}

.path-card__meta {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.path-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.path-card__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.path-card__links a {
  color: var(--brand);
  font-weight: 600;
}

.stories__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 20px;
}

.story-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(107, 38, 50, 0.08);
  box-shadow: var(--shadow-md);
}

.story-card--wide {
  grid-row: span 2;
}

.story-card__media {
  position: relative;
  overflow: hidden;
}

.story-card__media img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.story-card:hover .story-card__media img {
  transform: scale(1.04);
}

.story-card__content {
  padding: 26px;
}

.story-card__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-card__content h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
}

.story-card__content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.testimonials {
  background: linear-gradient(135deg, rgba(107, 38, 50, 0.08), rgba(191, 154, 99, 0.06));
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.testimonials__intro h2 {
  margin: 14px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
}

.testimonials__intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.testimonial-panel {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(107, 38, 50, 0.96), rgba(70, 22, 31, 0.98));
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.testimonial-panel__quote {
  margin: 0 0 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.testimonial-panel__author strong,
.testimonial-panel__author span {
  display: block;
}

.testimonial-panel__author strong {
  font-size: 16px;
}

.testimonial-panel__author span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.testimonial-panel__dots {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.testimonial-panel__dots button {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.testimonial-panel__dots button.is-active {
  background: var(--brand-gold);
  transform: scale(1.1);
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(107, 38, 50, 0.08);
  box-shadow: var(--shadow-md);
}

.highlight-card img {
  height: 230px;
  object-fit: cover;
}

.highlight-card__body {
  padding: 24px;
}

.highlight-card__body h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 0.95;
}

.highlight-card__body p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.highlight-card__body a {
  font-weight: 600;
  color: var(--brand);
}

.stats {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, var(--brand-deep), #321015 100%);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  min-height: 220px;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.stat-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.9;
}

.stat-card span {
  display: block;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.news-events__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 26px;
  align-items: start;
}

.news-list,
.event-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-card,
.event-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 38, 50, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.news-card {
  grid-template-columns: 180px 1fr;
  align-items: center;
}

.news-card img {
  height: 140px;
  border-radius: 14px;
  object-fit: cover;
}

.news-card__tag {
  margin: 0 0 8px;
  color: var(--brand-gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card h3,
.event-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 0.95;
}

.news-card a {
  font-weight: 600;
  color: var(--brand);
}

.event-card__date {
  color: var(--brand-gold);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card p {
  margin: 0;
  color: var(--ink-soft);
}

.event-card--cta {
  background: linear-gradient(135deg, rgba(107, 38, 50, 0.08), rgba(191, 154, 99, 0.12));
}

.final-cta {
  padding-top: 10px;
}

.final-cta__inner {
  padding: 70px 20px;
  border-radius: calc(var(--radius-lg) + 6px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(120deg, var(--brand), var(--brand-deep));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.final-cta__inner .eyebrow {
  color: #f1d2a3;
}

.final-cta__inner h2 {
  margin: 16px auto 22px;
  max-width: 760px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.site-footer {
  margin-top: 96px;
  padding: 52px 0 28px;
  background: #1f1414;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 24px;
  padding-bottom: 26px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
}

.site-footer h3 {
  font-size: 36px;
}

.site-footer h4 {
  font-size: 24px;
}

.site-footer p,
.site-footer a {
  font-size: 15px;
  line-height: 1.7;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.site-footer__bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.56);
}

/* Subpage Hero Banner */
.subpage-hero {
  position: relative;
  padding: 85px 0 65px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.subpage-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.subpage-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.subpage-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin: 10px 0 14px;
}

.subpage-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Content Box & Layout Helpers */
.content-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(107, 38, 50, 0.12);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}

.content-box h2, .content-box h3 {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  margin-top: 0;
}

.content-box h2 { font-size: 32px; margin-bottom: 16px; }
.content-box h3 { font-size: 24px; margin-bottom: 12px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-control, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(107, 38, 50, 0.22);
  background: #ffffff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-control:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(107, 38, 50, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* FAQ Accordion */
.faq-item {
  border: 1px solid rgba(107, 38, 50, 0.12);
  border-radius: 10px;
  margin-bottom: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-light);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 28px;
  border-left: 3px solid var(--brand);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-gold);
  border: 3px solid var(--white);
}

.timeline-year {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  color: var(--brand);
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

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

@media (max-width: 1120px) {
  .pathways__grid,
  .highlights__grid,
  .stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .story-card--wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .site-header__actions .header-icon,
  .site-header__actions .explore-button,
  .site-header__actions .button--apply {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-carousel {
    min-height: auto;
  }

  .hero-slide__content {
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .hero-intro-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  .intro__grid,
  .testimonials__grid,
  .news-events__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    grid-template-columns: 1fr;
  }

  .news-card img {
    height: 220px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1200px, calc(100% - 28px));
  }

  .site-header__inner {
    min-height: 74px;
  }

  .hero-slide h1 {
    font-size: clamp(54px, 16vw, 84px);
  }

  .hero-carousel__controls {
    bottom: 20px;
    gap: 8px;
  }

  .hero-carousel__arrow,
  .hero-carousel__pause {
    width: 38px;
    height: 38px;
  }

  .hero-carousel__dots button {
    width: 11px;
    height: 11px;
  }

  .intro__facts,
  .pathways__grid,
  .stories__grid,
  .highlights__grid,
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 0;
  }

  .intro__copy p,
  .section-heading p,
  .testimonials__intro p {
    font-size: 16px;
  }

  .testimonial-panel,
  .final-cta__inner {
    padding: 30px 22px;
  }
}
