:root {
  --ink: #17231d;
  --muted: #667069;
  --deep: #0f2c20;
  --green: #1b4632;
  --green-2: #285d43;
  --sage: #e6eadf;
  --sage-2: #d5ddce;
  --paper: #f6f2e8;
  --paper-2: #eee8da;
  --white: #fffdf7;
  --gold: #c9a266;
  --gold-2: #e1c18c;
  --line: rgba(23, 35, 29, 0.14);
  --line-light: rgba(255, 253, 247, 0.18);
  --shadow: 0 24px 70px rgba(17, 42, 30, 0.16);
  --serif: "Songti SC", "Noto Serif CJK SC", "Source Han Serif SC", "STSong", "Times New Roman", serif;
  --sans: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --container: min(1240px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  max-width: 100%;
}

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

p {
  line-height: 1.85;
}

::selection {
  color: var(--white);
  background: var(--green-2);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep);
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header--scrolled {
  color: var(--ink);
  border-color: var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: 0 10px 40px rgba(13, 38, 27, 0.08);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  width: min(1420px, calc(100vw - 56px));
  min-height: 88px;
  margin: auto;
  grid-template-columns: 275px 1fr 210px;
  align-items: center;
  gap: 24px;
}

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

.brand__mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand__mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.brand__mark-bg {
  fill: currentColor;
  opacity: 0.12;
}

.brand__leaf {
  fill: var(--gold-2);
}

.brand__vein {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.brand__text {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand__text small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.21em;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 34px 0 31px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0.78;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.language-picker {
  position: relative;
}

.language-picker__trigger {
  display: flex;
  min-width: 180px;
  padding: 10px 12px;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-picker__trigger span {
  max-width: 124px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-picker__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 250px;
  padding: 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  animation: menu-in 160ms ease both;
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.language-picker__label {
  display: block;
  padding: 8px 10px 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.language-picker__menu a {
  display: flex;
  padding: 11px 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.language-picker__menu a:hover,
.language-picker__menu a.is-current {
  color: var(--green);
  background: var(--sage);
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: inherit;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.mobile-drawer {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  padding: 120px max(30px, 7vw) 40px;
  color: var(--white);
  background: var(--deep);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-16px);
  transition:
    opacity 200ms ease,
    transform 200ms ease,
    visibility 200ms;
}

.mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-drawer__texture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.14;
  pointer-events: none;
}

.mobile-drawer__texture::before,
.mobile-drawer__texture::after {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.mobile-drawer__texture::before {
  top: 4%;
  right: -20%;
}

.mobile-drawer__texture::after {
  right: -5%;
  bottom: -30%;
}

.mobile-drawer nav {
  position: relative;
  display: grid;
  align-content: center;
}

.mobile-drawer nav a {
  display: grid;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(24px, 6vw, 40px);
}

.mobile-drawer nav a.is-active {
  color: var(--gold-2);
}

.mobile-drawer__index {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.52;
}

.mobile-drawer__languages {
  position: relative;
  display: flex;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
}

.mobile-drawer__languages a {
  font-size: 12px;
  opacity: 0.55;
}

.mobile-drawer__languages a.is-current {
  color: var(--gold-2);
  opacity: 1;
}

.mobile-drawer > p {
  position: relative;
  align-self: end;
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.035em;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.button--dark {
  color: var(--white);
  background: var(--green);
}

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

.button--light {
  color: var(--deep);
  background: var(--white);
}

.button--light:hover {
  background: var(--gold-2);
}

.button--outline {
  color: inherit;
  border-color: currentColor;
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.button--wide {
  width: 100%;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--gold-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--gold-2);
}

.section {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 0;
}

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

.section--sage {
  background: var(--sage);
}

.section--dark {
  color: var(--white);
  background: var(--deep);
}

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

.section--dark .eyebrow {
  color: var(--gold-2);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(46px, 6vw, 76px);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  max-width: 760px;
  margin: 16px 0 20px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.7vw, 68px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.section-heading p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.95;
}

/* Home */

.home-hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.home-hero__image {
  object-fit: cover;
  object-position: 56% 56%;
  transform: scale(1.01);
  animation: hero-breathe 14s ease-out both;
}

@keyframes hero-breathe {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.01);
  }
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 25, 17, 0.84) 0%, rgba(6, 25, 17, 0.48) 43%, rgba(6, 25, 17, 0.04) 76%),
    linear-gradient(0deg, rgba(6, 25, 17, 0.65) 0%, transparent 34%),
    linear-gradient(180deg, rgba(6, 25, 17, 0.25), transparent 25%);
}

.home-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  display: grid;
  min-height: max(780px, 100svh);
  padding-top: 140px;
  padding-bottom: 135px;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: center;
  gap: 80px;
}

.home-hero__copy {
  max-width: 830px;
  animation: hero-copy-in 700ms 100ms ease both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.home-hero h1 {
  margin: 20px 0 28px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.home-hero h1 em {
  display: block;
  color: var(--gold-2);
  font-style: normal;
}

.home-hero__copy > p {
  max-width: 740px;
  margin-bottom: 38px;
  color: rgba(255, 253, 247, 0.82);
  font-size: 16px;
  line-height: 1.95;
}

.home-hero .button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.home-hero__side {
  display: flex;
  justify-content: flex-end;
}

.home-hero__seal {
  display: flex;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  backdrop-filter: blur(5px);
}

.home-hero__seal span {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.16em;
}

.home-hero__seal small {
  font-size: 7px;
  letter-spacing: 0.18em;
  opacity: 0.72;
}

.home-hero__bottom {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
}

.home-hero__bottom .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.concept-label {
  display: inline-flex;
  max-width: min(660px, 80vw);
  padding: 8px 11px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(7, 28, 20, 0.48);
  font-size: 10px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 8px;
  letter-spacing: 0.22em;
}

.scroll-cue i {
  width: 60px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 1.8s infinite ease-in-out;
}

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

.stats-strip {
  color: var(--white);
  background: var(--deep);
}

.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: grid;
  min-height: 154px;
  padding: 28px 36px;
  border-left: 1px solid var(--line-light);
  align-content: center;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
}

.stat:last-child {
  border-right: 1px solid var(--line-light);
}

.stat strong {
  grid-row: span 2;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.stat span {
  align-self: end;
  font-size: 13px;
  font-weight: 650;
}

.stat small {
  align-self: start;
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: 0.08em;
  opacity: 0.48;
}

.intro-layout {
  display: grid;
  margin-bottom: 80px;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr);
  align-items: center;
  gap: 100px;
}

.intro-layout .section-heading {
  margin-bottom: 28px;
}

.intro-layout__mark {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
}

.intro-layout__mark span {
  position: relative;
  z-index: 2;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(100px, 12vw, 190px);
  opacity: 0.12;
}

.intro-layout__mark svg {
  position: absolute;
  width: min(360px, 100%);
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.28;
}

.cards {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.info-card {
  position: relative;
  min-height: 310px;
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.info-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--green);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.info-card:hover p,
.info-card:hover .info-card__meta {
  color: rgba(255, 255, 255, 0.72);
}

.info-card__top {
  display: flex;
  min-height: 34px;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--green-2);
}

.info-card__number {
  font-family: var(--serif);
  font-size: 28px;
}

.info-card__meta {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.info-card h3 {
  margin: 60px 0 16px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.estate-feature {
  display: grid;
  min-height: 760px;
  grid-template-columns: 54% 46%;
  background: var(--deep);
}

.estate-feature__visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.estate-feature__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(15, 44, 32, 0.48));
  content: "";
}

.estate-feature__visual img {
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(0.78) contrast(1.05);
  transition: transform 800ms ease;
}

.estate-feature:hover img {
  transform: scale(1.025);
}

.estate-feature__badge {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: grid;
  width: 190px;
  height: 190px;
  place-content: center;
  color: var(--deep);
  background: var(--gold-2);
  text-align: center;
}

.estate-feature__badge span {
  position: absolute;
  top: 30px;
  left: 34px;
  font-size: 14px;
}

.estate-feature__badge strong {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
}

.estate-feature__badge small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.estate-feature__copy {
  display: flex;
  padding: clamp(72px, 8vw, 120px);
  align-items: flex-start;
  justify-content: center;
  color: var(--white);
  flex-direction: column;
}

.estate-feature__copy .section-heading {
  margin-bottom: 32px;
}

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

.estate-feature__copy .section-heading p {
  opacity: 0.68;
}

.estate-feature__copy .eyebrow {
  color: var(--gold-2);
}

.feature-list {
  display: grid;
  width: 100%;
  margin: 0 0 38px;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.feature-list li {
  display: flex;
  padding: 15px 0;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line-light);
  font-size: 12px;
}

.journey {
  position: relative;
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.journey::before {
  position: absolute;
  top: 77px;
  right: 16.6%;
  left: 16.6%;
  height: 1px;
  background: var(--line);
  content: "";
}

.journey article {
  position: relative;
  padding: 0 clamp(20px, 3vw, 48px);
  text-align: center;
}

.journey__time {
  color: var(--green-2);
  font-family: var(--serif);
  font-size: 48px;
  opacity: 0.25;
}

.journey__dot {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  margin: 14px auto 34px;
  border: 4px solid var(--sage);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.journey__copy span {
  color: var(--green-2);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.journey__copy h3 {
  margin: 12px 0;
  font-family: var(--serif);
  font-size: 25px;
}

.journey__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.center-action {
  margin-top: 54px;
  text-align: center;
}

.journal-preview__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.journal-preview__inner .section-heading {
  position: sticky;
  top: 135px;
  margin-bottom: 30px;
}

.journal-preview__cards {
  border-top: 1px solid var(--line);
}

.journal-preview__cards a {
  position: relative;
  display: grid;
  min-height: 230px;
  padding: 40px 68px 38px 72px;
  border-bottom: 1px solid var(--line);
  transition: background-color 200ms ease;
}

.journal-preview__cards a:hover {
  background: var(--sage);
}

.journal-preview__index {
  position: absolute;
  top: 42px;
  left: 0;
  color: var(--green-2);
  font-family: var(--serif);
  font-size: 21px;
}

.journal-preview__cards small {
  color: var(--green-2);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.journal-preview__cards h3 {
  margin: 18px 0 10px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}

.journal-preview__cards p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.journal-preview__cards svg {
  position: absolute;
  right: 12px;
  bottom: 42px;
  color: var(--green);
  transition: transform 200ms ease;
}

.journal-preview__cards a:hover svg {
  transform: translateX(5px);
}

/* Shared page hero */

.page-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(82, 139, 99, 0.42), transparent 30%),
    linear-gradient(135deg, #0c281c, #173f2d 65%, #244f39);
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.page-hero__orb {
  position: absolute;
  top: 55%;
  right: 9%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(225, 193, 140, 0.34);
  border-radius: 50%;
  transform: translateY(-50%);
}

.page-hero__orb::before,
.page-hero__orb::after {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(225, 193, 140, 0.22);
  border-radius: 50%;
  content: "";
}

.page-hero__orb::after {
  inset: 30%;
}

.page-hero__inner {
  position: relative;
  display: grid;
  min-height: 600px;
  padding-top: 150px;
  padding-bottom: 80px;
  grid-template-columns: minmax(0, 840px) 1fr;
  align-items: center;
  gap: 70px;
}

.page-hero__copy {
  animation: hero-copy-in 600ms ease both;
}

.page-hero h1 {
  max-width: 880px;
  margin: 20px 0 26px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 90px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.07;
}

.page-hero__copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 253, 247, 0.7);
  font-size: 16px;
  line-height: 1.95;
}

.page-hero__index {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.page-hero__index span {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 82px;
}

.page-hero__index i {
  width: 80px;
  height: 1px;
  background: var(--gold);
}

.page-hero__line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.page-hero__line span {
  display: block;
  width: 28%;
  height: 100%;
  background: var(--gold);
}

/* About */

.story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.15fr);
  gap: 80px;
}

.story-grid__title {
  position: relative;
}

.story-grid__title h2 {
  margin: 20px 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
}

.vertical-word {
  position: absolute;
  top: 170px;
  left: 2px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.32em;
  opacity: 0.35;
  transform: rotate(90deg) translateX(100%);
  transform-origin: left top;
}

.story-grid__body p {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
}

.story-grid__body .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.65;
}

.story-grid__photo {
  position: relative;
  min-height: 520px;
  margin: 60px 0 0;
  grid-column: 1 / -1;
  overflow: hidden;
}

.story-grid__photo img {
  object-fit: cover;
  object-position: center 71%;
}

.story-grid__photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, rgba(7, 25, 18, 0.68));
  content: "";
}

.story-grid__photo figcaption,
.visit-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  display: flex;
  max-width: calc(100% - 44px);
  padding: 8px 10px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(7, 25, 18, 0.5);
  font-size: 10px;
  backdrop-filter: blur(8px);
}

.facts-table {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.facts-table > div {
  display: grid;
  min-height: 150px;
  padding: 34px 28px 32px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(100px, 0.35fr) 1fr;
  gap: 25px;
}

.facts-table > div:nth-child(odd) {
  padding-right: 50px;
  border-right: 1px solid var(--line);
}

.facts-table > div:nth-child(even) {
  padding-left: 50px;
}

.facts-table dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.facts-table dd {
  margin: 0;
}

.facts-table dd strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
}

.facts-table dd small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.6;
}

.timeline-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

.timeline-cards {
  border-top: 1px solid var(--line-light);
}

.timeline-cards article {
  display: grid;
  min-height: 180px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 72px 180px 1fr;
  align-items: center;
  gap: 22px;
}

.timeline-cards article > span {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 29px;
}

.timeline-cards h3 {
  margin: 0;
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.timeline-cards p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.scope-band {
  background: var(--gold-2);
}

.scope-band__inner {
  display: grid;
  min-height: 270px;
  padding-block: 50px;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 36px;
}

.scope-band h2,
.scope-band p {
  margin: 0;
}

.scope-band h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 28px;
}

.scope-band p {
  max-width: 980px;
  font-size: 14px;
}

/* Business */

.process-section {
  overflow: hidden;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-line::before {
  position: absolute;
  top: 38px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--line-light);
  content: "";
}

.process-line article {
  position: relative;
  padding: 0 34px;
  text-align: center;
}

.process-line article > span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 34px;
  place-items: center;
  color: var(--deep);
  border-radius: 50%;
  background: var(--gold-2);
  font-family: var(--serif);
  font-size: 18px;
}

.process-line h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 23px;
}

.process-line p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.partner-band {
  background: var(--sage);
}

.partner-band__inner {
  display: grid;
  min-height: 330px;
  padding-block: 60px;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 40px;
}

.partner-band__icon {
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 50%;
}

.partner-band h2 {
  margin: 12px 0 12px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
}

.partner-band p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Estate */

.estate-editorial {
  display: grid;
  min-height: 800px;
  grid-template-columns: 50% 50%;
  background: var(--paper);
}

.estate-editorial__image {
  position: relative;
  min-height: 680px;
}

.estate-editorial__image img {
  object-fit: cover;
  object-position: 53% center;
}

.estate-editorial__image .concept-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.estate-editorial__content {
  display: flex;
  padding: clamp(70px, 8vw, 120px);
  justify-content: center;
  flex-direction: column;
}

.estate-editorial__content .section-heading {
  margin-bottom: 28px;
}

.mini-highlights {
  border-top: 1px solid var(--line);
}

.mini-highlights article {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.mini-highlights article > span {
  color: var(--green-2);
  font-family: var(--serif);
  font-size: 17px;
}

.mini-highlights h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 20px;
}

.mini-highlights p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  overflow: hidden;
  color: var(--white);
  border: 0;
  background: var(--green);
  text-align: left;
  cursor: pointer;
  transition: transform 220ms ease;
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(5) {
  color: var(--ink);
  background: var(--sage-2);
}

.gallery-card:nth-child(3),
.gallery-card:nth-child(6) {
  background: #53664e;
}

.gallery-card:hover {
  transform: translateY(-7px);
}

.gallery-card__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
}

.gallery-card__pattern i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 65%;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.gallery-card__pattern i:nth-child(2) {
  width: 42%;
  height: 42%;
}

.gallery-card__pattern i:nth-child(3) {
  width: 20%;
  height: 20%;
}

.gallery-card__index,
.gallery-card small,
.gallery-card strong,
.gallery-card__plus {
  position: relative;
  z-index: 2;
}

.gallery-card__index {
  font-family: var(--serif);
  font-size: 22px;
  opacity: 0.56;
}

.gallery-card strong {
  position: absolute;
  right: 30px;
  bottom: 54px;
  left: 30px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
}

.gallery-card small {
  position: absolute;
  bottom: 28px;
  left: 30px;
  font-size: 7px;
  letter-spacing: 0.18em;
  opacity: 0.56;
}

.gallery-card__plus {
  position: absolute;
  top: 26px;
  right: 28px;
  font-size: 25px;
  font-weight: 200;
}

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

.modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 21, 14, 0.76);
  backdrop-filter: blur(9px);
}

.modal__panel {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  padding: 34px;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
  animation: modal-in 220ms ease both;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
}

.modal__close {
  position: absolute;
  z-index: 3;
  top: 20px;
  right: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.modal__slot {
  display: grid;
  min-height: 290px;
  margin: 26px 0 30px;
  place-content: center;
  gap: 12px;
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(27, 70, 50, 0.09), transparent),
    var(--sage);
  text-align: center;
}

.modal__slot span {
  font-size: 8px;
  letter-spacing: 0.2em;
}

.modal__panel h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 31px;
}

.modal__panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.responsibility-note {
  display: flex;
  margin-top: 28px;
  padding: 24px 28px;
  align-items: flex-start;
  gap: 16px;
  color: var(--green);
  border: 1px solid var(--line);
}

.responsibility-note p {
  margin: 0;
  font-size: 12px;
}

/* Science learning lab */

.science-guide {
  overflow: hidden;
}

.science-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  gap: 0 58px;
  align-items: stretch;
}

.science-stage {
  position: relative;
  min-width: 0;
}

.science-stage__controls {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 8px;
}

.science-stage__controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--deep);
  border: 1px solid rgba(15, 44, 32, 0.18);
  background: rgba(255, 253, 247, 0.74);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.science-scene {
  --trunk-height: 30px;
  --plant-scale: 0.5;
  --leaf-opacity: 0.2;
  --fruit-opacity: 0;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #bdd3c1 0%, #e3e4cb 58%, #ac8c5f 58%, #6c5336 100%);
}

.science-scene[data-stage="land"] {
  --trunk-height: 4px;
  --plant-scale: 0.4;
  --leaf-opacity: 0;
}

.science-scene[data-stage="planting"] {
  --trunk-height: 82px;
  --plant-scale: 0.72;
  --leaf-opacity: 0.78;
}

.science-scene[data-stage="care"] {
  --trunk-height: 200px;
  --plant-scale: 0.92;
  --leaf-opacity: 1;
}

.science-scene[data-stage="flower"],
.science-scene[data-stage="harvest"],
.science-scene[data-stage="sorting"],
.science-scene[data-stage="processing"] {
  --trunk-height: 300px;
  --plant-scale: 1;
  --leaf-opacity: 1;
  --fruit-opacity: 1;
}

.science-scene__sun {
  position: absolute;
  top: 62px;
  left: 72px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #e7c783;
  box-shadow: 0 0 90px rgba(231, 199, 131, 0.7);
  animation: science-sun 8s ease-in-out infinite alternate;
}

@keyframes science-sun {
  to {
    transform: translateY(8px);
  }
}

.science-scene__cloud {
  position: absolute;
  width: 130px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  filter: blur(1px);
}

.science-scene__cloud::before,
.science-scene__cloud::after {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.science-scene__cloud::before {
  left: 24px;
  width: 58px;
  height: 58px;
}

.science-scene__cloud::after {
  right: 22px;
  width: 44px;
  height: 44px;
}

.science-scene__cloud--one {
  top: 100px;
  right: 17%;
  animation: cloud-drift 14s ease-in-out infinite alternate;
}

.science-scene__cloud--two {
  top: 190px;
  left: 22%;
  opacity: 0.44;
  transform: scale(0.7);
  animation: cloud-drift 18s -4s ease-in-out infinite alternate-reverse;
}

@keyframes cloud-drift {
  to {
    transform: translateX(46px);
  }
}

.science-scene__hills {
  position: absolute;
  right: -10%;
  bottom: 42%;
  left: -10%;
  height: 210px;
  background: #79936f;
  clip-path: polygon(0 84%, 10% 50%, 22% 70%, 38% 26%, 52% 64%, 69% 18%, 82% 57%, 100% 36%, 100% 100%, 0 100%);
}

.science-scene__hills--back {
  bottom: 40%;
  background: #8fa78a;
  opacity: 0.75;
  transform: translateY(-38px) scale(1.05);
}

.science-scene__hills--front {
  background: #547453;
}

.science-scene__ground {
  position: absolute;
  right: -10%;
  bottom: -90px;
  left: -10%;
  height: 290px;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px),
    #73593a;
  background-size: 28px 28px;
}

.science-scene__plant {
  position: absolute;
  z-index: 3;
  bottom: 78px;
  left: 52%;
  width: 250px;
  height: 400px;
  transform: translateX(-50%) scale(var(--plant-scale));
  transform-origin: center bottom;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.science-scene__seed {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 34px;
  height: 24px;
  border-radius: 54% 46% 58% 42%;
  background: #6a4326;
  transform: translateX(-50%) rotate(-15deg);
  transition: opacity 300ms ease;
}

.science-scene:not([data-stage="nursery"]):not([data-stage="land"]) .science-scene__seed {
  opacity: 0;
}

.science-scene__trunk {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 30px;
  height: var(--trunk-height);
  border-radius: 45% 45% 8px 8px;
  background:
    repeating-linear-gradient(0deg, rgba(42, 74, 48, 0.25) 0 5px, transparent 5px 18px),
    linear-gradient(90deg, #6f7d4b, #b0a46a 50%, #697647);
  transform: translateX(-50%);
  transform-origin: bottom;
  transition: height 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.science-scene__leaf {
  position: absolute;
  z-index: 2;
  bottom: calc(var(--trunk-height) - 8px);
  left: 50%;
  width: 128px;
  height: 25px;
  border-radius: 100% 0 100% 0;
  opacity: var(--leaf-opacity);
  background: linear-gradient(90deg, #284f32, #4d7845);
  transform-origin: 0 50%;
  transition:
    bottom 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 500ms ease;
}

.science-scene__leaf--1 {
  transform: rotate(-8deg);
}

.science-scene__leaf--2 {
  transform: rotate(32deg);
}

.science-scene__leaf--3 {
  transform: rotate(72deg) scaleX(0.9);
}

.science-scene__leaf--4 {
  transform: rotate(118deg) scaleX(0.88);
}

.science-scene__leaf--5 {
  transform: rotate(162deg);
}

.science-scene__leaf--6 {
  transform: rotate(204deg) scaleX(0.88);
}

.science-scene__leaf--7 {
  transform: rotate(250deg) scaleX(0.85);
}

.science-scene__leaf--8 {
  transform: rotate(304deg) scaleX(0.92);
}

.science-scene__fruit {
  position: absolute;
  z-index: 4;
  bottom: calc(var(--trunk-height) - 54px);
  left: calc(50% - 8px);
  width: 16px;
  height: 23px;
  border-radius: 50%;
  opacity: var(--fruit-opacity);
  background: #c59643;
  transition:
    bottom 900ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 500ms 300ms ease;
}

.science-scene__fruit--2 {
  margin: 15px 0 0 18px;
}

.science-scene__fruit--3 {
  margin: 22px 0 0 -18px;
}

.science-scene__fruit--4 {
  margin: 37px 0 0 8px;
}

.science-scene__fruit--5 {
  margin: 43px 0 0 -8px;
}

.science-scene__drone {
  position: absolute;
  z-index: 6;
  top: 105px;
  left: 12%;
  width: 110px;
  height: 50px;
  opacity: 0;
  transition: opacity 300ms ease;
}

.science-scene[data-stage="care"] .science-scene__drone {
  opacity: 1;
  animation: drone-flight 4s ease-in-out infinite;
}

@keyframes drone-flight {
  50% {
    transform: translate(210px, 26px);
  }
}

.science-scene__drone span {
  position: absolute;
  top: 18px;
  left: 42px;
  width: 28px;
  height: 16px;
  border-radius: 5px;
  background: var(--deep);
}

.science-scene__drone i {
  position: absolute;
  top: 9px;
  left: 5px;
  width: 100px;
  height: 2px;
  background: var(--deep);
  transform: rotate(10deg);
}

.science-scene__drone i:nth-child(2) {
  transform: rotate(-10deg);
}

.science-scene__drone i::before,
.science-scene__drone i::after {
  position: absolute;
  top: -4px;
  width: 20px;
  height: 8px;
  border: 2px solid var(--deep);
  border-radius: 50%;
  content: "";
}

.science-scene__drone i::before {
  left: 0;
}

.science-scene__drone i::after {
  right: 0;
}

.science-scene__crate {
  position: absolute;
  z-index: 7;
  right: 10%;
  bottom: 65px;
  width: 112px;
  height: 74px;
  border: 8px solid #8b5e35;
  opacity: 0;
  background: #c08a51;
  transform: translateY(30px);
  transition:
    opacity 400ms ease,
    transform 400ms ease;
}

.science-scene[data-stage="sorting"] .science-scene__crate,
.science-scene[data-stage="processing"] .science-scene__crate {
  opacity: 1;
  transform: translateY(0);
}

.science-scene__crate i {
  position: absolute;
  top: -18px;
  width: 22px;
  height: 29px;
  border-radius: 50%;
  background: #c59643;
}

.science-scene__crate i:nth-child(1) {
  left: 8px;
}

.science-scene__crate i:nth-child(2) {
  left: 38px;
}

.science-scene__crate i:nth-child(3) {
  left: 68px;
}

.science-scene__stage-number {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--serif);
  font-size: 72px;
}

.science-progress {
  height: 5px;
  background: var(--sage-2);
}

.science-progress span {
  display: block;
  height: 100%;
  background: var(--gold);
  transition: width 650ms ease;
}

.science-copy {
  display: flex;
  padding: 32px 0;
  justify-content: center;
  flex-direction: column;
}

.science-copy h2 {
  margin: 22px 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.16;
}

.science-copy > p {
  color: var(--muted);
  font-size: 14px;
}

.science-copy ul {
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.science-copy li {
  display: flex;
  padding: 14px 0;
  align-items: center;
  gap: 10px;
  color: var(--green);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}

.science-stage-nav {
  display: grid;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-column: 1 / -1;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
}

.science-stage-nav button {
  display: flex;
  min-height: 138px;
  padding: 18px 14px;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--ink);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
}

.science-stage-nav button:hover,
.science-stage-nav button.is-active {
  color: var(--white);
  background: var(--green);
}

.science-stage-nav span {
  color: var(--green-2);
  font-family: var(--serif);
  font-size: 18px;
}

.science-stage-nav button.is-active span,
.science-stage-nav button:hover span {
  color: var(--gold-2);
}

.science-stage-nav strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
}

.science-tech {
  overflow: hidden;
}

.science-tech__orbit {
  position: absolute;
  top: 50%;
  right: -180px;
  width: 600px;
  height: 600px;
  transform: translateY(-50%);
}

.science-tech__orbit i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(225, 193, 140, 0.13);
  border-radius: 50%;
  animation: orbit-turn 24s linear infinite;
}

.science-tech__orbit i::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-2);
  content: "";
}

.science-tech__orbit i:nth-child(2) {
  inset: 15%;
  animation-direction: reverse;
  animation-duration: 18s;
}

.science-tech__orbit i:nth-child(3) {
  inset: 32%;
  animation-duration: 12s;
}

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

.science-tech .cards {
  position: relative;
  border-color: var(--line-light);
}

.science-tech .info-card {
  border-color: var(--line-light);
}

.science-tech .info-card__top {
  color: var(--gold-2);
}

.science-tech .info-card p {
  color: rgba(255, 255, 255, 0.62);
}

.science-quiz {
  display: grid;
  gap: 20px;
}

.science-quiz article {
  padding: clamp(26px, 4vw, 48px);
  background: var(--paper);
}

.science-quiz__question {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
}

.science-quiz__question > span {
  color: var(--green-2);
  font-family: var(--serif);
  font-size: 24px;
}

.science-quiz h3 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(21px, 2.5vw, 30px);
  font-weight: 600;
}

.science-quiz__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.science-quiz__options button {
  display: flex;
  min-height: 82px;
  padding: 16px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.science-quiz__options button:hover:not(:disabled) {
  border-color: var(--green);
  background: var(--sage);
}

.science-quiz__options button:disabled {
  cursor: default;
}

.science-quiz__options button.is-correct {
  color: var(--white);
  border-color: var(--green);
  background: var(--green);
}

.science-quiz__options button.is-wrong {
  border-color: #a96148;
  background: #f0ddd5;
}

.science-quiz__options button > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
}

.science-quiz__answer {
  margin-top: 18px;
  padding: 18px 20px;
  color: var(--green);
  border-left: 3px solid currentColor;
  background: var(--sage);
}

.science-quiz__answer.is-wrong {
  color: #8c4e39;
  background: #f0ddd5;
}

.science-quiz__answer strong {
  display: block;
  margin-bottom: 5px;
  font-size: 11px;
}

.science-quiz__answer p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

/* Visit */

.availability-band {
  background: var(--gold-2);
}

.availability-band__inner {
  display: grid;
  min-height: 180px;
  padding-block: 42px;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 24px;
}

.availability-band__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.availability-band__pulse::after {
  position: absolute;
  inset: -6px;
  border: 1px solid var(--green);
  border-radius: 50%;
  content: "";
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  70%,
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

.availability-band p {
  max-width: 980px;
  margin: 10px 0 0;
  font-size: 13px;
}

.visit-photo {
  position: relative;
  min-height: min(68vw, 720px);
  margin: 0;
  overflow: hidden;
  background: var(--deep);
}

.visit-photo img {
  object-fit: cover;
  object-position: center 66%;
}

.visit-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(5, 22, 15, 0.68));
  content: "";
}

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

.facility-grid article {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

.facility-grid article:hover {
  background: var(--sage);
  transform: translateY(-7px);
}

.facility-grid__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 54px;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 50%;
}

.facility-grid small {
  color: var(--green-2);
  font-size: 9px;
  letter-spacing: 0.07em;
}

.facility-grid h3 {
  margin: 12px 0 14px;
  font-family: var(--serif);
  font-size: 24px;
}

.facility-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.planner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 70px;
}

.planner__options {
  border-top: 1px solid var(--line-light);
}

.planner-option {
  display: grid;
  width: 100%;
  min-height: 135px;
  padding: 26px 0;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: transparent;
  grid-template-columns: 62px 1fr 42px;
  align-items: center;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  transition: padding 180ms ease;
}

.planner-option:hover,
.planner-option.is-selected {
  padding-left: 18px;
}

.planner-option__number {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 25px;
}

.planner-option__copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
}

.planner-option__copy strong {
  font-family: var(--serif);
  font-size: 22px;
}

.planner-option__copy small {
  align-self: center;
  color: var(--gold-2);
  font-size: 9px;
}

.planner-option__copy > span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.57);
  font-size: 11px;
}

.planner-option__check {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.planner-option.is-selected .planner-option__check {
  color: var(--deep);
  border-color: var(--gold-2);
  background: var(--gold-2);
}

.planner__summary {
  position: sticky;
  top: 130px;
  height: max-content;
  min-height: 380px;
  padding: 38px;
  color: var(--deep);
  background: var(--gold-2);
}

.planner__summary .eyebrow {
  color: var(--deep);
}

.planner__summary ol {
  margin: 34px 0 30px;
  padding: 0;
  list-style: none;
}

.planner__summary li {
  display: flex;
  padding: 17px 0;
  border-bottom: 1px solid rgba(15, 44, 32, 0.2);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.planner__summary li span {
  font-family: var(--serif);
  font-size: 18px;
}

.planner__summary li small {
  font-size: 9px;
}

.planner__summary p {
  margin: 24px 0 0;
  font-size: 11px;
}

.visit-notices {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.visit-notices h2 {
  margin: 18px 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 500;
}

.visit-notices ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.visit-notices li {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 50px 1fr;
  gap: 20px;
}

.visit-notices li > span {
  color: var(--green-2);
  font-family: var(--serif);
  font-size: 19px;
}

.visit-notices p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Culture */

.culture-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: center;
  gap: 100px;
}

.culture-intro .section-heading {
  margin-bottom: 0;
}

.culture-intro__mark {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.culture-intro__mark::before,
.culture-intro__mark::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.culture-intro__mark::before {
  inset: 15%;
}

.culture-intro__mark::after {
  inset: 31%;
}

.culture-intro__mark span {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 92px;
  opacity: 0.28;
}

.culture-intro__mark svg {
  position: absolute;
  z-index: 3;
  margin: 70px 0 0 92px;
  color: var(--gold);
}

.culture-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.culture-process article {
  min-height: 310px;
  padding: 38px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.culture-process article > span {
  color: var(--gold-2);
  font-family: var(--serif);
  font-size: 24px;
}

.culture-process h3 {
  margin: 72px 0 18px;
  font-family: var(--serif);
  font-size: 24px;
}

.culture-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.boundary-band {
  color: var(--deep);
  background: var(--gold-2);
}

.boundary-band__inner {
  display: grid;
  min-height: 280px;
  padding-block: 50px;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 40px;
}

.boundary-band h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 30px;
}

.boundary-band p {
  max-width: 920px;
  margin: 0;
  font-size: 13px;
}

/* Journal */

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px 24px;
}

.journal-grid article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.journal-grid__visual {
  display: flex;
  min-height: 250px;
  margin-bottom: 28px;
  padding: 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--green);
}

.journal-grid article:nth-child(3n + 2) .journal-grid__visual {
  color: var(--ink);
  background: var(--sage-2);
}

.journal-grid article:nth-child(3n) .journal-grid__visual {
  background: #53664e;
}

.journal-grid__visual span {
  align-self: flex-start;
  font-family: var(--serif);
  font-size: 24px;
  opacity: 0.5;
}

.journal-grid small {
  color: var(--green-2);
  font-size: 9px;
  letter-spacing: 0.05em;
}

.journal-grid h2 {
  margin: 14px 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
}

.journal-grid p {
  color: var(--muted);
  font-size: 12px;
}

.journal-grid .text-link {
  margin-top: 10px;
}

.editorial-note {
  display: flex;
  margin-top: 70px;
  padding: 24px 28px;
  align-items: center;
  gap: 16px;
  color: var(--green);
  background: var(--sage);
}

.editorial-note p {
  margin: 0;
  font-size: 12px;
}

/* Responsibility */

.checklist-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.checklist-layout h2 {
  margin: 18px 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
}

.checklist-layout ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.checklist-layout li {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 28px 1fr;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.checklist-layout li svg {
  color: var(--green);
}

.legal-disclaimer {
  margin: 70px 0 0;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 100px;
}

.contact-details {
  align-self: start;
  border-top: 1px solid var(--line);
}

.contact-detail {
  display: grid;
  min-height: 150px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 40px 1fr;
  align-content: center;
  gap: 8px 16px;
}

.contact-detail > svg {
  grid-row: span 2;
  color: var(--green);
}

.contact-detail > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
}

.contact-detail strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.contact-detail--address {
  min-height: 250px;
}

.contact-detail--address .text-link {
  grid-column: 2;
  margin-top: 12px;
}

.contact-directions {
  margin-top: 26px;
  padding: 20px;
  color: var(--muted);
  background: var(--sage);
  font-size: 11px;
}

.contact-form-column .section-heading {
  margin-bottom: 34px;
}

.notice-card {
  display: flex;
  margin-bottom: 26px;
  padding: 20px;
  align-items: flex-start;
  gap: 14px;
  color: var(--green);
  background: var(--sage);
}

.notice-card p {
  margin: 0;
  font-size: 11px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  transition: border-color 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--green);
}

.contact-summary {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-summary > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--green);
}

.contact-summary > div strong {
  font-size: 12px;
  line-height: 1.7;
}

.contact-summary pre {
  margin: 24px 0;
  padding: 20px;
  overflow: auto;
  color: var(--muted);
  background: var(--sage);
  font-family: var(--sans);
  font-size: 11px;
  white-space: pre-wrap;
}

/* Legal */

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 100px;
}

.legal-layout aside {
  display: flex;
  align-self: start;
  padding-top: 10px;
  color: var(--muted);
  flex-direction: column;
  gap: 10px;
  font-size: 10px;
}

.legal-layout aside strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
}

.legal-sections {
  border-top: 1px solid var(--line);
}

.legal-sections article {
  display: grid;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 64px 1fr;
  gap: 25px;
}

.legal-sections article > span {
  color: var(--green-2);
  font-family: var(--serif);
  font-size: 20px;
}

.legal-sections h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 25px;
}

.legal-sections p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* CTA & footer */

.site-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.site-cta__rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-cta__rings i {
  position: absolute;
  top: 50%;
  right: -70px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(225, 193, 140, 0.24);
  border-radius: 50%;
  transform: translateY(-50%);
}

.site-cta__rings i:nth-child(2) {
  right: 30px;
  width: 280px;
  height: 280px;
}

.site-cta__rings i:nth-child(3) {
  right: 110px;
  width: 120px;
  height: 120px;
}

.site-cta__inner {
  position: relative;
  display: grid;
  min-height: 500px;
  padding-block: 80px;
  align-content: center;
  justify-items: start;
}

.site-cta h2 {
  max-width: 800px;
  margin: 20px 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
}

.site-cta p {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #0a2118;
}

.site-footer__glow {
  position: absolute;
  top: -250px;
  left: 9%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(51, 109, 76, 0.16);
  filter: blur(20px);
}

.site-footer__top {
  position: relative;
  display: grid;
  min-height: 520px;
  padding-block: 90px 70px;
  grid-template-columns: 1.5fr 0.55fr 0.55fr 1fr;
  gap: 60px;
}

.site-footer__brand p {
  max-width: 380px;
  margin: 32px 0 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.site-footer__descriptor {
  color: var(--gold-2);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.site-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
}

.site-footer__column h2 {
  margin-bottom: 16px;
  color: var(--gold-2);
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-footer__column > a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.site-footer__column > a:hover {
  color: var(--white);
}

.site-footer__contact p {
  display: grid;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.58);
  grid-template-columns: 24px 1fr;
  gap: 10px;
  font-size: 11px;
}

.site-footer__contact .text-link {
  margin-top: 10px;
}

.site-footer__legal {
  position: relative;
  display: grid;
  min-height: 100px;
  padding-block: 25px;
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 40px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  line-height: 1.7;
}

.not-found {
  display: grid;
  min-height: 100svh;
  padding: 40px;
  place-content: center;
  justify-items: center;
  background: var(--sage);
  text-align: center;
}

.not-found__mark {
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(90px, 18vw, 220px);
  opacity: 0.22;
}

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --container: min(100% - 56px, 1120px);
  }

  .site-header__inner {
    width: calc(100vw - 36px);
    grid-template-columns: 230px 1fr 150px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .language-picker__trigger {
    min-width: 135px;
  }

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

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

  .site-footer__top {
    grid-template-columns: 1.2fr 0.6fr 0.6fr;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  :root {
    --container: min(100% - 44px, 880px);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .language-picker {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .home-hero__inner {
    grid-template-columns: 1fr;
  }

  .home-hero__side {
    display: none;
  }

  .stats-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 1px solid var(--line-light);
  }

  .intro-layout,
  .journal-preview__inner,
  .story-grid,
  .timeline-layout,
  .planner,
  .visit-notices,
  .checklist-layout,
  .contact-layout,
  .legal-layout,
  .culture-intro {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .intro-layout__mark {
    display: none;
  }

  .estate-feature,
  .estate-editorial {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .estate-feature__visual,
  .estate-feature__copy,
  .estate-editorial__image,
  .estate-editorial__content {
    min-width: 0;
  }

  .science-experience {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .science-stage-nav {
    display: flex;
    overflow-x: auto;
    grid-column: 1;
    scroll-snap-type: x mandatory;
  }

  .science-stage-nav button {
    min-width: 150px;
    scroll-snap-align: start;
  }

  .science-quiz__options {
    grid-template-columns: 1fr;
  }

  .estate-feature__copy,
  .estate-editorial__content {
    padding: 78px max(22px, calc((100vw - var(--container)) / 2));
  }

  .estate-feature__visual,
  .estate-editorial__image {
    min-height: 620px;
  }

  .journal-preview__inner .section-heading,
  .planner__summary {
    position: static;
  }

  .page-hero__inner {
    grid-template-columns: 1fr;
  }

  .page-hero__index {
    display: none;
  }

  .story-grid__photo {
    grid-column: 1;
  }

  .process-line,
  .culture-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-line::before {
    display: none;
  }

  .partner-band__inner {
    grid-template-columns: 90px 1fr;
  }

  .partner-band__inner .button {
    grid-column: 2;
    justify-self: start;
  }

  .gallery-grid,
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-layout aside {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 32px);
  }

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

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__text strong {
    font-size: 16px;
  }

  .brand__text small {
    font-size: 6px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 800px;
  }

  .home-hero__inner {
    padding-top: 116px;
    padding-bottom: 140px;
  }

  .home-hero__image {
    object-position: 52% 61%;
  }

  .home-hero h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .home-hero__copy > p {
    font-size: 13px;
  }

  .button {
    min-height: 49px;
    padding-inline: 18px;
    gap: 22px;
  }

  .scroll-cue {
    display: none;
  }

  .stats-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat {
    min-height: 128px;
    padding: 22px 16px;
    grid-template-columns: 1fr;
  }

  .stat strong {
    grid-row: auto;
    font-size: 36px;
  }

  .stat span {
    margin-top: 8px;
    font-size: 11px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .section-heading p {
    font-size: 13px;
  }

  .cards,
  .gallery-grid,
  .journal-grid,
  .facility-grid,
  .process-line,
  .culture-process {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 280px;
  }

  .estate-feature__visual,
  .estate-editorial__image {
    min-height: 500px;
  }

  .estate-feature__copy,
  .estate-editorial__content {
    padding: 70px 16px;
  }

  .estate-feature__badge {
    width: 145px;
    height: 145px;
  }

  .estate-feature__badge strong {
    font-size: 48px;
  }

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

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

  .journey::before {
    display: none;
  }

  .journey article {
    padding-block: 20px;
  }

  .journal-preview__cards a {
    padding: 32px 40px 32px 54px;
  }

  .journal-preview__index {
    top: 34px;
  }

  .page-hero,
  .page-hero__inner {
    min-height: 560px;
  }

  .page-hero__inner {
    padding-top: 126px;
  }

  .page-hero h1 {
    font-size: clamp(43px, 12vw, 62px);
  }

  .page-hero__copy p {
    font-size: 13px;
  }

  .page-hero__orb {
    right: -180px;
    width: 330px;
    height: 330px;
  }

  .story-grid__photo {
    min-height: 420px;
  }

  .story-grid__photo img {
    object-position: 48% 70%;
  }

  .facts-table {
    grid-template-columns: 1fr;
  }

  .facts-table > div:nth-child(odd),
  .facts-table > div:nth-child(even) {
    padding: 26px 0;
    border-right: 0;
  }

  .facts-table > div {
    grid-template-columns: 100px 1fr;
  }

  .timeline-cards article {
    grid-template-columns: 44px 1fr;
  }

  .timeline-cards p {
    grid-column: 2;
  }

  .scope-band__inner,
  .boundary-band__inner {
    grid-template-columns: 44px 1fr;
  }

  .partner-band__inner {
    grid-template-columns: 1fr;
  }

  .partner-band__inner .button {
    grid-column: 1;
  }

  .partner-band__icon {
    width: 70px;
    height: 70px;
  }

  .gallery-card {
    min-height: 260px;
  }

  .science-scene {
    min-height: 480px;
  }

  .science-scene__plant {
    left: 50%;
  }

  .science-scene__drone {
    left: 5%;
    transform: scale(0.84);
  }

  @keyframes drone-flight {
    50% {
      transform: translate(120px, 22px) scale(0.84);
    }
  }

  .science-copy {
    padding-bottom: 0;
  }

  .science-stage-nav {
    margin-top: 34px;
  }

  .science-quiz__question {
    grid-template-columns: 36px 1fr;
  }

  .visit-photo {
    min-height: 520px;
  }

  .visit-photo img {
    object-position: 39% 65%;
  }

  .planner-option {
    grid-template-columns: 40px 1fr 36px;
    gap: 12px;
  }

  .planner-option__copy {
    grid-template-columns: 1fr;
  }

  .planner-option__copy > span {
    grid-column: auto;
  }

  .planner-option__copy small {
    grid-row: 2;
  }

  .culture-intro__mark {
    min-height: 290px;
  }

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

  .legal-sections article {
    grid-template-columns: 38px 1fr;
  }

  .site-cta__inner {
    min-height: 430px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 50px 24px;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }

  .site-footer__legal {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

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

/* Native file-based application */

[hidden] {
  display: none !important;
}

.cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.native-loader,
.fatal-message,
.noscript-message {
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-content: center;
  color: var(--white);
  background: var(--deep);
  text-align: center;
}

.native-loader__mark {
  margin: 0 auto 18px;
  color: var(--gold-2);
  font-size: 42px;
}

.native-loader strong {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: 0.08em;
}

.native-loader small {
  margin-top: 8px;
  color: var(--gold-2);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.fatal-message,
.noscript-message {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.gallery-card--photo {
  color: var(--white) !important;
  background: var(--deep) !important;
}

.gallery-card__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 25, 17, 0.1), rgba(6, 25, 17, 0.82));
}

.gallery-card--photo img {
  transition: transform 600ms ease;
}

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

.modal__image {
  position: relative;
  height: min(48vh, 390px);
  margin: 26px 0 30px;
  overflow: hidden;
  background: var(--sage);
}

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

.science-quiz__feedback:empty {
  display: none;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Accessibility browsing tools */

.site-header__actions {
  gap: 6px;
}

.language-picker__trigger {
  min-width: 154px;
}

.a11y-trigger {
  display: inline-flex;
  min-height: 42px;
  padding: 8px 10px;
  align-items: center;
  gap: 7px;
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.a11y-trigger span {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.a11y-trigger:hover,
.a11y-trigger:focus-visible {
  color: var(--gold-2);
}

.a11y-panel {
  position: fixed;
  z-index: 500;
  top: 98px;
  right: 24px;
  width: min(390px, calc(100vw - 32px));
  max-height: calc(100vh - 118px);
  padding: 22px;
  overflow-y: auto;
  color: #10261c;
  border: 2px solid #173f2e;
  background: #fffdf7;
  box-shadow: 0 28px 90px rgba(4, 24, 15, 0.34);
}

.a11y-panel__header {
  display: flex;
  padding-bottom: 17px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(16, 38, 28, 0.2);
}

.a11y-panel__header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.a11y-panel__header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
}

.a11y-panel__header button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  color: inherit;
  border: 1px solid rgba(16, 38, 28, 0.28);
  background: transparent;
  cursor: pointer;
}

.a11y-panel__status {
  display: grid;
  padding: 16px 2px;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.a11y-panel__status strong {
  color: #1b6043;
}

.a11y-panel__indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8b928e;
}

.a11y-panel__indicator.is-active {
  background: #168454;
  box-shadow: 0 0 0 5px rgba(22, 132, 84, 0.14);
}

.a11y-panel__mode {
  display: flex;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  border: 2px solid #123c2b;
  background: #123c2b;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.a11y-panel__mode[aria-pressed="true"] {
  color: #10261c;
  background: #efd096;
}

.a11y-panel__grid {
  display: grid;
  margin-top: 12px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.a11y-panel__grid > button {
  display: grid;
  min-height: 92px;
  padding: 14px;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 9px;
  color: #10261c;
  border: 1px solid rgba(16, 38, 28, 0.24);
  background: #f7f4eb;
  text-align: left;
  cursor: pointer;
}

.a11y-panel__grid > button:hover,
.a11y-panel__grid > button:focus-visible {
  border-color: #173f2e;
  background: #e7eee5;
}

.a11y-panel__grid > button[aria-pressed="true"] {
  color: #fff;
  border-color: #174c36;
  background: #174c36;
}

.a11y-panel__grid > button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.a11y-panel__grid > button > span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.a11y-panel__grid strong {
  font-size: 13px;
  line-height: 1.35;
}

.a11y-panel__grid small {
  font-size: 10px;
  line-height: 1.4;
  opacity: 0.72;
}

.a11y-panel__symbol {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.a11y-panel__shortcut {
  margin: 14px 0 0;
  color: #4f5f57;
  font-size: 11px;
  text-align: center;
}

body.a11y-mode :focus-visible {
  outline: 4px solid #ffbd2e !important;
  outline-offset: 4px !important;
}

body.a11y-mode main p,
body.a11y-mode main li,
body.a11y-mode main dd {
  line-height: 1.9;
}

body.a11y-links main a:not(.button),
body.a11y-links .site-footer a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
}

body.a11y-high-contrast {
  --paper: #fff;
  --white: #fff;
  --ink: #000;
  --muted: #191919;
  --deep: #000;
  --green: #003d2c;
  --green-2: #002a1f;
  --gold-2: #ffd54a;
  --sage: #f1f1f1;
  --sage-2: #e6e6e6;
  --line: rgba(0, 0, 0, 0.46);
  --line-light: rgba(255, 255, 255, 0.48);
}

body.a11y-high-contrast .home-hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.54) 58%, rgba(0, 0, 0, 0.35)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 50%);
}

body.a11y-high-contrast .site-header--scrolled {
  color: #000;
  background: #fff;
  backdrop-filter: none;
}

body.a11y-high-contrast .button--light {
  color: #000;
  border-color: #fff;
  background: #fff;
}

body.a11y-high-contrast .a11y-panel {
  color: #000;
  border-color: #000;
  background: #fff;
}

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

@media (max-width: 1180px) {
  .language-picker__trigger {
    min-width: 108px;
  }

  .a11y-trigger {
    width: 40px;
    padding-inline: 8px;
    justify-content: center;
  }

  .a11y-trigger span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  .a11y-trigger,
  .mobile-menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid currentColor;
  }

  .a11y-panel {
    top: 82px;
    right: 14px;
    max-height: calc(100vh - 96px);
  }
}

@media (max-width: 480px) {
  .a11y-panel {
    right: 8px;
    left: 8px;
    width: auto;
    padding: 17px;
  }

  .a11y-panel__grid {
    grid-template-columns: 1fr;
  }

  .a11y-panel__grid > button {
    min-height: 72px;
  }
}
