:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --text: #171918;
  --muted: #666b67;
  --line: #e3e5df;
  --accent: #b85d2e;
  --accent-dark: #8f4623;
  --dark: #1e2421;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(20, 24, 21, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(247, 247, 244, 0.88);
  border-bottom: 1px solid rgba(227, 229, 223, 0.85);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; min-width: 190px; }
.brand-logo { height: 36px; width: auto; object-fit: contain; }
.brand-text {
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 1rem;
}
.brand-text span { font-weight: 500; letter-spacing: 0; }
.text-link { font-size: .92rem; color: var(--muted); transition: color .2s ease; }
.text-link:hover { color: var(--accent); }

.brand-logo {
  height: 54px;
  width: auto;
}

.hero {
  padding: 120px 0 110px;
  max-width: 1020px;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 500px;
  right: -220px;
  top: 35px;

  background: url("/logo.png") center / contain no-repeat;

  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;

}  object-fit: contain;
}

.eyebrow, .section-kicker {
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .98;
  letter-spacing: -0.055em;
  max-width: 1000px;
  margin: 18px 0 28px;
}
.hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-note { color: var(--muted); font-size: .92rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--dark); color: white; box-shadow: 0 10px 24px rgba(20, 24, 21, .12); }
.button-primary:hover { background: #111512; }
.button-light { background: white; color: var(--dark); }

.section { padding: 52px 0 90px; }
.section-head { margin-bottom: 28px; }
.section-head h2, .statement-card h2, .cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}
.split-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: end;
}
.section-copy { color: var(--muted); max-width: 520px; margin-bottom: 4px; }

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .mini-card, .statement-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card {
  padding: 30px;
  min-height: 265px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #d5d8d1;
}
.card-number { color: var(--accent); font-weight: 700; font-size: .82rem; }
.card h3 { font-size: 1.35rem; margin: 52px 0 12px; }
.card p { color: var(--muted); margin-bottom: 0; }

.compact-grid { gap: 14px; }
.mini-card {
  padding: 24px;
  font-weight: 700;
  min-height: 96px;
  display: flex;
  align-items: center;
}

.statement-card { padding: 48px; }
.statement-card p:last-child {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.08rem;
  margin: 20px 0 0;
}

.cta-card {
  background: var(--dark);
  color: white;
  border-radius: 26px;
  padding: 48px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.cta-card .section-kicker { color: #e7b092; }
.cta-card h2 { max-width: 760px; }

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 30px;
}
.footer-grid {
  min-height: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.site-footer p { color: var(--muted); margin: 6px 0 0; }
.footer-contact { display: grid; gap: 12px; text-align: right; }
.footer-contact > a { font-weight: 700; }
.footer-contact nav { display: flex; gap: 16px; justify-content: flex-end; color: var(--muted); font-size: .9rem; }
.footer-contact a:hover { color: var(--accent); }

.legal-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
}
.legal-card {
  width: min(760px, calc(100% - 40px));
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
}
.legal-card h1 { font-size: clamp(2.4rem, 7vw, 4.8rem); }
.legal-card p { color: var(--muted); }
.legal-card .warning { color: #7e3f22; font-weight: 700; }
.legal-card a { color: var(--accent-dark); font-weight: 700; }

.reveal { opacity: 0; transform: translateY(10px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 66px; }
  .text-link { display: none; }
  .hero { padding: 82px 0 70px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .section { padding: 38px 0 66px; }
  .grid-3, .split-head { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card h3 { margin-top: 30px; }
  .statement-card, .cta-card { padding: 30px; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .footer-grid { padding: 34px 0; align-items: flex-start; flex-direction: column; }
  .footer-contact { text-align: left; }
  .footer-contact nav { justify-content: flex-start; }
  .hero::before {
    width: 470px;
    height: 320px;
    right: -190px;
    top: 55px;
    opacity: 0.07;
  }
