/* ============================================
   QUIÉNES SOMOS — PREMIUM CINEMATIC LAYOUT
   ============================================ */

/* ── HERO — split screen ─────────────────────── */
.qs-hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    column-gap: clamp(20px, 3vw, 44px);
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.qs-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px clamp(32px, 5vw, 80px) 80px clamp(32px, 5vw, 80px);
    position: relative;
    z-index: 2;
}

.qs-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUpQS 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}

.qs-hero-eyebrow::before {
    content: ''; width: 32px; height: 1.5px; background: var(--coral);
}

.qs-hero-content h1 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(4rem, 7vw, 8rem);
    color: white;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUpQS 0.9s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}

.qs-hero-content h1 em {
    font-style: normal;
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--coral);
}

.qs-hero-content p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: rgba(255,255,255,0.45);
    max-width: 560px;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    animation: fadeUpQS 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
}

/* Right visual panel */
.qs-hero-visual {
    position: relative;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qs-hero-visual .founder-photo {
    position: absolute;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: none;
}

/* Large "desde australia" text */
.qs-hero-visual::before {
    content: none;
}

.qs-hero-visual::after {
    content: none;
}

@keyframes floatGlobe {
    0%, 100% { transform: translate(-50%, -55%) scale(1); }
    50% { transform: translate(-50%, -45%) scale(1.05); }
}

.qs-hero-quote {
    display: none;
}

.qs-hero-quote blockquote {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: white;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    opacity: 0;
    animation: fadeUpQS 1s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
}

.qs-hero-quote cite {
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral);
    opacity: 0;
    animation: fadeUpQS 0.8s ease 1s forwards;
}

/* Glow blob behind quote */
.qs-hero-visual .hero-glow {
    display: none;
}

/* ── TIMELINE — editorial staggered ─────────── */
.qs-timeline {
    background: var(--cream);
    padding: clamp(80px, 10vh, 130px) clamp(24px, 5vw, 80px);
    position: relative;
    overflow: hidden;
}

.qs-timeline::before {
    content: 'HISTORIA';
    position: absolute;
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(80px, 16vw, 200px);
    color: rgba(13,48,90,0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    letter-spacing: -0.04em;
    pointer-events: none;
    user-select: none;
}

.timeline-section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-section-label::before {
    content: ''; width: 32px; height: 1.5px; background: var(--coral);
}

.timeline-section-h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 80px;
    max-width: 700px;
}

.timeline-track {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Vertical connector line */
.timeline-track::before {
    content: '';
    position: absolute;
    left: 96px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--coral) 0%, rgba(13,48,90,0.1) 100%);
}

.timeline-item {
    display: flex;
    gap: clamp(12px, 2vw, 24px);
    margin-bottom: 64px;
    align-items: center;
    position: relative;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-year {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--coral);
    flex-shrink: 0;
    width: 84px;
    text-align: right;
    line-height: 1;
    padding-top: 0;
    margin-right: 0;
    letter-spacing: -0.02em;
}

/* Dot on the line */
.timeline-item::before {
    content: none;
}

.timeline-content {
    flex: 1;
    padding: clamp(20px, 2.5vw, 36px) clamp(24px, 3vw, 40px);
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(13,48,90,0.05);
    box-shadow: 0 4px 20px -8px rgba(13,48,90,0.08);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

.timeline-content:hover {
    transform: translateX(6px);
    box-shadow: 0 16px 48px -12px rgba(13,48,90,0.14);
}

.timeline-content h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 1.8vw, 22px);
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.2;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
}

/* Founders — primera sección, debajo de la barra azul */
.qs-founders {
    padding: calc(72px + 48px) clamp(40px, 8vw, 100px) 120px;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(209, 77, 70, 0.04) 0%, transparent 60%),
        var(--blush);
}

.qs-founders::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209,77,70,0.1) 0%, transparent 65%);
    bottom: -200px; right: -100px;
    pointer-events: none;
}

.qs-founders-inner { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }

.founders-section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.founders-section-label::before {
    content: ''; width: 32px; height: 1.5px; background: var(--coral);
}

.founders-section-h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 64px;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.founder-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: clamp(32px, 4vw, 56px);
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--coral), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

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

.founder-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.4);
}

.founder-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), #9b2c2c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Clash Display', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 12px 30px -6px rgba(209,77,70,0.4);
}

.founder-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: white;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.founder-card .founder-role {
    font-size: 11px;
    color: var(--coral);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.founder-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    font-weight: 300;
}

/* ── VALUES — cream grid ────────────────────── */
.qs-values {
    padding: clamp(80px, 10vh, 130px) clamp(24px, 5vw, 80px);
    background: white;
    position: relative;
    overflow: hidden;
}

.qs-values .section-tag {
    margin-bottom: 18px;
}

.qs-values h2 {
    margin-bottom: 72px;
}

.qs-values::before {
    content: '✨';
    position: absolute;
    font-size: 200px;
    right: -30px; top: -20px;
    filter: blur(40px);
    opacity: 0.08;
    pointer-events: none;
    user-select: none;
}

.values-section-label {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.values-section-label::before {
    content: ''; width: 32px; height: 1.5px; background: var(--coral);
}

.values-section-h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4.5vw, 5rem);
    color: var(--navy);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 64px;
}

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

.value-card {
    padding: 40px 28px;
    border-radius: 24px;
    background: var(--blush);
    border: 1px solid rgba(13,48,90,0.04);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(209,77,70,0.08), rgba(13,48,90,0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px -12px rgba(13,48,90,0.12);
}

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

.value-icon {
    font-size: 44px;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(-6deg);
}

.value-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUpQS {
    to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .qs-hero { grid-template-columns: 1fr; min-height: auto; }
    .qs-hero-visual { min-height: 280px; }
    .qs-hero-content { padding: 120px 24px 56px; }
    .qs-hero-content h1 { font-size: clamp(3rem, 12vw, 5rem); }
    .qs-timeline { padding: 60px 20px; }
    .timeline-track::before { left: 72px; }
    .timeline-item::before { content: none; }
    .timeline-item { align-items: flex-start; }
    .timeline-year { width: 64px; font-size: 1.5rem; margin-right: 0; }
    .qs-founders { padding: 60px 20px; }
    .founders-grid { grid-template-columns: 1fr; }
    .qs-values { padding: 60px 20px; }
    .values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .timeline-section-h2, .founders-section-h2, .values-section-h2 { font-size: clamp(2rem, 9vw, 3.5rem); }
}
