/* ═══════════════════════════════════════════════════════
   ABOUT US — Styles
   ═══════════════════════════════════════════════════════ */

/* ── About Hero ── */
.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
}

.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.45) saturate(1.2);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,0.65) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    opacity: 0;
}

.about-hero-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-hero-title {
    font-size: clamp(2.8rem, 10vw, 7rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.about-hero-sub {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1rem, 3vw, 1.6rem);
    color: rgba(255,255,255,0.75);
    margin-top: 1rem;
    letter-spacing: 1px;
}

/* ── Shared Section Layout ── */
.about-section {
    padding: 10vh 6vw;
    background-color: var(--black);
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: block;
}

.section-label.center,
.about-heading.center {
    text-align: center;
}

.about-heading {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--beige);
    margin-bottom: 1.5rem;
}

.about-body {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    font-weight: 300;
    color: #aaa;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 1.2rem;
}

/* ── Our Story ── */
.about-story-inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-story-image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    border-radius: 8px;
    filter: saturate(1.1) brightness(0.9);
}

@media (min-width: 768px) {
    .about-story-inner {
        flex-direction: row;
        align-items: center;
        gap: 6vw;
    }
    .about-story-text,
    .about-story-image {
        flex: 1;
    }
    .about-story-image img {
        height: 65vh;
    }
}

/* ── Timeline ── */
.about-timeline-section {
    background-color: var(--dark-gray);
}

.about-timeline {
    position: relative;
    max-width: 750px;
    margin: 4rem auto 0;
    padding-left: 2.5rem;
    border-left: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    position: relative;
    opacity: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.85rem;
    top: 0.4rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(212,175,55,0.5);
}

.timeline-year {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--beige);
    margin-bottom: 0.4rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #888;
    font-weight: 300;
    line-height: 1.6;
}

/* ── Values ── */
.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

@media (min-width: 768px) {
    .about-values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-value-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    opacity: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.about-value-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--gold-dim);
}

.about-value-icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.about-value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--beige);
    margin-bottom: 0.6rem;
}

.about-value-card p {
    font-size: 0.85rem;
    color: #777;
    font-weight: 300;
    line-height: 1.6;
}

/* ── Founder ── */
.about-founder-section {
    background-color: var(--dark-gray);
}

.about-founder-inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-founder-image img {
    width: 100%;
    height: 55vh;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(0.85) saturate(1.1);
}

.about-founder-sign {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--gold);
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .about-founder-inner {
        flex-direction: row-reverse;
        align-items: center;
        gap: 6vw;
    }
    .about-founder-text,
    .about-founder-image {
        flex: 1;
    }
}

/* ── CTA ── */
.about-cta-section {
    background-color: var(--black);
    padding: 12vh 6vw;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.about-cta-title {
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--beige);
    margin-bottom: 1rem;
}

.about-cta-sub {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 300;
    color: #777;
    margin-bottom: 2.5rem;
}

/* ── About teaser section in index.html ── */
.about-teaser-section {
    background-color: var(--beige);
    color: var(--black);
}

.about-teaser-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-teaser-grid {
        flex-direction: row;
        align-items: center;
        gap: 6vw;
    }
    .about-teaser-text { flex: 1.2; }
    .about-teaser-stats { flex: 0.8; }
}

.about-teaser-label {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #8b4040;
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.about-teaser-section .title-large {
    color: var(--black);
    margin-bottom: 1.2rem;
}

.about-teaser-section .text-body {
    color: #444;
    max-width: 520px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    padding: 0.85rem 1.8rem;
    background-color: var(--black);
    color: var(--beige);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-about:hover {
    background-color: #8b4040;
    color: #fff;
}

.btn-about svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.btn-about:hover svg {
    transform: translateX(4px);
}

.about-teaser-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.5rem;
    background: rgba(0,0,0,0.05);
    border-radius: 8px;
}

.about-stat-num {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: #666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
