:root {
  --surface: rgba(255, 255, 255, 0.9);
  --surface-soft: rgba(246, 251, 247, 0.86);
  --text: #243129;
  --muted: #5d7064;
  --accent: #2f7a49;
  --accent-dark: #1f5a34;
  --line: rgba(31, 90, 52, 0.16);
  --shadow: 0 24px 56px rgba(23, 68, 39, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(219, 239, 226, 0.9) 0, transparent 34%),
    radial-gradient(circle at 86% 6%, rgba(208, 231, 216, 0.72) 0, transparent 28%),
    linear-gradient(180deg, #fffefd 0%, #f2f8f3 56%, #e5f0e8 100%);
  position: relative;
}

.site-top {
  width: min(1120px, 92vw);
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(31, 90, 52, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(23, 68, 39, 0.08);
}

.site-brand {
  color: var(--accent-dark);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-nav-link {
  text-decoration: none;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.site-nav-link:hover {
  background: rgba(47, 122, 73, 0.08);
  color: var(--accent-dark);
}

.site-nav-link.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
}

.bg-orb {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.5;
  z-index: -1;
}

.orb-1 {
  background: rgba(104, 163, 123, 0.52);
  top: -80px;
  right: -120px;
}

.orb-2 {
  background: rgba(176, 219, 190, 0.5);
  bottom: -110px;
  left: -90px;
}

.page-shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 18px 0 64px;
}

.hero-card,
.story-card,
.gallery-note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card {
  padding: 42px clamp(22px, 5vw, 56px);
  margin-bottom: 24px;
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-card h1,
.section-heading h2,
.story-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero-card h1 {
  margin: 10px 0 16px;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 0.96;
}

.lead {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.story-flow {
  display: grid;
  gap: 22px;
  margin-bottom: 24px;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
  align-items: stretch;
}

.story-row.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.story-card {
  padding: 24px;
  display: grid;
  align-content: center;
}

.story-card h2 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.story-card.featured {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 242, 0.9));
}

.story-card.accent {
  background: linear-gradient(145deg, rgba(242, 250, 245, 0.96), rgba(229, 242, 233, 0.9));
}

.story-year {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(47, 122, 73, 0.1);
  color: var(--accent-dark);
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-note {
  padding: 28px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 20px;
}

.section-heading h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.photo-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  min-height: 240px;
  box-shadow: 0 16px 32px rgba(23, 68, 39, 0.08);
}

.photo-card-large {
  min-height: 360px;
}

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

.photo-card.wide {
  min-height: 280px;
}

@media (max-width: 900px) {
  .story-row,
  .story-row.reverse,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .story-row.reverse .photo-card,
  .story-row.reverse .story-card {
    order: initial;
  }
}

@media (max-width: 640px) {
  .site-top {
    width: min(94vw, 1120px);
    padding: 14px;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav-link {
    flex: 1 1 auto;
    text-align: center;
  }

  .page-shell {
    width: min(94vw, 1120px);
    padding: 22px 0 48px;
  }

  .hero-card,
  .story-card,
  .gallery-note {
    border-radius: 22px;
  }

  .hero-card {
    padding: 30px 18px;
  }

  .story-card,
  .gallery-note {
    padding: 20px;
  }

  .photo-card,
  .photo-card-large,
  .photo-card.wide {
    min-height: 220px;
  }
}
