:root {
  color-scheme: light;
  --ink: #18212a;
  --muted: #5c6872;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --line: #d9dfdf;
  --accent: #1f6d72;
  --accent-dark: #134c51;
  --gold: #b38a3c;
  --shadow: 0 18px 45px rgba(24, 33, 42, 0.12);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(217, 223, 223, 0.8);
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(179, 138, 60, 0.55);
  background: #24333a;
  color: #fff7e4;
  font-size: 0.78rem;
  font-weight: 800;
}

.brand-text {
  font-weight: 750;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a,
.footer-links a,
.link-list a {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 18px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #172027;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 25, 31, 0.9) 0%, rgba(16, 25, 31, 0.74) 42%, rgba(16, 25, 31, 0.22) 100%),
    linear-gradient(0deg, rgba(16, 25, 31, 0.35), rgba(16, 25, 31, 0.05));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding: 78px 0 104px;
  color: #fffaf0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1rem, 2.1vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 250, 240, 0.36);
  text-decoration: none;
  font-weight: 750;
}

.button.primary {
  border-color: #d9b468;
  background: #d9b468;
  color: #18212a;
}

.button.secondary {
  color: #fffaf0;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -54px auto 0;
  padding: 0 clamp(20px, 5vw, 34px);
  position: relative;
  z-index: 5;
}

.intro-band div {
  min-height: 126px;
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.stat-label {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-band strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.16;
}

.section,
.feature-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) clamp(20px, 5vw, 34px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(26px, 6vw, 70px);
  align-items: start;
  margin-bottom: 40px;
}

.section h2,
.feature-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mission-grid article {
  min-height: 270px;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

h3 {
  margin: 0 0 14px;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  margin: 0;
  color: var(--muted);
}

p + p {
  margin-top: 18px;
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-copy p {
  max-width: 700px;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: var(--accent-dark);
  font-weight: 800;
}

.feature-media {
  overflow: hidden;
  border: 1px solid rgba(217, 223, 223, 0.82);
  background: #203036;
  color: #fffaf0;
  box-shadow: var(--shadow);
}

.swgr-logo {
  display: block;
  width: min(72%, 360px);
  height: auto;
  margin: 24px auto;
}

.swgr-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.fine-print {
  padding: 18px 20px 22px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.82rem;
  line-height: 1.5;
}

.governance {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: clamp(26px, 6vw, 70px);
}

.governance .section-heading {
  display: block;
  margin-bottom: 0;
}

.governance-body {
  padding-top: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #18212a;
  color: #fffaf0;
}

.site-footer span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: rgba(255, 250, 240, 0.88);
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  max-width: 720px;
  padding: clamp(32px, 8vw, 88px);
}

.not-found h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1;
}

.not-found .button {
  width: fit-content;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: min(680px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 96px;
  }

  .intro-band,
  .mission-grid,
  .section-heading,
  .feature-section,
  .governance {
    grid-template-columns: 1fr;
  }

  .intro-band {
    margin-top: 0;
    padding: 0;
  }

  .intro-band div {
    min-height: auto;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .brand-text {
    white-space: normal;
    line-height: 1.2;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(16, 25, 31, 0.91), rgba(16, 25, 31, 0.56));
  }

  .button {
    width: 100%;
  }

  .mission-grid article,
  .fine-print {
    padding: 24px;
  }
}
