/* ── Regen Summit Frontend Styles ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;600;700;900&display=swap');

:root {
    --rs-green:       #429668;
    --rs-green-dark:  #2d6b48;
    --rs-green-light: #5ab07e;
    --rs-yellow:      #F7E14D;
    --rs-yellow-dark: #e6cc1a;
    --rs-white:       #ffffff;
    --rs-off-white:   #f9f6ee;
    --rs-gray-light:  #f0ede4;
    --rs-text:        #1a2e22;
}

.rs-section { font-family: 'Red Hat Display', sans-serif; color: var(--rs-text); }
.rs-section *, .rs-section *::before, .rs-section *::after { box-sizing: border-box; }

/* ── Container ── */
.rs-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 96px 5%;
}

/* ── Section backgrounds ── */
.rs-section--offwhite { background: var(--rs-off-white); }
.rs-section--yellow   { background: var(--rs-yellow); }
.rs-section--green    { background: var(--rs-green); }

/* ── Two-col layout ── */
.rs-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.rs-two-col--reverse > *:first-child { order: 1; }
.rs-two-col--reverse > *:last-child  { order: 0; }

/* ── Typography helpers ── */
.rs-tag {
    display: inline-block;
    background: var(--rs-yellow);
    color: var(--rs-text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
    margin-bottom: 18px;
}
.rs-section-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 900;
    color: var(--rs-green);
    line-height: 1.1;
    margin: 0 0 20px;
}
.rs-section-title--white { color: white; }
.rs-section-title--dark  { color: var(--rs-text); }
.rs-section-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #555;
    margin-bottom: 16px;
}
.rs-section-body--white { color: rgba(255,255,255,.8); }
.rs-section-body--dark  { color: rgba(26,46,34,.7); }

/* ── Section images ── */
.rs-section-image {
    width: 100%;
    border-radius: 8px;
    display: block;
}
.rs-img-placeholder {
    width: 100%;
    padding-bottom: 68%;
    background: linear-gradient(135deg, var(--rs-green) 0%, var(--rs-green-dark) 100%);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rs-img-placeholder--dark {
    background: linear-gradient(135deg, #1a2e22 0%, #2d4a34 100%);
}
.rs-img-placeholder span {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}

/* ── Buttons ── */
.rs-btn-primary {
    display: inline-block;
    background: var(--rs-yellow);
    color: var(--rs-text);
    font-family: 'Red Hat Display', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .2s, transform .15s;
    border: none;
    cursor: pointer;
    margin-top: 8px;
}
.rs-btn-primary:hover { background: var(--rs-yellow-dark); transform: translateY(-1px); }

.rs-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--rs-green);
    font-family: 'Red Hat Display', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 32px;
    border: 2px solid var(--rs-green);
    border-radius: 4px;
    text-decoration: none;
    transition: all .2s;
    margin-top: 8px;
}
.rs-btn-outline:hover { background: var(--rs-green); color: white; }

.rs-btn-maps {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rs-green);
    color: white;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    transition: background .2s;
}
.rs-btn-maps:hover { background: var(--rs-green-dark); color: white; }
.rs-btn-maps svg { flex-shrink: 0; }

/* ── HERO ── */
.rs-hero {
    min-height: 100vh;
    background: var(--rs-green);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.rs-hero__pattern {
    position: absolute; inset: 0; opacity: .06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ctext y='40' font-size='32' fill='white'%3E↗%3C/text%3E%3C/svg%3E");
    background-size: 60px 60px;
}
.rs-hero__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 5% 80px;
    max-width: 700px;
    margin: 0 auto;
}
.rs-badge {
    background: var(--rs-yellow);
    color: var(--rs-text);
    font-family: 'Red Hat Display', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 3px;
    margin-bottom: 28px;
}
.rs-hero__logo-wrap { margin-bottom: 28px; }
.rs-hero__logo-svg {
    width: 320px;
    max-width: 90vw;
    height: auto;
    display: block;
}
.rs-hero__subtitle {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}
.rs-hero__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.rs-hero__meta-top {
    display: flex;
    align-items: stretch;
}
.rs-hero__meta-item { text-align: center; padding: 0 36px; }
.rs-hero__meta-top .rs-hero__meta-item:first-child {
    border-right: 1px solid rgba(255,255,255,.2);
}
.rs-hero__meta-col-divider { display: none; }
.rs-hero__meta-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.15);
    width: 100%;
    text-align: center;
}
.rs-hero__meta-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rs-yellow);
    margin-bottom: 5px;
}
.rs-hero__meta-value {
    font-size: 20px;
    font-weight: 700;
    color: white;
    display: block;
}

/* ── AGENDA ── */
.rs-agenda .rs-container { padding-top: 80px; padding-bottom: 80px; }
.rs-agenda__header {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.rs-agenda__time {
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    color: var(--rs-green);
    line-height: .95;
    flex-shrink: 0;
}

/* ── Experience cards ── */
.rs-experiences-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.rs-exp-card {
    background: var(--rs-green);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
}
.rs-exp-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.50);
}
.rs-exp-card__content {
    position: relative;
    z-index: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.rs-exp-card__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rs-yellow);
    margin-bottom: 6px;
    display: block;
}
.rs-exp-card__title {
    font-size: 20px;
    font-weight: 900;
    color: white;
    margin: 0 0 8px;
    line-height: 1.2;
}
.rs-exp-card__body {
    font-size: 13px;
    color: rgba(255,255,255,.75);
    line-height: 1.55;
    margin: 0;
}

/* ── Timeline ── */
.rs-timeline {
    background: white;
    border-radius: 8px;
    padding: 28px;
}
.rs-timeline__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--rs-green);
    margin-bottom: 20px;
}
.rs-timeline__item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0ede4;
}
.rs-timeline__item:last-child { border-bottom: none; }
.rs-timeline__time {
    font-size: 13px;
    font-weight: 700;
    color: var(--rs-green);
    min-width: 52px;
}
.rs-timeline__dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.rs-timeline__dot--welcome { background: var(--rs-yellow-dark); }
.rs-timeline__dot--key     { background: var(--rs-green); }
.rs-timeline__dot--normal  { background: #c3c4c7; }
.rs-timeline__label { font-size: 14px; font-weight: 500; color: var(--rs-text); }

/* ── Framework ── */
.rs-framework__intro { max-width: 540px; margin-bottom: 40px; }
.rs-indicators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 6px;
}
.rs-indicator {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}
.rs-indicator__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .3s ease;
}
.rs-indicator:hover .rs-indicator__img {
    transform: scale(1.04);
}
.rs-indicator__label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: rgba(0,0,0,.45);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s, transform .25s;
}
.rs-indicator:hover .rs-indicator__label {
    opacity: 1;
    transform: none;
}

/* ── Speakers ── */
.rs-speakers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}
.rs-speaker-row {
    background: white;
    border-radius: 10px;
    padding: 24px 28px;
    border: 1px solid #eee;
    transition: box-shadow .2s;
}
.rs-speaker-row:hover { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.rs-speaker-row__top {
    display: flex;
    align-items: center;
    gap: 24px;
}
.rs-speaker-row__photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--rs-green);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rs-speaker-row__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rs-speaker-row__initials {
    font-size: 28px;
    font-weight: 900;
    color: white;
}
.rs-speaker-row__info { flex: 1; min-width: 0; }
.rs-speaker-row__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--rs-text);
    margin: 0 0 4px;
}
.rs-speaker-row__role {
    font-size: 13px;
    font-weight: 600;
    color: var(--rs-green);
    display: block;
    margin-bottom: 2px;
}
.rs-speaker-row__company {
    font-size: 12px;
    color: #888;
    display: block;
}
.rs-speaker-row__bio {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 16px 0 0;
}
.rs-speaker-row__tag {
    background: var(--rs-yellow);
    color: var(--rs-text);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
}

/* Mobile: foto más pequeña, bio a ancho completo debajo */
@media (max-width: 600px) {
    .rs-speaker-row { padding: 20px; }
    .rs-speaker-row__top { gap: 14px; }
    .rs-speaker-row__photo {
        width: 60px;
        height: 60px;
    }
    .rs-speaker-row__initials { font-size: 20px; }
    .rs-speaker-row__name { font-size: 16px; }
    .rs-speaker-row__tag { padding: 4px 8px; font-size: 9px; }
    .rs-speaker-row__bio { font-size: 13px; margin-top: 14px; }
}

/* ── Sponsors ── */
.rs-sponsors { background: white; }
.rs-sponsors__inner { text-align: center; }
.rs-sponsors-tier { margin-top: 40px; }
.rs-sponsors-tier__label {
    font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--rs-green); margin-bottom: 16px;
}
/* Flex centrado para que filas incompletas queden centradas */
.rs-sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 16px;
    row-gap: 28px;
    align-items: center;
    padding: 8px 0;
}
/* Cards landscape: anchas y bajas */
.rs-sponsor-slot {
    width: 220px;
    height: 90px;
    background: white;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 16px 24px;
    transition: box-shadow .2s;
}
.rs-sponsor-slot:hover { box-shadow: 0 2px 12px rgba(0,0,0,.08); background: white; }
/* mix-blend-mode elimina el fondo blanco de los JPGs */
.rs-sponsor-slot img {
    max-height: 52px;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.rs-sponsor-slot a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
/* Gold un poco más grande */
.rs-sponsors-tier:first-of-type .rs-sponsor-slot {
    width: 240px;
    height: 100px;
}
.rs-sponsor-slot--empty {
    font-size: 12px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    color: rgba(26,46,34,.25);
}

/* ── Location ── */
.rs-location__no-map {
    font-size: 13px; color: #888;
    margin-top: 16px; font-style: italic;
}
.rs-map-embed { border-radius: 8px; overflow: hidden; }
.rs-map-placeholder {
    height: 320px; background: #d8d5cc;
    border-radius: 8px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; color: #999;
    font-size: 13px; font-weight: 700;
    letter-spacing: .05em; text-transform: uppercase;
}

/* ── FAQ ── */
.rs-faq { background: white; }
.rs-faq__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 96px 5%;
}
.rs-faq__title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: var(--rs-yellow-dark);
    line-height: 1;
    margin-bottom: 48px;
}
.rs-faq-item {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--rs-gray-light);
}
.rs-faq-item__num {
    min-width: 72px;
    padding: 24px 0;
    font-size: 22px;
    font-weight: 900;
    color: var(--rs-yellow-dark);
    flex-shrink: 0;
}
.rs-faq-item__content { flex: 1; padding: 24px 0; }
.rs-faq-item__q {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--rs-text);
    background: none; border: none; padding: 0;
    cursor: pointer; width: 100%; text-align: left;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
}
.rs-faq-item__icon {
    font-size: 20px; font-weight: 300;
    color: var(--rs-green); flex-shrink: 0;
    transition: transform .2s;
}
.rs-faq-item__q[aria-expanded="true"] .rs-faq-item__icon {
    transform: rotate(45deg);
}
.rs-faq-item__a {
    display: none;
    padding-top: 12px;
}
.rs-faq-item__a p {
    font-size: 15px; color: #666; line-height: 1.65; margin: 0;
}
.rs-faq__ctas {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-top: 48px;
}

/* ── Reveal animation ── */
.rs-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.rs-reveal.rs-visible {
    opacity: 1;
    transform: none;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .rs-two-col { grid-template-columns: 1fr; gap: 36px; }
    .rs-two-col--reverse > * { order: unset !important; }
    .rs-experiences-grid { grid-template-columns: 1fr; }
    .rs-indicators-grid  { grid-template-columns: repeat(2,1fr); }
    .rs-sponsor-slot     { width: 160px; height: 76px; padding: 12px 16px; }
    .rs-agenda__header   { flex-direction: column; gap: 20px; }
    .rs-hero__meta-divider { display: none; }
}

.rs-indicator__empty {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    padding: 16px;
    text-align: center;
}
.rs-indicators-grid a.rs-indicator {
    text-decoration: none;
    cursor: pointer;
}
.rs-indicators-grid a.rs-indicator:hover .rs-indicator__img {
    transform: scale(1.06);
}

/* ── Hero Landing — McCain logo ─────────────────────────────────────── */
.rs-hero__mccain-logo {
    margin-top: 32px;
}
.rs-hero__mccain-logo img {
    height: auto;
    object-fit: contain;
    display: block;
}

/* ── Hero Videos ────────────────────────────────────────────────────── */
.rs-hero-videos {
    min-height: 100vh;
    background: var(--rs-green, #429668);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.rs-hero-videos__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 5% 80px;
    max-width: 700px;
    margin: 0 auto;
    gap: 20px;
}
.rs-hero-videos__rs-logo img {
    max-width: 360px;
    width: 100%;
    height: auto;
}
.rs-hero-videos__text h3 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    color: rgba(255,255,255,.85);
    line-height: 1.5;
    margin: 0;
}
.rs-hero-videos__mccain-logo {
    margin-top: 12px;
}
.rs-hero-videos__mccain-logo img {
    max-height: 52px;
    max-width: 220px;
    object-fit: contain;
}

/* ── Welcome Video (vertical 9:16) ─────────────────────────────────── */
.rs-welcome-video {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 8px 0;
}
.rs-welcome-video__inner {
    width: min(280px, 80vw);
    aspect-ratio: 9 / 16;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
.rs-welcome-video__player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rs-welcome-video__embed {
    width: 100%;
    height: 100%;
}
.rs-welcome-video__embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
