:root {
  --bg: #FAF8F5;
  --fg: #1A1714;
  --accent: #D4551A;
  --accent-light: #F0E6DC;
  --secondary: #2D3436;
  --muted: #7A7067;
  --border: #E8E0D5;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
  background: var(--bg);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: center;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-size: clamp(42px, 6vw, 72px);
  color: var(--fg);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--border);
  padding-left: 40px;
}

.stat {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.stat:last-child { border-bottom: none; }

.stat-number {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-shape {
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Motto ── */
.motto {
  background: var(--secondary);
  padding: 72px 24px;
}

.motto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.motto blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 4vw, 40px);
  font-style: italic;
  color: #F5F0EB;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 24px;
}

.motto-context {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Section label ── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── Verticals ── */
.verticals {
  padding: 96px 24px;
  background: var(--bg);
}

.verticals-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.verticals h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 56px;
  color: var(--fg);
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.vertical-card {
  background: var(--white);
  padding: 40px 36px;
}

.vertical-icon {
  display: block;
  color: var(--accent);
  margin-bottom: 20px;
}

.vertical-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--fg);
}

.vertical-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.vertical-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vertical-features li {
  font-size: 13px;
  color: var(--secondary);
  padding-left: 16px;
  position: relative;
}

.vertical-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Spin-offs ── */
.spinoffs {
  padding: 96px 24px;
  background: #F5F0EB;
}

.spinoffs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.spinoffs h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 48px;
  color: var(--fg);
}

.spinoffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spinoff-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 28px;
  transition: box-shadow 0.2s ease;
}

.spinoff-card:hover {
  box-shadow: 0 8px 32px rgba(26, 23, 20, 0.08);
}

.spinoff-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.spinoff-card h3 {
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 10px;
}

.spinoff-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Impact ── */
.impact {
  padding: 96px 24px;
  background: var(--secondary);
}

.impact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.impact h2 {
  font-size: clamp(30px, 4vw, 48px);
  color: #F5F0EB;
  margin-bottom: 56px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.impact-item {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.impact-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.impact-item h3 {
  font-size: 20px;
  color: #F5F0EB;
  margin-bottom: 12px;
}

.impact-item p {
  font-size: 14px;
  color: #A09890;
  line-height: 1.7;
}

/* ── Closing ── */
.closing {
  padding: 100px 24px;
  background: var(--bg);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Footer ── */
footer {
  background: var(--fg);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #F5F0EB;
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 12px;
  color: var(--muted);
}

.footer-info {
  text-align: right;
}

.footer-info p {
  font-size: 13px;
  color: #A09890;
  line-height: 1.8;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats {
    flex-direction: row;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 32px;
  }

  .stat {
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 0 24px 0 0;
    flex: 1;
  }

  .stat:last-child { border-right: none; }

  .verticals-grid,
  .spinoffs-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-info {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 20px 80px;
  }

  .verticals,
  .spinoffs,
  .impact,
  .closing {
    padding: 64px 20px;
  }
}
