:root {
  --bg: #f8f6f1;
  --bg-alt: #edeae3;
  --fg: #1a2744;
  --fg-muted: #5a6480;
  --accent: #c8973e;
  --accent-dark: #a07a2e;
  --navy: #1a2744;
  --text-light: #7a8499;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
  padding: 0 40px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo svg { color: var(--accent); }
nav {
  display: flex;
  gap: 32px;
}
nav a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid rgba(26, 39, 68, 0.08);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-text h1 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 20px;
  color: var(--navy);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 460px;
}
.hero-aside {
  padding-top: 8px;
}
.hero-stat-row {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(26, 39, 68, 0.1);
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.5;
  border-left: 3px solid var(--accent);
  padding-left: 20px;
}
.hero-rule { display: none; }

/* Manifesto */
.manifesto {
  padding: 80px 40px;
  background: var(--navy);
  color: #fff;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 60px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  padding-top: 6px;
}
.manifesto-body h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 24px;
  color: #fff;
}
.manifesto-body p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 16px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* Services */
.services {
  padding: 80px 40px;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services .section-label { margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service-card {
  padding: 28px;
  border: 1px solid rgba(26, 39, 68, 0.1);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(200, 151, 62, 0.12);
}
.service-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Difference */
.difference {
  padding: 80px 40px;
  background: var(--bg-alt);
}
.difference-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.difference-left .section-label { margin-bottom: 20px; }
.difference-left h2 {
  font-size: clamp(24px, 2.5vw, 34px);
  margin-bottom: 40px;
  color: var(--navy);
}
.diff-points { display: flex; flex-direction: column; gap: 28px; }
.diff-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.diff-marker {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  flex-shrink: 0;
}
.diff-point strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.diff-point p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.difference-right blockquote {
  padding: 36px;
  background: #fff;
  border-left: 4px solid var(--accent);
}
.difference-right blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 20px;
}
.difference-right cite {
  font-size: 13px;
  color: var(--text-light);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* Closing */
.closing {
  padding: 100px 40px;
  text-align: center;
  background: var(--navy);
  color: #fff;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}
.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* Bio card */
.bio-card {
  margin-top: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(26, 39, 68, 0.1);
  border-radius: 10px;
}
.bio-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.bio-avatar { flex-shrink: 0; }
.bio-name-block { display: flex; flex-direction: column; gap: 2px; }
.bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.bio-role {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.bio-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Footer */
footer {
  padding: 32px 40px;
  border-top: 1px solid rgba(26, 39, 68, 0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.footer-brand svg { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .manifesto-inner,
  .difference-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-aside { margin-top: 0; }
  .manifesto-inner { gap: 32px; }
}

@media (max-width: 600px) {
  .site-header { padding: 0 20px; }
  nav { gap: 20px; }
  .hero { padding: 60px 20px 40px; }
  .manifesto, .services, .difference { padding: 60px 20px; }
  .closing { padding: 80px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stat-row { gap: 24px; }
  .stat-number { font-size: 32px; }
}