:root{
  --bg: #f6f6f6;
  --text: #231f20;
  --muted: #5e5854;
  --card: #ffffff;
  --line: rgba(0,0,0,0.08);
  --accent: #5b3a1d;
  --max-width: 1100px;
}

*{
  box-sizing: border-box;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Oswald', sans-serif;
}

.site-header{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.site-header h1{
  margin: 0;
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.04em;
}

.back-link{
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.about-page{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 24px 80px;
}

.hero{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-image{
  width: 100%;
}

.about-image{
  width: 100%;
  /* aspect-ratio: 4 / 5; */
  border-radius: 18px;
  background: #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 24px;
  letter-spacing: 0.04em;
}

.hero-content .eyebrow{
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-size: 14px;
}

.hero-content h2{
  margin: 0 0 18px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: 0.02em;
}

.hero-content .intro{
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 700px;
}

.story,
.highlights,
.values,
.cta{
  margin-top: 54px;
}

.section-heading h3,
.cta h3{
  margin: 0 0 16px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: 0.03em;
}

.section-body p{
  margin: 0 0 18px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
}

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

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.card h4{
  margin: 0 0 10px;
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  letter-spacing: 0.03em;
}

.card p{
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
}

.values-list{
  margin: 0;
  padding-left: 22px;
}

.values-list li{
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
}

.cta{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}

.cta p{
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
}

.cta-button{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.04em;
  transition: opacity 0.2s ease;
}

.cta-button:hover{
  opacity: 0.85;
}

@media (max-width: 900px){
  .hero{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-image{
    max-width: 420px;
  }

  .cards{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .about-page{
    padding: 28px 18px 60px;
  }

  .site-header{
    padding: 16px 18px;
  }

  .hero-content .intro,
  .section-body p,
  .card p,
  .values-list li,
  .cta p{
    font-size: 17px;
  }
}