
/* ─── ABOUT HERO ─── */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 28px 100px;
    text-align: center;
    background: var(--ink);
}

.about-hero .spotlight {
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(227, 186, 26, 0.07) 0%, transparent 65%);
    pointer-events: none;
    position: absolute;
    border-radius: 50%;
}

.about-hero .aurora {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: rgba(227, 186, 26, 0.09);
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: drift 12s ease-in-out infinite alternate;
}

.about-hero .aurora-2 {
    width: 400px;
    height: 400px;
    bottom: -80px;
    left: -80px;
    background: rgba(160, 120, 40, 0.07);
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: drift 15s ease-in-out infinite alternate-reverse;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.about-hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    background: rgba(201, 168, 76, 0.06);
}

.about-hero-title {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
}

.about-hero-title .gold-text {
    background: linear-gradient(135deg, #f1ca2e, #e3ba1a, #9e8212);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-sub {
    font-size: 1rem;
    color: #888;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── GOLD DIVIDER ─── */
.gold-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 30%, var(--gold) 50%, var(--gold-dim) 70%, transparent 100%);
}

/* ─── STORY SECTION ─── */
.story-section {
    background: var(--ink);
    padding: 100px 28px;
}

.story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.story-heading {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.story-body {
    font-size: 0.92rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-visual {
    position: relative;
}

.story-card {
    background: var(--surface-2);
    border: 1px solid rgba(201, 168, 76, 0.14);
    border-radius: 18px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.story-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(227, 186, 26, 0.2), rgba(160, 120, 40, 0.1));
    border: 1px solid rgba(227, 186, 26, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.story-card h3 {
    font-family: 'Google Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.story-card p {
    font-size: 0.86rem;
    color: #777;
    line-height: 1.7;
}

.story-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ─── MISSION & VALUES ─── */
.mission-section {
    background: var(--surface);
    padding: 100px 28px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    position: relative;
    overflow: hidden;
}

.mission-bg-glyph {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    font-size: 22rem;
    color: rgba(227, 186, 26, 0.025);
    font-family: 'Georgia', serif;
    font-weight: 700;
    pointer-events: none;
    line-height: 1;
    user-select: none;
}

.mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mission-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.value-card {
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 186, 26, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.value-card:hover::after {
    opacity: 1;
}

.value-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(227, 186, 26, 0.18), rgba(160, 120, 40, 0.08));
    border: 1px solid rgba(227, 186, 26, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.value-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.value-desc {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.72;
    position: relative;
    z-index: 1;
}

/* ─── STATS STRIP ─── */
.stats-strip {
    background: var(--ink);
    padding: 80px 28px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Google Sans', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #f1ca2e, #e3ba1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
}

/* ─── SERVICES SECTION ─── */
.services-section {
    background: var(--ink);
    padding: 100px 28px;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color 0.3s, transform 0.3s;
}

.service-item:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
}

.service-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(227, 186, 26, 0.1);
    border: 1px solid rgba(227, 186, 26, 0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-text h4 {
    font-family: 'Google Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #e8e8e8;
    margin-bottom: 6px;
}

.service-text p {
    font-size: 0.81rem;
    color: #666;
    line-height: 1.65;
}

/* ─── SATISFACTION SECTION ─── */
.satisfaction-section {
    background: var(--surface);
    padding: 100px 28px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.satisfaction-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.satisfaction-header {
    text-align: center;
    margin-bottom: 64px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--surface-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: 'Georgia', serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(227, 186, 26, 0.2);
    margin-bottom: 12px;
    display: block;
}

.testimonial-text {
    font-size: 0.88rem;
    color: #999;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), #5a4010);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d0d0d;
    flex-shrink: 0;
}

/* ─── CTA BANNER ─── */
.about-cta {
    background: var(--ink);
    padding: 100px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 186, 26, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-btn-group {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #aaa;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color 0.3s, color 0.3s, transform 0.2s;
}

.cta-btn-outline:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
    transform: translateY(-2px);
}

/* ─── SCROLL FADE-IN ─── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
    .story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .values-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .story-card-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}
