:root {
  color-scheme: light;
  --ink: #1e2a30;
  --muted: #647176;
  --line: #d8e0dd;
  --paper: #fbfaf6;
  --sage: #dce9df;
  --teal: #0d6b68;
  --coral: #d96b57;
  --gold: #d5a441;
  --white: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a { color: inherit; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(30, 42, 48, 0.12);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

nav a { text-decoration: none; }
nav a:hover { color: var(--teal); }

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 84px);
  background:
    linear-gradient(130deg, rgba(220, 233, 223, 0.96), rgba(251, 250, 246, 0.82)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Crect width='1400' height='900' fill='%23dce9df'/%3E%3Cpath d='M0 680C220 600 310 448 501 498c153 40 237 201 415 146 130-40 183-170 334-193 70-11 120 2 150 14v435H0Z' fill='%23f4d0c5'/%3E%3Cpath d='M905 107c138 10 237 113 222 223-15 111-139 187-277 177-138-11-237-113-222-224 15-110 139-187 277-176Z' fill='%23f7e2a7' opacity='.8'/%3E%3Cpath d='M156 254c99-61 219-40 269 46s10 206-89 267-220 41-270-45-10-207 90-268Z' fill='%23ffffff' opacity='.65'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 880px;
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.lede {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 20px;
  color: #314146;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
}

.button--quiet {
  background: transparent;
  color: var(--teal);
}

.hero__panel {
  display: grid;
  gap: 14px;
}

.brand-card {
  display: grid;
  place-items: center;
  min-height: 240px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(30, 42, 48, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(30, 42, 48, 0.08);
}

.brand-card img,
.archive-logo img {
  display: block;
  max-width: min(100%, 260px);
  height: auto;
}

.hero__panel > div,
.grid article,
.split article,
.preview-form {
  border: 1px solid rgba(30, 42, 48, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(30, 42, 48, 0.08);
}

.hero__panel > div {
  padding: 22px;
}

.stat {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-weight: 900;
}

.band,
.section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 6vw, 84px);
}

.band {
  background: var(--white);
}

.band--warm {
  background: #f8eee5;
}

.band > p,
.section__head p {
  max-width: 880px;
  color: var(--muted);
  font-size: 18px;
}

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

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

.grid article,
.split article {
  padding: 24px;
}

.grid p,
.split p,
.hero__panel p {
  margin: 0;
  color: var(--muted);
}

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

.pillrow span {
  padding: 9px 12px;
  border: 1px solid rgba(13, 107, 104, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal);
  font-weight: 750;
  font-size: 14px;
}

.story-tease .section__head {
  max-width: 940px;
}

.image-row,
.archive-gallery {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.image-row {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: start;
}

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

figure {
  margin: 0;
}

.image-row figure,
.archive-gallery figure {
  overflow: hidden;
  border: 1px solid rgba(30, 42, 48, 0.13);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(30, 42, 48, 0.08);
}

.image-row img,
.archive-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.image-row figure:first-child img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.subhero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 70vh;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 6vw, 84px);
  background: linear-gradient(130deg, rgba(220, 233, 223, 0.98), rgba(248, 238, 229, 0.92));
}

.archive-logo {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(30, 42, 48, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(30, 42, 48, 0.08);
}

.preview-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  padding: 24px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #eef2f0;
  color: var(--muted);
  font: inherit;
}

textarea { min-height: 120px; }
label:has(textarea),
.preview-form button { grid-column: 1 / -1; }

.preview-form button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

footer {
  display: grid;
  gap: 8px;
  padding: 28px clamp(18px, 6vw, 84px);
  border-top: 1px solid rgba(30, 42, 48, 0.12);
  color: var(--muted);
  font-size: 14px;
}

footer p { margin: 0; }

@media (max-width: 900px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero,
  .subhero,
  .split,
  .grid,
  .image-row,
  .archive-gallery,
  .preview-form {
    grid-template-columns: 1fr;
  }
  h1 { font-size: clamp(40px, 13vw, 66px); }
}
