/* =========================================
   ABOUT PAGE — THE VIBE STUDIO
   Hypnotic Gen-Z Luxury • Editorial Calm
   (Aligned with Cart Page Flow)
========================================= */

/* ---------------------------------------------------------
   PAGE LAYOUT (same rhythm as cart)
--------------------------------------------------------- */

.about-page-container {
    padding-top: 140px;
    padding-bottom: 120px;
    min-height: 85vh;
    max-width: 1000px;
    margin: 0 auto;
    width: 90%;
  }
  
  /* Uses same animation logic as cart states */
  .state-section {
    animation: fadeFloat 1.2s ease forwards;
  }
  
  /* ---------------------------------------------------------
     INTRO
  --------------------------------------------------------- */
  
  .about-intro {
    text-align: center;
    margin-bottom: clamp(48px, 9vh, 80px);
  }
  
  .about-intro h1 {
    font-size: clamp(2rem, 4.8vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.7px;
    line-height: 1.12;
    position: relative;
    color: var(--text-primary);
  }
  
  /* Editorial underline */
  .about-intro h1::after {
    content: "";
    display: block;
    width: clamp(56px, 12vw, 88px);
    height: 2px;
    margin: 20px auto 0;
    background: linear-gradient(
      90deg,
      transparent,
      var(--neon-cyan),
      transparent
    );
    opacity: 0.55;
  }
  
  .about-subtitle {
    margin-top: 14px;
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    letter-spacing: 0.45px;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  
  /* ---------------------------------------------------------
     STORY GLASS PANEL (same importance as cart-table)
  --------------------------------------------------------- */
  
  .about-story {
    position: relative;
    background: linear-gradient(
      180deg,
      rgba(18, 18, 18, 0.72),
      rgba(10, 10, 10, 0.82)
    );
    backdrop-filter: blur(18px);
    border-radius: clamp(18px, 3vw, 26px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: clamp(30px, 5.5vw, 64px);
    box-shadow:
      0 60px 140px rgba(0, 0, 0, 0.65),
      inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
  }
  
  /* Film grain texture */
  .about-story::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: overlay;
  }
  
  /* ---------------------------------------------------------
     TYPOGRAPHY (EDITORIAL RHYTHM)
  --------------------------------------------------------- */
  
  .about-story p {
    max-width: 62ch;
    font-size: clamp(0.95rem, 2.2vw, 1.08rem);
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: clamp(22px, 4.5vh, 30px);
    opacity: 0.92;
  }
  
  /* Lead hook */
  .about-story p.lead {
    font-size: clamp(1.2rem, 3.2vw, 1.55rem);
    font-weight: 500;
    letter-spacing: -0.25px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: clamp(30px, 6vh, 42px);
    opacity: 1;
  }
  
  /* Emphasis */
  .about-story strong {
    color: var(--white);
    font-weight: 600;
  }
  
  /* Closing emotional anchor */
  .about-story p.closing {
    margin-top: clamp(30px, 6vh, 44px);
    font-weight: 500;
    opacity: 1;
  }
  
  /* ---------------------------------------------------------
     SIGNATURE
  --------------------------------------------------------- */
  
  .signature {
    margin-top: clamp(40px, 7vh, 60px);
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: var(--text-secondary);
  }
  
  .signature span {
    display: block;
    margin-top: 6px;
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    letter-spacing: 0.35px;
    color: var(--text-muted);
  }
  
  /* ---------------------------------------------------------
     EMOTIONAL PAUSE LINE
  --------------------------------------------------------- */
  
  .about-story::after {
    content: "";
    display: block;
    width: 72px;
    height: 2px;
    margin-top: 36px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--neon-cyan),
      transparent
    );
    opacity: 0.35;
  }
  
  /* ---------------------------------------------------------
     MICRO FLOAT (SUBCONSCIOUS LUXURY)
  --------------------------------------------------------- */
  
  @media (hover: hover) {
    .about-story {
      transition: transform 0.8s ease, box-shadow 0.8s ease;
    }
  
    .about-story:hover {
      transform: translateY(-8px);
      box-shadow:
        0 90px 160px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
  }
  
  /* ---------------------------------------------------------
     ENTRY ANIMATION
  --------------------------------------------------------- */
  
  @keyframes fadeFloat {
    from {
      opacity: 0;
      transform: translateY(32px) scale(0.985);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  /* Respect reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .state-section {
      animation: none;
    }
  }
  
  /* ---------------------------------------------------------
     MOBILE REFINEMENT
  --------------------------------------------------------- */
  
  @media (max-width: 768px) {
    .about-page-container {
      width: 95%;
      padding-top: 120px;
    }
  }
  
  @media (max-width: 480px) {
    .about-story p {
      line-height: 1.75;
    }
  
    .about-story::after {
      margin-top: 28px;
    }
  }
  
  /* ---------------------------------------------------------
     ULTRA WIDE
  --------------------------------------------------------- */
  
  @media (min-width: 1400px) {
    .about-page-container {
      max-width: 1040px;
    }
  }
  