:root {
  --bg: #f5f0eb;
  --bg-alt: #ece7e0;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --gold: #b8965a;
  --gold-light: #d4b97a;
  --border: #d8d0c8;
  --white: #ffffff;
  --black: #0d0d0d;
}

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

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

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 3rem;
  background: var(--bg);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0.06;
  pointer-events: none;
}
.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* PRINCIPLES */
.principles {
  background: var(--black);
  color: var(--bg);
  padding: 7rem 3rem;
}
.principles-inner { max-width: 1100px; margin: 0 auto; }
.principles-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4rem;
}
.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.principle {}
.principle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.principle-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--bg);
}
.principle-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #a09890;
}

/* SERVICES */
.services {
  background: var(--bg);
  padding: 7rem 3rem;
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-header { margin-bottom: 4rem; }
.services-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.services-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  max-width: 580px;
}
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-item:first-child { border-top: 1px solid var(--border); }
.service-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--gold);
  opacity: 0.7;
  border-radius: 50%;
  margin-top: 0.25rem;
}
.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* APPROACH */
.approach {
  background: var(--fg);
  color: var(--bg);
  padding: 7rem 3rem;
}
.approach-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.approach-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.4;
  color: var(--bg);
  margin-bottom: 1.5rem;
}
.approach-quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  font-style: normal;
}
.approach-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #a09890;
  margin-bottom: 1.5rem;
}

/* CLOSING */
.closing {
  background: var(--gold);
  padding: 7rem 3rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.6;
}

/* FOOTER */
.footer {
  background: var(--black);
  color: var(--bg);
  padding: 3rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.25em;
}
.footer-meta {
  font-size: 0.8rem;
  color: #a09890;
  text-align: center;
}
.footer-copy {
  font-size: 0.75rem;
  color: #605858;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 4rem 1.5rem; }
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat-divider { display: none; }
  .principles { padding: 4rem 1.5rem; }
  .principles-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services { padding: 4rem 1.5rem; }
  .approach { padding: 4rem 1.5rem; }
  .approach-inner { grid-template-columns: 1fr; gap: 3rem; }
  .closing { padding: 4rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}