/* ─── HERO ─── */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(196,154,108,0.035) 60px,
    rgba(196,154,108,0.035) 61px
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.8;
  line-height: 1.8;
}

/* ─── INTRO ─── */
.intro {
  padding: 6rem 1.5rem;
}

.intro-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 1rem;
}

/* ─── VALUES ─── */
.values {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 1.5rem;
}

.values-inner {
  max-width: 960px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 1.4rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30,27,22,0.08);
}

.value-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

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

/* ─── STORY ─── */
.story {
  padding: 6rem 1.5rem;
}

.story-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 1rem;
}

blockquote {
  margin-top: 1.8rem;
  padding-left: 1.2rem;
  border-left: 3px solid var(--accent-light);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
}

blockquote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 12px;
  font-style: normal;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
}

/* ─── STATS ─── */
.stats {
  background: var(--accent);
  padding: 4rem 1.5rem;
}

.stats-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat {
  flex: 1;
  text-align: center;
  color: white;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.75;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-banner-inner { max-width: 600px; margin: 0 auto; }

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.cta-banner p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 720px) {
  .intro-inner, .story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-image { order: -1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .stats-inner { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { flex: 0 0 50%; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}
