:root {
  --bg: #f3ecdf;
  --bg-deep: #d9c8a9;
  --surface: rgba(255, 251, 244, 0.88);
  --surface-strong: #fffaf2;
  --ink: #17212b;
  --muted: #5f695f;
  --line: rgba(23, 33, 43, 0.12);
  --brass: #b67a31;
  --brass-deep: #8d5820;
  --forest: #2e5b53;
  --shadow: 0 24px 60px rgba(23, 33, 43, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --site-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Avenir Next', 'Trebuchet MS', 'Segoe UI', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(182, 122, 49, 0.26), transparent 28rem),
    radial-gradient(circle at 85% 15%, rgba(46, 91, 83, 0.18), transparent 24rem),
    linear-gradient(180deg, #f8f3ea 0%, var(--bg) 45%, #efe6d8 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: '';
  position: fixed;
  inset: auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  top: -4rem;
  right: -4rem;
  background: rgba(182, 122, 49, 0.22);
}

.site-shell::after {
  bottom: -6rem;
  left: -5rem;
  background: rgba(46, 91, 83, 0.18);
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--site-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 1rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.wordmark-logo {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-main {
  padding: 1.25rem 0 3rem;
}

.card,
.panel,
.policy-section {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.card {
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(182, 122, 49, 0.22);
  color: var(--forest);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.policy-hero h1 {
  margin: 0;
  font-family: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero p,
.policy-hero p,
.panel p,
.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.footer-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.simple-hero {
  display: grid;
  gap: 1.25rem;
  text-align: center;
  justify-items: center;
  padding: 2.5rem 2rem;
}

.logo-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 250px);
  height: 250px;
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

.logo-lockup img {
  width: 100%;
  max-width: 250px;
  max-height: 250px;
  height: auto;
  object-fit: contain;
}

.coming-soon {
  font-family: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--forest);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--brass), var(--brass-deep));
  color: #fff8ef;
  box-shadow: 0 16px 30px rgba(182, 122, 49, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(23, 33, 43, 0.12);
  color: var(--ink);
}

.panel {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.panel h2,
.policy-section h2 {
  margin: 0 0 0.75rem;
  font-family: 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Georgia, serif;
  font-size: 1.6rem;
}

.panel ul,
.policy-section ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.panel li,
.policy-section li {
  margin-bottom: 0.6rem;
}

.pill-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.pill {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 33, 43, 0.1);
  color: var(--ink);
  font-size: 0.9rem;
}

.site-footer {
  padding: 0 0 2.25rem;
}

.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

.footer-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-note a {
  color: var(--forest);
}

.policy-main {
  display: grid;
  gap: 1.1rem;
}

.policy-hero {
  border-radius: var(--radius-xl);
  padding: 1.8rem 2rem;
}

.policy-meta {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.policy-section {
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
}

.policy-section ol,
.policy-section ul {
  margin-bottom: 0;
}

.policy-section strong {
  color: var(--ink);
}

.fine-print {
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .hero h1,
  .policy-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }
}

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

  .site-nav,
  .footer-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .card,
  .panel,
  .policy-hero,
  .policy-section {
    padding: 1.25rem;
  }

  .logo-lockup {
    height: auto;
    min-height: 220px;
  }
}
