/* ============================================================
   Senwill Cosmetic Manufacturing — Global Design System
   ============================================================ */

/* 1. Variables */
:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'Geist Mono', ui-monospace, monospace;
  --cream:        oklch(0.975 0.008 85);
  --cream-soft:   oklch(0.955 0.012 82);
  --cream-deep:   oklch(0.92 0.015 80);
  --ink:          oklch(0.22 0.012 75);
  --ink-soft:     oklch(0.42 0.012 75);
  --ink-mute:     oklch(0.6 0.01 75);
  --line:         oklch(0.88 0.012 80);
  --forest:       oklch(0.38 0.05 155);
  --forest-deep:  oklch(0.28 0.045 155);
  --clay:         oklch(0.62 0.09 50);
  --whatsapp:     #25D366;
  --whatsapp-deep:#128C7E;
  --maxw: 1240px;
  /* Per-page accent — overridden with <style> block in each page */
  --accent:       var(--forest);
  --accent-deep:  var(--forest-deep);
  --accent-soft:  oklch(0.92 0.025 155);
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* 3. Typography */
.serif { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.005em; }
.mono  { font-family: var(--font-mono); font-feature-settings: "ss01"; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--ink);
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; line-height: 1.4; }

p { font-size: 1rem; line-height: 1.7; color: var(--ink-soft); }

.text-sm   { font-size: 0.875rem; }
.text-xs   { font-size: 0.8125rem; }
.text-lg   { font-size: 1.125rem; }
.text-mute { color: var(--ink-mute); }
.text-soft { color: var(--ink-soft); }
.text-ink  { color: var(--ink); }
.text-center { text-align: center; }

/* 4. Layout */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

section { border-bottom: 1px solid var(--line); }

.section-std  { padding: 88px 0; }
.section-sm   { padding: 56px 0; }
.section-xs   { padding: 40px 0; }

.bg-cream      { background: var(--cream); }
.bg-cream-soft { background: var(--cream-soft); }
.bg-ink        { background: var(--ink); }
.bg-accent     { background: var(--accent); }

/* 5. Grid */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 0.18s, opacity 0.18s, transform 0.1s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn:hover   { opacity: 0.87; }
.btn:active  { transform: scale(0.975); }

.btn-primary {
  background: var(--accent);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 11.5px 22px;
}
.btn-ghost:hover { background: var(--accent-soft); opacity: 1; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  padding: 9px 16px;
  font-size: 13.5px;
}
.btn-whatsapp:hover { background: var(--whatsapp-deep); opacity: 1; }

.btn-sm { padding: 9px 16px; font-size: 13.5px; }

.btn-ink {
  background: var(--cream);
  color: var(--ink);
}

/* 7. Cards */
.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px 26px;
  background: var(--cream);
}
.card-soft { background: var(--cream-soft); }

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card h4 { margin-bottom: 8px; }
.card p  { font-size: 0.9rem; }

/* 8. Section label */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

/* 9. Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-full { grid-column: 1 / -1; }

/* 10. Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: oklch(0.975 0.008 85 / 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 16px;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  display: block;
  padding: 7px 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--forest);
  background: oklch(0.93 0.02 155);
}

.nav-cta { margin-left: auto; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-cta    { display: none; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    gap: 2px;
    z-index: 99;
    box-shadow: 0 8px 24px oklch(0 0 0 / 0.06);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { font-size: 1rem; padding: 11px 14px; }

  .nav-inner { position: relative; }
}

/* 11. Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 60px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  color: oklch(0.72 0.008 85);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 18px;
  font-style: italic;
  font-family: var(--font-display);
}
.footer-address {
  font-style: normal;
  color: oklch(0.62 0.008 85);
  font-size: 0.8375rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: oklch(0.58 0.008 85);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: oklch(0.78 0.008 85);
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid oklch(0.33 0.008 75);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: oklch(0.5 0.008 75);
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
}

/* 12. Hero */
.hero {
  padding: 80px 0 96px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  background: var(--accent-soft);
  border: 1px solid oklch(0.82 0.022 155);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero h1 { margin-bottom: 18px; }
.hero-lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.65;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stat cards (hero right col) */
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.stat-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.025em;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--ink-mute);
  font-weight: 500;
  line-height: 1.4;
}

/* 13. Page hero (inner pages) */
.page-hero {
  padding: 64px 0 72px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* 14. Cert bar */
.cert-bar {
  background: var(--accent);
  border-bottom: none;
  padding: 0;
}
.cert-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  min-height: 52px;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  color: oklch(0.92 0.014 155);
  font-size: 0.8375rem;
  font-weight: 500;
  border-right: 1px solid oklch(0.48 0.04 155);
}
.cert-item:last-child { border-right: none; }
.cert-item svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cert-item { padding: 10px 16px; font-size: 0.8rem; }
}

/* 15. Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.process-line {
  position: absolute;
  top: 19px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: var(--line);
  z-index: 0;
  pointer-events: none;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 6px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600;
  flex-shrink: 0;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--accent);
}
.step-title { font-size: 0.83rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
.step-desc  { font-size: 0.78rem; color: var(--ink-mute); line-height: 1.45; }

@media (max-width: 960px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-line  { display: none; }
}
@media (max-width: 540px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* 16. Feature pills */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--ink-soft);
  background: var(--cream);
  font-weight: 500;
}
.pill-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.pill-check svg {
  width: 10px; height: 10px;
  stroke: currentColor; fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* 17. Country tags */
.country-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.country-tag {
  padding: 5px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  background: var(--cream);
  font-weight: 500;
}

/* 18. FAQ accordion */
.faq-list {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--cream-soft); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--ink-mute);
  transition: transform 0.2s, background 0.15s;
  line-height: 1;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent-soft);
  color: var(--accent);
}
.faq-a {
  display: none;
  padding: 2px 22px 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.faq-item.is-open .faq-a { display: block; }

/* 19. CTA banner */
.cta-banner {
  background: var(--ink);
  border-bottom: none;
  padding: 80px 0;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 12px; }
.cta-banner p  { color: oklch(0.72 0.008 85); margin-bottom: 32px; }

/* 20. Model comparison cards */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 780px) {
  .model-grid { grid-template-columns: 1fr; }
}
.model-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  background: var(--cream);
}
.model-card.featured {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.model-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid oklch(0.82 0.022 155);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.model-card.featured .model-tag {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}
.model-card h3 { margin-bottom: 8px; }
.model-card p  { font-size: 0.9rem; margin-bottom: 16px; }
.model-card ul { display: flex; flex-direction: column; gap: 8px; }
.model-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.model-card li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* 21. Service cards */
.service-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  background: var(--cream);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 4px 24px oklch(0 0 0 / 0.07);
  transform: translateY(-2px);
}
.service-card-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}
.service-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.service-card .tagline {
  font-size: 0.875rem;
  color: var(--ink-mute);
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 16px;
  display: block;
}
.service-card ul { display: flex; flex-direction: column; gap: 7px; }
.service-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.service-card li::before {
  content: '—';
  color: var(--accent);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 22. Product category cards */
.product-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  background: var(--cream);
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  display: block;
}
.product-card:hover {
  box-shadow: 0 4px 20px oklch(0 0 0 / 0.06);
  border-color: oklch(0.82 0.022 80);
}
.product-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.product-card-icon svg {
  width: 24px; height: 24px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.product-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.product-card p { font-size: 0.875rem; }

/* 23. Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 780px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}
.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
  display: block;
}
.contact-detail-value {
  font-size: 0.9375rem;
  color: var(--ink);
  line-height: 1.55;
}

/* 24. Milestone timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.2;
  padding-top: 2px;
}
.timeline-content h4 { margin-bottom: 6px; }
.timeline-content p  { font-size: 0.9rem; }
@media (max-width: 560px) {
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .timeline-year { font-size: 1.2rem; }
}

/* 25. Values */
.value-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  background: var(--cream-soft);
}
.value-card h4 { margin-bottom: 6px; }
.value-card p  { font-size: 0.875rem; }

/* 26. Inline icon helpers */
.icon-inline {
  display: inline-flex;
  vertical-align: middle;
}

/* 27. Two-col section */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
}

/* 28. Spacing helpers */
.mt-4  { margin-top:  4px; }
.mt-8  { margin-top:  8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-4  { margin-bottom:  4px; }
.mb-8  { margin-bottom:  8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }
.max-w-560 { max-width: 560px; }
.max-w-640 { max-width: 640px; }
.max-w-720 { max-width: 720px; }
.mx-auto    { margin-left: auto; margin-right: auto; }
.w-full     { width: 100%; }

/* 29. Flex helpers */
.flex           { display: flex; }
.flex-col       { flex-direction: column; }
.items-center   { align-items: center; }
.items-start    { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between{ justify-content: space-between; }
.flex-wrap      { flex-wrap: wrap; }
.gap-4  { gap:  4px; }
.gap-8  { gap:  8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
