/**
 * About Us Page – GrandVantage Tours
 *
 * Pixel-perfect alignment with about-mockup.html.
 * Palette: Espresso/Chocolate (#3B2314, #5C3D2E), Gold (#C9982E, #E8C767), Sandstone Cream (#FAF6EE, #F5EDE0).
 * Typography: Cormorant Garamond, Marcellus, Outfit, Dancing Script.
 *
 * @package GrandVantageTours
 * @since   1.0.0
 */

/* ═══ CSS CUSTOM PROPERTIES ═══ */
:root {
    --brown-deep:   #3B2314;
    --brown-rich:   #5C3D2E;
    --brown-mid:    #8B6B4A;
    --brown-warm:   #A0825C;
    --gold:         #C9982E;
    --gold-light:   #E8C767;
    --gold-pale:    #F5E6B8;
    --amber:        #D4943A;
    --cream:        #F5EDE0;
    --cream-light:  #FAF6EE;
    --cream-dark:   #E8DCC8;
    --sand:         #D9C9A8;
    --linen:        #FDF8F0;
    --white:        #FFFFFF;
    --body:         #3D3530;
    --muted:        #6B6058;
    --dark:         #1E1410;
    --teal:         #2A7B6F;
    --teal-dark:    #1D5A52;
    --coral:        #C05E42;
    --ff-display:   'Cormorant Garamond', Georgia, serif;
    --ff-heading:   'Marcellus', Georgia, serif;
    --ff-body:      'Outfit', -apple-system, sans-serif;
    --ff-script:    'Dancing Script', cursive;
    --shadow-sm:    0 2px 8px rgba(59,35,20,.08);
    --shadow-md:    0 4px 20px rgba(59,35,20,.12);
    --shadow-lg:    0 8px 40px rgba(59,35,20,.16);
    --shadow-xl:    0 16px 56px rgba(59,35,20,.22);
    --radius:       8px;
    --radius-lg:    16px;
    --radius-xl:    24px;
    --radius-pill:  50px;
    --transition:   300ms ease;
}

/* ═══ HERO SECTION ═══ */
.about-hero,
.page-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.about-hero-bg,
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.about-hero-overlay,
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(59,35,20,.3) 0%, rgba(59,35,20,.65) 55%, rgba(59,35,20,.92) 100%);
}
.about-hero-content,
.page-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 60px;
    color: var(--white);
    width: 100%;
}
.about-hero .breadcrumbs,
.page-hero .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,.6);
}
.about-hero .breadcrumbs a,
.page-hero .breadcrumbs a {
    color: rgba(255,255,255,.6);
}
.about-hero .breadcrumbs a:hover,
.page-hero .breadcrumbs a:hover {
    color: var(--gold-light);
}
.about-hero .breadcrumbs i,
.page-hero .breadcrumbs i {
    font-size: .55rem;
}
.about-hero .breadcrumbs .current,
.page-hero .breadcrumbs .current {
    color: var(--gold-light);
    font-weight: 600;
}
.about-hero-title,
.page-hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white) !important;
}
.about-hero-title em,
.page-hero-title em,
.about-hero-title .accent,
.page-hero-title .accent {
    color: var(--gold-light);
    font-style: normal;
}
.about-hero-subtitle,
.page-hero-subtitle {
    font-size: 1.1rem;
    max-width: 620px;
    line-height: 1.7;
    opacity: .85;
    color: rgba(255,255,255,.85);
}

/* ═══ OUR STORY ═══ */
.story-section,
.about-story {
    padding: 100px 0;
    background: var(--white);
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.story-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 480px;
    display: block;
}
.story-badge,
.story-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gold);
    color: var(--brown-deep);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.badge-number {
    font-family: var(--ff-display);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.badge-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}
.story-content .section-label,
.story-content .section-tag {
    margin-bottom: 8px;
    font-family: var(--ff-script);
    font-size: 1.35rem;
    color: var(--gold);
    display: block;
}
.story-content h2,
.story-content .section-title {
    font-family: var(--ff-display);
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--brown-deep);
    text-align: left;
}
.story-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.7;
    margin-bottom: 18px;
}
.story-content p {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
}
.story-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--cream-dark);
}
.signature-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brown-deep), var(--brown-rich));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    font-family: var(--ff-heading);
    flex-shrink: 0;
}
.story-signature strong {
    display: block;
    font-size: .95rem;
    color: var(--brown-deep);
}
.story-signature span {
    font-size: .82rem;
    color: var(--muted);
}

/* ═══ VALUES ═══ */
.values-section,
.about-values {
    padding: 100px 0;
    background: var(--cream);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: all .4s ease;
    border: 1px solid transparent;
}
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,152,46,.2);
}
.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--amber));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
}
.value-card h3 {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    color: var(--brown-deep);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.value-card p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ═══ STATS BAR ═══ */
.stats-section,
.about-stats {
    padding: 80px 0;
    background: var(--brown-deep);
    position: relative;
    overflow: hidden;
}
.stats-section::before,
.about-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,152,46,.1) 0%, transparent 70%);
    border-radius: 50%;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item {
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(201,152,46,.2);
}
.stat-number {
    font-family: var(--ff-display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    font-weight: 500;
}

/* ═══ TEAM ═══ */
.team-section,
.about-team {
    padding: 100px 0;
    background: var(--white);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-card {
    background: var(--cream-light);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: all .4s ease;
    border: 1px solid transparent;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,152,46,.2);
    background: var(--white);
}
.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brown-deep), var(--brown-rich));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    font-family: var(--ff-display);
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
}
.team-card h3 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    color: var(--brown-deep);
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.team-role {
    font-size: .82rem;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.team-card p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.team-socials {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.team-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .85rem;
    transition: all var(--transition);
}
.team-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ═══ TIMELINE ═══ */
.timeline-section,
.about-timeline {
    padding: 100px 0;
    background: var(--cream);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 48px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--brown-deep));
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
    z-index: 1;
    transition: all .3s;
}
.timeline-item:hover::before {
    background: var(--gold);
    transform: scale(1.3);
}
.timeline-current::before {
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(201,152,46,.2);
    animation: tpulse 2s infinite;
}
@keyframes tpulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(201,152,46,.2); }
    50% { box-shadow: 0 0 0 12px rgba(201,152,46,.1); }
}
.timeline-year {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    border: 1px solid var(--cream-dark);
}
.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    border-color: rgba(201,152,46,.25);
}
.timeline-content h3 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    color: var(--brown-deep);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.timeline-content p {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ═══ PARTNERS & CERTIFICATIONS ═══ */
.partners-section,
.about-partners {
    padding: 100px 0;
    background: var(--white);
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.partner-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    background: var(--cream-light);
    border-radius: var(--radius);
    border: 1px solid var(--cream-dark);
    transition: all .3s;
}
.partner-item:hover {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}
.partner-item i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}
.partner-item span {
    font-size: .92rem;
    font-weight: 600;
    color: var(--brown-deep);
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
    padding: 100px 0;
    background: var(--cream);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: all .4s ease;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,152,46,.2);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--ff-display);
    font-size: 4rem;
    color: var(--cream-dark);
    line-height: 1;
}
.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}
.testimonial-stars i {
    color: var(--gold);
    font-size: .85rem;
}
.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--cream-dark);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brown-deep), var(--brown-rich));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .82rem;
    font-family: var(--ff-heading);
    flex-shrink: 0;
}
.testimonial-info strong {
    display: block;
    font-size: .88rem;
    color: var(--brown-deep);
}
.testimonial-info span {
    font-size: .78rem;
    color: var(--muted);
}

/* ═══ REVIEWER COMPACT & SIDEBAR STYLES ═══ */
.reviewer-sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cream-dark);
}
.reviewer-sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.reviewer-sidebar-header i {
    color: var(--gold);
    font-size: 1.1rem;
}
.reviewer-sidebar-header h4 {
    font-family: var(--ff-heading);
    font-size: 1.1rem;
    color: var(--brown-deep);
    margin: 0;
    font-weight: 700;
}
.reviewer-sidebar-score {
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--brown-deep);
}
.reviewer-sidebar-platform-name {
    font-size: .78rem;
    font-weight: 600;
    color: var(--brown-deep);
    display: block;
    margin-bottom: 4px;
}
.reviewer-sidebar-platform-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--brown-deep);
}

/* ═══ RESPONSIVE ═══ */
@media(max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-image img { min-height: 360px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .stat-item:nth-child(3)::after { display: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 768px) {
    .about-hero, .page-hero { min-height: 360px; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none !important; }
    .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .partners-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .timeline { padding-left: 40px; }
    .timeline::before { left: 14px; }
    .timeline-item::before { left: -32px; }
}
