/* ─── HERO ───────────────────────────────────────────────── */

.hero-over {
  position: relative;
  background: var(--donker);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-over .hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-over h1 {
  color: var(--ivoor);
  margin: 20px 0 16px;
  position: relative;
  z-index: 10;
  font-size: clamp(48px, 8vw, 72px);
}

.hero-over .eyebrow {
  position: relative;
  z-index: 10;
  color: rgba(217, 119, 87, 0.8);
}

.hero-subtitle {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 247, 243, 0.5);
  position: relative;
  z-index: 10;
}

/* ─── STORY SECTION ──────────────────────────────────────── */

.story-section {
  background: var(--ivoor);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.story-quote {
  position: sticky;
  top: 120px;
}

.story-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--accent);
  line-height: 1.4;
  padding-left: 0;
  margin: 0;
}

.story-text p {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--eik);
}

.story-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-quote {
    position: static;
  }
}

/* ─── VALUES SECTION ─────────────────────────────────────– */

.values-section {
  background: var(--creme);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

.values-section .section-header {
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rand);
}

.value-card {
  background: white;
  padding: 36px;
  border: 1px solid var(--rand);
  border-top: 2px solid transparent;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-top-color: var(--accent);
  box-shadow: 0 8px 16px rgba(44, 36, 32, 0.05);
}

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

.value-card p {
  font-size: 14px;
  color: rgba(44, 36, 32, 0.7);
  line-height: 1.7;
}

/* ─── WHY SECTION ────────────────────────────────────────– */

.why-section {
  background: var(--donker);
  color: var(--ivoor);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

.why-section .section-header .eyebrow {
  color: rgba(217, 119, 87, 0.7);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.why-item {
  display: flex;
  gap: 20px;
}

.why-icon {
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.why-item h4 {
  color: var(--ivoor);
  margin-bottom: 8px;
  font-size: 16px;
}

.why-item p {
  font-size: 14px;
  color: rgba(248, 247, 243, 0.7);
  line-height: 1.6;
}

/* ─── CTA SECTION ────────────────────────────────────────– */

.cta-section {
  background: var(--eik);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

.cta-content {
  text-align: center;
  color: var(--ivoor);
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--ivoor);
  margin-bottom: 12px;
}

.cta-content > p {
  font-size: 16px;
  color: rgba(248, 247, 243, 0.75);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
  min-width: 220px;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    min-width: auto;
  }

  .why-item {
    gap: 16px;
  }

  .why-icon {
    font-size: 24px;
  }
}
