:root {
  --bg: #faf8f4;
  --bg-alt: #f0ece3;
  --fg: #0f2d4a;
  --fg-muted: #5a6a7a;
  --accent: #e8833a;
  --accent-light: #f5c490;
  --white: #ffffff;
  --border: #e2d9c8;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 1rem 2rem; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { font-size: 0.9rem; font-weight: 500; color: var(--fg-muted); text-decoration: none; transition: color 0.15s; }
.nav-link:hover { color: var(--accent); }

/* HERO */
.hero { padding: 5rem 2rem 4rem; max-width: 1140px; margin: 0 auto; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-kicker { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); font-weight: 600; margin-bottom: 1.25rem; }
.hero-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.1; color: var(--fg); margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.1rem; color: var(--fg-muted); max-width: 42ch; line-height: 1.7; }

.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.compass-ring { position: relative; width: 180px; height: 180px; }
.compass-inner { width: 100%; height: 100%; }
.compass-svg { width: 100%; height: 100%; }

.destinations-row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.dest-tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* APPROACH */
.approach { background: var(--fg); color: var(--white); padding: 5rem 2rem; }
.approach-inner { max-width: 1140px; margin: 0 auto; }
.section-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); font-weight: 600; margin-bottom: 1.5rem; }
.approach-headline { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.2; margin-bottom: 3rem; }
.approach-headline em { color: var(--accent); font-style: italic; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.approach-card { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 2rem; }
.approach-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--accent); opacity: 0.7; display: block; margin-bottom: 1rem; }
.approach-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.approach-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.65; }

/* NICHES */
.niches { padding: 5rem 2rem; max-width: 1140px; margin: 0 auto; }
.niches-headline { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.niches-sub { color: var(--fg-muted); font-size: 1.05rem; margin-bottom: 3rem; }
.niches-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
.niche-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.niche-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--bg-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.niche-item h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.35rem; }
.niche-item p { color: var(--fg-muted); font-size: 0.9rem; line-height: 1.55; }

/* OUTCOMES */
.outcomes { background: var(--bg-alt); padding: 5rem 2rem; }
.outcomes-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.outcomes-headline { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 1.25rem; }
.outcomes-body { color: var(--fg-muted); font-size: 1rem; line-height: 1.7; }
.outcomes-right { display: flex; flex-direction: column; gap: 2rem; }
.outcome-row { display: flex; align-items: baseline; gap: 1rem; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.outcome-row:last-child { border-bottom: none; padding-bottom: 0; }
.outcome-stat { font-family: 'Playfair Display', serif; font-size: 2.75rem; font-weight: 700; color: var(--accent); line-height: 1; }
.outcome-label { font-size: 0.95rem; color: var(--fg-muted); }

/* PHILOSOPHY */
.philosophy { padding: 5rem 2rem; max-width: 1140px; margin: 0 auto; }
.philosophy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.philosophy-quote blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-style: italic; color: var(--fg); line-height: 1.4; border-left: 3px solid var(--accent); padding-left: 1.75rem; }
.philosophy-body p { color: var(--fg-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.25rem; }
.philosophy-body p:last-child { margin-bottom: 0; }

/* CLOSING */
.closing { background: var(--fg); color: var(--white); padding: 6rem 2rem; text-align: center; }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.25rem; }
.closing-sub { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 3rem; }
.closing-destinations { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.closing-dest {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* FOOTER */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2rem; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--fg); }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); margin-top: 0.25rem; }
.footer-meta p { font-size: 0.8rem; color: var(--fg-muted); text-align: right; }

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .approach-grid { grid-template-columns: 1fr; gap: 2rem; }
  .niches-list { grid-template-columns: 1fr; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { flex-direction: column; gap: 1rem; }
  .footer-meta p { text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.5rem 3rem; }
  .approach, .niches, .outcomes, .philosophy, .closing { padding-left: 1.5rem; padding-right: 1.5rem; }
}