:root {
  --forest: #1b4332;
  --forest-deep: #102d23;
  --forest-soft: #406657;
  --accent: #df6b2d;
  --accent-soft: #efb08b;
  --sand: #f5efe6;
  --paper: #fffaf3;
  --line: rgba(27, 67, 50, 0.14);
  --shadow: 0 24px 64px rgba(16, 45, 35, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--forest-deep);
  background:
    radial-gradient(circle at top left, rgba(223, 107, 45, 0.18), transparent 30%),
    radial-gradient(circle at right center, rgba(27, 67, 50, 0.12), transparent 28%),
    linear-gradient(135deg, #fbf6ef 0%, #f4ecdf 48%, #efe5d5 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.6;
}

body::before {
  top: -10rem;
  right: -8rem;
  background: rgba(223, 107, 45, 0.16);
}

body::after {
  bottom: -14rem;
  left: -10rem;
  background: rgba(27, 67, 50, 0.12);
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(180deg, var(--accent) 0%, #c44c17 100%);
  box-shadow: 0 14px 28px rgba(196, 76, 23, 0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-copy strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--forest-soft);
  font-size: 0.88rem;
}

.header-pill,
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(223, 107, 45, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.72);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.header-pill {
  padding: 0.85rem 1.2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.status-card,
.mission-strip {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(2rem, 3vw, 3.5rem);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(223, 107, 45, 0.12), transparent 38%),
    linear-gradient(180deg, transparent 0%, rgba(27, 67, 50, 0.04) 100%);
  pointer-events: none;
}

.eyebrow,
.strip-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  font-weight: 600;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin-top: 1rem;
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  color: var(--forest);
}

.lead {
  position: relative;
  z-index: 1;
  max-width: 62ch;
  margin: 1.4rem 0 0;
  font-size: 1.03rem;
  line-height: 1.8;
  color: rgba(16, 45, 35, 0.82);
}

.highlights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.highlights article {
  border-radius: 24px;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(27, 67, 50, 0.1);
}

.highlights span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
}

.highlights h2 {
  font-size: 2rem;
  line-height: 1;
  color: var(--forest);
}

.highlights p,
.status-card p,
.mission-strip p,
.contact-list dd {
  margin: 0;
  line-height: 1.75;
}

.highlights p {
  margin-top: 0.75rem;
  color: rgba(16, 45, 35, 0.8);
}

.status-card {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  border-radius: 34px;
  padding: 1.8rem;
}

.status-badge {
  align-self: flex-start;
  padding: 0.75rem 1rem;
}

.status-intro {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--forest);
}

.status-panel {
  padding: 1.25rem;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(160deg, var(--forest) 0%, #295645 100%);
}

.status-panel h2 {
  font-size: 2.5rem;
  color: #fff;
}

.status-panel p {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.contact-list div {
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 67, 50, 0.12);
}

.contact-list dt {
  margin-bottom: 0.35rem;
  color: var(--forest-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list dd {
  color: rgba(16, 45, 35, 0.88);
}

.contact-list a,
.primary-link {
  color: inherit;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  transform: translateY(-2px);
  background: #c9571f;
  box-shadow: 0 16px 24px rgba(201, 87, 31, 0.25);
}

.mission-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
  border-radius: 30px;
  padding: 1.25rem 1.4rem;
}

.mission-strip div {
  padding: 0.6rem 0.4rem;
}

.mission-strip p:last-child {
  margin-top: 0.45rem;
  color: rgba(16, 45, 35, 0.84);
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .mission-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 16px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .hero-copy,
  .status-card,
  .mission-strip {
    border-radius: 26px;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  .status-panel h2 {
    font-size: 2.1rem;
  }
}