:root {
  --bg: #FDF6EC;
  --bg-alt: #F5EDD9;
  --fg: #0D1B2A;
  --fg-muted: #5A6A7A;
  --accent: #E8A838;
  --accent-dark: #C8891E;
  --card-bg: #FFFFFF;
  --border: rgba(13, 27, 42, 0.12);
  --tag-bg: rgba(232, 168, 56, 0.12);
  --tag-fg: #7A5010;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 32px 80px;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,168,56,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,56,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 56px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* EXPERTISE */
.expertise {
  background: var(--fg);
  padding: 100px 32px;
}
.expertise-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.expertise-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.expertise-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 64px;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.expertise-card {
  background: #0D1B2A;
  padding: 40px 36px;
}
.expertise-card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.expertise-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.expertise-card-body {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* OFFERINGS */
.offerings {
  padding: 100px 32px;
  background: var(--bg-alt);
}
.offerings-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.offerings-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.offerings-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 64px;
}
.offerings-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offering {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.offering-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(232, 168, 56, 0.2);
  line-height: 1;
  margin-bottom: 20px;
}
.offering-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.offering-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.offering-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 11px;
  font-weight: 500;
  background: var(--tag-bg);
  color: var(--tag-fg);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 32px;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.manifesto-attr {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* CLOSING */
.closing {
  padding: 100px 32px;
  background: var(--fg);
}
.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}
.footer-sub {
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 72px 24px 56px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-divider { display: none; }
  .hero-stat { padding: 0; }
  .expertise { padding: 72px 24px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .offerings { padding: 72px 24px; }
  .offerings-row { grid-template-columns: 1fr; }
  .manifesto { padding: 72px 24px; }
  .closing { padding: 72px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-note { text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .offerings-row { gap: 16px; }
  .offering { padding: 28px 24px; }
}