:root {
  --heritage-green: #215732;
  --union-red: #b22222;
  --antique-gold: #d4af37;
  --charcoal-grey: #2e2e2e;
  --off-white: #f9f5ec;
  --slate-blue: #4a6d8c;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Atkinson Hyperlegible", "Trebuchet MS", sans-serif;
  color: var(--charcoal-grey);
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 45%),
    radial-gradient(circle at 10% 20%, rgba(74, 109, 140, 0.16), transparent 40%),
    linear-gradient(180deg, #fffdf7 0%, var(--off-white) 55%, #f2eee3 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--heritage-green);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--heritage-green);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5vw;
  position: sticky;
  top: 0;
  background: rgba(249, 245, 236, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(46, 46, 46, 0.08);
  z-index: 10;
}

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

.brand img {
  width: 52px;
}

.brand-title {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-weight: 600;
}

.nav-links a {
  font-size: 0.95rem;
}

.language-toggle {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(46, 46, 46, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: white;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle span {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--charcoal-grey);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--charcoal-grey);
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-toggle a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 46, 46, 0.2);
}

.language-toggle a[aria-current="page"] {
  background: var(--heritage-green);
  color: white;
  border-color: var(--heritage-green);
}

.section {
  padding: 4.5rem 5vw;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero h1 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--heritage-green);
  color: white;
  font-weight: 700;
  border: 2px solid var(--heritage-green);
}

.button.secondary {
  background: transparent;
  color: var(--heritage-green);
}

.panel {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(33, 87, 50, 0.08);
  border: 1px solid rgba(46, 46, 46, 0.08);
}

.photo-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(46, 46, 46, 0.2);
}

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

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.section h2 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 1.2rem;
}

.section h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

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

.tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.2);
  color: var(--charcoal-grey);
  margin-bottom: 0.6rem;
}

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

.timeline-item {
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  background: rgba(33, 87, 50, 0.08);
}

.callout {
  border-left: 5px solid var(--union-red);
  padding: 1rem 1.4rem;
  background: rgba(178, 34, 34, 0.08);
  border-radius: 14px;
}

.footer {
  padding: 3rem 5vw 4rem;
  background: #f3efe4;
  border-top: 1px solid rgba(46, 46, 46, 0.08);
}

.footer p {
  margin: 0.4rem 0;
}

.fade-in {
  animation: fadeInUp 0.8s ease both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

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

  .nav-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(249, 245, 236, 0.95);
    border: 1px solid rgba(46, 46, 46, 0.08);
    border-radius: 18px;
    padding: 1rem;
  }

  .nav-panel[data-open="true"] {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
  }

  .nav-links a {
    padding: 0.4rem 0;
  }

  .language-toggle {
    width: 100%;
    justify-content: flex-start;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(46, 46, 46, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
  }
}
