/* =========================================================
   DJ Echarry — About page
   ---------------------------------------------------------
   Editorial magazine layout, page-specific only. Every color,
   font, spacing, button, nav, and footer rule is inherited from
   the shared css/style.css design tokens — this file holds only
   the six About-page sections themselves.
   ========================================================= */

/* ---- Section 1: Cinematic opening ------------------------------ */
.about-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 10, 9, 0.96) 0%,
    rgba(11, 10, 9, 0.68) 38%,
    rgba(11, 10, 9, 0.18) 68%,
    rgba(11, 10, 9, 0) 100%
  );
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  padding-block: var(--space-32) var(--space-24);
}

.about-hero-content {
  max-width: 760px;
}

.about-hero-title {
  font-size: clamp(2rem, 2.6vw + 1.3rem, 3.75rem);
  line-height: 1.16;
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.about-hero-title .italic-serif {
  display: block;
  margin-top: var(--space-2);
}

.about-hero-lead {
  font-size: var(--fs-lead);
  color: var(--color-text-muted);
  max-width: 620px;
  margin-bottom: var(--space-4);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

.about-hero-content .btn {
  margin-top: var(--space-6);
}

/* ---- Section 2: The Story (split editorial) --------------------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 900px) {
  .about-story-grid {
    grid-template-columns: 0.9fr 1fr;
    gap: var(--space-24);
  }
}

.about-story-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}

.about-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.about-story-copy h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-6);
  max-width: 480px;
}

.about-story-copy p {
  color: var(--color-text-muted);
  font-size: var(--fs-body);
  line-height: 1.75;
  margin-bottom: var(--space-4);
  max-width: 480px;
}

.about-story-copy p.about-story-emphasis {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-gold);
  font-size: var(--fs-lead);
  margin-top: var(--space-2);
}

/* ---- Section 3: Editorial pull-quote ----------------------------- */
.about-quote-section {
  padding-block: var(--space-32);
  text-align: center;
}

@media (max-width: 640px) {
  .about-quote-section {
    padding-block: var(--space-24);
  }
}

.about-quote-rule {
  width: 48px;
  height: 2px;
  background: var(--color-gold);
  margin: 0 auto var(--space-12);
}

.about-quote-large {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.4vw + 1.1rem, 2.5rem);
  line-height: 1.6;
  color: var(--color-text);
  max-width: 780px;
  margin-inline: auto;
}

.about-quote-large p {
  margin-bottom: var(--space-4);
}

.about-quote-large p:last-child {
  color: var(--color-gold-bright);
  margin-bottom: 0;
}

/* ---- Section 4: Four premium highlights -------------------------- */
.about-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .about-highlights-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.about-highlight {
  padding: var(--space-8);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--color-bg-alt) 60%, transparent);
  transition: border-color var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}

.about-highlight:hover {
  border-color: var(--color-gold-soft);
  transform: translateY(-2px);
}

.about-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.about-highlight-icon svg {
  width: 18px;
  height: 18px;
}

.about-highlight h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-3);
}

.about-highlight p {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  line-height: 1.65;
}

/* ---- Section 5: Service area --------------------------------------- */
.about-area-inner {
  max-width: 860px;
}

.about-area-copy {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--fs-lead);
  line-height: 1.8;
  max-width: 780px;
  margin-inline: auto;
}

/* ---- Section 6: Booking CTA ------------------------------------------ */
.about-cta {
  padding-block: var(--space-32);
  background: color-mix(in srgb, var(--color-bg-alt) 95%, transparent);
  text-align: center;
  position: relative;
}

@media (max-width: 640px) {
  .about-cta {
    padding-block: var(--space-24);
  }
}

.about-cta-inner {
  max-width: 720px;
}

.about-cta h2 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-6);
}

.about-cta p {
  color: var(--color-text-muted);
  font-size: var(--fs-lead);
  margin-bottom: var(--space-8);
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ---- Mobile ----------------------------------------------------------- */
@media (max-width: 640px) {
  .about-hero {
    min-height: 88vh;
  }

  .about-hero-inner {
    padding-block: var(--space-24) var(--space-16);
  }
}
