:root {
  --cream: #f5efe6;
  --paper: #faf7f1;
  --ink: #1f1a14;
  --ink-soft: #3d332a;
  --muted: #6b5e50;
  --terracotta: #e35336;
  --terracotta-deep: #8f3d28;
  --gold: #c8a160;
  --hairline: #d8cfbf;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
}

h1 .em, h2 .em, h3 .em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta-deep);
}

.serif {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(250, 247, 241, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--hairline); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--terracotta); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--terracotta-deep);
}

.nav-cta {
  font-size: 14px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--ink); border-radius: 999px;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }

/* HERO */
.hero {
  padding: 240px 0 240px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 55%; height: 90%;
  background: radial-gradient(ellipse, rgba(200, 161, 96, 0.1), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--terracotta);
}

.hero h1 {
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 1.02;
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
  max-width: 560px;
}
.hero h1 .em {
  font-style: italic;
  color: var(--terracotta-deep);
}

.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--paper);
  padding: 18px 32px; border: none; border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
}
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.btn-text {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px; font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-soft);
  transition: all 0.3s;
}
.btn-text:hover { color: var(--terracotta-deep); border-bottom-color: var(--terracotta-deep); }

/* HERO IMAGE */
.hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: 100%;
  height: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: 60px;
  border: 1px solid var(--hairline);
  display: block;
  box-shadow: 0 24px 60px rgba(31, 26, 20, 0.18), 0 4px 12px rgba(31, 26, 20, 0.08);
  filter: saturate(1.02) contrast(1.01);
}

/* SECTIONS */
section { padding: 240px 0; }

h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
h2 .em { font-style: italic; color: var(--terracotta-deep); }

/* SIGNS */
.signs-section { background: var(--cream); }
.signs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.signs-intro h2 { 
  font-size: clamp(32px, 3.8vw, 48px);
  max-width: 520px;
}
.signs-intro p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 20px;
}

.signs { display: flex; flex-direction: column; }
.sign {
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
  font-weight: 300;
}
.sign:first-child { border-top: 1px solid var(--hairline); }
.sign .italic { font-style: italic; color: var(--terracotta-deep); }

/* PERMISSION */
.permission {
  background: var(--paper);
  text-align: center;
  padding: 320px 0;
}
.permission-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.25;
  font-weight: 300;
  color: var(--ink);
}
.permission-quote .em {
  font-style: italic;
  color: var(--terracotta-deep);
}

/* SYSTEM */
.system {
  background: #ece3d4;
  padding: 280px 0;
}
.system-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.system-left h2 {
  max-width: 520px;
}
.system-left p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.system-left .sub-heading {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.system-left .sub-heading:first-of-type {
  margin-top: 32px;
}
.system-left strong { color: var(--ink); font-weight: 500; }

.system-card {
  background: var(--paper);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--hairline);
}
.stat { padding: 22px 0; border-bottom: 1px solid var(--hairline); }
.stat:first-child { padding-top: 0; }
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--terracotta-deep);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* COMPARE */
.different {
  background: var(--paper);
  color: var(--ink-soft);
  padding: 280px 0;
  position: relative;
  overflow: hidden;
}
.different::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(ellipse, rgba(227, 83, 54, 0.06), transparent 60%);
  pointer-events: none;
}
.different h2 { 
  color: var(--ink);
  max-width: 600px;
}
.different .eyebrow { color: var(--terracotta); }
.different .eyebrow::before { background: var(--terracotta); }

.diff-header { max-width: 760px; margin-bottom: 64px; position: relative; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
}
.compare-col {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--hairline);
}
.compare-col:first-child {
  background: linear-gradient(180deg, #f9e8e1 0%, #f5ded4 100%);
  border-color: rgba(227, 83, 54, 0.2);
}
.compare-col:last-child {
  background: var(--cream);
}

.compare-label {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
}
.compare-col:first-child .compare-label {
  background: rgba(227, 83, 54, 0.15);
  color: var(--terracotta-deep);
}
.compare-col:last-child .compare-label {
  background: var(--ink);
  color: var(--paper);
}
.compare-item {
  padding: 18px 0;
  font-family: 'Fraunces', serif;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 300;
  border-bottom: 1px solid var(--hairline);
}
.compare-item:last-child {
  border-bottom: none;
}
.compare-col:first-child .compare-item {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(143, 61, 40, 0.4);
  border-bottom-color: rgba(227, 83, 54, 0.15);
}
.compare-col:first-child .compare-item:last-child { border-bottom: none; }
.compare-col:last-child .compare-item { color: var(--ink); }
.compare-col:last-child .compare-item .em { color: var(--terracotta-deep); font-style: italic; }

/* FEATURE QUOTE */
.feature-quote {
  background: var(--paper);
  padding: 320px 0;
}
.fq-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.fq-mark {
  font-family: 'Fraunces', serif;
  font-size: 100px;
  line-height: 0.5;
  color: var(--terracotta);
  opacity: 0.4;
  display: block;
  margin-bottom: 24px;
}
.fq-inner blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.3;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 32px;
}
.fq-inner blockquote .em {
  font-style: italic;
  color: var(--terracotta-deep);
}
.fq-attr {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* HOW IT WORKS */
.howitworks {
  background: var(--cream);
  padding: 280px 0;
}
.how-header { 
  margin-bottom: 64px; 
  max-width: 720px; 
}
.how-header h2 { 
  margin-bottom: 0;
  max-width: 560px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.step {
  background: var(--paper);
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid var(--hairline);
  transition: all 0.3s;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--terracotta);
  box-shadow: 0 8px 24px rgba(31, 26, 20, 0.06);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.step h3 {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 16px;
}
.step h3 .em { font-style: italic; color: var(--terracotta-deep); }
.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* FOUNDERS */
.founders { background: var(--paper); padding: 280px 0; }
.founders h2 { 
  max-width: 560px; 
  margin-bottom: 56px; 
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.founder {
  background: var(--cream);
  padding: 32px 24px;
  border: 1px solid var(--hairline);
  border-radius: 24px;
  transition: all 0.3s;
}
.founder:hover {
  border-color: var(--terracotta);
  transform: translateY(-2px);
}
.founder-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 60px;
  border: 1px solid var(--hairline);
  margin-bottom: 24px;
  background: var(--paper);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  filter: saturate(1.02);
  transition: transform 0.6s ease;
}
.founder:hover .founder-photo img {
  transform: scale(1.03);
}
/* Per-founder photo framing tweaks */
.founder[data-person="irene"] .founder-photo img { object-position: center 20%; }
.founder[data-person="lisa"] .founder-photo img { object-position: center 30%; }
.founder[data-person="juanita"] .founder-photo img { object-position: center 35%; }
.founder[data-person="nick"] .founder-photo img { object-position: 78% 30%; }
.founder-name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--ink);
}
.founder-role {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 500;
}
.founder-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
.founder-bio strong { color: var(--ink); font-weight: 500; }

/* FAQ */
.faq { background: var(--cream); padding: 280px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq-header h2 { margin-bottom: 20px; }
.faq-header p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--terracotta-deep); }
.faq-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  position: relative;
  transition: transform 0.4s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all 0.3s;
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s; }
.faq-answer-inner {
  padding: 0 0 28px 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.faq-answer-inner strong { color: var(--ink); font-weight: 500; }
.faq-item.open .faq-answer { max-height: 400px; }

/* FINAL CTA */
.final-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 320px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120%; height: 120%;
  background: radial-gradient(ellipse, rgba(184, 84, 58, 0.15), transparent 50%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 2; }
.final-cta h2 {
  color: var(--cream);
  font-size: clamp(38px, 5vw, 68px);
  max-width: 840px;
  margin: 0 auto 24px;
}
.final-cta h2 .em { color: var(--gold); font-style: italic; }
.final-cta p {
  font-size: 19px;
  color: rgba(245, 239, 230, 0.7);
  max-width: 520px;
  margin: 0 auto 40px;
}
.btn-cream {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--cream); color: var(--ink);
  padding: 20px 36px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 500;
  text-decoration: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-cream:hover { background: var(--gold); transform: translateY(-2px); }
.btn-cream .arrow { transition: transform 0.3s; }
.btn-cream:hover .arrow { transform: translateX(4px); }
.final-note {
  margin-top: 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.5);
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(245, 239, 230, 0.6);
  padding: 40px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
}
.foot-grid {
  display: flex; justify-content: space-between;
  align-items: center; gap: 24px; flex-wrap: wrap;
}
.foot-logo {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--cream);
}
.foot-logo span { color: var(--gold); font-style: italic; }
.foot-copy { font-size: 13px; }

/* RESPONSIVE */
@media (max-width: 980px) {
  section { padding: 160px 0; }
  .permission { padding: 200px 0; }
  .feature-quote { padding: 200px 0; }
  .final-cta { padding: 200px 0; }
  .wrap, .narrow { padding: 0 24px; }
  .hero { padding: 140px 0 140px; }
  .hero-grid, .signs-grid, .system-grid, .faq-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .steps { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr; gap: 20px; }
  .compare-col:first-child, .compare-col:last-child {
    padding: 32px;
  }
  .hero-visual { height: 480px; }
  .nav-links { display: none; }
  .nav-container { gap: 20px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 120px 0; }
  .permission { padding: 150px 0; }
  .feature-quote { padding: 150px 0; }
  .final-cta { padding: 150px 0; }
  .hero { padding: 100px 0; }
  .hero h1 { font-size: 44px; }
  .hero-sub { font-size: 18px; }
  .hero-visual { height: 440px; margin-right: 0; }
  .foot-grid { flex-direction: column; align-items: flex-start; }
  .founders-grid { grid-template-columns: 1fr; }
}
