:root {
  --paper: #f4f0e3;
  --paper-deep: #e8dfc7;
  --ink: #1f2f2a;
  --teal: #10564f;
  --teal-soft: #3f8078;
  --clay: #b85c3d;
  --gold: #bc8e2f;
  --cream: #fff8ea;
  --line: #d2c8ad;
  --shadow: 0 18px 42px rgba(16, 34, 31, 0.16);
  --radius-lg: 22px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Public Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, var(--paper) 0%, #f7f3e7 45%, var(--paper-deep) 100%);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.4rem, 3.3vw, 2.5rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.atmosphere {
  position: fixed;
  inset: -20vh -15vw;
  background:
    radial-gradient(circle at 10% 18%, rgba(188, 142, 47, 0.24), transparent 42%),
    radial-gradient(circle at 75% 5%, rgba(63, 128, 120, 0.2), transparent 45%),
    radial-gradient(circle at 86% 80%, rgba(184, 92, 61, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(255, 248, 234, 0.24), rgba(255, 248, 234, 0));
  z-index: -1;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(6px);
  background: color-mix(in srgb, var(--cream) 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--teal) 14%, transparent);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--teal), var(--teal-soft));
  color: #f9f7ef;
  box-shadow: var(--shadow);
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.brand-text {
  font-size: clamp(0.96rem, 1.5vw, 1.1rem);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.site-nav a {
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  outline: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  background: var(--cream);
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.hero {
  padding: clamp(3rem, 7vh, 5rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  border: 1px solid color-mix(in srgb, var(--teal) 18%, transparent);
  background: color-mix(in srgb, var(--teal) 10%, transparent);
  color: color-mix(in srgb, var(--teal) 85%, black);
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-copy {
  display: grid;
  gap: 1.55rem;
}

.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(130deg, var(--teal), color-mix(in srgb, var(--teal) 80%, black));
  color: #fefaf2;
  box-shadow: 0 8px 22px rgba(16, 86, 79, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  filter: saturate(1.12);
  outline: none;
}

.btn-ghost {
  border: 1px solid color-mix(in srgb, var(--teal) 22%, transparent);
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  color: var(--teal);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  outline: none;
}

.quick-facts {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
}

.location-subline {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--ink) 82%, black);
}

a.location-subline {
  color: color-mix(in srgb, var(--teal) 80%, black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a.location-subline:hover,
a.location-subline:focus-visible {
  color: color-mix(in srgb, var(--teal) 90%, black);
}

.hero-card {
  background: linear-gradient(160deg, #fbf6ea, #f2ead7);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2.3vw, 1.5rem);
  box-shadow: var(--shadow);
  animation: floatCard 5.5s ease-in-out infinite;
}

.card-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--clay) 74%, black);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.metric-grid article {
  border-left: 4px solid var(--gold);
  padding-left: 0.75rem;
}

.metric {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--teal);
  font-weight: 700;
}

.card-footnote {
  margin-top: 1rem;
  font-size: 0.94rem;
  color: color-mix(in srgb, var(--ink) 72%, black);
}

.content-section {
  padding: clamp(3.5rem, 9vh, 7rem) 0;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--clay) 84%, black);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.split {
  display: grid;
  gap: 1.9rem 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.split p + p {
  margin-top: 1rem;
}

#partners h2 {
  margin-bottom: 1rem;
}

.split > div > .btn {
  margin-top: 1.2rem;
}

.resource-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.resource-card {
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 10px 20px rgba(21, 42, 37, 0.08);
}

.resource-card p {
  margin-top: 0.8rem;
}

.gallery-intro {
  margin-top: 1.25rem;
  max-width: 68ch;
}

.gallery-grid {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e9ddc2;
  box-shadow: 0 12px 24px rgba(20, 44, 39, 0.14);
  grid-column: span 4;
  aspect-ratio: 4 / 3;
}

.gallery-card-portrait {
  grid-column: span 4;
  grid-row: span 2;
  aspect-ratio: 3 / 4;
}

.gallery-card-wide {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.timeline article {
  background: linear-gradient(160deg, #fcf8ee, #f5eddb);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.time {
  font-family: "Syne", sans-serif;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.timeline h3 {
  margin-top: 0.45rem;
}

.timeline p:last-child {
  margin-top: 0.8rem;
}

.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.badge-stack span {
  border: 1px solid color-mix(in srgb, var(--teal) 24%, transparent);
  background: color-mix(in srgb, var(--teal) 12%, transparent);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
}

.faq-wrap {
  display: grid;
  gap: 1.15rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--cream) 95%, transparent);
  padding: 0.85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 0.55rem;
}

.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--teal) 12%, transparent);
  padding: 2rem 0 3rem;
}

.footer-grid {
  display: grid;
  gap: 0.5rem;
}

.footer-grid p:first-child {
  font-weight: 800;
}

.footer-privacy {
  margin-top: 0.55rem;
}

.footer-privacy a {
  font-size: 0.88rem;
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes drift {
  from {
    transform: translate3d(-1.5%, 0, 0);
  }
  to {
    transform: translate3d(1.5%, 1.5%, 0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .resource-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gallery-card,
  .gallery-card-portrait,
  .gallery-card-wide {
    grid-column: span 3;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 4vw;
    background: color-mix(in srgb, var(--cream) 95%, transparent);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.6rem;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .brand-text {
    max-width: 18ch;
    line-height: 1.2;
  }

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

  .gallery-card,
  .gallery-card-portrait,
  .gallery-card-wide {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
