.about-hero {
  position: relative;

  min-height: 100svh;
  padding: 108px 56px 120px;

  display: flex;
  align-items: center;

  background:
    radial-gradient(circle at 15% 20%, rgba(199, 168, 109, 0.18), transparent 32%),
    linear-gradient(135deg, #161616 0%, #241c14 100%);

  color: #fff;

  overflow: visible;
}


.about-hero::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 180px;

  background:
    linear-gradient(
      to bottom,
      rgba(247,242,234,0),
      #f7f2ea 85%
    );

  pointer-events: none;
  z-index: 1;
}

.about-hero-image {
  position: relative;

  min-height: 620px;

  border-radius: 42px;
  overflow: hidden;

  padding: 12px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.22),
      rgba(255,255,255,0.06)
    );

  border: 1px solid rgba(255,255,255,0.14);

  backdrop-filter: blur(18px);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255,255,255,0.04);
}

.about-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;

  border-radius: 32px;
}

.about-hero-container {
  position: relative;
  z-index: 2;

  width: min(1280px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: center;
  gap: 64px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #c7a86d;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.section-label::before {
  content: "";
  width: 42px;
  height: 1px;
  background: #c7a86d;
}

.about-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.7rem, 4.6vw, 4.9rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -2.5px;
  max-width: 680px;
  margin-bottom: 22px;
}

.about-hero-text > p:not(.section-label) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  font-size: 0.98rem;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}


.about-btn {
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.3s ease;
}

.about-btn.primary {
  background: #c7a86d;
  color: #161616;
}

.about-btn.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.about-btn:hover {
  transform: translateY(-3px);
}

.about-hero-image {
  position: relative;
  min-height: 600px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
}

.about-hero-image img,
.values-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* .floating-card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(14px);
  color: #161616;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.floating-card span {
  display: block;
  color: #8b6f34;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 6px;
}

.floating-card strong {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
} */

.about-story-section {
  padding: 100px 56px;
  background: #f7f2ea;
}

.about-story-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.story-card {
  position: relative;
  overflow: hidden;

  padding: 34px;
  border-radius: 28px;

  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.5);

  backdrop-filter: blur(12px);

  transition:
    transform .45s ease,
    box-shadow .45s ease;
}

.story-card.featured {
  background:
    linear-gradient(
      135deg,
      #1a1a1a,
      #0f0f0f
    );

  border: 1px solid rgba(199,168,109,.28);
}

.story-card.featured h3 {
  color: #fffaf1;
}

.story-card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: #c7a86d;
  font-weight: 900;
}

.story-card h3 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: #161616;
}

.story-card p {
  color: rgba(22,22,22,0.72);
  line-height: 1.75;
}

.story-card.featured p {
  color: rgba(255,255,255,.72);
}

.story-card.warm {
  background:
    linear-gradient(
      135deg,
      #f2e6cf,
      #ead7b2
    );
}

.story-card.warm h3 {
  color: #6d4d16;
}

.story-card.warm p {
  color: rgba(60,42,15,.78);
}

.about-values {
  padding: 0 56px 120px;
  background: #f7f2ea;
}

.values-container {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
}

.values-image {
  min-height: 560px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.14);
}

.values-content {
  padding: 50px;
  border-radius: 38px;
  background: #fffaf2;
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.values-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #161616;
}

.values-content > p {
  color: #5f574e;
  line-height: 1.85;
  max-width: 620px;
}

.values-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.values-list div {
  padding: 22px;
  border-radius: 22px;
  background: #f1eadf;
}

.values-list strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: #161616;
}

.values-list span {
  color: #6b6258;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
  .about-hero,
  .about-story-section,
  .about-values {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-hero-container,
  .values-container {
    grid-template-columns: 1fr;
  }

  .about-hero {
    background: #161616;
  }

  .about-hero-image,
  .values-image {
    min-height: 440px;
  }

  .about-story-container {
    grid-template-columns: 1fr;
  }

  .story-card.featured {
    transform: none;
  }
}

@media (max-width: 600px) {
  .about-hero {
    padding-top: 130px;
  }

  .about-hero h1 {
    letter-spacing: -2px;
  }

  .about-hero-image,
  .values-image {
    min-height: 340px;
    border-radius: 28px;
  }

  .values-content,
  .story-card {
    padding: 28px;
    border-radius: 28px;
  }

  .floating-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .about-actions {
    flex-direction: column;
  }

  .about-btn {
    text-align: center;
  }
}
