:root {
  --bg: #f7f2ea;
  --bg-soft: #fffaf3;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --border: rgba(87, 62, 29, 0.14);
  --text: #1e1a16;
  --text-soft: #5d5448;
  --accent: #d8a247;
  --accent-strong: #b67e25;
  --shadow: 0 24px 60px rgba(84, 59, 28, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 200, 126, 0.38), transparent 32%),
    radial-gradient(circle at bottom right, rgba(205, 158, 78, 0.18), transparent 30%),
    linear-gradient(180deg, #fbf7f0 0%, #f7f2ea 52%, #f3ece2 100%);
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 247, 240, 0.82);
  border-bottom: 1px solid rgba(87, 62, 29, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #f0bf69 100%);
  color: #261805;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text {
  font-size: 1.05rem;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover,
.nav a.is-active {
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
}

.hero {
  padding: 40px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.card,
.hero-copy,
.hero-side,
.section-card,
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy,
.hero-side,
.section-card,
.legal-card {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 40px;
}

.hero-side,
.section-card,
.legal-card {
  padding: 28px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.06;
}

h3 {
  font-size: 1.18rem;
}

.lead,
.muted,
.hero-side p,
.feature-card p,
.legal-body,
.legal-body p,
.legal-body li,
.legal-body small {
  color: var(--text-soft);
}

.lead {
  margin-top: 18px;
  max-width: 56ch;
  font-size: 1.08rem;
  line-height: 1.72;
}

.button-row,
.cta-row,
.info-list,
.feature-grid,
.footer-row {
  display: flex;
}

.button-row,
.cta-row {
  flex-wrap: wrap;
  gap: 14px;
}

.button-row {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #f0bb5a 100%);
  color: #241602;
  box-shadow: 0 18px 30px rgba(216, 162, 71, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  color: var(--text);
}

.info-list {
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.info-item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid rgba(87, 62, 29, 0.1);
}

.info-item strong {
  display: block;
  margin-bottom: 6px;
}

.section {
  padding: 18px 0 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-copy {
  max-width: 54ch;
  line-height: 1.72;
  color: var(--text-soft);
}

.feature-grid {
  gap: 18px;
}

.feature-card {
  flex: 1 1 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(87, 62, 29, 0.12);
}

.feature-card p {
  margin-top: 10px;
  line-height: 1.72;
}

.section-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-layout {
  padding: 32px 0 38px;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
}

.legal-body {
  margin-top: 24px;
  line-height: 1.8;
}

.legal-body h2 {
  margin-top: 26px;
  font-size: 1.28rem;
  line-height: 1.35;
}

.legal-body p,
.legal-body ul,
.legal-body ol,
.legal-body .box,
.legal-body hr {
  margin-top: 14px;
}

.legal-body ul,
.legal-body ol {
  padding-left: 20px;
}

.legal-body a {
  color: var(--accent-strong);
}

.legal-body .box {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(87, 62, 29, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.site-footer {
  padding: 16px 0 34px;
}

.footer-row {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(87, 62, 29, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .header-row,
  .section-head,
  .section-card,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero-copy,
  .hero-side,
  .section-card,
  .legal-card {
    padding: 24px;
  }
}
