:root {
  --color-bg: #fdfaf6;
  --color-surface: #ffffff;
  --color-text: #2b2320;
  --color-muted: #6f625c;
  --color-accent: #d4622a;
  --color-accent-dark: #a34518;
  --color-dusk: #2e1f33;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --spacing-unit: 1rem;
  --radius: 14px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(160deg, #2e1f33 0%, #6b2d3e 45%, #c65a2e 85%, #e8853f 100%);
  color: #fff7ef;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.hero-text {
  flex: 1 1 55%;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-sub {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: inline-block;
  background: #fff7ef;
  color: var(--color-accent-dark);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero-photo {
  flex: 1 1 40%;
}

.hero-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* ---------- About ---------- */

.about {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem 1rem;
}

.about h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 1.25rem;
  color: var(--color-accent-dark);
}

.about p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 1.1rem;
}

/* ---------- Pillars ---------- */

.pillars {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.pillar-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.pillar h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-accent-dark);
}

.pillar p {
  color: var(--color-muted);
  line-height: 1.6;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--color-dusk);
  color: #d9cfc8;
  text-align: center;
  padding: 1.5rem 1.25rem;
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-photo {
    width: min(420px, 80%);
    flex: 0 0 auto;
  }

  .pillars {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}
