:root {
  color-scheme: light;
  --background: #fffaf2;
  --surface: #ffffff;
  --ink: #211b19;
  --muted: #71635e;
  --line: #eadccb;
  --brand: #a92b71;
  --green: #2b6335;
  --gold: #b57b26;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 56px);
  position: sticky;
  top: 0;
  z-index: 2;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 14px;
}

.brand img {
  height: 58px;
  width: 58px;
}

.brand strong {
  display: block;
  font-size: 21px;
}

.brand span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: -4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
}

.hero,
.page {
  margin: 0 auto;
  max-width: 1040px;
  padding: clamp(34px, 7vw, 76px) clamp(18px, 5vw, 48px);
}

.hero {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
}

.hero h1,
.page h1 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 0.98;
  margin: 0 0 22px;
}

.hero p,
.lead {
  color: var(--muted);
  font-size: 20px;
  margin: 0 0 24px;
}

.hero-logo {
  align-self: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}

.hero-logo img {
  max-width: 210px;
  width: 100%;
}

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

.button {
  background: var(--brand);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  padding: 12px 18px;
}

.button.secondary {
  background: var(--green);
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 34px;
}

.card,
.section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card h2,
.section h2 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.card p,
.section p,
.section li {
  color: var(--muted);
}

.section {
  margin-top: 18px;
}

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

.notice {
  background: #f7eddf;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  padding: 14px 16px;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 28px clamp(18px, 5vw, 56px);
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

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