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

:root {
  --bg: #F8F5F0;
  --fg: #2A2622;
  --fg-light: #6B635A;
  --accent: #C4735A;
  --accent-dark: #9E5A42;
  --cream: #EDE8DF;
  --border: #D8D0C8;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-light);
  font-style: italic;
}

/* === HERO === */
.hero {
  padding: 80px 48px 90px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 19px;
  color: var(--fg-light);
  max-width: 480px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}
.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 24px;
}
.hero-detail {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--fg-light);
  max-width: 400px;
}

/* Orb */
.hero-orb {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orb-layer {
  position: absolute;
  border-radius: 50%;
}
.orb-layer-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at 40% 40%, #E8D9C8, #C4735A 60%, #8B4535 100%);
  opacity: 0.85;
}
.orb-layer-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 45% 45%, #F5EDE0, #D4896A 55%, #9E5A42 100%);
  opacity: 0.6;
}
.orb-layer-3 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle at 50% 50%, #FBF3EA, #C4735A 70%, #7A3B28 100%);
  opacity: 0.4;
}

/* === SHARED SECTION STYLES === */
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

/* === PHILOSOPHY === */
.philosophy {
  background: var(--cream);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-style: italic;
  color: var(--fg);
  line-height: 1.45;
  margin-bottom: 36px;
  quotes: none;
}
.philosophy-body {
  font-size: 18px;
  color: var(--fg-light);
  line-height: 1.75;
  font-weight: 300;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 90px 48px;
}
.howitworks-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 56px;
}
.step {
  position: relative;
  padding-top: 52px;
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.step-num {
  position: absolute;
  top: 16px;
  right: 0;
  font-family: var(--serif);
  font-size: 11px;
  color: var(--fg-light);
  letter-spacing: 0.05em;
}
.step-heading {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
}
.step-body {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.7;
  font-weight: 300;
}

/* === TWO EXPERIENCES === */
.twoexperiences {
  background: var(--cream);
  padding: 90px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.twoexperiences-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.exp-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}
.exp-icon {
  color: var(--accent);
  margin-bottom: 24px;
}
.exp-heading {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
}
.exp-body {
  font-size: 15px;
  color: var(--fg-light);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 12px;
}

/* === ETHICS === */
.ethics {
  padding: 90px 48px;
}
.ethics-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ethics-body {
  font-size: 18px;
  color: var(--fg-light);
  line-height: 1.75;
  font-weight: 300;
  max-width: 680px;
  margin-bottom: 52px;
}
.ethics-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.ethics-point {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.ethics-point:nth-child(2n) { border-right: none; }
.ethics-point:nth-child(3),
.ethics-point:nth-child(4) { border-bottom: none; }
.ethics-label {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  margin-bottom: 6px;
}
.ethics-desc {
  font-size: 14px;
  color: var(--fg-light);
  font-weight: 300;
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  background: var(--fg);
  color: #F8F5F0;
  padding: 100px 48px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: #F8F5F0;
}
.closing-sub {
  font-size: 18px;
  color: #C8BFB5;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 28px;
}
.closing-body {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: #C4735A;
  line-height: 1.6;
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  border-top: 1px solid #3A3632;
  padding: 36px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: #F8F5F0;
}
.footer-motto {
  font-size: 13px;
  color: #8A8278;
  font-style: italic;
}
.footer-note {
  font-size: 13px;
  color: #6B635A;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-orb { display: none; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .exp-grid { grid-template-columns: 1fr; }
  .ethics-points { grid-template-columns: 1fr; }
  .ethics-point { border-right: none; }
  .ethics-point:nth-child(3) { border-bottom: 1px solid var(--border); }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 600px) {
  .nav, .hero, .philosophy, .howitworks, .twoexperiences, .ethics, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 48px; padding-bottom: 60px; }
  .philosophy, .closing { padding-top: 60px; padding-bottom: 60px; }
}