:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  color: #17211d;
  background: #f7f4ec;
  --ink: #17211d;
  --muted: #526159;
  --forest: #134f43;
  --deep: #0b1f24;
  --gold: #f2b84b;
  --clay: #b5532f;
  --blue: #315f7d;
  --line: #ded7c8;
  --paper: #fffdf8;
  --soft: #edf4ee;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f4ec;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(11, 31, 36, 0.14));
}

.brand-name {
  overflow-wrap: anywhere;
}

.mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--blue));
  font-size: 1.35rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  font-size: 0.94rem;
  color: #32433b;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
}

.hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 7vw, 96px);
  color: white;
  background:
    linear-gradient(100deg, rgba(11, 31, 36, 0.94), rgba(19, 79, 67, 0.78), rgba(49, 95, 125, 0.32)),
    var(--hero-image) center/cover;
}

.hero-content {
  max-width: 980px;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  max-width: min(100%, 620px);
  margin: 0 0 24px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.hero-logo img {
  width: clamp(58px, 8vw, 78px);
  height: clamp(58px, 8vw, 78px);
  flex: 0 0 auto;
}

.hero-logo-text {
  display: grid;
  gap: 4px;
}

.hero-logo-text strong {
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.08;
}

.hero-logo-text span {
  color: #ffe0a3;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: #ffe0a3;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 800;
}

h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: var(--gold);
  color: #17211d;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.alert {
  padding: 18px clamp(20px, 7vw, 96px);
  color: #fffaf2;
  background: #8d3b24;
  font-weight: 800;
}

.alert span {
  display: block;
  max-width: 1120px;
  line-height: 1.5;
}

.section {
  padding: clamp(42px, 7vw, 84px) clamp(20px, 7vw, 96px);
}

.section.alt {
  background: var(--soft);
}

.section.dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 31, 36, 0.96), rgba(19, 79, 67, 0.88)),
    var(--hero-image) center/cover;
}

.inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-title {
  max-width: 780px;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

p,
li {
  font-size: 1rem;
  line-height: 1.68;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.dark .lead {
  color: #d8ece6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.card {
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  background: var(--paper);
}

.card.accent {
  background: #fff7e6;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  color: white;
  background: var(--forest);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.image-panel {
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18)),
    var(--support-image) center/cover;
  box-shadow: 0 24px 50px rgba(11, 31, 36, 0.2);
}

.resource-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.resource-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.92);
}

.resource-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.resource-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(11, 31, 36, 0.08);
}

.resource-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e9e2d4;
}

.resource-card div {
  padding: 20px;
}

.resource-card p {
  margin-bottom: 0;
}

.status-box {
  border-left: 6px solid var(--blue);
  padding: 22px 24px;
  background: #eef5f8;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.site-footer {
  padding: 28px clamp(20px, 7vw, 96px);
  color: #d6e3df;
  background: var(--deep);
}

.site-footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

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

  .grid,
  .resource-shelf,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 68vh;
  }

  .hero-logo {
    align-items: flex-start;
  }
}
