:root {
  --cream-bg: #f4ede4;
  --page-bg: #f7f2e9;
  --surface-warm: #fbf7f1;
  --brand-border: rgba(26, 24, 21, 0.08);
  --brand-ink: #1f1b17;
  --brand-ink-muted: #6b6258;
  --brand-rust: #c0532b;
  --brand-rust-dark: #8f3d20;
  --shadow-warm: rgba(26, 24, 21, 0.08);
  --font-sans: "Geist", "Geist Fallback", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "Geist Mono Fallback", ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

@font-face {
  font-family: "Geist";
  src: url("./fonts/geist-sans.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("./fonts/geist-mono.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--brand-ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--brand-rust);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--brand-border);
  background: color-mix(in srgb, var(--page-bg) 94%, transparent);
  padding: 16px clamp(20px, 5vw, 64px);
  backdrop-filter: blur(12px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark-frame {
  display: inline-grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1.5px solid var(--brand-rust);
  border-radius: 999px;
  background: var(--surface-warm);
}

.brand-mark {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.wordmark {
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark-llc {
  color: var(--brand-ink-muted);
  font-size: 0.9em;
  letter-spacing: 0.14em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  color: var(--brand-ink-muted);
  font-size: 13px;
  font-weight: 600;
}

.section-pad {
  padding: 72px clamp(20px, 5vw, 64px);
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--brand-border);
  background:
    radial-gradient(circle at 78% 42%, #e9c4a0 0%, #efd0b4 34%, #f4e4d4 64%, var(--page-bg) 100%);
}

.hero-inner,
.flagship-card,
.principles-section,
.why-card {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.hero-inner {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.hero-copy-block {
  min-width: 0;
}

.hero-character {
  align-self: end;
  justify-self: center;
  width: min(100%, 430px);
  margin: 0;
  pointer-events: none;
}

.hero-character img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow,
.product-kicker,
.principle-number {
  margin: 0;
  color: var(--brand-rust);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  margin-top: 20px;
  color: var(--brand-ink);
  font-size: clamp(48px, 11vw, 96px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 span {
  color: var(--brand-rust);
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--brand-ink-muted);
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.65;
}

.flagship-card {
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  background: var(--surface-warm);
  padding: clamp(24px, 5vw, 44px);
}

.flagship-content {
  display: grid;
  gap: 28px;
  align-items: end;
  margin-top: 18px;
}

.flagship-content h2,
.section-heading h2,
.why-card h2 {
  margin-bottom: 12px;
  color: var(--brand-ink);
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 650;
  line-height: 1.05;
}

.flagship-content p,
.principle-card p,
.why-card p {
  margin-bottom: 0;
  color: var(--brand-ink-muted);
  font-size: 17px;
  line-height: 1.7;
}

.cta {
  display: inline-flex;
  min-height: 48px;
  width: max-content;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand-rust);
  color: var(--page-bg);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0 20px;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.cta:hover {
  background: var(--brand-rust-dark);
  color: var(--page-bg);
  transform: translateY(-2px);
}

.principles-section {
  border-top: 1px solid var(--brand-border);
}

.section-heading {
  max-width: 720px;
}

.principle-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.principle-card,
.why-card {
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface-warm) 86%, var(--page-bg));
  padding: 24px;
}

.principle-card h3 {
  margin-bottom: 10px;
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.2;
}

.why-section {
  border-top: 1px solid var(--brand-border);
}

.why-card {
  max-width: 760px;
}

.why-card a {
  color: var(--brand-rust);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--brand-border);
  padding: 28px clamp(20px, 5vw, 64px);
}

.site-footer p {
  width: min(100%, 1120px);
  margin-left: auto;
  margin-right: auto;
}

.dedication,
.legal {
  color: var(--brand-ink-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
}

.dedication {
  margin-bottom: 10px;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.legal a {
  color: var(--brand-rust);
}

@media (min-width: 720px) {
  .nav-links {
    display: flex;
  }

  .flagship-content {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

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

  .section-pad {
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-character {
    width: min(86vw, 340px);
    margin-top: 12px;
  }

  .cta {
    width: 100%;
  }
}
