/* ============================================
   ABOUT PAGE — Luxury Himalayan Expedition
   Theme: Dark Mode (Deep Charcoal + Gold)
   Style: Minimalist, Editorial, Sophisticated
   Serif headings · Sans body · Gold-leaf borders
   Parallax · Asymmetric grids · Premium exclusive
   ============================================ */

/* Scoped to about page so global layout stays intact */
body.page-about {
    overflow-x: hidden;
    font-family: var(--font-sans);
    color: var(--about-white);
}

.page-about {
    /* Deep charcoal palette */
    --charcoal: #1a1816;
    --charcoal-deep: #141210;
    --charcoal-mid: #252320;
    --charcoal-soft: #2d2a26;
    --charcoal-border: rgba(255, 255, 255, 0.06);
    /* Gold accents — refined, gold-leaf */
    --gold: #c9a227;
    --gold-light: #d4af37;
    --gold-soft: #e5c76b;
    --gold-leaf: rgba(212, 175, 55, 0.45);
    --gold-leaf-border: 1px solid rgba(212, 175, 55, 0.35);
    --gold-leaf-subtle: 1px solid rgba(212, 175, 55, 0.18);
    /* Neutrals */
    --slate: #64748b;
    --slate-muted: #94a3b8;
    --slate-pale: #cbd5e1;
    --about-white: #f8fafc;
    --about-bg: #141210;
    --about-bg-alt: #1a1816;
    --about-glass: rgba(26, 24, 22, 0.6);
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* Legacy aliases */
.page-about {
    --obsidian: var(--charcoal-deep);
    --obsidian-mid: var(--charcoal);
    --obsidian-light: var(--charcoal-mid);
    --frost-slate-border: var(--charcoal-border);
    --about-charcoal: var(--charcoal-deep);
    --about-navy: var(--charcoal-deep);
    --about-navy-mid: var(--charcoal);
    --about-gold: var(--gold);
    --about-gold-light: var(--gold-light);
    --about-amber-warm: var(--gold-light);
    --about-glass-border: var(--gold-leaf-subtle);
}

/* Prevent horizontal scroll and ensure content fits viewport */
.page-about main,
.page-about .about-hero,
.page-about .about-intro .container,
.page-about .about-story .container,
.page-about .about-values .container,
.page-about .about-why .container,
.page-about .about-team .container,
.page-about .about-cta .container {
    max-width: 100%;
}

.page-about .about-intro-image img,
.page-about .about-story-photo img,
.page-about .about-mission-photo img {
    max-width: 100%;
    vertical-align: middle;
}

.page-about .noir-bento-img-wrap img {
    max-width: 100%;
}

.page-about .about-hero {
    height: 88vh;
    min-height: 560px;
    max-height: 1200px;
    margin-top: 0;
    background: var(--charcoal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--about-white);
    text-align: center;
    overflow: hidden;
}

/* 3D parallax layers — Mount Everest / high-altitude */
.page-about .noir-hero-parallax {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.page-about .noir-hero-bg {
    position: absolute;
    inset: -5% -5% -5% -5%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-about .noir-hero-bg-mid {
    will-change: transform;
}

.page-about .noir-hero-bg-far {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=90');
    opacity: 0.9;
    transform: scale(1.08);
}

.page-about .noir-hero-bg-mid {
    background-image: linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.4) 50%, rgba(10, 10, 11, 0.85) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2400&q=90');
    opacity: 0.95;
}

.page-about .noir-hero-bg-near {
    background: linear-gradient(180deg, transparent 0%, rgba(20, 18, 16, 0.4) 40%, rgba(20, 18, 16, 0.92) 100%);
    pointer-events: none;
}

.page-about .about-hero-overlay.noir-hero-overlay {
    background: linear-gradient(180deg, rgba(20, 18, 16, 0.25) 0%, transparent 35%, rgba(20, 18, 16, 0.55) 100%);
}

/* Glassmorphism weather widget */
.page-about .noir-weather-widget {
    position: absolute;
    top: clamp(1.5rem, 4vw, 2.5rem);
    right: clamp(1rem, 3vw, 2rem);
    z-index: 10;
}

.page-about .noir-weather-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 1rem 1.25rem;
    min-width: 140px;
    background: rgba(15, 15, 17, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--frost-slate-border);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.page-about .noir-weather-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-pale);
    margin-bottom: 0.25rem;
}

.page-about .noir-weather-value {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--liquid-gold-bright);
    line-height: 1.2;
}

.page-about .noir-weather-unit {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--slate-muted);
    margin-bottom: 0.35rem;
}

.page-about .noir-weather-meta {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--slate-muted);
    opacity: 0.9;
}

.page-about .about-hero .detail-hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 0 clamp(1.25rem, 4vw, 2rem);
    padding-left: max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-left));
    padding-right: max(clamp(1.25rem, 4vw, 2rem), env(safe-area-inset-right));
}

.page-about .noir-heading,
.page-about .about-hero h1,
.page-about .section-header h2,
.page-about .about-story-text h3,
.page-about .about-mission-text h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.page-about .noir-mono {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 0.9em;
    letter-spacing: 0.04em;
    color: var(--gold-light);
}

.page-about .about-hero h1 {
    font-size: clamp(2.75rem, 5.5vw + 1rem, 4.5rem);
    margin-bottom: 0.85rem;
    text-shadow: 0 2px 32px rgba(0, 0, 0, 0.6);
    line-height: 1.12;
}

.page-about .about-hero-tagline {
    font-family: var(--font-sans);
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin: 0 auto;
    opacity: 0.98;
    text-align: center;
    max-width: 100%;
}

/* Noir sections — obsidian bg */
.page-about .noir-section {
    background: var(--about-bg);
}

.page-about .noir-section-header .noir-heading,
.page-about .noir-section .section-header h2 {
    color: var(--about-white);
}

/* Section headers — gold-leaf accent line (editorial) */
.page-about .about-intro .noir-frost-card .noir-heading,
.page-about .about-story .section-header h2,
.page-about .about-values .section-header h2,
.page-about .about-why .section-header h2,
.page-about .about-team .section-header h2 {
    position: relative;
    padding-bottom: 0.75rem;
}
.page-about .about-story .section-header h2::after,
.page-about .about-values .section-header h2::after,
.page-about .about-why .section-header h2::after,
.page-about .about-team .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 1px;
    background: var(--gold-leaf);
}

.page-about .noir-section .section-header p {
    color: var(--slate-pale);
}

/* Frost overlay card — gold-leaf border, editorial */
.page-about .noir-frost-card {
    background: var(--about-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--gold-leaf-subtle);
    border-radius: 2px;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.page-about .noir-frost-card .noir-heading {
    color: var(--about-white);
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 2.2vw, 1.875rem);
}

.page-about .noir-frost-card p {
    font-family: var(--font-sans);
    color: var(--slate-pale);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.page-about .noir-frost-card p:last-of-type {
    margin-bottom: 0;
}

.page-about .noir-tech-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: var(--gold-leaf-subtle);
}

.page-about .noir-tech-list dt {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-muted);
}

.page-about .noir-tech-list dd {
    margin: 0;
    font-size: 0.9rem;
}

/* Bento grids — legacy (kept for any other uses) */
.page-about .noir-bento {
    display: grid;
    gap: 0.75rem;
}

.page-about .noir-bento-cell {
    border-radius: 10px;
    overflow: hidden;
}

.page-about .noir-bento-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: 2px;
    overflow: hidden;
    border: var(--gold-leaf-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: var(--charcoal-mid);
}

.page-about .noir-bento-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

/* ========== Experience Section — 2-column editorial, asymmetrical gallery with 3D depth ========== */
.page-about .experience-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.page-about .experience-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.page-about .experience-col-text {
    padding-right: clamp(1rem, 2vw, 2rem);
}

.page-about .experience-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--about-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 0.75rem;
}
.page-about .experience-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 1px;
    background: var(--gold-leaf);
}

.page-about .experience-body {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--slate-pale);
    line-height: 1.95;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
}

.page-about .experience-col-text .noir-tech-list {
    margin-bottom: 0;
}

/* Asymmetrical image gallery: large background + smaller inset overlapping for 3D depth */
.page-about .experience-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 480px;
}

.page-about .experience-gallery-main {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    overflow: hidden;
    border: var(--gold-leaf-subtle);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: var(--charcoal-mid);
}

.page-about .experience-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    aspect-ratio: 4 / 3;
}

.page-about .experience-gallery-inset {
    position: absolute;
    right: -8%;
    bottom: -10%;
    width: 48%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.page-about .experience-gallery-inset:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.3);
}

.page-about .experience-gallery-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    display: block;
}

/* ========== Our Story — Bento grid: 60% feature + 40% cluster, rounded, gold hover ========== */
.page-about .our-story-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.page-about .our-story-text-block {
    max-width: 720px;
    margin: 0 auto clamp(clamp(2rem, 4vw, 3rem), 5vw, 3rem);
}

.page-about .our-story-text-block .noir-frost-card {
    margin: 0;
}

.page-about .our-story-bento {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.page-about .our-story-feature {
    min-height: 0;
}

.page-about .our-story-cluster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: clamp(0.75rem, 1.5vw, 1rem);
    min-height: 0;
}

.page-about .our-story-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-leaf-subtle);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    background: var(--charcoal-mid);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.page-about .our-story-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.page-about .our-story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.page-about .our-story-card:hover img {
    transform: scale(1.03);
}

/* Feature: one large image, consistent aspect ratio */
.page-about .our-story-card-feature {
    aspect-ratio: 3 / 2;
    min-height: 280px;
}

.page-about .our-story-card-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cluster: 2×2 — two images in one row, two in the next row; consistent aspect ratio */
.page-about .our-story-card-a,
.page-about .our-story-card-b,
.page-about .our-story-card-c,
.page-about .our-story-card-d {
    aspect-ratio: 4 / 3;
}

/* Intro strip — increased whitespace (premium editorial) */
.page-about .about-intro {
    background: var(--about-bg);
    position: relative;
    overflow: hidden;
}
.page-about .about-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}
.page-about .about-intro .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-about .about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.page-about .about-intro-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    color: var(--about-white);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.page-about .about-intro-text p {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--slate-pale);
    margin: 0;
    letter-spacing: 0.01em;
}

.page-about .about-intro-image {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.page-about .about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Our Story — asymmetrical layout, increased whitespace */
.page-about .about-story,
.page-about .about-mission {
    background: var(--about-bg-alt);
}

.page-about .about-story .container,
.page-about .about-mission .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 5vw, 3.5rem);
}

.page-about .about-story .section-header,
.page-about .about-mission .section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
}
.page-about .about-story .section-header p,
.page-about .about-mission .section-header p {
    font-family: var(--font-sans);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.page-about .about-story .section-header h2,
.page-about .about-mission .section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    color: var(--about-white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.page-about .about-story .section-header p,
.page-about .about-mission .section-header p {
    font-size: 1rem;
    color: var(--slate-muted);
    margin: 0;
    line-height: 1.6;
}

/* Asymmetrical grid: text narrower, photos wider for visual balance */
.page-about .about-story-grid,
.page-about .about-mission-two-col {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.page-about .about-story-text,
.page-about .about-mission-text {
    padding-top: 0.5rem;
}

.page-about .about-story-text h3,
.page-about .about-mission-text h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--about-white);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.page-about .about-story-text p,
.page-about .about-mission-text p {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.85;
    color: var(--slate-pale);
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}

.page-about .about-story-text p:last-of-type,
.page-about .about-mission-text p:last-of-type {
    margin-bottom: 0;
}

.page-about .about-story-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.page-about .about-story-photos .about-story-photo:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 21/9;
}

.page-about .about-story-photo {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.page-about .about-story-photos .about-story-photo:not(:first-child) {
    aspect-ratio: 4/3;
}

.page-about .about-story-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-about .about-mission-photos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.page-about .about-mission-photo {
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.page-about .about-mission-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Core Values — minimalist gold line icons + glassmorphism */
.page-about .about-values {
    background: linear-gradient(180deg, var(--about-bg) 0%, var(--charcoal) 50%, var(--about-bg) 100%);
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.page-about .about-values .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-about .about-values .section-header {
    text-align: center;
    margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
}

.page-about .about-values .section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    color: var(--about-white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.page-about .about-values .section-header p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--slate-muted);
    margin: 0;
}

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

.page-about .about-value-card {
    text-align: center;
    padding: 1.5rem 1.25rem;
    border-radius: 2px;
    border: var(--gold-leaf-subtle);
    background: var(--about-glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-about .about-value-card:hover {
    border: var(--gold-leaf-border);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.page-about .about-value-icon {
    color: var(--gold-light);
}

/* Fallback when backdrop-filter not supported */
@supports not (backdrop-filter: blur(12px)) {
    .page-about .about-value-card {
        background: rgba(15, 15, 17, 0.9);
    }
    .page-about .about-value-card:hover {
        background: rgba(15, 15, 17, 0.95);
    }
}

/* Liquid-motion button — smooth gradient shift and glow */
.page-about .noir-btn-liquid {
    position: relative;
    overflow: hidden;
    border: var(--gold-leaf-border);
    background: transparent;
    color: var(--gold-soft);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-about .noir-btn-liquid:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-soft);
    border: var(--gold-leaf-border);
}

.page-about .noir-btn-liquid:active {
    transform: scale(0.98);
}

.page-about .noir-btn-text {
    position: relative;
    z-index: 1;
}

.page-about .about-value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--about-gold-light);
    stroke: currentColor;
}

.page-about .about-value-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.25;
    fill: none;
    stroke: currentColor;
}

.page-about .about-value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--about-white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.page-about .about-value-card p {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--slate-pale);
    margin: 0;
    letter-spacing: 0.01em;
}

/* Why Choose Us — refined cards */
.page-about .about-why {
    background: var(--about-bg-alt);
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
}

.page-about .about-why .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.page-about .about-why .section-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
}

.page-about .about-why .section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 2.8vw, 2.25rem);
    color: var(--about-white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.page-about .about-why .section-header p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--slate-muted);
    margin: 0;
}

.page-about .about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.page-about .about-why-card {
    padding: 1.5rem 1.25rem;
    border-radius: 2px;
    border: var(--gold-leaf-subtle);
    background: rgba(26, 24, 22, 0.5);
    transition: border-color 0.3s ease;
}

.page-about .about-why-card:hover {
    border: var(--gold-leaf-border);
}

.page-about .about-why-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--about-amber-warm);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.page-about .about-why-card h3 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--about-white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.page-about .about-why-card p {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--slate-pale);
    margin: 0;
    letter-spacing: 0.01em;
}

/* Team section — local guides feel */
.page-about .about-team {
    background: var(--about-bg);
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.page-about .about-team .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-about .about-team .section-header {
    text-align: center;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
}

.page-about .about-team .section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 2.5vw, 2rem);
    color: var(--about-white);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.page-about .about-team .section-header p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--slate-muted);
    margin: 0;
}

.page-about .about-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.page-about .about-team-card {
    text-align: center;
    padding: 1.25rem 0.75rem;
}

.page-about .about-team-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: var(--gold-leaf-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1.5rem;
}

.page-about .about-team-card h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--about-white);
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.page-about .about-team-card p {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--slate-muted);
    margin: 0;
}

/* CTA */
.page-about .about-cta {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-deep) 100%);
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
    text-align: center;
}

.page-about .about-cta .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.page-about .about-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    color: var(--about-white);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.page-about .about-cta-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--slate-pale);
    margin-bottom: 1rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.page-about .about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.page-about .about-cta-btn:not(.noir-btn-liquid) {
    background: transparent;
    color: var(--gold-light);
    border: var(--gold-leaf-border);
}

.page-about .about-cta-btn:not(.noir-btn-liquid):hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-soft);
    border: var(--gold-leaf-border);
}

/* Override detail-hero from main stylesheet on about page */
.page-about .about-hero.detail-hero::before {
    display: none;
}

/* Reduce motion / no fixed background where problematic (mobile, tablet) */
@media (max-width: 1024px) {
    .page-about .about-hero {
        background-attachment: scroll;
    }
    .page-about .about-intro::before {
        background-attachment: scroll;
    }
}

/* Tablet and below */
@media (max-width: 968px) {
    .page-about .experience-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .page-about .experience-col-text {
        padding-right: 0;
    }
    .page-about .experience-gallery {
        max-height: 360px;
        aspect-ratio: 4 / 3;
    }
    .page-about .experience-gallery-inset {
        width: 52%;
        right: -4%;
        bottom: -8%;
    }
    .page-about .our-story-bento {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .page-about .our-story-feature {
        order: 1;
    }
    .page-about .our-story-cluster {
        order: 2;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    .page-about .noir-weather-widget {
        top: 1rem;
        right: 1rem;
    }
    .page-about .noir-weather-inner {
        padding: 0.75rem 1rem;
        min-width: 120px;
    }
    .page-about .noir-weather-value {
        font-size: 1.25rem;
    }
    .page-about .about-intro-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .page-about .about-intro-image {
        order: -1;
        max-height: 360px;
        aspect-ratio: 16/10;
    }
    .page-about .about-intro .container {
        padding: 0 1.5rem;
    }
    .page-about .about-story-grid,
    .page-about .about-mission-two-col {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .page-about .about-story .container,
    .page-about .about-mission .container {
        padding: 0 1.5rem;
    }
    /* Story/Mission headers already centered in base */
    .page-about .about-story-photos {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .page-about .about-story-photos .about-story-photo:first-child {
        aspect-ratio: 16/9;
    }
    .page-about .about-mission-photos {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    .page-about .about-mission-photo {
        flex: 1 1 280px;
        min-height: 200px;
        aspect-ratio: 3/2;
    }
    .page-about .about-values .container {
        padding: 0 1.5rem;
    }
    .page-about .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .page-about .about-why .container {
        padding: 0 1.5rem;
    }
    .page-about .about-why-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .page-about .about-team .container {
        padding: 0 1.5rem;
    }
    .page-about .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .page-about .about-cta .container {
        padding: 0 1.5rem;
    }
}

/* Tablet: 2-column grids for values and why (optional, 768–968px) */
@media (min-width: 769px) and (max-width: 968px) {
    .page-about .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-about .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .page-about .about-hero {
        height: 50vh;
        min-height: 260px;
        max-height: 380px;
    }
    .page-about .about-hero h1 {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
        margin-bottom: 0.5rem;
    }
    .page-about .about-hero-tagline {
        font-size: 0.8125rem;
        letter-spacing: 0.12em;
        word-spacing: 0.05em;
    }
    .page-about .about-intro {
        padding: 2rem 0;
    }
    .page-about .about-intro .container {
        padding: 0 1.25rem;
    }
    .page-about .about-intro-text h2 {
        font-size: 1.5rem;
    }
    .page-about .about-intro-text p {
        font-size: 1rem;
    }
    .page-about .about-story,
    .page-about .about-mission {
        padding: 2rem 0;
    }
    .page-about .about-story .container,
    .page-about .about-mission .container {
        padding: 0 1.25rem;
    }
    .page-about .about-story .section-header h2,
    .page-about .about-mission .section-header h2 {
        font-size: 1.5rem;
    }
    .page-about .about-story-text h3,
    .page-about .about-mission-text h3 {
        font-size: 1.25rem;
    }
    .page-about .about-story-text p,
    .page-about .about-mission-text p {
        font-size: 1rem;
    }
    .page-about .about-mission-photos {
        flex-direction: column;
    }
    .page-about .about-mission-photo {
        flex: 1 1 auto;
        min-height: 180px;
    }
    .page-about .about-values {
        padding: 2rem 0;
    }
    .page-about .about-values .container {
        padding: 0 1.25rem;
    }
    .page-about .about-values .section-header h2 {
        font-size: 1.5rem;
    }
    .page-about .about-value-card {
        padding: 1.25rem 1rem;
    }
    .page-about .about-why {
        padding: 2rem 0;
    }
    .page-about .about-why .container {
        padding: 0 1.25rem;
    }
    .page-about .about-why .section-header h2 {
        font-size: 1.5rem;
    }
    .page-about .about-why-card {
        padding: 1.25rem 1rem;
    }
    .page-about .about-team {
        padding: 2rem 0;
    }
    .page-about .about-team .container {
        padding: 0 1.25rem;
    }
    .page-about .about-team .section-header h2 {
        font-size: 1.5rem;
    }
    .page-about .about-team-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .page-about .about-cta {
        padding: 2rem 0;
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
    .page-about .about-cta .container {
        padding: 0 1.25rem;
    }
    .page-about .about-cta h2 {
        font-size: 1.5rem;
    }
    .page-about .about-cta-btn {
        width: 100%;
        max-width: 320px;
        min-height: 48px;
    }
    .page-about .experience-gallery {
        max-height: 280px;
    }
    .page-about .experience-gallery-inset {
        width: 56%;
        right: -2%;
        bottom: -6%;
    }
    .page-about .our-story-card-feature {
        min-height: 240px;
    }
}

/* Small mobile: prevent overflow, comfortable tap targets */
@media (max-width: 380px) {
    .page-about .about-hero {
        height: 45vh;
        min-height: 220px;
        max-height: 320px;
    }
    .page-about .about-hero h1 {
        font-size: 1.75rem;
    }
    .page-about .about-hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.08em;
    }
    .page-about .about-intro .container,
    .page-about .about-story .container,
    .page-about .about-mission .container,
    .page-about .about-values .container,
    .page-about .about-why .container,
    .page-about .about-team .container,
    .page-about .about-cta .container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
}
