
:root {
  --oxford: #1a1a1a;
  --ink: #2d2d2d;
  --warm: #3d3d3d;
  --stone: #8a8279;
  --gold: #b5a06d;
  --accent: #D64933;
  --cream: #f5f1ea;
  --paper: #faf8f4;
  --white: #ffffff;
  --border: rgba(26, 26, 26, 0.08);
  --border-strong: rgba(26, 26, 26, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .logo, .price, .numeral {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--oxford);
}

h1 { font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; letter-spacing: -0.05em; color: var(--accent); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 400; }

a { color: var(--stone); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  padding: 20px 0;
  transition: all 0.4s ease;
  max-width: 100vw;
}

nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: #981c08;
  letter-spacing: 0.02em;
}

.logo a {
  color: inherit;
  transition: color 0.2s;
}

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

.nav-links a {
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: color 0.4s ease;
}

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

nav.scrolled .nav-links a {
  color: var(--warm);
}

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

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--accent);
  color: var(--cream);
  padding: 140px 0 100px;
  position: relative;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-right: 25%;
}

.hero h1 {
  color: #000000;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 900px;
  text-align: left;
  font-size: clamp(4rem, 8vw, 7rem);
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(245, 241, 234, 0.85);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 400;
  text-align: left;
}

.hero-cta {
  margin-top: 40px;
  text-align: left;
}

.hero-cta .btn {
  display: inline-block;
  padding: 16px 44px;
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #e6553f;
  background: #e6553f;
  color: #f5f1ea;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-cta .btn:hover {
  background: transparent;
  color: #f5f1ea;
  border-color: #f5f1ea;
}

/* Banners */
.banner {
  padding: 80px 0;
  text-align: center;
}

.banner-quote {
  background: var(--cream);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  padding: 100px 0;
}

.banner-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.35;
  color: var(--oxford);
}

.banner-quote cite {
  display: block;
  margin-top: 24px;
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--stone);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.banner-cta {
  background: var(--oxford);
  color: var(--cream);
  border-top: 1px solid var(--border-strong);
  padding: 100px 0;
}

.banner-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 300;
}

.banner-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--white);
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn:hover {
  background: var(--accent);
  color: var(--oxford);
  border-color: var(--accent);
}

.btn-dark {
  background: var(--accent);
  color: var(--oxford);
  border-color: var(--accent);
}

.btn-dark:hover {
  background: transparent;
  color: var(--accent);
}

/* Sections */
section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--accent);
}

.section-label {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 400;
  font-style: italic;
  color: var(--stone);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.section-header p {
  color: var(--stone);
  font-size: 1.05rem;
  max-width: 600px;
}

/* For You */
.for-you {
  background: var(--white);
}

.for-you-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.for-you-card {
  background: var(--white);
  padding: 48px;
  position: relative;
}

.for-you-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}

.for-you-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--oxford);
  margin-bottom: 12px;
  line-height: 1.25;
}

.for-you-card p {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .for-you-grid {
    grid-template-columns: 1fr;
  }
}

/* Purpose Banner */
.banner-purpose {
  background: var(--paper);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.banner-purpose p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-style: italic;
  max-width: 760px;
  margin: 0 auto;
  color: var(--warm);
  line-height: 1.45;
}

/* Is This You */
.is-you {
  background: var(--cream);
}

.is-you h2 { color: var(--oxford); }

.is-you-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.is-you-card {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.is-you-card:first-child {
  padding-top: 0;
}

.is-you-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.is-you-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--oxford);
  margin-bottom: 14px;
  font-weight: 400;
}

.is-you-card p {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.65;
}

.is-you p.content {
  color: var(--oxford);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* The Work Together */
.work-together {
  background: var(--white);
}

.work-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.work-item {
  display: flex;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.work-item:first-child {
  padding-top: 0;
}

.work-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.work-item .tag {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  width: 80px;
  opacity: 0.5;
}

.work-item .work-content {
  flex: 1;
}

.work-item h3 {
  margin-bottom: 14px;
  color: var(--oxford);
}

.work-item p {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .work-item {
    flex-direction: column;
    gap: 16px;
  }
  .work-item .tag {
    width: auto;
    font-size: 2.5rem;
  }
}

/* Whats Included */
.included {
  background: var(--paper);
}

.included-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.included-item {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.included-item:first-child {
  padding-top: 0;
}

.included-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.included-item h3 {
  margin-bottom: 14px;
}

.included-item p {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Syllabus */
.syllabus {
  background: var(--white);
}

.syllabus-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

@media (max-width: 900px) {
  .syllabus-cats {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.syllabus-cat h3 {
  color: var(--stone);
  font-size: 0.8rem;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.syllabus-cat ul {
  list-style: none;
}

.syllabus-cat li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.syllabus-cat .book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--oxford);
  display: block;
  margin-bottom: 4px;
}

.syllabus-cat .book-author {
  font-size: 0.85rem;
  color: var(--stone);
  font-style: italic;
}

/* Why I Do This */
.why {
  background: var(--oxford);
  text-align: center;
  padding: 120px 0;
}

.why h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 28px;
  color: var(--white);
}

.why p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(245, 241, 234, 0.65);
  line-height: 1.8;
}

/* Engagement */
.engagement {
  background: var(--cream);
}

.engagement h2 { color: var(--oxford); text-align: center; margin-bottom: 16px; }
.engagement .sub { text-align: center; color: var(--stone); margin-bottom: 56px; font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  max-width: 800px;
  margin: 0 auto;
  background: var(--border);
}

.price-card {
  background: var(--white);
  padding: 56px 48px;
  text-align: center;
}

.price-card h3 {
  color: var(--oxford);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.price-card .desc {
  color: var(--stone);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.price {
  font-size: 3rem;
  font-weight: 300;
  color: var(--oxford);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.price-note {
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card .btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* Inverted Catalyst */
.price-card.inverted {
  background: var(--oxford);
}

.price-card.inverted h3 {
  color: var(--white);
}

.price-card.inverted .desc {
  color: rgba(245, 241, 234, 0.6);
}

.price-card.inverted .price {
  color: var(--white);
}

.price-card.inverted .price-note {
  color: rgba(245, 241, 234, 0.5);
}

.price-card.inverted .btn {
  border-color: var(--accent);
  background: transparent;
  color: var(--cream);
}

.price-card.inverted .btn:hover {
  background: var(--accent);
  color: var(--white);
}

/* Intake Form */
.intake {
  background: var(--white);
  padding: 100px 0 120px;
  transition: background 0.6s ease;
}

.intake.active {
  background: var(--cream);
}

.intake.active form {
  transform: scale(1.02);
}

form {
  transition: transform 0.6s ease;
}

.intake h2 { text-align: center; margin-bottom: 8px; }
.intake .sub { text-align: center; color: var(--stone); margin-bottom: 56px; font-size: 1rem; }

form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 32px;
}

label {
  display: block;
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--warm);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

input, textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  border: 1px solid var(--border-strong);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

input:focus, textarea:focus {
  border-color: var(--accent);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

button[type="submit"] {
  width: 100%;
  padding: 18px;
  font-family: 'Lora', serif;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--oxford);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

button[type="submit"]:hover {
  background: var(--warm);
}

/* Footer */
footer {
  background: var(--oxford);
  color: rgba(245, 241, 234, 0.5);
  text-align: center;
  padding: 64px 0;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

footer p {
  margin-bottom: 6px;
}

.trajectory {
  background: var(--paper);
  padding: 100px 0;
}

.trajectory .section-label {
  margin-bottom: 16px;
}

.trajectory h2 {
  margin-bottom: 48px;
}

.trajectory-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}

.step-content h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--oxford);
}

.step-content p {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-connector {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 24px;
}

.step-connector::before {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--accent);
  opacity: 0.3;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--accent);
  border-right: 1px solid var(--accent);
  transform: rotate(45deg);
  opacity: 0.3;
}

.trajectory-result {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--accent);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .trajectory-steps {
    flex-direction: column;
    gap: 32px;
  }
  .step-connector {
    width: 100%;
    height: 32px;
  }
  .step-connector::before {
    width: 1px;
    height: 100%;
  }
  .step-connector::after {
    right: auto;
    bottom: 0;
    transform: rotate(135deg);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 120px 0 80px; }
  section { padding: 72px 0; }
  .price-card { padding: 40px 28px; }
  .container { padding: 0 24px; }
  .hero .container { padding-right: 0; }
}
