/* === VARIABLES === */
:root {
  --bg: #F8F4EF;
  --bg-alt: #EEE6DA;
  --fg: #1A1A14;
  --fg-muted: #6B6458;
  --accent: #1E3A0F;
  --accent-light: #2D5016;
  --sand: #C4A882;
  --sand-light: #D4C4A8;
  --warm-gray: #8C8278;
  --white: #FDFBF8;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* === BASE === */
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, blockquote {
  font-family: 'Playfair Display', Georgia, serif;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, #E8DFD0 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 32px 80px rgba(30, 58, 15, 0.15);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 168, 130, 0.2) 0%, transparent 60%);
  border-radius: 4px;
  pointer-events: none;
}

.hero-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 2px;
  letter-spacing: 0.04em;
}

/* === SECTION EYEBROW === */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

/* === EDUCATION === */
.education {
  background: var(--bg-alt);
  padding: 120px 48px;
}

.education-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.education-header h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.15;
  color: var(--accent);
}

.education-visual {
  position: sticky;
  top: 40px;
}

.foot-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.foot-diagram svg {
  width: 100%;
  max-width: 280px;
}

.diagram-labels {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.dlabel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dlabel-bunion {
  background: rgba(196, 120, 58, 0.08);
  padding: 12px;
  border-radius: 4px;
  border-left: 3px solid #C4783A;
}

.dlabel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.dlabel strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}

.dlabel p {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
  font-family: 'DM Sans', sans-serif;
}

.education-text {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.edu-point {
  border-left: 2px solid var(--sand);
  padding-left: 28px;
}

.edu-num {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-style: italic;
  color: var(--sand);
  margin-bottom: 8px;
}

.edu-point h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.edu-point p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* === OUTCOMES === */
.outcomes {
  padding: 120px 48px;
  background: var(--bg);
}

.outcomes-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.outcomes-inner h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 64px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.outcome-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--sand-light);
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(30, 58, 15, 0.08);
}

.outcome-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.outcome-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}

.outcome-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 120px 48px;
  background: var(--accent);
  color: var(--white);
}

.philosophy-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.philosophy-quote {
  margin-bottom: 48px;
}

.philosophy-quote blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 48px);
  font-style: italic;
  line-height: 1.3;
  color: var(--sand-light);
}

.philosophy-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.philosophy-body p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.pillar {
  padding: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
}

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-style: italic;
  color: var(--sand);
  margin-bottom: 16px;
}

.pillar h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.pillar p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* === CLOSING === */
.closing {
  padding: 120px 48px;
  background: var(--bg);
}

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

.closing h2 {
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.15;
  color: var(--accent);
  margin-bottom: 48px;
}

.closing-rule {
  width: 80px;
  height: 2px;
  background: var(--sand);
  margin: 0 auto 48px;
}

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* === FOOTER === */
.footer {
  padding: 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--sand-light);
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.footer p {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-brand p { margin-top: 6px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-pillars { grid-template-columns: repeat(2, 1fr); }
  .education-inner { grid-template-columns: 1fr; }
  .education-visual { position: static; }
  .foot-diagram { flex-direction: row; align-items: flex-start; }
  .diagram-labels { max-width: 280px; }
  .philosophy-body { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image img { max-width: 100%; }
  .education { padding: 80px 24px; }
  .outcomes { padding: 80px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .philosophy { padding: 80px 24px; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .foot-diagram { flex-direction: column; }
}