:root {
  --bg: #FAF8F5;
  --fg: #1A2744;
  --accent: #C9A96E;
  --muted: #7A7A8C;
  --surface: #F0EDE7;
  --white: #FFFFFF;
  --swatch1: #C9A96E;
  --swatch2: #8B6F47;
  --swatch3: #D4C4A8;
}

* { 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.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--surface);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--fg);
}
.nav__tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 100px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero__lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero__visual {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 12px;
  height: fit-content;
}
.hero__swatch {
  height: 90px;
  background: var(--swatch1);
  border-radius: 2px;
}
.hero__swatch--2 {
  background: var(--swatch2);
  height: 120px;
}
.hero__swatch--3 {
  background: var(--swatch3);
  height: 75px;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  padding: 80px 48px;
}
.manifesto__inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--bg);
  line-height: 1.5;
  text-align: center;
  font-weight: 400;
}

/* SERVICES */
.services {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.services__header {
  margin-bottom: 60px;
}
.services__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--fg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--surface);
}
.service-card {
  background: var(--bg);
  padding: 40px 32px;
}
.service-card__icon {
  font-size: 8px;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.service-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* CREDENTIALS */
.credentials {
  background: var(--surface);
  padding: 64px 48px;
}
.credentials__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.credentials__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  flex: 1;
}
.credentials__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 8px;
}
.credentials__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.credentials__divider {
  width: 1px;
  height: 60px;
  background: var(--accent);
  opacity: 0.4;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}
.closing__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing__body {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--surface);
  padding: 40px 48px;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}
.footer__location {
  font-size: 13px;
  color: var(--muted);
}
.footer__copy {
  font-size: 12px;
  color: var(--muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .hero__headline { font-size: 38px; }
  .manifesto { padding: 56px 24px; }
  .manifesto__quote { font-size: 22px; }
  .services { padding: 64px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .credentials { padding: 48px 24px; }
  .credentials__inner { flex-direction: column; gap: 32px; }
  .credentials__divider { width: 40px; height: 1px; }
  .closing { padding: 64px 24px; }
  .closing__headline { font-size: 32px; }
  .footer { padding: 32px 24px; }
  .footer__inner { flex-direction: column; gap: 8px; text-align: center; }
}