:root {
  --bg: #f4ede3;
  --fg: #0f0f0f;
  --accent: #a8895c;
  --accent-dim: #c8b07a;
  --muted: #6b6560;
  --border: #ddd5c8;
  --card-bg: #ece4d8;
}

*, *::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: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 2.5rem 5vw;
  border-bottom: 1px solid var(--border);
}
.nav-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-sub {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 7rem 5vw 5rem;
  max-width: 1100px;
}
.hero-inner { max-width: 700px; }
.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 2.5rem;
}
.hero-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 3rem 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-div {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 3rem;
  align-self: center;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 0 0;
}
.features-col {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
}
.feat-card {
  background: var(--bg);
  padding: 3.5rem 4rem;
}
.feat-num {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.feat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--fg);
}
.feat-body {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* PROCESS */
.process {
  padding: 7rem 5vw;
  max-width: 1100px;
}
.process-header {
  margin-bottom: 4rem;
}
.process-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  max-width: 540px;
  line-height: 1.25;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.step { }
.step-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-style: italic;
}
.step-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.step-body p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 8rem 5vw;
}
.closing-inner { max-width: 750px; }
.closing-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dim);
  margin-bottom: 2.5rem;
}
.closing-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  color: var(--bg);
}
.closing-body {
  font-size: 0.9rem;
  color: #a09890;
  line-height: 1.8;
  max-width: 580px;
}

/* FOOTER */
.footer {
  background: #0a0a0a;
  color: #5a5450;
  padding: 3rem 5vw;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1e1e1e;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #7a7570;
}
.footer-locations {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #4a4540;
}
.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #3a3530;
}
.footer-bottom {
  font-size: 0.72rem;
  color: #3a3530;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 5rem 6vw 4rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat-div { display: none; }
  .stat { padding: 0; }
  .features { grid-template-columns: 1fr; }
  .feat-card { padding: 2.5rem 6vw; }
  .process { padding: 5rem 6vw; }
  .process-steps { grid-template-columns: 1fr; }
  .closing { padding: 5rem 6vw; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-locations { flex-wrap: wrap; }
}