:root {
  --ink: #13221f;
  --ink-soft: #2a3f39;
  --mist: #e7efea;
  --mist-2: #d5e3dc;
  --leaf: #1f6b5f;
  --leaf-deep: #0f3d3a;
  --gold: #c9923a;
  --gold-soft: #e8c47a;
  --paper: #f3f7f4;
  --white: #fbfdf0;
  --shadow: 0 24px 60px rgba(15, 61, 58, 0.18);
  --radius: 1.25rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(200, 230, 214, 0.7), transparent 60%),
    radial-gradient(900px 600px at 100% 20%, rgba(232, 196, 122, 0.18), transparent 55%),
    linear-gradient(180deg, var(--mist) 0%, var(--paper) 40%, #eef4f0 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1.25rem, 4vw, 3rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(243, 247, 244, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(19, 34, 31, 0.06);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--leaf-deep);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 550;
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1.5px;
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--leaf-deep);
  color: var(--mist) !important;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--leaf);
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 1.4rem;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--mist);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: kenburns 18s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1.08) translate(0, 0); }
  to { transform: scale(1.16) translate(-2%, -1%); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 61, 58, 0.35) 0%, rgba(15, 61, 58, 0.55) 40%, rgba(10, 28, 26, 0.88) 100%),
    radial-gradient(800px 500px at 70% 30%, rgba(201, 146, 58, 0.22), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(6rem, 14vh, 9rem) clamp(1.25rem, 5vw, 4.5rem) clamp(5rem, 10vh, 7rem);
  max-width: 920px;
}

.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(231, 239, 234, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  border-color: rgba(231, 239, 234, 0.35);
  color: var(--mist);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: rgba(231, 239, 234, 0.7);
}

.scroll-hint {
  position: absolute;
  right: clamp(1.25rem, 5vw, 3rem);
  bottom: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(231, 239, 234, 0.75);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-hint i {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, var(--gold-soft), transparent);
  animation: pulse-line 1.8s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Sections */
.section {
  padding: clamp(4.5rem, 10vh, 7.5rem) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
}

.eyebrow.light {
  color: var(--gold-soft);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 550;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--leaf-deep);
}

.section-lead {
  margin: 1.1rem 0 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Approach */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.approach-item {
  padding: 1.75rem 1.5rem 1.9rem;
  border-top: 2px solid var(--leaf);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
}

.approach-item .num {
  display: block;
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
}

.approach-item h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 550;
}

.approach-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Programs */
.program-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.program {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  min-height: 280px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(19, 34, 31, 0.08);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.program:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.program-visual {
  overflow: hidden;
  min-height: 220px;
}

.program-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.program:hover .program-visual img {
  transform: scale(1.06);
}

.program-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
}

.program-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 550;
  color: var(--leaf-deep);
}

.program-body p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 28rem;
}

/* Path */
.path {
  background:
    linear-gradient(135deg, rgba(15, 61, 58, 0.94), rgba(31, 107, 95, 0.9)),
    url("https://images.unsplash.com/photo-1481627834876-b7833e8f5570?auto=format&fit=crop&w=1800&q=70") center/cover;
  color: var(--mist);
}

.path .section-title,
.path .section-lead {
  color: var(--mist);
}

.path .eyebrow {
  color: var(--gold-soft);
}

.path-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.path-steps li {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
}

.path-steps strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 550;
}

.path-steps span {
  font-weight: 300;
  color: rgba(231, 239, 234, 0.82);
  font-size: 0.95rem;
}

/* Voices */
.quote-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.quote {
  margin: 0;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 3px solid var(--gold);
}

.quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  font-weight: 400;
  color: var(--leaf-deep);
}

.quote footer {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* CTA */
.cta {
  padding-bottom: clamp(5rem, 12vh, 8rem);
}

.cta-panel {
  width: min(900px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  color: var(--mist);
  background:
    radial-gradient(600px 280px at 50% 0%, rgba(232, 196, 122, 0.25), transparent 70%),
    linear-gradient(160deg, var(--leaf-deep), #164843 55%, #0b2a28);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 550;
  line-height: 1.15;
}

.cta-panel > p {
  margin: 1rem auto 0;
  max-width: 28rem;
  font-weight: 300;
  color: rgba(231, 239, 234, 0.85);
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-form input {
  width: min(320px, 100%);
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(231, 239, 234, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.cta-form input::placeholder {
  color: rgba(231, 239, 234, 0.55);
}

.cta-form input:focus {
  border-color: var(--gold-soft);
}

.cta-note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: rgba(231, 239, 234, 0.7);
}

.cta-note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  border-top: 1px solid rgba(19, 34, 31, 0.08);
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a:hover {
  color: var(--leaf);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 900px) {
  .approach-grid,
  .quote-rail,
  .path-layout {
    grid-template-columns: 1fr;
  }

  .program {
    grid-template-columns: 1fr;
  }

  .program-visual {
    height: 220px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    padding: 5.5rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(243, 247, 244, 0.97);
    backdrop-filter: blur(16px);
    transform: translateY(-120%);
    transition: transform 0.45s var(--ease);
  }

  .nav.open {
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 0.5rem;
  }

  .scroll-hint {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
