
:root {
  --orange: #C85A00;
  --amber: #D97B20;
  --dark: #111009;
  --mid: #2C2B28;
  --muted: #787060;
  --light: #F7F5F0;
  --cream: #FAFAF7;
  --border: rgba(180,140,80,0.15);
  --border-strong: rgba(180,140,80,0.28);
}

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

body {
  font-family: 'Karla', sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 56px;
  background: rgba(250,250,247,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  max-width: min(200px, 45vw);
  object-fit: contain;
  display: block;
}

.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark span {
  color: var(--amber);
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
}

.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* HERO */
.hero {
  min-height: 100vh;
  padding: 140px 56px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(140px, 20vw, 260px);
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.022);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--light);
  max-width: 880px;
  margin-bottom: 36px;
}

.hero h1 em {
  font-style: italic;
  color: var(--amber);
}

.hero-statement {
  max-width: 620px;
  margin-bottom: 56px;
}

.hero-statement p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(247,245,240,0.55);
  line-height: 1.85;
  margin-bottom: 16px;
}

.hero-statement p strong {
  color: var(--light);
  font-weight: 400;
}

.hero-statement .punchline {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--amber);
  line-height: 1.5;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 760px;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 24px 28px;
}

.hero-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.hero-card-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,245,240,0.45);
  line-height: 1.75;
}

.hero-tagline {
  position: absolute;
  bottom: 48px; right: 56px;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(247,245,240,0.15);
  display: flex;
  gap: 10px;
}

.hero-tagline span { color: rgba(217,123,32,0.4); }

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong), transparent);
}

/* SECTION BASE */
section { padding: 96px 56px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* THE STRESS */
.stress {
  background: var(--light);
}

.stress-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.stress-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}

.stress-left h2 em {
  font-style: italic;
  color: var(--orange);
}

.stress-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
  max-width: 480px;
}

.stress-left p strong {
  color: var(--dark);
  font-weight: 500;
}

.stress-quote {
  margin-top: 36px;
  padding: 24px 28px;
  border-left: 3px solid var(--orange);
  background: white;
}

.stress-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.65;
  margin-bottom: 0;
}

.stress-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
}

.stress-header-box {
  background: var(--dark);
  padding: 36px 40px;
  margin-bottom: 2px;
}

.stress-header-box-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.stress-header-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--light);
  line-height: 1.35;
  margin-bottom: 12px;
}

.stress-header-box h3 em {
  font-style: italic;
  color: var(--amber);
}

.stress-header-box p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,245,240,0.45);
  line-height: 1.9;
}

.stress-item {
  background: white;
  border: 1px solid var(--border);
  padding: 22px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.stress-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 8px;
}

.stress-item-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
}

.stress-item-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* THE FLAW */
.flaw {
  background: var(--cream);
}

.flaw-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.flaw-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}

.flaw-left h2 em {
  font-style: italic;
  color: var(--orange);
}

.flaw-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
  max-width: 480px;
}

.flaw-left p strong {
  color: var(--dark);
  font-weight: 500;
}

.flaw-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flaw-reveal-box {
  background: var(--dark);
  padding: 48px 40px;
  border-left: 4px solid var(--amber);
  margin-bottom: 2px;
}

.flaw-reveal-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.flaw-reveal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--light);
  line-height: 1.35;
  margin-bottom: 16px;
}

.flaw-reveal-box h3 em {
  font-style: italic;
  color: var(--amber);
}

.flaw-reveal-box p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(247,245,240,0.5);
  line-height: 1.9;
  margin-bottom: 12px;
}

.flaw-reveal-box p:last-child { margin-bottom: 0; }

.flaw-properties {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flaw-property {
  background: white;
  border: 1px solid var(--border);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}

.flaw-property-num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(200,90,0,0.25);
  line-height: 1;
  padding-top: 2px;
}

.flaw-property-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
}

.flaw-property-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* THE TRACK RECORD */
.record {
  background: var(--light);
}

.record-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.record-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}

.record-left h2 em {
  font-style: italic;
  color: var(--orange);
}

.record-left p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
  max-width: 480px;
}

.attempts {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
}

.attempt-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.attempt-year {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--orange);
}

.attempt-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 2px;
}

.attempt-outcome {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

.record-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
}

.pattern-box {
  background: var(--dark);
  padding: 40px;
  margin-bottom: 2px;
}

.pattern-box-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.pattern-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--light);
  line-height: 1.35;
  margin-bottom: 12px;
}

.pattern-box h3 em {
  font-style: italic;
  color: var(--amber);
}

.pattern-box p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,245,240,0.45);
  line-height: 1.9;
}

.pattern-item {
  background: white;
  border: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pattern-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 8px;
}

.pattern-item-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 3px;
}

.pattern-item-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

/* THE SOLUTION */
.solution {
  background: var(--dark);
}

.solution .section-eyebrow {
  color: var(--amber);
}

.solution .section-eyebrow::before {
  background: var(--amber);
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.solution-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--light);
  margin-bottom: 24px;
}

.solution-left h2 em {
  font-style: italic;
  color: var(--amber);
}

.solution-left p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(247,245,240,0.45);
  line-height: 1.9;
  margin-bottom: 16px;
  max-width: 480px;
}

.solution-statement {
  margin-top: 36px;
  padding: 28px 32px;
  border-left: 3px solid var(--amber);
  background: rgba(255,255,255,0.03);
}

.solution-statement p {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  color: rgba(247,245,240,0.65);
  line-height: 1.7;
  margin-bottom: 10px;
}

.solution-statement cite {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  font-style: normal;
}

.solution-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.solution-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}

.solution-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(217,123,32,0.3);
  line-height: 1;
  padding-top: 2px;
}

.solution-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 6px;
}

.solution-card-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,245,240,0.4);
  line-height: 1.8;
}

/* FOUNDER */
.founder {
  background: var(--light);
  border-top: 1px solid var(--border);
}

.founder-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.founder .section-eyebrow {
  justify-content: center;
}

.founder-photo-wrap {
  margin: 0 auto 28px;
  max-width: 280px;
}

.founder-photo-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  border: 4px solid var(--border-strong);
  box-shadow: 0 24px 48px rgba(17, 16, 9, 0.12);
  display: block;
}

.founder-bio {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.founder-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}

.founder-title-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.founder-contact {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
}

.founder-contact a {
  color: var(--orange);
  text-decoration: none;
}

.founder-bio p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

.founder-bio p strong {
  color: var(--dark);
  font-weight: 500;
}

/* FOOTER */
footer {
  background: var(--dark);
  padding: 40px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: rgba(247,245,240,0.25);
}

.footer-tagline span { color: rgba(217,123,32,0.5); }

.footer-copy {
  font-size: 11px;
  color: rgba(247,245,240,0.18);
  letter-spacing: 0.06em;
}

/* FADE */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section, .hero { padding: 80px 24px; }
  .stress-inner, .flaw-inner, .record-inner, .solution-inner, .founder-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards { grid-template-columns: 1fr; }
  .hero-tagline { display: none; }
  footer { flex-direction: column; gap: 12px; text-align: center; padding: 32px 24px; }
}


/* Print / Save as PDF */
.print-button {
  position: fixed;
  left: 50%;
  /* Below fixed nav (logo ~44px + vertical padding ~36px) */
  top: 86px;
  transform: translateX(-50%);
  z-index: 90;
  padding: 10px 18px;
  font-family: 'Karla', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
  background: var(--dark);
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.print-button:hover {
  background: var(--orange);
  color: var(--light);
  border-color: var(--orange);
}

@media print {
  .print-button { display: none !important; }
  nav { position: static; }
}

@media (max-width: 768px) {
  .print-button { top: 78px; }
}
