:root {
  color-scheme: light;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --page-bg: #ede7da;
  --page-bg-rgb: 237, 231, 218;
  --surface: rgba(244, 239, 228, 0.78);
  --text: #182118;
  --muted: rgba(24, 33, 24, 0.74);
  --line: rgba(24, 33, 24, 0.14);
  --accent: #bc6a3e;
  --accent-soft: rgba(188, 106, 62, 0.14);
  --forest: #243227;
  --moss: #66755e;
  --gold: #dfbf73;
  --shadow: 0 20px 60px rgba(24, 33, 24, 0.12);
  --hero-sky: linear-gradient(180deg, rgba(240, 226, 201, 0.12), rgba(240, 226, 201, 0.92));
  --radius: 28px;
  --max-width: 1240px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.48), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.32), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 18%),
    var(--page-bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.12) 50%, transparent 100%),
    repeating-linear-gradient(
      90deg,
      transparent 0 124px,
      rgba(255, 255, 255, 0.035) 124px 125px
    );
  opacity: 0.7;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.page-shell {
  position: relative;
}

main[id],
.section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-height);
  padding: 22px clamp(20px, 3vw, 40px);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  background: linear-gradient(
    180deg,
    rgba(var(--page-bg-rgb), 0.86),
    rgba(var(--page-bg-rgb), 0.58)
  );
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark__seed {
  width: 14px;
  height: 14px;
  border-radius: 999px 999px 999px 2px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 0 0 6px var(--accent-soft);
  transform: rotate(-35deg);
}

.site-nav {
  display: inline-flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero,
.section {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(36px, 6vw, 72px) 0 28px;
}

.hero__copy {
  max-width: 560px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
}

h1 {
  font-size: clamp(4rem, 11vw, 8.5rem);
}

h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.hero__lede,
.section-lede,
.story-panel__lede {
  font-size: 1.03rem;
}

.hero__lede {
  margin-top: 24px;
  max-width: 35rem;
}

.hero__detail {
  margin-top: 16px;
  max-width: 37rem;
}

.hero__actions,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  color: var(--text);
}

.hero__facts li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero__facts li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button--solid {
  background: var(--forest);
  color: #f7f3ea;
  box-shadow: var(--shadow);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: #8a4825;
}

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

.button--ghost:hover,
.button--ghost:focus-visible {
  background: var(--accent-soft);
  border-color: transparent;
}

.button--ghost-light {
  color: #f6f1e7;
  border-color: rgba(246, 241, 231, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost-light:hover,
.button--ghost-light:focus-visible {
  background: rgba(246, 241, 231, 0.14);
}

.hero__scene {
  position: relative;
  min-height: min(74vh, 780px);
  border-radius: min(36px, 5vw);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.08)),
    var(--hero-sky);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.hero__scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero__scene::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: calc(min(36px, 5vw) - 8px);
  pointer-events: none;
}

.section {
  padding: clamp(62px, 8vw, 110px) 0;
}

.section-heading {
  display: grid;
  gap: 20px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 46rem;
}

.section-heading h2 {
  max-width: 16ch;
}

.section-lede {
  max-width: 48rem;
}

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

.vision-grid__column {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.vision-grid__column p {
  margin-top: 14px;
}

.story-panel {
  position: relative;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.story-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.06) 58% 62%, transparent 62%);
  pointer-events: none;
}

.story-panel__copy,
.story-panel__layout {
  position: relative;
  z-index: 1;
}

.story-panel__lede {
  margin-top: 18px;
  max-width: 44rem;
}

.story-panel__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.96fr);
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}

.story-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
}

.story-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.story-steps__index {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
}

.story-steps p {
  margin-top: 8px;
}

.section-art {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
}

.section-art img {
  display: block;
  width: 100%;
  height: auto;
}

.section-art--story {
  aspect-ratio: 4 / 3;
}

.section-art--story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.section-art--systems,
.section-art--visit {
  aspect-ratio: 4 / 3;
}

.section-art--systems img,
.section-art--visit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-art--systems img {
  object-position: 54% center;
}

.section-art--visit img {
  object-position: 44% center;
}

.systems-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 30px;
  align-items: start;
}

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

.systems-item {
  position: relative;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.systems-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  box-shadow: 0 0 0 8px var(--accent-soft);
}

.systems-item span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.systems-item p {
  margin-top: 10px;
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.88fr) minmax(0, 0.98fr);
  gap: 30px;
  align-items: start;
}

.visit-layout__intro h2 {
  max-width: 12ch;
}

.visit-layout__moments {
  display: grid;
  gap: 22px;
}

.visit-layout__moments article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.visit-layout__moments p {
  margin-top: 10px;
}

.section--cta {
  padding-top: 40px;
}

.cta-panel {
  display: grid;
  gap: 18px;
  padding: clamp(32px, 6vw, 60px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 44%),
    linear-gradient(180deg, #314435, #223027);
  color: #f6f1e7;
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 45rem;
  color: rgba(246, 241, 231, 0.8);
}

.cta-panel .eyebrow {
  color: rgba(246, 241, 231, 0.72);
}

.reveal {
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero,
  .systems-layout,
  .visit-layout,
  .story-panel__layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 30px;
    padding-top: 34px;
  }

  .hero__copy {
    max-width: 100%;
  }

  .systems-grid,
  .vision-grid {
    grid-template-columns: 1fr;
  }

  .section-art--systems,
  .section-art--visit,
  .section-art--story {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 106px;
  }

  .site-header {
    flex-direction: column;
    align-items: start;
    gap: 12px;
    padding-block: 18px 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero,
  .section {
    width: min(calc(100% - 28px), var(--max-width));
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .hero {
    gap: 24px;
    padding-top: 24px;
  }

  .hero__facts {
    gap: 14px;
  }

  .hero__scene {
    min-height: 0;
    aspect-ratio: 5 / 6;
  }

  .hero__scene img {
    object-position: 62% center;
  }

  .hero__scene::after {
    inset: 12px;
  }

  .section-art--systems,
  .section-art--visit,
  .section-art--story {
    aspect-ratio: 5 / 4;
  }

  .section-art--systems img {
    object-position: 56% center;
  }

  .section-art--visit img {
    object-position: 40% center;
  }

  .button {
    width: 100%;
  }

  .hero__actions,
  .cta-panel__actions {
    flex-direction: column;
  }

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