:root {
  --bg: #f6f0e6;
  --ink: #1d2a2f;
  --muted: #5f6d6f;
  --line: rgba(29, 42, 47, 0.12);
  --sun-deep: #db6c2b;
  --sky: #78a7ac;
  --sea: #2f6066;
  --card: rgba(255, 250, 242, 0.78);
  --shadow: 0 18px 50px rgba(54, 54, 44, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(240, 164, 50, 0.2), transparent 32%),
    linear-gradient(180deg, #f4e7d2 0%, var(--bg) 28%, #efe7dc 100%);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

.wrap {
  width: min(1100px, calc(100vw - 32px));
  margin: 0 auto;
}

.stack {
  display: grid;
  gap: 22px;
  padding: 32px 0 56px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 40px;
  border-bottom: 1px solid rgba(29, 42, 47, 0.08);
}

.hero--compact {
  padding: 68px 0 30px;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.hero__glow--sun {
  top: -42px;
  right: 8%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(240, 164, 50, 0.8), rgba(240, 164, 50, 0));
}

.hero__glow--sky {
  top: 60px;
  left: -40px;
  width: 320px;
  height: 160px;
  background: radial-gradient(circle, rgba(120, 167, 172, 0.38), rgba(120, 167, 172, 0));
}

.eyebrow,
.section-label,
.metric-card__label {
  margin: 0;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea);
  font-size: 0.78rem;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 9.5ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.lede {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 1.15rem;
  color: var(--muted);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__meta span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(29, 42, 47, 0.08);
  box-shadow: 0 10px 24px rgba(60, 64, 54, 0.08);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.94rem;
}

.hero__actions {
  margin: 22px 0 0;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--sea);
  color: #fffaf2;
  text-decoration: none;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(47, 96, 102, 0.2);
}

.button--secondary {
  background: rgba(255, 250, 242, 0.82);
  color: var(--sea);
  border: 1px solid rgba(29, 42, 47, 0.12);
  box-shadow: 0 10px 24px rgba(60, 64, 54, 0.08);
}

.card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card--summary {
  padding: 28px;
}

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

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.metrics-grid,
.two-up {
  display: grid;
  gap: 22px;
}

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

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

.metric-card {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.95), rgba(253, 244, 231, 0.82));
  border: 1px solid rgba(29, 42, 47, 0.1);
  box-shadow: var(--shadow);
}

.metric-card__value {
  margin: 8px 0 6px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--sun-deep);
}

.metric-card__detail {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.clean-list {
  margin: 0;
  padding-left: 20px;
}

.clean-list li + li {
  margin-top: 10px;
}

.spec-grid {
  display: grid;
  grid-template-columns: minmax(110px, 150px) 1fr;
  gap: 10px 16px;
  margin: 0;
}

.spec-grid dt {
  font-weight: 700;
}

.spec-grid dd {
  margin: 0;
  color: var(--muted);
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(240, 164, 50, 0.18), rgba(255, 250, 242, 0.9) 40%),
    var(--card);
}

.notice-card {
  background:
    linear-gradient(135deg, rgba(219, 108, 43, 0.18), rgba(255, 250, 242, 0.96) 40%),
    var(--card);
  border: 1px solid rgba(219, 108, 43, 0.28);
  box-shadow: 0 18px 44px rgba(112, 71, 38, 0.14);
}

.notice-card h2 {
  color: var(--sun-deep);
}

.notice-card__actions {
  margin: 18px 0 0;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(29, 42, 47, 0.1);
}

th {
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sea);
}

td {
  font-size: 0.98rem;
}

a {
  color: var(--sea);
}

.report h2 {
  margin-top: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
}

.report h3 {
  margin-top: 24px;
  margin-bottom: 10px;
  font-size: 1.18rem;
  color: var(--sea);
}

.report h2 + p,
.report h2 + ul,
.report h2 + table {
  margin-top: 0;
}

@media (max-width: 920px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-up {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 68px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100vw - 20px, 1100px);
  }

  .stack {
    gap: 16px;
    padding-top: 20px;
    padding-bottom: 34px;
  }

  .card,
  .metric-card {
    padding: 18px;
    border-radius: 18px;
  }

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

  .hero__meta span {
    font-size: 0.88rem;
  }
}
