:root {
  --bg: #f4efe4;
  --paper: #fffdf7;
  --ink: #1e2e2f;
  --ink-soft: #475e5f;
  --brand: #0f6a72;
  --brand-2: #b96d2f;
  --line: #d8cfbf;
  --shadow: 0 20px 45px rgba(24, 35, 34, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(185, 109, 47, 0.14), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(15, 106, 114, 0.18), transparent 34%),
    linear-gradient(180deg, #f7f3ea 0%, #f2ead9 100%);
  line-height: 1.65;
}

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

.site-shell {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(251, 247, 237, 0.9);
  border-bottom: 1px solid rgba(216, 207, 191, 0.7);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(15, 106, 114, 0.3);
}

.brand span {
  font-family: "Fraunces", serif;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #143435;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.45rem 0.85rem;
  font-weight: 700;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: #2f4a4c;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: #d8ecee;
  color: #0a4950;
}

.hero {
  padding: 4.2rem 0 2.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-copy,
.hero-media {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border: 1px solid rgba(185, 109, 47, 0.2);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  color: #865229;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.9rem, 5vw, 3.3rem);
  margin: 0.45rem 0 0.9rem;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  margin-bottom: 0.7rem;
}

h3 {
  font-size: clamp(1.2rem, 2.8vw, 1.45rem);
  margin-bottom: 0.65rem;
}

p {
  margin: 0 0 0.9rem;
}

.hero-media {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(15, 106, 114, 0.2);
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.tag {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(15, 106, 114, 0.35);
  background: rgba(15, 106, 114, 0.08);
  color: #0f5f67;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.28rem 0.74rem;
}

.section {
  margin: 2rem 0;
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.2rem, 2.7vw, 2rem);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

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

.card {
  border: 1px solid rgba(216, 207, 191, 0.95);
  border-radius: 14px;
  padding: 1rem;
  background: #fffcf5;
}

.image-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.image-grid img,
.image-hero {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15, 106, 114, 0.18);
  box-shadow: 0 8px 18px rgba(21, 41, 42, 0.14);
}

.image-hero {
  max-height: 460px;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline .card {
  border-left: 4px solid var(--brand-2);
}

.stage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdfa;
  padding: 1rem;
}

.stage img {
  width: 100%;
  border-radius: 12px;
  max-height: 280px;
  object-fit: cover;
}

.list-tight {
  margin: 0;
  padding-left: 1.2rem;
}

.list-tight li {
  margin-bottom: 0.45rem;
}

.cta {
  margin: 2.4rem 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 106, 114, 0.93), rgba(38, 138, 147, 0.96));
  color: #f9fffe;
  border-radius: var(--radius);
  padding: 2rem 1.2rem;
  box-shadow: var(--shadow);
}

.cta h2 {
  margin-bottom: 0.5rem;
}

.site-footer {
  border-top: 1px solid rgba(216, 207, 191, 0.85);
  margin-top: 3rem;
  padding: 1.2rem 0 2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {

  .hero-grid,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

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

  .nav {
    position: relative;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.6rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    display: none;
    min-width: 280px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    border-radius: 10px;
  }
}