.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-page .container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.about-page .section:first-of-type {
  padding-top: 6.5rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 100%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
}

.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--silver);
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-visual {
  background: var(--navy);
  border-radius: 6px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}

.story-visual .corner-accent {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
}

.story-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.story-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-values-title {
  color: var(--white);
}

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

.value-card {
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.value-card .icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.value-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.87rem;
  color: var(--silver);
  line-height: 1.65;
}

.licence-band {
  background: var(--grey-light);
  padding: 3rem 2rem;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.licence-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--navy);
}

.licence-badges {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.licence-badge {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 4px;
  padding: 1.25rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.licence-badge .badge-icon {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .about-page .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about-page .section:first-of-type {
    padding-top: 5.5rem;
  }

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

  .story-visual {
    margin-top: 0.5rem;
  }

  .values-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .values-grid .value-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
}
