.about-page {
  background: #f7f2ea;
}

.about-hero {
  position: relative;
  padding: 180px 0 110px;
  background:
    radial-gradient(
      circle at top right,
      rgba(224, 201, 162, 0.22),
      transparent 34%
    ),
    linear-gradient(180deg, #f7f2ea 0%, #f2ebe0 100%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: #b08a47;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0 0 26px;
  color: #20352f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 6vw, 52px);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.about-hero p {
  margin: 0;
  max-width: 720px;
  color: #68736f;
  font-size: 21px;
  line-height: 1.75;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.about-primary-btn,
.about-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.about-primary-btn {
  background: #2c4a44;
  color: #ffffff;
}

.about-primary-btn:hover {
  background: #203b35;
  color: #ffffff;
  transform: translateY(-2px);
}

.about-secondary-btn {
  background: #ffffff;
  color: #2c4a44;
  border: 1px solid rgba(44, 74, 68, 0.12);
}

.about-secondary-btn:hover {
  background: #f8f5ef;
  color: #203b35;
}

.about-hero-card {
  padding: 38px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(44, 74, 68, 0.08);
  box-shadow: 0 28px 60px rgba(31, 36, 52, 0.08);
}

.about-hero-card h3 {
  margin: 0 0 24px;
  color: #20352f;
  font-size: 26px;
}

.about-hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-hero-card li {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(44, 74, 68, 0.08);
}

.about-hero-card li:last-child {
  border-bottom: none;
}

.about-hero-card span {
  color: #7b8581;
  font-size: 15px;
}

.about-hero-card strong {
  color: #2c4a44;
  font-size: 15px;
  text-align: right;
}

.about-bio-section {
  padding: 120px 0;
  background: #ffffff;
}

.about-bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-bio-image {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(31, 36, 52, 0.14);
}

.about-bio-image img {
  display: block;
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.about-bio-content h2 {
  margin: 0 0 28px;
  color: #20352f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 42px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.about-bio-content p {
  margin: 0 0 24px;
  color: #68736f;
  font-size: 19px;
  line-height: 1.85;
}

.about-values-section {
  padding: 110px 0;
  background: #2c4a44;
  color: #ffffff;
}

.about-values-head {
  max-width: 720px;
  margin-bottom: 50px;
}

.about-values-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 5vw, 40px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.about-value-card {
  padding: 34px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(224, 201, 162, 0.2);
}

.about-value-card span {
  display: block;
  margin-bottom: 24px;
  color: #e0c9a2;
  font-size: 14px;
  font-weight: 700;
}

.about-value-card h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 26px;
}

.about-value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .about-hero-grid,
  .about-bio-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 150px 0 80px;
  }

  .about-bio-image img {
    height: 520px;
  }
}

@media (max-width: 767px) {
  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p,
  .about-bio-content p {
    font-size: 17px;
  }

  .about-hero-card {
    padding: 28px;
  }

  .about-hero-card li {
    flex-direction: column;
    gap: 6px;
  }

  .about-hero-card strong {
    text-align: left;
  }

  .about-bio-image img {
    height: 420px;
  }
}
