:root {
  color-scheme: light;
  --forest: #0f1f18;
  --green: #1f6b43;
  --sage: #dce7dc;
  --paper: #f7f4ec;
  --ink: #18211c;
  --muted: #627166;
  --gold: #b88a3c;
  --line: rgba(24, 33, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    "Segoe UI",
    Arial,
    sans-serif;
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 34%, rgba(31, 107, 67, 0.13), transparent 28%),
    linear-gradient(180deg, #f7f4ec 0%, #eef3eb 54%, #f7f4ec 100%);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  padding: clamp(20px, 4vw, 44px);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transform: scale(1.04);
  animation: hero-drift 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 18, 13, 0.9) 0%, rgba(7, 18, 13, 0.64) 44%, rgba(7, 18, 13, 0.16) 100%),
    linear-gradient(0deg, rgba(15, 31, 24, 0.48), rgba(15, 31, 24, 0.06) 46%);
}

.ambient {
  position: absolute;
  z-index: -2;
  width: 34vw;
  height: 34vw;
  min-width: 320px;
  min-height: 320px;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.34;
  animation: ambient-float 12s ease-in-out infinite alternate;
}

.ambient-one {
  left: -8vw;
  top: 10vh;
  background: radial-gradient(circle, rgba(184, 138, 60, 0.48), transparent 66%);
}

.ambient-two {
  right: -14vw;
  bottom: -10vw;
  background: radial-gradient(circle, rgba(31, 107, 67, 0.58), transparent 64%);
  animation-delay: 1.2s;
}

.topline {
  position: absolute;
  top: clamp(18px, 3vw, 36px);
  left: clamp(18px, 4vw, 52px);
  right: clamp(18px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: white;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

nav a:hover {
  color: #f6d28a;
  opacity: 1;
}

.hero-content {
  width: min(780px, 92vw);
  color: white;
  transform: translate3d(var(--hero-x, 0px), var(--hero-y, 0px), 0);
}

.eyebrow {
  margin: 0 0 16px;
  color: #f2cf82;
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 13vw, 11.5rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.45);
  animation: title-rise 900ms ease both;
}

.hero-copy {
  width: min(660px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2.4vw, 1.42rem);
  line-height: 1.58;
  animation: title-rise 900ms 120ms ease both;
}

.intro,
.timeline {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: clamp(26px, 7vw, 86px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 132px) 0;
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--green);
  font-weight: 800;
}

.section-label span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(31, 107, 67, 0.28);
  border-radius: 50%;
}

.section-label p {
  margin: 10px 0 0;
}

.intro-copy h2,
.closing h2 {
  margin: 0;
  max-width: 860px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5.4vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-copy p {
  max-width: 820px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.78;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 8vw, 90px) 0;
}

.info-card {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(15, 31, 24, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 138, 60, 0.42);
  box-shadow: 0 28px 90px rgba(15, 31, 24, 0.13);
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: #123422;
  color: #f2cf82;
}

.icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.info-card h3 {
  margin: 28px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  letter-spacing: 0;
}

.info-card p,
.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.timeline-item strong {
  color: var(--green);
  font-size: 1.04rem;
}

.closing {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(86px, 12vw, 150px) 0 clamp(70px, 10vw, 120px);
  text-align: center;
}

.closing .eyebrow {
  color: var(--green);
}

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

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

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(-0.6vw, -0.5vh, 0);
  }
  to {
    transform: scale(1.1) translate3d(0.8vw, 0.7vh, 0);
  }
}

@keyframes ambient-float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4vw, -3vh, 0) scale(1.14);
  }
}

@keyframes title-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .hero {
    min-height: 88svh;
  }

  .topline {
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 230px;
  }

  .intro,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 18px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 18, 13, 0.92), rgba(7, 18, 13, 0.62)),
      linear-gradient(0deg, rgba(15, 31, 24, 0.52), rgba(15, 31, 24, 0.08));
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  nav {
    gap: 10px 16px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 6.6rem);
  }

  .hero-content {
    padding-top: 54px;
  }
}

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