/* ===== RESET & VARIABLES ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #1a1a1a;
  --paper: #f8f6f1;
  --terracotta: #c4653a;
  --terracotta-light: #e8916a;
  --sage: #7a8f6e;
  --sage-light: #a3b898;
  --slate: #4a5568;
  --blueprint: #2c3e6b;
  --blueprint-light: #4a6fa5;
  --gold: #8b6914;
  --gold-light: #c49b2a;
  --warm-gray: #e8e4de;
  --white: #ffffff;
  --nav-height: 72px;
}

/* ===== TYPOGRAPHY ===== */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: var(--nav-height);
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', sans-serif;
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(248, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--warm-gray);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-brand span {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, 0.04);
}

.nav-link.active {
  color: var(--terracotta);
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}

.nav-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--terracotta);
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #b35830;
  transform: translateY(-1px);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  color: var(--slate);
  transition: all 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--paper);
  color: var(--ink);
}

.nav-dropdown-menu a .dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--ink);
}

.nav-hamburger svg {
  width: 24px;
  height: 24px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--paper);
  z-index: 999;
  padding: 1.5rem 2rem;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--warm-gray);
}

.mobile-menu .mobile-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
  padding: 0;
  border: none;
}

.mobile-menu .mobile-cta {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
}

/* ===== SHARED SECTION STYLES ===== */
.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: var(--terracotta);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #b35830;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 101, 58, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 1px solid var(--warm-gray);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.btn-notify {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  background: transparent;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  border: 1px solid var(--warm-gray);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-notify:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,101,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gray), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blueprint);
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--terracotta);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blueprint-card {
  background: white;
  border: 1px solid var(--warm-gray);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.blueprint-card::before {
  content: 'WHAT YOUR ARCHITECT SEES';
  position: absolute;
  top: -0.65rem;
  left: 1.5rem;
  background: var(--paper);
  padding: 0 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--terracotta);
  font-weight: 600;
}

.blueprint-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.blueprint-items li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--slate);
}

.blueprint-items li .icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
}

.blueprint-items li strong {
  color: var(--ink);
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* ===== PROBLEM SECTION ===== */
.problem {
  padding: 6rem 2rem;
  background: var(--ink);
  color: white;
  position: relative;
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.problem h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.problem h2 em {
  font-style: normal;
  color: var(--terracotta-light);
}

.problem .sub-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cost-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.03);
}

.cost-card .amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta-light);
  margin-bottom: 0.5rem;
}

.cost-card .label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ===== TRACK CARDS ===== */
.tracks-section {
  padding: 6rem 2rem;
  position: relative;
}

.tracks-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gray), transparent);
}

.tracks-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.tracks-section .section-desc {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.track-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.track-card {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 8px;
  padding: 2.25rem 2rem;
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.track-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
  border-color: transparent;
}

.track-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.track-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.track-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.track-card .track-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}

.track-card:hover .track-link {
  gap: 0.6rem;
}

.track-link svg {
  width: 14px;
  height: 14px;
}

/* ===== ABOUT PREVIEW (on homepage) ===== */
.about-preview {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--warm-gray) 0%, var(--paper) 100%);
}

.about-preview-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.about-avatar {
  width: 100%;
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.about-avatar .avatar-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-avatar .avatar-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
}

.about-preview-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.about-preview-content p {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-preview-content .about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-top: 0.5rem;
  transition: gap 0.2s;
}

.about-preview-content .about-link:hover {
  gap: 0.7rem;
}

/* ===== CONSULTATION CTA ===== */
.consult-cta {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.consult-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gray), transparent);
}

.consult-cta-inner {
  max-width: 650px;
  margin: 0 auto;
}

.consult-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.consult-cta p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ===== TRACK DETAIL PAGE ===== */
.track-hero {
  padding: 4rem 2rem 3rem;
  position: relative;
}

.track-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.track-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

.track-breadcrumb a {
  color: var(--terracotta);
  font-weight: 500;
}

.track-breadcrumb a:hover {
  text-decoration: underline;
}

.track-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.track-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.track-hero .tagline {
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 650px;
}

.track-description {
  padding: 0 2rem 3rem;
}

.track-description-inner {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
}

.track-description .desc-text {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.75;
}

.track-who-for {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 8px;
  padding: 1.75rem;
}

.track-who-for h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.track-who-for ul {
  list-style: none;
}

.track-who-for li {
  font-size: 0.88rem;
  color: var(--slate);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.track-who-for li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-top: 0.5rem;
}

.track-who-for li:last-child {
  border-bottom: none;
}

/* ===== PRODUCT LADDER ===== */
.product-ladder {
  padding: 4rem 2rem 6rem;
  position: relative;
}

.product-ladder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gray), transparent);
}

.product-ladder-inner {
  max-width: 900px;
  margin: 0 auto;
}

.product-ladder h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-ladder .ladder-sub {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
}

.ladder-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ladder-item {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  transition: all 0.2s;
  position: relative;
}

.ladder-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.08);
}

.ladder-item.featured {
  border-color: var(--terracotta);
  box-shadow: 0 4px 20px rgba(196, 101, 58, 0.1);
}

.ladder-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}

.ladder-item.featured .ladder-icon {
  background: var(--terracotta);
  color: var(--white);
}

.ladder-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ladder-content .ladder-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background: var(--paper);
  color: var(--terracotta);
}

.ladder-item.featured .ladder-tag {
  background: rgba(196, 101, 58, 0.1);
}

.coming-soon-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background: rgba(44, 62, 107, 0.08);
  color: var(--blueprint);
}

.ladder-content p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.55;
}

.ladder-price {
  text-align: right;
  min-width: 100px;
}

.ladder-price .price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 0.5rem;
}

.ladder-price .price.free {
  color: var(--sage);
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 4rem 2rem;
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.about-hero h1 em {
  font-style: normal;
  color: var(--terracotta);
}

.about-body {
  padding: 0 2rem 4rem;
}

.about-body-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about-body p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-body p strong {
  color: var(--ink);
}

.about-values {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, var(--warm-gray) 0%, var(--paper) 100%);
}

.about-values-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-values h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 8px;
  padding: 2rem 1.5rem;
}

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ===== BLOG PAGE ===== */
.blog-hero {
  padding: 4rem 2rem 3rem;
}

.blog-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.7;
}

.blog-empty {
  padding: 4rem 2rem 8rem;
  text-align: center;
}

.blog-empty-inner {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  padding: 4rem 2.5rem;
}

.blog-empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--terracotta);
}

.blog-empty h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-empty p {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ===== CONSULTATION PAGE ===== */
.consult-hero {
  padding: 4rem 2rem;
}

.consult-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.consult-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.consult-hero h1 em {
  font-style: normal;
  color: var(--terracotta);
}

.consult-hero .tagline {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.7;
  max-width: 600px;
}

.consult-content {
  padding: 0 2rem 6rem;
}

.consult-content-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.consult-info h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.consult-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consult-features li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.consult-features .feat-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(196, 101, 58, 0.1);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.consult-features .feat-icon svg {
  width: 14px;
  height: 14px;
}

.consult-features .feat-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.consult-features .feat-text p {
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.5;
}

.consult-form-wrap {
  background: var(--white);
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  padding: 2.5rem;
}

.consult-form-wrap h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--warm-gray);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--terracotta);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: #b35830;
}

/* ===== LIVE BADGE ===== */
.live-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  background: rgba(122, 143, 110, 0.12);
  color: var(--sage);
}

/* ===== EBOOK HIGHLIGHT ===== */
.ladder-item.ebook-highlight {
  border-color: var(--sage);
  background: linear-gradient(135deg, rgba(122, 143, 110, 0.04) 0%, var(--white) 100%);
  box-shadow: 0 4px 20px rgba(122, 143, 110, 0.12);
}

.ladder-item.ebook-highlight .ladder-icon {
  background: var(--sage);
  color: var(--white);
}

.ladder-item.ebook-highlight .ladder-tag {
  background: rgba(122, 143, 110, 0.12);
  color: var(--sage);
}

/* ===== FORM SUCCESS STATE ===== */
.form-success {
  text-align: center;
  padding: 1.5rem 1rem;
}

.form-success p {
  color: var(--ink);
  line-height: 1.6;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ===== HERO EMAIL INLINE FORM ===== */
.hero-email-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin-top: 1.25rem;
}

.hero-email-form input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--warm-gray);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
}

.hero-email-form input:focus {
  outline: none;
  border-color: var(--terracotta);
}

.hero-email-form button {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--terracotta);
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.hero-email-form button:hover {
  background: #b35830;
}

.hero-email-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.hero-email-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1.25rem;
}

/* ===== CREAM HELPER ===== */
:root {
  --cream: #f5f0e6;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--warm-gray);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.footer-brand span {
  color: var(--terracotta);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--slate);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--slate);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .cost-grid {
    grid-template-columns: 1fr;
  }

  .track-cards {
    grid-template-columns: 1fr;
  }

  .about-preview-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-avatar {
    max-width: 200px;
    margin: 0 auto;
  }

  .track-description-inner {
    grid-template-columns: 1fr;
  }

  .ladder-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .ladder-icon {
    display: none;
  }

  .ladder-price {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .consult-content-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .problem, .tracks-section, .about-preview, .consult-cta, .product-ladder {
    padding: 4rem 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .track-hero h1 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
