/* ============================================
   ABOUT PAGE — EDITORIAL DARK DESIGN
   ============================================ */

.about-page {
    background: #080808;
    font-family: 'Inter', sans-serif;
}

/* ============================================
   HERO — SPLIT LAYOUT WITH BIG TYPOGRAPHY
   ============================================ */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    background: #000;
}

@media (max-width: 900px) {
    .about-hero { grid-template-columns: 1fr; }
    .about-hero-visual { display: none; }
}

/* Left text panel */
.about-hero-text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 4rem 6rem 4rem;
}

@media (max-width: 1200px) {
    .about-hero-text { padding: 10rem 2.5rem 6rem; }
}
@media (max-width: 900px) {
    .about-hero-text { padding: 9rem 1.5rem 5rem; }
}

/* Year tag */
.about-est {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(176, 152, 120, 0.7);
    margin-bottom: 2.5rem;
}

.about-est-line {
    width: 32px;
    height: 1px;
    background: rgba(176, 152, 120, 0.5);
}

/* Massive hero title */
.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 2.5rem;
    color: #ffffff;
    z-index: 10;
}

.about-title-muted {
    display: block;
    color: rgba(255, 255, 255, 0.18);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.25);
}

.about-title-accent {
    display: block;
    background: linear-gradient(135deg, #b09878 0%, #d4b896 50%, #686048 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-lead {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 3rem;
    z-index: 1;
}

/* Scroll hint */
.about-scroll-hint {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

.about-scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.about-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(176, 152, 120, 0.7);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Right visual panel */
.about-hero-visual {
    position: relative;
    overflow: hidden;
}

.about-hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000 0%, transparent 40%);
    z-index: 1;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(30%);
}

/* Floating stat cards */
.about-stat-cards {
    position: absolute;
    bottom: 4rem;
    left: -2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-stat-card {
    padding: 1.25rem 1.75rem;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(176, 152, 120, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    min-width: 180px;
}

.about-stat-card-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #b09878, #d4b896);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.about-stat-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   STORY SECTION — HORIZONTAL MARQUEE + TEXT
   ============================================ */
.about-story {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Huge background text */
.about-bg-word {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(8rem, 20vw, 20rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -10px;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
}

.about-story-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .about-story-inner { grid-template-columns: 1fr; gap: 3rem; }
}

.about-story-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(176, 152, 120, 0.7);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-story-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: rgba(176, 152, 120, 0.4);
}

.about-story-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 0;
}

.about-story-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-story-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.9;
}

.about-story-text p strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ============================================
   VALUES — HORIZONTAL SCROLLING CARDS
   ============================================ */
.about-values {
    padding: 8rem 0;
    background: #050505;
}

.about-section-header {
    margin-bottom: 4rem;
}

.about-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(176, 152, 120, 0.7);
    margin-bottom: 1rem;
}

.about-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
}

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

@media (max-width: 900px) {
    .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .values-grid { grid-template-columns: 1fr; }
}

.value-card {
    position: relative;
    padding: 2.5rem;
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-card:hover {
    border-color: rgba(176, 152, 120, 0.25);
    transform: translateY(-6px);
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(176, 152, 120, 0.4), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-num {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.4s ease;
}

.value-card:hover .value-num {
    color: rgba(176, 152, 120, 0.08);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: block;
}

.value-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.about-team {
    padding: 8rem 0;
    background: #080808;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #0e0e0e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.4s ease, transform 0.4s ease;
    cursor: default;
}

.team-card:hover {
    border-color: rgba(176, 152, 120, 0.2);
    transform: translateY(-8px);
}

.team-card-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

/* Photo placeholder with initials */
.team-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(176, 152, 120, 0.15);
}

.team-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    opacity: 0.75;
    filter: grayscale(20%);
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.team-card:hover .team-card-visual img {
    opacity: 0.9;
    transform: scale(1.04);
}

/* Gradient overlay on photo */
.team-card-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, #0e0e0e 0%, transparent 100%);
}

.team-card-info {
    padding: 1.75rem;
}

.team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.team-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #b09878, #d4b896);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.team-skill {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
}

/* ============================================
   TIMELINE — MILESTONES
   ============================================ */
.about-milestones {
    padding: 8rem 0;
    background: #0a0a0a;
}

.milestones-track {
    position: relative;
    margin-top: 5rem;
}

/* Vertical line */
.milestones-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(176, 152, 120, 0.25) 10%,
        rgba(176, 152, 120, 0.25) 90%,
        transparent 100%);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .milestones-track::before {
        left: 20px;
    }
}

.milestone {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.milestone:last-child { margin-bottom: 0; }

/* Alternate sides */
.milestone-left  { text-align: right; }
.milestone-right { grid-column: 3; }
.milestone.flip .milestone-left  { grid-column: 3; text-align: left; }
.milestone.flip .milestone-right { grid-column: 1; grid-row: 1; text-align: right; }
.milestone.flip .milestone-dot   { grid-column: 2; grid-row: 1; }

@media (max-width: 768px) {
    .milestone {
        grid-template-columns: 40px 1fr;
        gap: 1.5rem;
    }
    .milestone-left,
    .milestone.flip .milestone-left,
    .milestone.flip .milestone-right { 
        grid-column: 2; 
        grid-row: 1;
        text-align: left; 
    }
    .milestone-dot,
    .milestone.flip .milestone-dot { grid-column: 1; grid-row: 1; }
    .milestone-right,
    .milestone.flip .milestone-right.empty { display: none; }
}

.milestone-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 2px solid rgba(176, 152, 120, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 auto;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.milestone:hover .milestone-dot {
    border-color: rgba(176, 152, 120, 0.7);
    box-shadow: 0 0 20px rgba(176, 152, 120, 0.2);
}

.milestone-dot-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b09878, #686048);
}

.milestone-year {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #b09878 0%, #686048 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.milestone-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.milestone-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.75;
    max-width: 320px;
}

.milestone-left .milestone-content p,
.milestone.flip .milestone-right .milestone-content p {
    margin-left: auto;
}

/* ============================================
   CTA — CLOSING STATEMENT
   ============================================ */
.about-cta {
    padding: 10rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-cta-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(176, 152, 120, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ctaPulse 6s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

.about-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(176, 152, 120, 0.7);
    margin-bottom: 2rem;
}

.about-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.about-cta-title span {
    background: linear-gradient(135deg, #b09878 0%, #d4b896 50%, #686048 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* ============================================
   SCROLL REVEAL ANIMATION
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }