/* ============================================================
   VIRILACCESSORIES — about.css (fusionné)
   Header · Hero · Story · Mission · Valeurs · Processus · CTA · Footer
   Palette : #292a29 (dark) · #906543 (gold) · #FF9E6D (accent) · #1A2238 (navy)
   ============================================================ */

/* ── VARIABLES ── */
:root {
    --dark:   #292a29;
    --gold:   #906543;
    --gold2:  #a07654;
    --accent: #FF9E6D;
    --navy:   #1A2238;
    --light:  #f7f5f2;
    --white:  #ffffff;
    --text:   #444;
    --border: #e8e0d5;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Georgia', serif;
    color: var(--dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

/* ── GOOGLE FONTS IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

/* ============================================================
   HEADER & NAV
   ============================================================ */

header {
    background: var(--dark);
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(255,158,109,0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
}

.logo-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-img { height: 44px; width: auto; }

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.85rem, 1.8vw, 1.15rem);
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.nav-center {
    display: flex;
    justify-content: center;
    flex: 1;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    transition: color 0.25s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--dark);
    z-index: 999;
    padding: 80px 2rem 2rem;
    transition: right 0.35s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    display: block;
    right: 0;
}

.mobile-nav-links { list-style: none; }

.mobile-nav-links li { margin-bottom: 1.5rem; }

.mobile-nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,158,109,0.1);
    transition: color 0.25s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: var(--accent); }

/* ============================================================
   HERO ABOUT
   ============================================================ */

.hero-about {
    height: 70vh;
    min-height: 480px;
    background:
        linear-gradient(160deg, rgba(26,34,56,0.75) 0%, rgba(41,42,41,0.6) 60%, rgba(144,101,67,0.22) 100%),
        url('tourist-objects.jpg') center / cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

/* Ligne déco bas */
.hero-about::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
}

.hero-content { position: relative; z-index: 2; padding: 0 1rem; }

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.hero-content p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.35rem);
    margin-bottom: 0;
    opacity: 0.88;
    font-style: italic;
    letter-spacing: 1px;
}

/* Animations hero */
.fade-in {
    opacity: 0;
    animation: fadeInAnim 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }

@keyframes fadeInAnim { to { opacity: 1; } }

/* ============================================================
   ANIMATIONS SCROLL (fade-in-up)
   ============================================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================================
   SECTION DIVIDER
   ============================================================ */

.section-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    margin: 0.8rem auto 3rem;
}

/* ============================================================
   STORY SECTION
   ============================================================ */

.story-section {
    padding: 6rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(26,34,56,0.12);
    display: block;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-content p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.4rem;
    color: var(--text);
}

/* ============================================================
   BRAND BIRTH
   ============================================================ */

.brand-birth {
    background: var(--light);
    padding: 6rem 5%;
}

.birth-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.birth-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--gold);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.birth-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.4rem;
    color: var(--text);
}

.birth-content strong { color: var(--gold); font-weight: 700; }

.birth-image { margin-top: 3.5rem; }

.birth-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(26,34,56,0.1);
    display: block;
}

/* ============================================================
   MISSION & VISION
   ============================================================ */

.mission-vision {
    background: var(--navy);
    color: white;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

/* Motifs déco */
.mission-vision::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,158,109,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.mission-vision::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(144,101,67,0.09) 0%, transparent 70%);
    pointer-events: none;
}

.mission-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

.mission-box {
    text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(4px);
    position: relative;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.mission-box:hover::before { transform: scaleX(1); }

.mission-box .icon {
    width: 72px; height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,158,109,0.08);
    border: 1px solid rgba(255,158,109,0.2);
}

.mission-box h3 {
    font-family: 'Cinzel', serif;
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mission-box p {
    font-size: 0.92rem;
    opacity: 0.78;
    line-height: 1.8;
    color: #d0cccc;
}

/* ============================================================
   VALEURS
   ============================================================ */

.values-section {
    padding: 6rem 5%;
    background: var(--white);
}

.values-section h2 {
    font-family: 'Cinzel', serif;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.6rem;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 2px;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-bottom-color 0.3s;
    border-bottom: 3px solid transparent;
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(26,34,56,0.1);
    border-bottom-color: var(--accent);
}

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

.value-icon {
    width: 62px; height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,158,109,0.12), rgba(144,101,67,0.18));
    border: 1px solid rgba(144,101,67,0.2);
    margin: 0 auto 1.4rem;
}

.value-card h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-size: 0.92rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.value-card p {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ============================================================
   PROCESSUS CRÉATIF (TIMELINE)
   ============================================================ */

.process-section {
    background: var(--dark);
    padding: 6rem 5%;
    overflow: hidden;
    position: relative;
}

/* Motif déco */
.process-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,158,109,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--accent);
    text-align: center;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

.process-subtitle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 4.5rem;
}

/* TIMELINE */
.timeline {
    position: relative;
    padding: 3rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
        transparent 0%,
        var(--gold) 10%,
        var(--gold) 90%,
        transparent 100%);
    transform: translateX(-50%);
}

/* PROCESS STEPS */
.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    gap: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:last-child { margin-bottom: 0; }

/* STEP ICONS */
.step-icon {
    flex-shrink: 0;
    width: 76px; height: 76px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 28px rgba(144,101,67,0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.step-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 14px 38px rgba(144,101,67,0.5);
}

.icon-left  { order: 1; }
.icon-right { order: 3; }

/* STEP CONTENT */
.step-content {
    flex: 1;
    background: rgba(255,255,255,0.04);
    padding: 2.2rem;
    border-left: 3px solid var(--gold);
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
}

.step-content:hover {
    background: rgba(255,255,255,0.07);
    transform: translateX(8px);
    border-left-width: 4px;
}

.step-content.step-right {
    order: 1;
    text-align: right;
    border-left: none;
    border-right: 3px solid var(--gold);
}

.step-content.step-right:hover {
    transform: translateX(-8px);
}

.step-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.step-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ============================================================
   TRANSFORMATION CTA
   ============================================================ */

.transformation-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 50%, #3a2a1a 100%);
    padding: 7rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.transformation-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,158,109,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(144,101,67,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.transformation-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.transformation-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: white;
    margin-bottom: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.transformation-content p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.78);
    margin-bottom: 2.8rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--gold);
    color: white;
    border: 2px solid var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--gold2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(255,158,109,0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(255,158,109,0.15);
}

/* ============================================================
   QUI SOMMES-NOUS (ABOUT DETAILS)
   ============================================================ */

.about-details {
    padding: 6rem 5%;
    background: var(--light);
}

.about-details-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.section-title + * { margin-top: 3rem; }

/* DETAIL BLOCKS */
.detail-block {
    display: flex;
    gap: 2.5rem;
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 18px rgba(26,34,56,0.06);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    border-bottom: 3px solid transparent;
}

.detail-block.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-block:hover {
    box-shadow: 0 12px 36px rgba(26,34,56,0.1);
    transform: translateY(-4px);
    border-bottom-color: var(--accent);
}

.detail-block:last-child { margin-bottom: 0; }

.detail-icon {
    flex-shrink: 0;
    width: 72px; height: 72px;
    background: linear-gradient(135deg, rgba(255,158,109,0.1), rgba(144,101,67,0.15));
    border: 1px solid rgba(144,101,67,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.detail-block:hover .detail-icon {
    transform: rotate(8deg) scale(1.08);
    background: linear-gradient(135deg, rgba(255,158,109,0.18), rgba(144,101,67,0.22));
}

.detail-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.detail-content p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.2rem;
}

.detail-link {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.detail-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.detail-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.detail-link:hover::after { width: 100%; }

/* ============================================================
   CTA ABOUT (FINALE)
   ============================================================ */

.cta-about {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 50%, #3a2a1a 100%);
    padding: 7rem 5%;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,158,109,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(144,101,67,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-about .cta-content { position: relative; z-index: 1; }

.cta-about .cta-content h2 {
    font-family: 'Cinzel', serif;
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.6rem;
}

.cta-about .cta-content p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    opacity: 0.75;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--gold2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover::before { opacity: 1; }
.btn-cta span { position: relative; z-index: 1; }

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,158,109,0.35);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
    background: #111312;
    color: rgba(255,255,255,0.75);
    padding: 3rem 5% 1.5rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: var(--gold);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.social-icon:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.social-icon svg { width: 26px; height: 26px; }

.footer-text {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    margin-top: 0.8rem;
    letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .story-container,
    .mission-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .story-image img { height: 380px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none; }

    .hero-about { background-attachment: scroll; }
    .hero-content h1 { font-size: 1.8rem; letter-spacing: 3px; }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .timeline-line { left: 30px; }

    .icon-left, .icon-right { order: 1; }

    .step-content,
    .step-content.step-right {
        order: 2;
        text-align: left;
        border-left: 3px solid var(--gold);
        border-right: none;
    }

    .step-content:hover,
    .step-content.step-right:hover {
        transform: translateX(6px);
    }

    .detail-block {
        flex-direction: column;
        text-align: center;
    }

    .detail-icon { margin: 0 auto; }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-img { height: 36px; }
    .logo-text { font-size: 0.8rem; }

    .story-section,
    .brand-birth,
    .mission-vision,
    .values-section,
    .process-section,
    .about-details,
    .transformation-cta,
    .cta-about { padding: 4rem 4%; }

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

    .step-icon { width: 60px; height: 60px; }
    .step-icon svg { width: 24px; height: 24px; }
}
