:root {
  --bone: #F7F1E8;
  --sand: #EFE6D6;
  --umber: #4A3A2A;
  --umber-soft: #6B5947;
  --coral: #E86A5C;
  --coral-hover: #D45749;
  --line: rgba(74, 58, 42, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--umber);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Type ---------- */
.display, h1.display, h2.display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-variation-settings: 'opsz' 96;
  color: var(--umber);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1.display { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2.display { font-size: clamp(2rem, 4vw, 3rem); }

h2.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--umber);
  max-width: 22ch;
}

h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--umber);
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}

.lede {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--umber-soft);
  max-width: 55ch;
}

/* ---------- Buttons + Links ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--coral);
  color: #FFFCF7;
}

.btn-primary:hover { background: var(--coral-hover); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.link-quiet {
  color: var(--umber);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  font-size: 0.98rem;
  transition: border-color 0.2s;
}

.link-quiet:hover { border-bottom-color: var(--coral); }

a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Nav ---------- */
.nav {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  color: var(--umber);
}

.brand-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--umber-soft);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--umber);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--coral); text-decoration: none; }

/* ---------- Hero ---------- */
.hero { padding: 100px 0 120px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.hero-copy .lede { margin-top: 28px; margin-bottom: 40px; }

.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  background: var(--sand);
  border-radius: 18px;
  padding: 40px 36px;
  margin-top: 60px;
}

.ornament {
  position: absolute;
  top: -18px;
  left: 36px;
  width: 44px;
  height: 6px;
  background: var(--coral);
  border-radius: 2px;
}

.hero-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--umber);
  margin-bottom: 24px;
}

.hero-quote footer {
  font-size: 0.86rem;
  color: var(--umber-soft);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-quote cite {
  font-style: normal;
  font-weight: 600;
  color: var(--umber);
}

/* ---------- Sections ---------- */
.services, .pull, .insights, .cta {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-lede { margin-top: 20px; color: var(--umber-soft); max-width: 55ch; font-size: 1.05rem; }

/* Services cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: #FFFCF7;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid var(--line);
  box-shadow: 0 1px 2px rgba(74,58,42,0.03);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,58,42,0.06);
}

.card-index {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--coral);
  margin-bottom: 12px;
}

.card h3 { margin-bottom: 12px; }
.card p { color: var(--umber-soft); font-size: 0.98rem; }

/* Pull quote */
.pull { background: var(--sand); border-top: none; }
.pull-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.pull-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.35;
  color: var(--umber);
  margin: 32px 0 32px;
}
.pull-quote footer {
  font-size: 0.9rem;
  color: var(--umber-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pull-quote cite { font-style: normal; font-weight: 600; color: var(--umber); }

/* Insights */
.insights-grid { max-width: 780px; }
.insights-copy p { color: var(--umber-soft); margin-top: 20px; font-size: 1.05rem; }

/* CTA */
.cta { background: var(--umber); color: var(--bone); border-top: none; }
.cta h2.display { color: var(--bone); }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta p { margin: 24px 0 36px; color: rgba(247, 241, 232, 0.75); font-size: 1.1rem; }
.cta .btn-primary { background: var(--coral); color: #FFFCF7; }

/* ---------- Footer ---------- */
.footer {
  background: var(--umber);
  color: rgba(247, 241, 232, 0.65);
  padding: 60px 0 40px;
}
.footer-inner { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.footer-brand { display: flex; flex-direction: column; line-height: 1; }
.footer-brand .brand-mark { color: var(--bone); }
.footer-brand .brand-sub { color: rgba(247,241,232,0.5); }
.footer-meta a { color: var(--coral); }
.footer-fine { font-size: 0.82rem; color: rgba(247,241,232,0.45); }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { margin-top: 0; }
  .services, .pull, .insights, .cta { padding: 70px 0; }
  .cards { grid-template-columns: 1fr; gap: 20px; }
  .nav-links { display: none; }
  .container { padding: 0 22px; }
}
