/* Page-owned styles for the About page */
.about-main {
  overflow: clip;
}

/* Hero */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-color: var(--color-charcoal-black);
  isolation: isolate;
}

.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) sepia(0.08);
  will-change: transform;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(16, 24, 32, 0.92) 0%, rgba(26, 26, 26, 0.78) 45%, rgba(45, 27, 46, 0.55) 100%);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-2xl);
  width: 100%;
}

.about-hero__label {
  margin-block-end: var(--space-sm);
}

.about-hero__title {
  max-width: 600px;
  font-size: var(--text-display);
  line-height: var(--leading-display);
  color: var(--color-soft-ivory);
  margin-block-end: var(--space-lg);
  text-wrap: balance;
}

.about-hero__lead {
  max-width: 600px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-ivory-muted);
  margin-block-end: 0;
}

/* Shared section heading */
.about-section-heading {
  margin-block-end: var(--space-xl);
}

.about-section-heading .label-accent {
  margin-block-end: var(--space-sm);
}

.about-section-heading h2 {
  margin-block-end: 0;
}

/* Our Story */
.about-story {
  background-color: var(--color-charcoal-black);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-story__content {
  min-width: 0;
}

.about-story__title {
  margin-block-end: var(--space-md);
}

.about-story__text {
  max-width: 600px;
  color: var(--color-ivory-muted);
  margin-block-end: var(--space-md);
}

.about-story__text:last-of-type {
  margin-block-end: 0;
}

.about-story__divider {
  margin-block: var(--space-lg);
  max-width: 600px;
}

.about-story__subtitle {
  margin-block-end: var(--space-sm);
}

.about-story__media {
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
}

.about-story__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) sepia(0.06);
  transition: transform var(--transition-base);
}

.about-story__media:hover .about-story__image {
  transform: scale(1.02);
}

/* Experience cards */
.about-experience {
  background: linear-gradient(180deg, var(--color-charcoal-black) 0%, var(--color-deep-plum) 100%);
}

.about-experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.about-experience-card {
  min-width: 0;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.about-experience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.6);
  box-shadow: var(--shadow-lift);
}

.about-experience-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  color: var(--color-antique-gold);
  margin-block-end: var(--space-md);
}

.about-experience-card__title {
  margin-block-end: var(--space-sm);
}

.about-experience-card__text {
  max-width: 55ch;
  color: var(--color-ivory-muted);
  margin-block-end: 0;
}

/* Values */
.about-values {
  background-color: var(--color-charcoal-black);
}

.about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.about-value {
  min-width: 0;
  background: radial-gradient(ellipse at top left, var(--color-deep-plum) 0%, var(--color-charcoal-black) 70%);
  border: 1px solid var(--border-burgundy);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.about-value__title {
  margin-block-end: var(--space-sm);
  color: var(--color-gold-muted);
}

.about-value__text {
  max-width: 60ch;
  color: var(--color-ivory-muted);
  margin-block-end: 0;
}

/* Independent guide panel */
.about-independent {
  background: linear-gradient(180deg, var(--color-charcoal-black) 0%, var(--color-deep-plum) 100%);
}

.about-independent__panel {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  background: rgba(45, 27, 46, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.about-independent__panel .label-accent {
  margin-block-end: var(--space-sm);
}

.about-independent__title {
  margin-block-end: var(--space-md);
}

.about-independent__text {
  max-width: 65ch;
  margin-inline: auto;
  color: var(--color-ivory-muted);
  margin-block-end: 0;
}

/* Responsible entertainment */
.about-responsible {
  background-color: var(--color-charcoal-black);
}

.about-responsible__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-responsible__content {
  min-width: 0;
}

.about-responsible__title {
  margin-block-end: var(--space-md);
}

.about-responsible__text {
  max-width: 600px;
  color: var(--color-ivory-muted);
  margin-block-end: var(--space-md);
}

.about-responsible__subtitle {
  margin-block-end: var(--space-sm);
}

.about-responsible__link {
  margin-block-start: var(--space-md);
}

.about-responsible__media {
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
}

.about-responsible__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) sepia(0.06);
}

/* Visit */
.about-visit {
  background: linear-gradient(180deg, var(--color-charcoal-black) 0%, var(--color-deep-plum) 100%);
}

.about-visit__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-visit__content {
  min-width: 0;
}

.about-visit__title {
  margin-block-end: var(--space-md);
}

.about-visit__text {
  max-width: 600px;
  color: var(--color-ivory-muted);
  margin-block-end: var(--space-md);
}

.about-visit__subtitle {
  margin-block-end: var(--space-sm);
}

.about-visit__map {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.about-visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA */
.about-cta {
  background-color: var(--color-charcoal-black);
}

.about-cta__panel {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  background: radial-gradient(ellipse at center, var(--color-deep-plum) 0%, var(--color-charcoal-black) 80%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.about-cta__title {
  margin-block-end: var(--space-sm);
}

.about-cta__text {
  max-width: 60ch;
  margin-inline: auto;
  color: var(--color-ivory-muted);
  margin-block-end: var(--space-lg);
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.about-cta__actions .btn {
  min-width: 180px;
}

/* Tablet */
@media (min-width: 768px) {
  .about-hero {
    min-height: 80vh;
  }

  .about-story__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: var(--space-2xl);
  }

  .about-experience__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-lg);
  }

  .about-values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-lg);
  }

  .about-responsible__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-2xl);
  }

  .about-visit__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-2xl);
  }

  .about-visit__map {
    aspect-ratio: 4 / 3;
    height: 400px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .about-hero {
    min-height: 90vh;
  }

  .about-hero__title {
    max-width: 600px;
  }

  .about-hero__lead {
    max-width: 600px;
  }

  .about-story__text,
  .about-responsible__text,
  .about-visit__text {
    max-width: 600px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .about-hero__image {
    will-change: auto;
  }

  .about-story__image {
    transition: none;
  }

  .about-story__media:hover .about-story__image {
    transform: none;
  }

  .about-experience-card {
    transition: none;
  }

  .about-experience-card:hover {
    transform: none;
  }
}
