:root {
  --bg: #f5efe5;
  --bg-deep: #eadcc4;
  --text: #21180f;
  --muted: #6d5b48;
  --line: rgba(33, 24, 15, 0.12);
  --panel: rgba(255, 250, 241, 0.75);
  --panel-strong: rgba(255, 247, 235, 0.9);
  --accent: #17604b;
  --accent-soft: #d3eadb;
  --shadow: 0 24px 80px rgba(55, 35, 13, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 38%),
    radial-gradient(circle at bottom right, rgba(23, 96, 75, 0.12), transparent 30%),
    linear-gradient(140deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 28px;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(to right, rgba(33, 24, 15, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(33, 24, 15, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.topbar,
.hero,
.details-grid,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 72px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(160deg, #214e3f 0%, #163128 100%);
  color: #f7f1e7;
  font-family: "Instrument Serif", serif;
  font-size: 1.6rem;
  line-height: 1;
}

.brand-name,
.contact-link,
.eyebrow,
.detail-label,
.footer {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-link {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.status-card,
.detail-card {
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  border-radius: 32px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  color: var(--muted);
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-family: "Instrument Serif", serif;
  font-size: clamp(3.2rem, 10vw, 7.2rem);
  line-height: 0.92;
  font-weight: 400;
}

.lede {
  max-width: 38rem;
  margin: 28px 0 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.cta.primary {
  background: var(--text);
  color: #f7f1e7;
}

.cta.secondary {
  border: 1px solid rgba(33, 24, 15, 0.15);
  background: rgba(255, 255, 255, 0.55);
}

.status-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.95), rgba(240, 231, 215, 0.84)),
    var(--panel-strong);
}

.status-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #33a35b;
  box-shadow: 0 0 0 8px rgba(51, 163, 91, 0.12);
}

.status-list {
  margin: 26px 0;
  padding-left: 20px;
  display: grid;
  gap: 16px;
  line-height: 1.55;
}

.status-note {
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}

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

.detail-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
}

.accent-card {
  background:
    linear-gradient(160deg, rgba(23, 96, 75, 0.92), rgba(25, 49, 39, 0.92)),
    var(--panel);
  color: #f7f1e7;
}

.accent-card .detail-label,
.accent-card .detail-copy {
  color: inherit;
}

.detail-label {
  margin: 0 0 16px;
  font-size: 0.76rem;
  color: var(--muted);
}

.detail-copy {
  margin: 0;
  line-height: 1.75;
  color: #463626;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding: 0 6px;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 18px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
  }

  .hero-copy,
  .status-card,
  .detail-card {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 26px;
  }

  .status-card,
  .detail-card {
    padding: 22px;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
