:root {
  --bg: #faf8f4;
  --bg-alt: #f2ede6;
  --fg: #1a1816;
  --fg-muted: #6b6560;
  --accent: #c9a96e;
  --accent-dark: #a8844a;
  --border: #e2d9ce;
  --white: #ffffff;
}

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

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

/* NAV */
.nav {
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
  border-bottom: 1px solid var(--border);
}
.hero-media {
  background: var(--fg);
  position: relative;
  overflow: hidden;
}
.hero-image-block {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.hero-img-placeholder {
  width: 180px;
  height: 220px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-frame-silhouette {
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0.5;
}
.hero-img-label {
  text-align: center;
}
.label-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(250,248,244,0.5);
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
}
.hero-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}
.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

/* FEATURES */
.features {
  padding: 6rem 4rem;
  border-bottom: 1px solid var(--border);
}
.features-header {
  max-width: 600px;
  margin-bottom: 4rem;
}
.features-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.features-sub {
  font-size: 1rem;
  color: var(--fg-muted);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}
.feature-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-child(4),
.feature-card:nth-child(5),
.feature-card:nth-child(6) { border-bottom: none; }
.feature-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* WORKFLOW */
.workflow {
  background: var(--fg);
  color: var(--bg);
  padding: 6rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.workflow-inner { max-width: 900px; margin: 0 auto; }
.workflow-header { margin-bottom: 4rem; }
.workflow-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.workflow-steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.step:last-child { border-bottom: none; }
.step-connector { display: flex; justify-content: flex-start; padding-left: 2.5rem; }
.connector-line {
  width: 1px;
  height: 2rem;
  background: rgba(201,169,110,0.3);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  padding-top: 0.25rem;
}
.step-body { padding-top: 0.125rem; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.875rem;
  color: rgba(250,248,244,0.6);
  line-height: 1.7;
}

/* PRINCIPLES */
.principles {
  padding: 6rem 4rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.principles-inner { max-width: 900px; margin: 0 auto; }
.principles-block { margin-bottom: 4rem; }
.principles-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.principles-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 640px;
}
.principles-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.pillar-text {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 8rem 4rem;
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.closing-statement p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}

/* FOOTER */
.footer {
  padding: 3rem 4rem;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: baseline; gap: 0.75rem; }
.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.125rem;
}
.footer-desc {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 55vw; }
  .hero-content { padding: 3rem 2rem; }
  .features { padding: 4rem 2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card:nth-child(4) { border-bottom: 1px solid var(--border); }
  .feature-card:nth-child(5), .feature-card:nth-child(6) { border-bottom: none; }
  .workflow { padding: 4rem 2rem; }
  .step { grid-template-columns: 60px 1fr; gap: 1rem; }
  .principles { padding: 4rem 2rem; }
  .principles-pillars { grid-template-columns: 1fr; gap: 2rem; }
  .closing { padding: 5rem 2rem; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .feature-card:last-child { border-bottom: none !important; }
  .footer-inner { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .nav { padding: 1rem 1.5rem; }
}