:root {
  --bg: #F7F6F2;
  --ink: #0E1116;
  --ink-soft: #4A4D54;
  --rule: #D8D6CE;
  --accent: #E5462A;
  --accent-soft: #F4E0D9;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow {
  max-width: 760px;
}
/* NAV */
nav {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.04em;
}
.wordmark a {
  color: var(--ink);
  text-decoration: none;
}
.nav-cta {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
/* HERO */
.hero {
  padding: 140px 0 160px;
  border-bottom: 1px solid var(--rule);
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 32px;
}
.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}
.hero .sub {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.45;
}
.ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.15s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
/* SECTIONS */
section {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
}
.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
h1, h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  max-width: 760px;
  margin-bottom: 48px;
}
.page-h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 24px;
  margin-top: 0;
}
.lead {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.5;
}
.arch-note {
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.5;
  margin-top: 32px;
  padding: 16px 20px;
  border-left: 2px solid var(--accent);
  background: rgba(229, 70, 42, 0.04);
  font-family: 'Inter', sans-serif;
}
/* PILLARS (legacy — preserved for any future use) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 72px;
}
.pillar h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 16px;
}
.pillar p {
  color: var(--ink-soft);
  font-size: 16px;
}
.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}
@media (max-width: 720px) {
  .pillars { grid-template-columns: 1fr; gap: 40px; }
}
/* PRODUCT MOCK */
.product-mock {
  margin-top: 56px;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 32px;
  max-width: 880px;
}
.mock-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rule); }
.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 720px) {
  .mock-grid { grid-template-columns: 1fr; }
}
.mock-card {
  border: 1px solid var(--rule);
  padding: 20px;
  font-size: 14px;
}
.mock-card .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.mock-card .asset {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.check { display: flex; gap: 8px; align-items: center; font-size: 13px; margin-bottom: 6px; }
.check .pass { color: #2D7A3D; }
.check .fail { color: var(--accent); font-weight: 500; }
.verdict {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 500;
}
.verdict.pass { color: #2D7A3D; }
.verdict.fail { color: var(--accent); }
/* QUOTE */
.quote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
  max-width: 880px;
  letter-spacing: -0.005em;
}
.quote .accent { color: var(--accent); }
.quote-attr {
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
/* FOUNDER */
.founder {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 880px;
}
@media (max-width: 720px) {
  .founder { grid-template-columns: 1fr; gap: 32px; }
}
.founder-photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent-soft);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 64px;
  color: var(--accent);
  flex-shrink: 0;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.02);
}
.founder-name {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  margin-bottom: 8px;
}
.founder-role {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.founder-bio { color: var(--ink-soft); margin-bottom: 16px; }
/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 160px 0;
}
.final-cta h2 {
  margin: 0 auto 32px;
  text-align: center;
  font-size: clamp(40px, 5vw, 64px);
}
.final-cta .sub {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto 48px;
  font-size: 18px;
}
/* LEGAL / ABOUT PAGE CONTENT */
.page-section {
  padding: 80px 0 120px;
  border-bottom: 1px solid var(--rule);
}
.page-section h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 56px;
  margin-bottom: 20px;
  max-width: 100%;
}
.page-section h2:first-of-type { margin-top: 0; }
.page-section h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}
.page-section p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 720px;
}
.page-section ul {
  color: var(--ink-soft);
  margin-bottom: 16px;
  padding-left: 24px;
  max-width: 720px;
}
.page-section ul li { margin-bottom: 6px; }
.page-section a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.meta-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 56px;
  padding: 14px 18px;
  border-left: 2px solid var(--rule);
  background: white;
  max-width: 720px;
}
/* CTA FALLBACK (visible email next to buttons — for users without a mail client) */
.cta-fallback {
  margin-top: 24px;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.cta-fallback a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.cta-fallback a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
/* REVEAL-ON-SCROLL — subtle fade + lift, honors reduced-motion */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* FOOTER */
footer {
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-soft);
}
footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.footer-links a:hover { border-bottom-color: var(--ink-soft); }
footer a { color: var(--ink-soft); text-decoration: underline; }
@media (max-width: 720px) {
  footer .container { flex-direction: column; align-items: flex-start; }
}
