:root {
  --green-950: #2f4f4f;
  --green-900: #2f4f4f;
  --green-850: #3a5f5f;
  --green-800: #456f6f;
  --gold-300: #ead09b;
  --gold-400: #d9b873;
  --gold-500: #caa35f;
  --beige-100: #efe5d8;
  --beige-200: #e4d6c3;
  --ink: #17302f;
  --muted: #6c5b45;
  --white: #fff9ef;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --line: rgba(217, 184, 115, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--beige-100);
  background: #2f4f4f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: none;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  letter-spacing: -0.06em;
}

h2 {
  color: var(--gold-300);
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  letter-spacing: -0.045em;
}

h3 {
  color: var(--gold-300);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--gold-300);
  color: var(--green-950);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
}

.section-panel {
  background: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.8rem 0;
  transition: background 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.site-header[data-elevated="true"] {
  background: #2f4f4f;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: none;
}

.header-inner {
  width: min(1280px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  width: 64px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  color: var(--gold-300);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: rgba(239, 229, 216, 0.82);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold-300);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.language-toggle,
.nav-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.06);
  color: var(--gold-300);
  cursor: pointer;
}

.language-toggle {
  min-width: 46px;
  min-height: 40px;
  border-radius: 999px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  padding: 0.65rem;
}

.nav-toggle-line {
  display: block;
  height: 2px;
  background: var(--gold-300);
  margin: 5px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
}

.button-primary {
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 14px 34px rgba(202, 163, 95, 0.22);
}

.button-secondary {
  color: var(--gold-300);
  background: rgba(255, 249, 239, 0.06);
  border-color: var(--line);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 7rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 720px;
  margin-top: 1.25rem;
  color: rgba(239, 229, 216, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2.6rem;
  max-width: 720px;
}

.hero-stats div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 249, 239, 0.045);
}

.hero-stats strong {
  display: block;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.hero-stats span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(239, 229, 216, 0.78);
  font-size: 0.92rem;
}

.hero-mark {
  position: relative;
  justify-self: center;
  width: min(420px, 78vw);
}

.hero-mark-ring {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-mark-ring::before,
.hero-mark-ring::after {
  content: none;
}

.hero-mark img {
  width: 82%;
  opacity: 1;
  filter: none;
}

.ornament {
  position: absolute;
  pointer-events: none;
  opacity: 0.28;
  border: 1px solid var(--line);
  transform: rotate(45deg);
}

.ornament-left {
  left: -9rem;
  top: 18%;
  width: 18rem;
  height: 18rem;
}

.ornament-right {
  right: -7rem;
  bottom: 10%;
  width: 13rem;
  height: 13rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.text-stack {
  display: grid;
  gap: 1.25rem;
  color: rgba(239, 229, 216, 0.84);
  font-size: 1.05rem;
}

.mini-cards,
.guide-grid,
.project-grid,
.legal-grid {
  display: grid;
  gap: 1rem;
}

.mini-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.mini-cards article,
.guide-card,
.project-card,
.criteria-card,
.event-card,
.contact-card,
.cta-panel,
.accordion details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 249, 239, 0.085), rgba(255, 249, 239, 0.045));
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
}

.mini-cards article {
  padding: 1.1rem;
}

.mini-cards h3 {
  font-size: 1.08rem;
}

.mini-cards p {
  margin-top: 0.55rem;
  color: rgba(239, 229, 216, 0.74);
  font-size: 0.95rem;
}

.section-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-intro {
  color: rgba(239, 229, 216, 0.78);
  font-size: 1.02rem;
}

.center-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}

.filter-chip {
  border: 1px solid var(--line);
  color: var(--beige-100);
  background: rgba(255, 249, 239, 0.055);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  cursor: pointer;
  font-weight: 750;
}

.filter-chip.active,
.filter-chip:hover,
.filter-chip:focus-visible {
  color: var(--green-950);
  background: var(--gold-300);
}

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

.project-card {
  overflow: hidden;
  min-height: 100%;
  transition: transform 180ms ease, opacity 180ms ease;
}

.project-card.hidden {
  display: none;
}

.project-card:hover {
  transform: translateY(-4px);
}

.project-icon {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: contain;
  background: var(--beige-100);
  padding: 2.2rem;
}

.project-content {
  padding: 1.25rem;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.85rem;
  color: var(--gold-300);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card p,
.guide-card p,
.event-card p,
.criteria-card li,
.contact-grid p,
.cta-panel p,
.accordion p,
.legal-section p {
  color: rgba(239, 229, 216, 0.78);
}

.project-card p {
  margin-top: 0.75rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag-list span {
  color: var(--gold-300);
  border: 1px solid var(--line);
  background: rgba(47, 79, 79, 0.38);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.criteria-card {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.2rem;
  padding: 1.4rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-300);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.cta-panel h2 {
  margin-bottom: 1rem;
}

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

.guide-card {
  padding: 1.3rem;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.guide-card p {
  margin-top: 0.9rem;
}

.guide-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--gold-300);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.event-list {
  display: grid;
  gap: 1rem;
}

.event-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
}

.date-box {
  display: grid;
  place-items: center;
  min-height: 98px;
  border-radius: var(--radius-sm);
  background: var(--beige-100);
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  text-align: center;
}

.event-card p {
  margin-top: 0.65rem;
}

.accordion {
  display: grid;
  gap: 0.8rem;
}

.accordion details {
  padding: 1rem 1.1rem;
}

.accordion summary {
  cursor: pointer;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.accordion p {
  margin-top: 0.8rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 2rem;
}

.contact-grid p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.contact-card {
  display: grid;
  place-items: center;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.contact-card img {
  width: min(280px, 100%);
}

.legal-section {
  padding: 3rem 0;
  background: var(--beige-100);
  color: var(--ink);
}

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

.legal-section h2 {
  color: var(--ink);
  font-size: 1.55rem;
}

.legal-section p {
  color: rgba(23, 48, 47, 0.72);
  margin-top: 0.6rem;
}

.site-footer {
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  background: var(--green-950);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(239, 229, 216, 0.72);
  font-size: 0.92rem;
}

.footer-inner a {
  color: var(--gold-300);
  font-weight: 800;
}

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

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

@media (max-width: 1040px) {
  .site-nav {
    position: fixed;
    top: 78px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #2f4f4f;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 0.45rem 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .brand-text {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .section-top,
  .criteria-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    order: -1;
    width: min(320px, 70vw);
  }

  .project-grid,
  .guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner {
    width: min(100% - 1rem, var(--max));
  }

  .button-small {
    display: none;
  }

  .hero-stats,
  .mini-cards,
  .project-grid,
  .guide-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .date-box {
    min-height: 70px;
  }

  .cta-panel,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .section {
    padding: 4rem 0;
  }
}
