:root {
  --forest: #1c3a22;
  --forest-deep: #102b1b;
  --forest-ink: #14281a;
  --forest-soft: #2e5636;
  --gold: #c9a227;
  --gold-deep: #8c6d1a;
  --gold-light: #e2c765;
  --ivory: #faf6e8;
  --sand: #f4ead3;
  --sand-light: #f8f1df;
  --beige: #f1e4be;
  --taupe: #d9c49c;
  --white: #fffdf7;
  --ink: #17241a;
  --muted: #687568;
  --line: rgba(23, 36, 26, 0.14);
  --wrap: 1280px;
  --radius-xl: 58px;
  --radius-lg: 38px;
  --radius-md: 26px;
  --shadow: 0 32px 90px rgba(13, 38, 24, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--forest-deep);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--ivory));
  box-shadow: 0 0 18px rgba(226, 199, 101, 0.65);
  pointer-events: none;
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
}

.cursor-light {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  opacity: 0;
  background: radial-gradient(circle, rgba(226, 199, 101, 0.13), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(calc(var(--cursor-x, -500px) - 50%), calc(var(--cursor-y, -500px) - 50%), 0);
  transition: opacity 400ms ease;
  mix-blend-mode: screen;
}

.cursor-light.is-active {
  opacity: 1;
}

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

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

button {
  color: inherit;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}

.wrap {
  width: min(var(--wrap), calc(100% - 96px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 980px;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 81% 12%, rgba(201, 162, 39, 0.23), transparent 26%),
    radial-gradient(circle at 63% 92%, rgba(70, 123, 78, 0.42), transparent 34%),
    linear-gradient(135deg, #0b2517 0%, #153721 44%, #1c3a22 100%);
  border-radius: 0 0 62px 62px;
}

.hero::before {
  position: absolute;
  z-index: 1;
  right: -130px;
  bottom: -310px;
  width: 880px;
  height: 880px;
  border: 1px solid rgba(226, 199, 101, 0.19);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 1;
  right: 40px;
  bottom: -205px;
  width: 670px;
  height: 670px;
  border: 1px solid rgba(250, 246, 232, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(250, 246, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 246, 232, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 42%, #000 100%);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  top: 135px;
  right: 320px;
  width: 270px;
  height: 270px;
  background: rgba(216, 184, 73, 0.17);
  box-shadow: 0 0 100px rgba(216, 184, 73, 0.22);
}

.hero-glow-two {
  right: -100px;
  bottom: 120px;
  width: 340px;
  height: 340px;
  background: rgba(67, 117, 73, 0.24);
  box-shadow: 0 0 120px rgba(67, 117, 73, 0.35);
}

.site-header {
  position: relative;
  z-index: 20;
  top: 26px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 10px 12px 10px 14px;
  color: var(--forest-ink);
  background: rgba(250, 246, 232, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  box-shadow: 0 18px 56px rgba(4, 20, 12, 0.22);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.brand-seal {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  flex: 0 0 auto;
  background: var(--forest);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 50%;
}

.brand-seal img {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 58px;
  height: 58px;
  max-width: none;
}

.brand-copy {
  display: grid;
  line-height: 1;
  letter-spacing: 0.03em;
}

.brand-copy span {
  margin-bottom: 4px;
  color: #6c735f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-inline: 28px;
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
  min-height: 52px;
  padding: 0 22px 0 24px;
  color: var(--ivory);
  background: var(--forest);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.header-cta span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--forest);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 16px;
}

.header-cta:hover {
  color: var(--forest-ink);
  background: var(--gold);
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 610px;
  align-items: center;
  gap: 62px;
  padding-top: 130px;
}

.hero-copy {
  align-self: center;
  padding: 30px 0 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ebe4cc;
}

.eyebrow.dark {
  color: #526354;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(201, 162, 39, 0.13);
}

.hero h1,
.intro h2,
.section-heading h2,
.manifesto h2,
.method-copy h2,
.visit h2 {
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 650px;
  color: var(--ivory);
  font-size: clamp(68px, 5.6vw, 86px);
  line-height: 0.94;
}

.hero h1 em,
.intro h2 em,
.section-heading h2 em,
.manifesto h2 em,
.method-copy h2 em,
.visit h2 em,
.stage-content h3 em {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero h1 em {
  margin-top: 8px;
  color: var(--gold-light);
  font-size: 1.08em;
  line-height: 0.94;
}

.hero-lead {
  max-width: 530px;
  margin-top: 32px;
  color: rgba(250, 246, 232, 0.76);
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions,
.visit-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 62px;
  padding: 0 14px 0 26px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

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

.button-gold {
  color: var(--forest-ink);
  background: var(--gold-light);
  box-shadow: 0 18px 45px rgba(201, 162, 39, 0.18);
}

.button-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ivory);
  background: var(--forest);
  border-radius: 50%;
  font-size: 18px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 5px;
  color: rgba(250, 246, 232, 0.88);
  border-bottom: 1px solid rgba(250, 246, 232, 0.35);
  font-size: 13px;
  font-weight: 600;
}

.hero-paths {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 62px;
  color: rgba(250, 246, 232, 0.58);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-paths i {
  width: 35px;
  height: 1px;
  background: rgba(226, 199, 101, 0.68);
}

.hero-visual {
  position: relative;
  height: 760px;
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  background: var(--forest-soft);
  box-shadow: 0 35px 90px rgba(4, 18, 11, 0.4);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  z-index: 5;
  top: 12px;
  left: 64px;
  width: 382px;
  height: 650px;
  border: 5px solid rgba(250, 246, 232, 0.14);
  border-radius: 200px 200px 66px 66px;
}

.hero-photo-main img {
  object-position: 50% 45%;
}

.hero-photo-main::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(7, 29, 17, 0.68));
}

.hero-photo-main figcaption {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ivory);
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
  font-style: italic;
}

.hero-photo-main figcaption span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--forest);
  background: var(--gold-light);
  border-radius: 50%;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.hero-photo-class {
  z-index: 6;
  top: 120px;
  right: -8px;
  width: 206px;
  height: 284px;
  border: 4px solid rgba(250, 246, 232, 0.8);
  border-radius: 103px 30px 30px 103px;
  transform: rotate(2.5deg);
}

.hero-photo-class img {
  object-position: center 44%;
}

.hero-photo-student {
  z-index: 7;
  right: 22px;
  bottom: 62px;
  width: 190px;
  height: 238px;
  border: 4px solid rgba(250, 246, 232, 0.8);
  border-radius: 34px 96px 96px 34px;
  transform: rotate(-3deg);
}

.hero-photo-student img {
  object-position: center 28%;
}

.orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(226, 199, 101, 0.34);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.orbit::after {
  position: absolute;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(226, 199, 101, 0.9);
}

.orbit-one {
  top: 5px;
  right: 8px;
  width: 600px;
  height: 620px;
}

.orbit-one::after {
  top: 32px;
  right: 105px;
}

.orbit-two {
  top: 85px;
  left: 5px;
  width: 470px;
  height: 500px;
  border-color: rgba(250, 246, 232, 0.16);
}

.orbit-two::after {
  right: 35px;
  bottom: 62px;
  width: 7px;
  height: 7px;
  background: var(--ivory);
}

.compass-mark {
  position: absolute;
  z-index: 8;
  top: -4px;
  right: 140px;
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 0 18px rgba(226, 199, 101, 0.5));
}

.compass-mark::before,
.compass-mark::after,
.compass-mark span::before,
.compass-mark span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: var(--gold-light);
  transform: translate(-50%, -50%);
}

.compass-mark::before {
  width: 2px;
  height: 54px;
}

.compass-mark::after {
  width: 54px;
  height: 2px;
}

.compass-mark span::before {
  width: 1px;
  height: 40px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.compass-mark span::after {
  width: 40px;
  height: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-note {
  position: absolute;
  z-index: 8;
  bottom: 104px;
  left: -28px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  padding: 18px 22px;
  color: var(--forest-ink);
  background: rgba(250, 246, 232, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  box-shadow: 0 24px 55px rgba(3, 17, 10, 0.28);
  backdrop-filter: blur(14px);
  transform: rotate(2deg);
}

.hero-note .spark {
  color: var(--gold-deep);
  font-size: 24px;
}

.hero-note p {
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.15;
}

.location-pill {
  position: absolute;
  z-index: 9;
  right: 194px;
  bottom: 21px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px 10px 10px;
  color: var(--forest-ink);
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.location-pill span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  background: rgba(28, 58, 34, 0.12);
  border-radius: 50%;
  font-size: 15px;
}

.hero-scroll {
  position: absolute;
  z-index: 6;
  bottom: 33px;
  left: max(48px, calc((100% - var(--wrap)) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(250, 246, 232, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
}

.hero-scroll i {
  position: relative;
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(250, 246, 232, 0.2);
}

.hero-scroll i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--gold-light);
  transform: translateX(-55%);
}

.values-ribbon {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  min-height: 108px;
  margin-top: -4px;
  overflow: hidden;
  color: var(--forest-ink);
  background: var(--gold-light);
}

.ribbon-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 3vw, 55px);
  width: 100%;
  padding-inline: 24px;
  white-space: nowrap;
}

.ribbon-track span {
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(24px, 2.3vw, 35px);
  font-style: italic;
  letter-spacing: -0.02em;
}

.ribbon-track i {
  color: rgba(28, 58, 34, 0.64);
  font-style: normal;
}

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

.intro {
  position: relative;
  padding: 145px 0 132px;
}

.intro::before {
  position: absolute;
  top: 53px;
  right: 8%;
  width: 230px;
  height: 230px;
  content: "";
  border: 1px solid rgba(201, 162, 39, 0.18);
  border-radius: 50%;
}

.intro::after {
  position: absolute;
  top: 94px;
  right: calc(8% + 41px);
  width: 146px;
  height: 146px;
  content: "";
  border: 1px solid rgba(28, 58, 34, 0.11);
  border-radius: 50%;
}

.intro-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.68fr);
  align-items: end;
  gap: 110px;
}

.intro h2,
.section-heading h2 {
  max-width: 810px;
  color: var(--ink);
  font-size: clamp(55px, 5vw, 75px);
  line-height: 0.98;
}

.intro h2 em,
.section-heading h2 em,
.method-copy h2 em {
  color: var(--forest-soft);
}

.intro-copy {
  padding-bottom: 5px;
}

.intro-copy p,
.section-heading.horizontal > p,
.section-side p {
  color: #5c6b5e;
  font-size: 17px;
  line-height: 1.65;
}

.arrow-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: fit-content;
  min-width: 245px;
  margin-top: 30px;
  padding-bottom: 12px;
  color: var(--forest);
  border-bottom: 1px solid rgba(28, 58, 34, 0.33);
  font-size: 13px;
  font-weight: 700;
}

.arrow-link span {
  color: var(--gold-deep);
  font-size: 19px;
}

.principle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 92px;
}

.principle-card {
  position: relative;
  min-height: 342px;
  padding: 32px 36px 34px;
  background: rgba(255, 253, 247, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.principle-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.principle-card.featured {
  color: var(--ivory);
  background:
    radial-gradient(circle at 100% 0, rgba(226, 199, 101, 0.18), transparent 38%),
    var(--forest);
  border-color: var(--forest);
  box-shadow: 0 30px 70px rgba(28, 58, 34, 0.18);
  transform: translateY(-26px);
}

.principle-card.featured:hover {
  transform: translateY(-34px);
}

.principle-number {
  color: #899086;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.featured .principle-number {
  color: rgba(250, 246, 232, 0.48);
}

.principle-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-top: 42px;
  place-items: center;
  color: var(--forest);
  background: var(--beige);
  border-radius: 20px;
}

.principle-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.featured .principle-icon {
  color: var(--forest);
  background: var(--gold-light);
}

.principle-card h3 {
  margin-top: 25px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 33px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.principle-card p {
  max-width: 310px;
  margin-top: 10px;
  color: #6d786e;
  font-size: 14px;
  line-height: 1.65;
}

.principle-card.featured p {
  color: rgba(250, 246, 232, 0.66);
}

.learning-paths {
  position: relative;
  padding: 142px 0 150px;
  background:
    radial-gradient(circle at 11% 9%, rgba(201, 162, 39, 0.12), transparent 26%),
    var(--sand);
}

.section-heading.horizontal {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 100px;
}

.section-heading.horizontal > p {
  max-width: 380px;
  padding-bottom: 8px;
}

.learning-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(350px, 0.82fr);
  grid-template-rows: 318px 318px;
  gap: 20px;
  margin-top: 82px;
}

.stage-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  color: var(--ivory);
  background: var(--forest);
  border-radius: var(--radius-xl);
}

.stage-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.stage-card:hover img {
  transform: scale(1.045);
}

.stage-main {
  grid-row: 1 / 3;
}

.stage-main img {
  object-position: center;
}

.stage-secondary {
  border-radius: var(--radius-xl) var(--radius-xl) 34px var(--radius-xl);
}

.stage-secondary img {
  object-position: center 25%;
}

.stage-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 24%, rgba(8, 30, 18, 0.77) 100%),
    linear-gradient(90deg, rgba(8, 30, 18, 0.26), transparent 55%);
}

.stage-content {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 38px;
  left: 42px;
}

.stage-index {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stage-content h3 {
  max-width: 540px;
  margin-top: 13px;
  font-size: clamp(47px, 4.1vw, 66px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.stage-content h3 em {
  color: var(--gold-light);
  font-size: 1.08em;
}

.stage-content p {
  max-width: 420px;
  margin-top: 18px;
  color: rgba(250, 246, 232, 0.78);
  font-size: 14px;
}

.stage-content a,
.news-card > a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--forest);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 21px;
}

.stage-secondary .stage-content {
  right: 26px;
  bottom: 25px;
  left: 28px;
}

.stage-secondary .stage-content h3 {
  margin-top: 8px;
  font-size: 42px;
}

.stage-secondary .stage-content p {
  max-width: 310px;
  margin-top: 10px;
  padding-right: 50px;
  font-size: 12px;
}

.stage-secondary .stage-content a {
  width: 42px;
  height: 42px;
}

.stage-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 34px 38px;
  color: var(--forest-ink);
  background:
    radial-gradient(circle at 102% -10%, rgba(255, 253, 247, 0.55), transparent 43%),
    var(--gold-light);
  border-radius: 34px var(--radius-xl) var(--radius-xl) var(--radius-xl);
}

.stage-quote::after {
  position: absolute;
  top: -80px;
  right: -65px;
  width: 240px;
  height: 240px;
  content: "";
  border: 1px solid rgba(28, 58, 34, 0.18);
  border-radius: 50%;
}

.quote-star {
  font-size: 25px;
}

.stage-quote blockquote {
  position: relative;
  z-index: 2;
  max-width: 420px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 38px);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.stage-quote > span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.manifesto {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 89% 22%, rgba(201, 162, 39, 0.2), transparent 25%),
    linear-gradient(125deg, #0c2819, #183a22 67%, #234b2b);
}

.manifesto::after {
  position: absolute;
  right: -50px;
  bottom: -315px;
  width: 800px;
  height: 800px;
  content: "";
  background: rgba(201, 162, 39, 0.06);
  border-radius: 50%;
  filter: blur(2px);
}

.manifesto-rings {
  position: absolute;
  top: 47%;
  right: -160px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(226, 199, 101, 0.16);
  border-radius: 50%;
  transform: translateY(-50%);
}

.manifesto-rings::before,
.manifesto-rings::after {
  position: absolute;
  inset: 92px;
  content: "";
  border: 1px solid rgba(250, 246, 232, 0.1);
  border-radius: 50%;
}

.manifesto-rings::after {
  inset: 194px;
  border-color: rgba(226, 199, 101, 0.16);
}

.manifesto-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 110px;
  min-height: 920px;
  padding: 100px 0;
}

.manifesto-copy h2 {
  max-width: 720px;
  font-size: clamp(59px, 5.25vw, 79px);
  line-height: 0.97;
}

.manifesto-copy h2 em,
.visit h2 em {
  margin-top: 9px;
  color: var(--gold-light);
}

.manifesto-copy > p {
  max-width: 620px;
  margin-top: 32px;
  color: rgba(250, 246, 232, 0.7);
  font-size: 17px;
  line-height: 1.72;
}

.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 45px;
}

.manifesto-tags span {
  padding: 12px 17px;
  color: rgba(250, 246, 232, 0.8);
  background: rgba(250, 246, 232, 0.07);
  border: 1px solid rgba(250, 246, 232, 0.16);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.manifesto-visual {
  position: relative;
  height: 690px;
}

.manifesto-frame {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 50px;
  width: 380px;
  height: 610px;
  overflow: hidden;
  border: 5px solid rgba(250, 246, 232, 0.14);
  border-radius: 190px 190px 54px 54px;
  box-shadow: 0 42px 100px rgba(4, 19, 11, 0.46);
}

.manifesto-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.manifesto-caption {
  position: absolute;
  z-index: 5;
  bottom: 48px;
  left: -36px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 240px;
  padding: 18px 22px;
  color: var(--forest-ink);
  background: var(--gold-light);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(5, 23, 13, 0.28);
  transform: rotate(-2deg);
}

.manifesto-caption span {
  font-size: 24px;
}

.manifesto-caption p {
  font-family: "Newsreader", Georgia, serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.1;
}

.manifesto-vertical {
  position: absolute;
  z-index: 4;
  top: 235px;
  right: -44px;
  color: rgba(250, 246, 232, 0.44);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.campus {
  padding: 145px 0 155px;
}

.campus-heading {
  align-items: end;
}

.section-side {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 6px;
}

.section-side p {
  max-width: 300px;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-controls button,
.slider-controls > span {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: var(--forest);
  background: transparent;
  border: 1px solid rgba(28, 58, 34, 0.24);
  border-radius: 50%;
  font-size: 18px;
}

.slider-controls button:last-child,
.slider-controls > span:last-child {
  color: var(--ivory);
  background: var(--forest);
}

.campus-mosaic {
  display: grid;
  grid-template-columns: 1.28fr 0.78fr 0.65fr;
  grid-template-rows: 318px 318px;
  gap: 18px;
  margin-top: 78px;
}

.moment-card {
  position: relative;
  overflow: hidden;
  background: var(--forest-soft);
  border-radius: 34px;
}

.moment-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 750ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.moment-card:hover img {
  transform: scale(1.05);
}

.moment-card::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(7, 29, 17, 0.88));
}

.moment-card figcaption {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  color: var(--ivory);
}

.moment-card figcaption span {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.moment-card figcaption strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
}

.moment-wide {
  grid-row: 1 / 3;
  border-radius: var(--radius-xl) 34px 34px var(--radius-xl);
}

.moment-wide img {
  object-position: center 57%;
}

.moment-tall {
  grid-row: 1 / 3;
  border-radius: 34px;
}

.moment-tall img {
  object-position: center 44%;
}

.moment-small img {
  object-position: center 32%;
}

.moment-small.lower {
  border-radius: 34px 34px var(--radius-xl) 34px;
}

.method {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 3% 55%, rgba(201, 162, 39, 0.15), transparent 26%),
    var(--sand-light);
}

.method::after {
  position: absolute;
  top: -300px;
  right: -260px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(28, 58, 34, 0.1);
  border-radius: 50%;
}

.method-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 120px;
}

.method-visual {
  position: relative;
  height: 700px;
}

.method-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 510px;
  height: 660px;
  overflow: hidden;
  border-radius: 255px 255px 66px 66px;
  box-shadow: var(--shadow);
}

.method-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.method-badge {
  position: absolute;
  right: -18px;
  bottom: 74px;
  display: grid;
  width: 182px;
  height: 182px;
  place-items: center;
  align-content: center;
  color: var(--ivory);
  background: var(--forest);
  border: 10px solid var(--sand-light);
  border-radius: 50%;
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.02;
  text-align: center;
}

.method-badge span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  place-items: center;
  color: var(--forest);
  background: var(--gold-light);
  border-radius: 50%;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-style: normal;
}

.method-copy h2 {
  max-width: 650px;
  font-size: clamp(55px, 4.65vw, 72px);
  line-height: 0.98;
}

.method-copy > p {
  max-width: 620px;
  margin-top: 30px;
  color: #5c6b5e;
  font-size: 17px;
  line-height: 1.7;
}

.method-list {
  display: grid;
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.method-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.method-list > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--forest);
  background: rgba(201, 162, 39, 0.16);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.method-list li div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
}

.method-list strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.method-list small {
  color: #7b857c;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.news {
  padding: 145px 0 155px;
}

.news-heading {
  align-items: end;
}

.news-heading .arrow-link {
  justify-self: end;
  margin-bottom: 8px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 18px;
  margin-top: 78px;
}

.news-card {
  position: relative;
  padding: 14px 14px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 36px;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.news-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.news-image {
  height: 325px;
  overflow: hidden;
  border-radius: 27px;
}

.news-primary .news-image {
  height: 375px;
}

.news-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.news-primary .news-image img {
  object-position: center 45%;
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 6px 0;
  color: #7a857b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.news-meta span {
  color: var(--gold-deep);
}

.news-card h3 {
  max-width: 365px;
  padding: 10px 58px 0 6px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.028em;
}

.news-card > a {
  right: 25px;
  bottom: 25px;
  width: 42px;
  height: 42px;
  color: var(--ivory);
  background: var(--forest);
  font-size: 18px;
}

.visit {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--ivory);
  background:
    linear-gradient(118deg, rgba(10, 38, 23, 0.97), rgba(27, 64, 35, 0.95)),
    var(--forest);
  border-radius: 64px 64px 0 0;
}

.visit::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(250, 246, 232, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 246, 232, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
}

.visit-glow {
  position: absolute;
  top: 20%;
  right: 22%;
  width: 330px;
  height: 330px;
  background: rgba(201, 162, 39, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 150px rgba(201, 162, 39, 0.18);
  filter: blur(30px);
}

.visit-orbit {
  position: absolute;
  top: -230px;
  right: -200px;
  width: 870px;
  height: 870px;
  border: 1px solid rgba(226, 199, 101, 0.2);
  border-radius: 50%;
}

.visit-orbit::before,
.visit-orbit::after {
  position: absolute;
  inset: 100px;
  content: "";
  border: 1px solid rgba(250, 246, 232, 0.09);
  border-radius: 50%;
}

.visit-orbit::after {
  inset: 220px;
  border-color: rgba(226, 199, 101, 0.16);
}

.visit-layout {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 430px;
  align-items: center;
  gap: 100px;
  min-height: 760px;
  padding: 86px 0;
}

.visit h2 {
  max-width: 740px;
  font-size: clamp(63px, 5.6vw, 86px);
  line-height: 0.92;
}

.visit-copy > p {
  max-width: 550px;
  margin-top: 28px;
  color: rgba(250, 246, 232, 0.7);
  font-size: 17px;
}

.visit-photo {
  position: relative;
  height: 570px;
  overflow: hidden;
  border: 5px solid rgba(250, 246, 232, 0.14);
  border-radius: 215px 215px 52px 52px;
  box-shadow: 0 42px 90px rgba(3, 19, 10, 0.42);
}

.visit-photo::after {
  position: absolute;
  inset: 55% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(7, 28, 17, 0.72));
}

.visit-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.visit-photo-label {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: var(--ivory);
  font-family: "Newsreader", Georgia, serif;
  font-size: 23px;
  font-style: italic;
  text-align: center;
}

.site-footer {
  color: var(--ivory);
  background: #091e13;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 72px 0 55px;
}

.footer-brand .brand-copy span {
  color: rgba(250, 246, 232, 0.48);
}

.footer-top > p {
  max-width: 390px;
  color: rgba(250, 246, 232, 0.52);
  font-family: "Newsreader", Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.35;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
}

.footer-social a {
  padding: 11px 15px;
  color: rgba(250, 246, 232, 0.72);
  border: 1px solid rgba(250, 246, 232, 0.14);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0 30px;
  color: rgba(250, 246, 232, 0.36);
  border-top: 1px solid rgba(250, 246, 232, 0.1);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: var(--gold-light);
}

@media (max-width: 1180px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 64px));
  }

  .main-nav {
    gap: 20px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 540px;
    gap: 20px;
  }

  .hero-photo-main {
    left: 40px;
    width: 350px;
  }

  .hero-photo-class {
    right: 0;
  }

  .manifesto-layout,
  .method-layout {
    gap: 60px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 1390px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 150px;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .hero-visual {
    width: min(650px, 100%);
    margin: 0 auto;
  }

  .intro-grid,
  .section-heading.horizontal,
  .manifesto-layout,
  .method-layout,
  .visit-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .principle-row {
    grid-template-columns: 1fr;
  }

  .principle-card.featured,
  .principle-card.featured:hover {
    transform: none;
  }

  .learning-bento {
    grid-template-columns: 1fr;
    grid-template-rows: 610px 440px 330px;
  }

  .stage-main {
    grid-row: auto;
  }

  .manifesto-layout {
    padding: 115px 0;
  }

  .manifesto-visual {
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .campus-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 460px 370px 370px;
  }

  .moment-wide {
    grid-column: 1 / 3;
    grid-row: auto;
    border-radius: var(--radius-xl);
  }

  .moment-tall {
    grid-row: 2 / 4;
  }

  .method-visual {
    width: min(600px, 100%);
    margin-inline: auto;
  }

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

  .news-card:last-child {
    grid-column: 1 / 3;
  }

  .visit-photo {
    width: min(430px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  :root {
    --radius-xl: 38px;
    --radius-lg: 30px;
  }

  .wrap {
    width: calc(100% - 40px);
  }

  .site-header {
    top: 16px;
    min-height: 64px;
    padding: 7px 8px 7px 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-seal {
    width: 44px;
    height: 44px;
  }

  .brand-seal img {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy span {
    font-size: 7px;
  }

  .header-cta {
    width: 46px;
    min-height: 46px;
    padding: 0;
    font-size: 0;
  }

  .header-cta span {
    width: 46px;
    height: 46px;
    color: var(--gold-light);
    background: var(--forest);
  }

  .hero {
    min-height: 1280px;
    border-radius: 0 0 38px 38px;
  }

  .hero-content {
    gap: 28px;
    padding-top: 112px;
  }

  .hero-copy {
    padding: 28px 0 0;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 51px;
    line-height: 0.98;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions,
  .visit-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 32px;
  }

  .button {
    min-height: 58px;
  }

  .hero-paths {
    gap: 10px;
    margin-top: 38px;
    font-size: 8px;
  }

  .hero-paths i {
    width: 18px;
  }

  .hero-visual {
    height: 610px;
  }

  .hero-photo-main {
    top: 24px;
    left: 7px;
    width: 255px;
    height: 470px;
    border-width: 3px;
    border-radius: 140px 140px 48px 48px;
  }

  .hero-photo-class {
    top: 82px;
    right: -8px;
    width: 150px;
    height: 205px;
    border-width: 3px;
    border-radius: 80px 24px 24px 80px;
  }

  .hero-photo-student {
    right: 5px;
    bottom: 70px;
    width: 142px;
    height: 190px;
    border-width: 3px;
    border-radius: 24px 75px 75px 24px;
  }

  .hero-photo-main figcaption {
    right: 18px;
    bottom: 19px;
    left: 18px;
    font-size: 15px;
  }

  .hero-note {
    bottom: 30px;
    left: -5px;
    min-width: 178px;
    padding: 14px 17px;
  }

  .hero-note p {
    font-size: 15px;
  }

  .location-pill {
    display: none;
  }

  .orbit-one {
    top: 18px;
    right: -105px;
    width: 480px;
    height: 500px;
  }

  .orbit-two,
  .compass-mark,
  .hero-scroll {
    display: none;
  }

  .values-ribbon {
    min-height: 82px;
  }

  .ribbon-track {
    justify-content: flex-start;
    gap: 22px;
    width: max-content;
  }

  .ribbon-track span {
    font-size: 23px;
  }

  .intro,
  .learning-paths,
  .campus,
  .method,
  .news {
    padding: 92px 0 100px;
  }

  .intro-grid,
  .section-heading.horizontal {
    gap: 38px;
  }

  .intro h2,
  .section-heading h2,
  .manifesto-copy h2,
  .method-copy h2,
  .visit h2 {
    font-size: 47px;
    line-height: 0.98;
  }

  .intro-copy p,
  .section-heading.horizontal > p,
  .section-side p,
  .method-copy > p,
  .manifesto-copy > p {
    font-size: 15px;
  }

  .principle-row {
    gap: 12px;
    margin-top: 64px;
  }

  .principle-card {
    min-height: 300px;
    padding: 28px;
  }

  .principle-icon {
    margin-top: 28px;
  }

  .learning-bento {
    grid-template-rows: 520px 450px 320px;
    gap: 12px;
    margin-top: 60px;
  }

  .stage-content {
    right: 24px;
    bottom: 26px;
    left: 26px;
  }

  .stage-content h3,
  .stage-secondary .stage-content h3 {
    font-size: 44px;
  }

  .stage-content a {
    position: static;
    width: 42px;
    height: 42px;
    margin-top: 19px;
  }

  .stage-secondary .stage-content p {
    padding-right: 0;
  }

  .stage-quote {
    padding: 28px;
  }

  .stage-quote blockquote {
    font-size: 31px;
  }

  .manifesto,
  .manifesto-layout {
    min-height: 1160px;
  }

  .manifesto-layout {
    padding: 92px 0 105px;
  }

  .manifesto-tags {
    gap: 7px;
  }

  .manifesto-tags span {
    padding: 10px 13px;
    font-size: 8px;
  }

  .manifesto-visual {
    height: 570px;
  }

  .manifesto-frame {
    right: 5px;
    width: 300px;
    height: 505px;
    border-radius: 155px 155px 42px 42px;
  }

  .manifesto-caption {
    bottom: 17px;
    left: 0;
    min-width: 205px;
  }

  .manifesto-vertical {
    display: none;
  }

  .section-side {
    align-items: flex-start;
    flex-direction: column;
  }

  .campus-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 410px);
    gap: 12px;
    margin-top: 58px;
  }

  .moment-wide,
  .moment-tall {
    grid-column: auto;
    grid-row: auto;
    border-radius: var(--radius-xl);
  }

  .method-layout {
    gap: 55px;
  }

  .method-visual {
    height: 560px;
  }

  .method-image {
    width: 315px;
    height: 520px;
    border-radius: 160px 160px 48px 48px;
  }

  .method-badge {
    right: -4px;
    bottom: 20px;
    width: 142px;
    height: 142px;
    border-width: 7px;
    font-size: 17px;
  }

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

  .method-list li div {
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
  }

  .method-list strong {
    font-size: 23px;
  }

  .news-heading .arrow-link {
    justify-self: start;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 58px;
  }

  .news-card:last-child {
    grid-column: auto;
  }

  .news-image,
  .news-primary .news-image {
    height: 340px;
  }

  .visit {
    border-radius: 38px 38px 0 0;
  }

  .visit-layout {
    gap: 62px;
    padding: 95px 0;
  }

  .visit-photo {
    height: 510px;
    border-radius: 180px 180px 46px 46px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 62px 0 44px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

/* Revisão conceitual: raízes, percurso e horizonte. */

:root {
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
}

.site-header {
  border-radius: 22px;
}

.hero {
  border-radius: 0 0 32px 32px;
}

.hero::before,
.hero::after,
.orbit,
.intro::before,
.intro::after,
.manifesto::after,
.manifesto-rings,
.method::after,
.stage-quote::after,
.visit-orbit {
  display: none;
}

.hero-grid {
  transform: translateY(var(--hero-shift, 0));
  transition: transform 120ms linear;
}

.mountain-trace {
  display: none;
}

.mountain-silhouette {
  fill: rgba(250, 246, 232, 0.025);
  stroke: rgba(250, 246, 232, 0.14);
  stroke-width: 1.3;
}

.mountain-contour {
  fill: none;
  stroke: rgba(250, 246, 232, 0.1);
  stroke-width: 1.1;
}

.mountain-route {
  fill: none;
  stroke: var(--gold-light);
  stroke-dasharray: 5 11;
  stroke-linecap: round;
  stroke-width: 2;
  filter: drop-shadow(0 0 7px rgba(226, 199, 101, 0.72));
  animation: route-flow 10s linear infinite;
}

.hero-glow-one {
  animation: light-breathe 6.5s ease-in-out infinite;
}

.hero-glow-two {
  animation: light-drift 9s ease-in-out infinite alternate;
}

.hero-photo-main {
  border-radius: 200px 200px 24px 24px;
  animation: portal-float 7s ease-in-out infinite;
}

.hero-photo-main img {
  transform: scale(1.09);
  transform-origin: 50% 44%;
}

.hero-photo-main::after {
  inset: 42% 0 0;
  background: linear-gradient(
    transparent,
    rgba(7, 29, 17, 0.72) 66%,
    rgba(7, 29, 17, 0.96) 100%
  );
}

.hero-photo-class,
.hero-photo-student {
  border: 3px solid rgba(250, 246, 232, 0.72);
  border-radius: 14px;
}

.hero-photo-class {
  clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
  transform: rotate(1.5deg);
  animation: photo-float-one 6.8s ease-in-out infinite;
}

.hero-photo-student {
  clip-path: polygon(7% 0, 100% 6%, 94% 100%, 0 94%);
  transform: rotate(-1.5deg);
  animation: photo-float-two 8s ease-in-out infinite;
}

.compass-mark {
  animation: compass-turn 22s linear infinite;
}

.compass-mark::before,
.compass-mark::after,
.compass-mark span::before,
.compass-mark span::after {
  box-shadow: 0 0 11px rgba(226, 199, 101, 0.52);
}

.hero-note {
  bottom: 22px;
  left: 0;
  min-width: 240px;
  padding: 8px 0 8px 19px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  border-left: 2px solid var(--gold-light);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
}

.hero-note .spark {
  color: var(--gold-light);
  filter: drop-shadow(0 0 8px rgba(226, 199, 101, 0.74));
  animation: star-pulse 3s ease-in-out infinite;
}

.hero-note p {
  color: rgba(250, 246, 232, 0.9);
}

.location-pill {
  right: 0;
}

.hero-scroll i::after {
  animation: scroll-line 2.2s ease-in-out infinite;
}

.values-ribbon:hover .ribbon-track {
  animation-play-state: paused;
}

.ribbon-track {
  justify-content: flex-start;
  gap: 0;
  width: max-content;
  min-width: max-content;
  padding-inline: 0;
  animation: ribbon-marquee 28s linear infinite;
}

.ribbon-group {
  display: flex;
  align-items: center;
  flex: none;
  gap: clamp(25px, 3vw, 55px);
  padding-right: clamp(25px, 3vw, 55px);
}

.origin {
  position: relative;
  padding: 144px 0 126px;
  overflow: hidden;
  background:
    linear-gradient(112deg, transparent 0 56%, rgba(201, 162, 39, 0.055) 56% 56.08%, transparent 56.08%),
    var(--ivory);
}

.origin-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  align-items: center;
  gap: 84px;
}

.origin-copy h2 {
  max-width: 650px;
  color: var(--ink);
  font-size: clamp(56px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.origin-copy h2 em {
  display: block;
  margin-top: 8px;
  color: var(--forest-soft);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.origin-copy > p {
  max-width: 610px;
  margin-top: 25px;
  color: #5c6b5e;
  font-size: 16px;
  line-height: 1.72;
}

.origin-copy > p + p {
  margin-top: 13px;
}

.origin-visual {
  position: relative;
  height: 620px;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 76% 18%, rgba(226, 199, 101, 0.2), transparent 24%),
    linear-gradient(145deg, #0b2818, #1d4628);
  border: 1px solid rgba(28, 58, 34, 0.12);
  border-radius: 18px;
  box-shadow: 0 38px 90px rgba(13, 38, 24, 0.18);
  clip-path: polygon(0 6%, 94% 0, 100% 92%, 8% 100%, 0 86%);
}

.origin-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(250, 246, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 246, 232, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(135deg, transparent, #000 28%, #000 85%, transparent);
}

.origin-mountain {
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.origin-hill-fill {
  fill: rgba(250, 246, 232, 0.075);
  stroke: rgba(250, 246, 232, 0.24);
  stroke-width: 1.25;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.origin-hill-contour {
  fill: none;
  stroke: rgba(250, 246, 232, 0.13);
  stroke-width: 1;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.origin-route-line {
  fill: none;
  stroke: var(--gold-light);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 9px rgba(226, 199, 101, 0.72));
}

.origin-summit-star {
  fill: var(--gold-light);
  stroke: rgba(140, 109, 26, 0.55);
  stroke-width: 0.6;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 9px rgba(226, 199, 101, 0.8));
  transform-box: fill-box;
  transform-origin: center;
  animation: star-pulse 3.2s ease-in-out infinite;
}

.origin-star-facets {
  fill: rgba(140, 109, 26, 0.55);
  stroke: none;
}

.origin-visual.in-view .origin-route-line,
.render-static .origin-route-line {
  animation: origin-route-draw 2.4s 280ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.origin-point {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 175px;
  padding-left: 17px;
  border-left: 1px solid rgba(226, 199, 101, 0.65);
}

.origin-point::before {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(226, 199, 101, 0.85);
  animation: waypoint-pulse 3.4s ease-in-out infinite;
}

.origin-point > span {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.origin-point strong {
  margin-top: 4px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}

.origin-point small {
  margin-top: 7px;
  color: rgba(250, 246, 232, 0.7);
  font-size: 11px;
  line-height: 1.45;
}

.point-one {
  top: 82.26%;
  left: 9.84%;
}

.point-two {
  top: 57.26%;
  left: 37.05%;
}

.point-three {
  top: 39.35%;
  right: auto;
  left: 62.3%;
}

.origin-pillars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 90px;
}

.origin-pillar {
  position: relative;
  min-height: 188px;
  padding: 26px 8px 0 0;
  border-top: 1px solid rgba(28, 58, 34, 0.24);
}

.origin-pillar:nth-child(1) {
  margin-top: 30px;
}

.origin-pillar:nth-child(2) {
  margin-top: 15px;
}

.origin-pillar.featured {
  border-color: var(--gold);
}

.origin-pillar::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 72px;
  height: 3px;
  content: "";
  background: var(--forest);
}

.origin-pillar.featured::before {
  background: var(--gold);
}

.origin-pillar > span {
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.origin-pillar h3 {
  margin-top: 28px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.origin-pillar p {
  max-width: 310px;
  margin-top: 9px;
  color: #687568;
  font-size: 14px;
}

.stage-card {
  border-radius: 20px;
}

.stage-secondary {
  border-radius: 20px;
  clip-path: polygon(0 0, 96% 0, 100% 10%, 100% 100%, 0 100%);
}

.stage-quote {
  padding: 32px 36px;
  overflow: visible;
  background: transparent;
  border-top: 2px solid var(--gold);
  border-radius: 0;
}

.stage-statement {
  position: relative;
  z-index: 2;
  max-width: 420px;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(29px, 2.65vw, 40px);
  font-style: italic;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.quote-star {
  color: var(--gold-deep);
  filter: drop-shadow(0 0 9px rgba(201, 162, 39, 0.35));
  animation: star-pulse 3.2s ease-in-out infinite;
}

.manifesto-tags {
  align-items: center;
  gap: 0;
  width: fit-content;
  padding: 14px 0;
  border-top: 1px solid rgba(250, 246, 232, 0.15);
  border-bottom: 1px solid rgba(250, 246, 232, 0.15);
}

.manifesto-tags span {
  position: relative;
  padding: 0 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.manifesto-tags span:first-child {
  padding-left: 0;
}

.manifesto-tags span + span::before {
  position: absolute;
  top: 50%;
  left: -2px;
  color: var(--gold-light);
  content: "✦";
  font-size: 8px;
  transform: translateY(-50%);
}

.manifesto-frame {
  right: 18px;
  width: 420px;
  border-width: 3px;
  border-radius: 16px;
  clip-path: polygon(9% 0, 100% 5%, 100% 92%, 0 100%, 0 9%);
}

.manifesto-caption {
  bottom: 34px;
  left: -18px;
  min-width: 255px;
  padding: 12px 0 12px 19px;
  color: var(--ivory);
  background: transparent;
  border-left: 2px solid var(--gold-light);
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.manifesto-caption span {
  color: var(--gold-light);
  filter: drop-shadow(0 0 8px rgba(226, 199, 101, 0.7));
}

.moment-card,
.moment-wide,
.moment-tall,
.moment-small.lower {
  border-radius: 16px;
}

.moment-card:hover {
  box-shadow: 0 26px 58px rgba(13, 38, 24, 0.18);
}

.method-image {
  width: 520px;
  border-radius: 16px;
  clip-path: polygon(0 7%, 100% 0, 100% 93%, 8% 100%, 0 87%);
}

.method-badge {
  right: -8px;
  bottom: 78px;
  width: 158px;
  height: 104px;
  border: 7px solid var(--sand-light);
  border-radius: 12px;
  box-shadow: 0 19px 40px rgba(13, 38, 24, 0.18);
}

.method-badge span {
  margin-bottom: 6px;
  box-shadow: 0 0 20px rgba(226, 199, 101, 0.26);
  animation: star-pulse 3.2s ease-in-out infinite;
}

.news-card {
  padding: 14px 0 31px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(28, 58, 34, 0.26);
  border-radius: 0;
}

.news-card:hover {
  box-shadow: none;
  transform: translateY(-6px);
}

.news-image {
  border-radius: 14px;
}

.news-card > a {
  right: 5px;
  bottom: 23px;
}

.visit {
  border-radius: 24px 24px 0 0;
}

.visit-photo {
  height: 565px;
  border-width: 3px;
  border-radius: 14px;
  clip-path: polygon(11% 0, 100% 0, 100% 92%, 91% 100%, 0 100%, 0 9%);
}

.button,
.header-cta {
  position: relative;
  overflow: hidden;
}

.button::before,
.header-cta::before {
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -52%;
  width: 28%;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  transform: skewX(-18deg);
  transition: left 680ms ease, opacity 220ms ease;
}

.button:hover::before,
.header-cta:hover::before {
  left: 118%;
  opacity: 0.72;
}

.arrow-link span,
.text-link span,
.stage-content > a {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.arrow-link:hover span,
.text-link:hover span {
  transform: translate(3px, -3px);
}

.stage-content > a:hover {
  box-shadow: 0 0 26px rgba(226, 199, 101, 0.38);
  transform: translate(2px, -2px);
}

.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 820ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: calc(var(--reveal-order, 0) * 85ms);
}

.motion-ready .motion-reveal.in-view,
.render-static .motion-reveal {
  opacity: 1;
  transform: none;
}

.hero-copy > * {
  opacity: 0;
  animation: hero-copy-in 760ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
}

.hero-copy > :nth-child(1) {
  animation-delay: 120ms;
}

.hero-copy > :nth-child(2) {
  animation-delay: 220ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 340ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 450ms;
}

.hero-copy > :nth-child(5) {
  animation-delay: 560ms;
}

.render-static .hero-copy > * {
  opacity: 1;
  animation: none;
}

.render-static .hero-glow,
.render-static .hero-photo,
.render-static .compass-mark,
.render-static .mountain-route,
.render-static .hero-scroll i::after,
.render-static .hero-note .spark,
.render-static .origin-summit-star,
.render-static .origin-point::before,
.render-static .quote-star,
.render-static .method-badge span {
  animation: none;
}

.render-static .ribbon-track {
  animation: none;
  transform: none;
}

.render-static .origin-route-line {
  animation: none;
  stroke-dashoffset: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes origin-route-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes ribbon-marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes light-breathe {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.09);
  }
}

@keyframes light-drift {
  from {
    transform: translate3d(-16px, 12px, 0) scale(0.94);
  }
  to {
    transform: translate3d(24px, -20px, 0) scale(1.08);
  }
}

@keyframes portal-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes photo-float-one {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(1.5deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(0.4deg);
  }
}

@keyframes photo-float-two {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1.5deg);
  }
  50% {
    transform: translate3d(0, 9px, 0) rotate(-0.3deg);
  }
}

@keyframes compass-turn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes star-pulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.88);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes waypoint-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(226, 199, 101, 0.2), 0 0 14px rgba(226, 199, 101, 0.72);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(226, 199, 101, 0), 0 0 24px rgba(226, 199, 101, 0.92);
  }
}

@keyframes scroll-line {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.safety {
  position: relative;
  padding: 140px 0 132px;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 16% 10%, rgba(46, 86, 54, 0.6), transparent 48%),
    linear-gradient(158deg, #0b2818 0%, #163a22 54%, #102b1b 100%);
}

.safety-glow {
  position: absolute;
  z-index: 1;
  top: -160px;
  right: -120px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(226, 199, 101, 0.17), transparent 66%);
  border-radius: 50%;
  pointer-events: none;
  animation: light-breathe 9.5s ease-in-out infinite;
}

.safety-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 76px;
}

.safety-copy h2 {
  max-width: 560px;
  font-size: clamp(48px, 4.1vw, 62px);
  font-weight: 500;
  line-height: 0.99;
  letter-spacing: -0.052em;
}

.safety-copy h2 em {
  display: block;
  margin-top: 8px;
  color: var(--gold-light);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.042em;
}

.safety-copy > p {
  max-width: 555px;
  margin-top: 26px;
  color: rgba(250, 246, 232, 0.74);
  font-size: 16px;
  line-height: 1.72;
}

.safety-list {
  display: grid;
  gap: 14px;
  max-width: 540px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.safety-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(250, 246, 232, 0.13);
}

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

.safety-list i {
  color: var(--gold-light);
  font-size: 12px;
  font-style: normal;
  line-height: 1.75;
}

.safety-list p {
  margin: 0;
  color: rgba(250, 246, 232, 0.9);
  font-size: 15px;
  line-height: 1.62;
}

.safety-visual {
  position: relative;
  height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 41%, rgba(226, 199, 101, 0.14), transparent 54%),
    linear-gradient(150deg, rgba(250, 246, 232, 0.08), rgba(250, 246, 232, 0.02));
  border: 1px solid rgba(250, 246, 232, 0.16);
  border-radius: 20px;
}

.safety-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(250, 246, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 246, 232, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 45%, #000 22%, transparent 78%);
}

.courtyard {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(400px, 76%);
  transform: translate(-50%, -50%);
}

.courtyard-wall {
  fill: none;
  stroke: rgba(250, 246, 232, 0.42);
  stroke-linecap: round;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.courtyard-arrow {
  fill: var(--gold-light);
}

.courtyard-island {
  fill: rgba(250, 246, 232, 0.09);
  stroke: rgba(250, 246, 232, 0.2);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.courtyard-yard {
  fill: rgba(11, 40, 24, 0.55);
  stroke: rgba(226, 199, 101, 0.5);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.courtyard-sala {
  fill: rgba(250, 246, 232, 0.12);
  stroke: rgba(250, 246, 232, 0.36);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.courtyard-office {
  fill: rgba(250, 246, 232, 0.07);
  stroke: rgba(250, 246, 232, 0.26);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.courtyard-front {
  fill: rgba(226, 199, 101, 0.24);
  stroke: var(--gold-light);
  stroke-width: 1.3;
  vector-effect: non-scaling-stroke;
}

.courtyard-gate {
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-width: 4.5;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 7px rgba(226, 199, 101, 0.7));
}

.courtyard-sight {
  fill: none;
  stroke: rgba(226, 199, 101, 0.58);
  stroke-dasharray: 3 7;
  stroke-linecap: round;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.courtyard-ring {
  fill: none;
  stroke: rgba(226, 199, 101, 0.45);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.courtyard-room-dot {
  fill: rgba(226, 199, 101, 0.75);
}


.courtyard-center,
.courtyard-door {
  fill: var(--gold-light);
  filter: drop-shadow(0 0 8px rgba(226, 199, 101, 0.8));
}

.courtyard-center {
  animation: star-pulse 3.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.courtyard-street {
  fill: none;
  stroke: rgba(250, 246, 232, 0.22);
  stroke-dasharray: 14 12;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.courtyard-route {
  fill: none;
  stroke: var(--gold-light);
  stroke-dasharray: 6 9;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 7px rgba(226, 199, 101, 0.55));
  animation: route-flow 5.5s linear infinite;
}

.courtyard-label {
  fill: rgba(250, 246, 232, 0.6);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-anchor: middle;
}

.courtyard-label-sala {
  fill: rgba(250, 246, 232, 0.78);
  font-size: 12px;
}

.courtyard-label-yard {
  fill: rgba(226, 199, 101, 0.92);
}

.courtyard-label-front {
  fill: rgba(250, 246, 232, 0.94);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.courtyard-label-office {
  fill: rgba(250, 246, 232, 0.62);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.courtyard-label-wall {
  fill: rgba(250, 246, 232, 0.55);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.courtyard-label-street {
  fill: rgba(250, 246, 232, 0.4);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.courtyard-label-end {
  text-anchor: end;
}

.courtyard-label-start {
  text-anchor: start;
}

.safety-stat {
  position: absolute;
  z-index: 3;
  top: 46px;
  right: 30px;
  display: grid;
  padding: 14px 18px;
  color: var(--forest-ink);
  background: rgba(250, 246, 232, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  text-align: right;
}

.safety-stat strong {
  font-family: "Newsreader", Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.safety-stat span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.render-static .safety-glow,
.render-static .courtyard-center,
.render-static .courtyard-route {
  animation: none;
}

@media (max-width: 1180px) {
  .origin-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(510px, 1.18fr);
    gap: 45px;
  }

  .method-image {
    width: min(500px, 100%);
  }

  .safety-layout {
    gap: 48px;
  }

  /* Cinco itens de menu precisam de mais folga entre 980 e 1180. */
  .main-nav {
    gap: 22px;
    padding-inline: 16px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .mobile-menu {
    position: relative;
    z-index: 30;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    cursor: pointer;
    list-style: none;
    color: var(--forest);
    background: rgba(28, 58, 34, 0.06);
    border: 1px solid rgba(28, 58, 34, 0.18);
    border-radius: 50%;
    transition: color 220ms ease, background 220ms ease, transform 220ms ease;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary:hover,
  .mobile-menu[open] summary {
    color: var(--ivory);
    background: var(--forest);
    transform: rotate(5deg);
  }

  .menu-lines {
    display: grid;
    gap: 6px;
  }

  .menu-lines i {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .mobile-menu[open] .menu-lines i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .mobile-menu[open] .menu-lines i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 17px);
    right: -58px;
    display: grid;
    width: min(310px, calc(100vw - 40px));
    padding: 9px 17px;
    color: var(--forest-ink);
    background: rgba(250, 246, 232, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 17px;
    box-shadow: 0 26px 70px rgba(4, 20, 12, 0.32);
    backdrop-filter: blur(20px);
  }

  .mobile-menu nav a {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    min-height: 50px;
    border-bottom: 1px solid rgba(28, 58, 34, 0.12);
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
  }

  .mobile-menu nav span {
    color: var(--gold-deep);
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .origin {
    padding: 112px 0 108px;
  }

  .origin-layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .origin-copy {
    max-width: 680px;
  }

  .origin-visual {
    width: min(680px, 100%);
    margin-inline: auto;
  }

  .origin-pillars {
    gap: 24px;
    margin-top: 74px;
  }

  .manifesto-frame {
    right: 28px;
  }

  .method-image {
    width: 520px;
  }

  .safety {
    padding: 112px 0 108px;
  }

  .safety-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .safety-copy {
    max-width: 680px;
  }

  .safety-visual {
    width: min(680px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .cursor-light {
    display: none;
  }

  .site-header {
    border-radius: 17px;
  }

  .mobile-menu summary {
    width: 46px;
    height: 46px;
  }

  .hero {
    border-radius: 0 0 22px 22px;
  }

  .hero-grid {
    transform: none;
  }

  .mountain-trace {
    right: -105px;
    bottom: 12px;
    width: 540px;
    height: 610px;
  }

  .hero-photo-main {
    border-radius: 140px 140px 19px 19px;
  }

  .hero-photo-class {
    top: 82px;
    right: -5px;
    width: 145px;
    height: 202px;
    border-width: 2px;
    border-radius: 11px;
  }

  .hero-photo-student {
    right: 7px;
    bottom: 76px;
    width: 138px;
    height: 184px;
    border-width: 2px;
    border-radius: 11px;
  }

  .hero-note {
    bottom: 20px;
    left: 2px;
    min-width: 195px;
    padding: 5px 0 5px 13px;
  }

  .ribbon-group {
    gap: 22px;
    padding-right: 22px;
  }

  .origin {
    padding: 92px 0 62px;
  }

  .origin-copy h2 {
    font-size: 47px;
  }

  .origin-copy > p {
    font-size: 15px;
  }

  .origin-layout {
    gap: 52px;
  }

  .origin-visual {
    height: 555px;
    border-radius: 12px;
    clip-path: polygon(0 5%, 94% 0, 100% 94%, 7% 100%, 0 88%);
  }

  .origin-point {
    width: 42%;
    padding-left: 13px;
  }

  .origin-point strong {
    font-size: 19px;
  }

  .origin-point small {
    color: rgba(250, 246, 232, 0.8);
    font-size: 12px;
  }

  .origin-point > span {
    font-size: 10px;
  }

  .point-three {
    width: 35%;
  }

  .origin-pillars {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 62px;
  }

  .origin-pillar,
  .origin-pillar:nth-child(1),
  .origin-pillar:nth-child(2) {
    min-height: 0;
    margin-top: 0;
    padding: 24px 0 34px;
  }

  .origin-pillar h3 {
    margin-top: 18px;
    font-size: 30px;
  }

  .stage-card,
  .stage-secondary {
    border-radius: 16px;
  }

  .stage-quote {
    padding: 27px 4px;
  }

  .manifesto-tags {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    width: 100%;
  }

  .manifesto-tags span,
  .manifesto-tags span:first-child {
    padding: 0;
  }

  .manifesto-tags span + span::before {
    display: none;
  }

  .manifesto-frame {
    right: 5px;
    width: 310px;
    height: 505px;
    border-radius: 12px;
    clip-path: polygon(9% 0, 100% 5%, 100% 92%, 0 100%, 0 9%);
  }

  .manifesto-caption {
    bottom: 15px;
    left: 0;
    min-width: 205px;
    padding: 9px 0 9px 14px;
  }

  .moment-card,
  .moment-wide,
  .moment-tall,
  .moment-small.lower {
    border-radius: 14px;
  }

  .method-image {
    width: 315px;
    height: 470px;
    border-radius: 12px;
  }

  .method-image img {
    object-position: center top;
  }

  .method-visual {
    height: 515px;
  }

  .method-badge {
    right: -2px;
    bottom: 25px;
    width: 132px;
    height: 92px;
    border-width: 6px;
    border-radius: 10px;
    font-size: 16px;
  }

  .news-card {
    padding-top: 10px;
    border-radius: 0;
  }

  .news-image {
    border-radius: 12px;
  }

  .visit {
    border-radius: 18px 18px 0 0;
  }

  .visit-photo {
    height: 505px;
    border-radius: 11px;
  }

  .safety {
    padding: 88px 0 84px;
  }

  .safety-visual {
    height: 520px;
    border-radius: 14px;
  }

  .courtyard {
    width: min(300px, 76%);
  }

  .safety-stat {
    top: 24px;
    right: 18px;
    padding: 11px 15px;
    border-radius: 13px;
  }

  .safety-stat strong {
    font-size: 22px;
  }
}

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

  .cursor-light {
    display: none;
  }

  .hero-grid {
    transform: none !important;
  }

  .motion-ready .motion-reveal {
    opacity: 1;
    transform: none;
  }

  .hero-copy > * {
    opacity: 1;
    animation: none !important;
    transform: none;
  }

  .origin-route-line {
    stroke-dashoffset: 0;
    animation: none !important;
  }

  .ribbon-track {
    animation: none !important;
    transform: none;
  }
}

@media print {
  body {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .page-shell {
    overflow: visible;
  }

  .cursor-light,
  .scroll-progress,
  .mobile-menu {
    display: none !important;
  }

  .hero-copy > *,
  .motion-ready .motion-reveal {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  .origin-route-line {
    stroke-dashoffset: 0;
    animation: none !important;
  }

  .ribbon-track,
  .hero-photo,
  .hero-glow,
  .compass-mark {
    animation: none !important;
  }
}
