/* ==========================================================================
   Mark Neal - Estilos globales
   Reglas: tonos planos, sin sombras ni gradientes, radius maximo 10px.
   Titulos = combinacion de dos fuentes (Roboto Flex + Instrument Serif italic).
   ========================================================================== */

:root {
    --color-primary: #AAD1D9;
    --color-white: #FFFFFF;
    --color-secondary: #1C434B;
    --color-dark: #081F24;
    --color-gray: #E4E4E4;
    --color-red: #FF0F0F;
    --color-teal: #0F3D45;

    --font-serif: "Instrument Serif", serif;
    --font-sans: "Roboto Flex", sans-serif;

    --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}
.text-dark{
    color: var(--color-dark);
}
body .display-4{
    font-weight: 500 !important;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Titulos: por defecto Roboto Flex (parte recta) ---------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-sans); font-weight: 500; line-height: 1.06; }
.t-ital { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.lead {font-size: 1.4rem;
    line-height: 1.2;}

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 5px;
}
.eyebrow--dark { color: var(--color-secondary); }
.eyebrow--line { display: block; padding-bottom: 10px; margin-bottom: 26px; border-bottom: 1px solid var(--color-dark); }
.letter-spacing-2{
    letter-spacing: 2px;
}
/* ---------- Colores utilitarios ---------- */
.bg-dark-brand { background-color: var(--color-dark); }
.bg-secondary-brand { background-color: var(--color-secondary); }
.bg-primary-brand { background-color: var(--color-primary); }
.bg-gray-brand { background-color: var(--color-gray); }
.text-white-brand { color: var(--color-white); }
.text-primary-brand { color: var(--color-primary) !important; }
.text-dark-brand { color: var(--color-dark); }
.text-gray-brand { color: var(--color-gray); }
.text-red-brand { color: var(--color-red); }

/* ---------- Espaciado de secciones ---------- */
.section { padding: 110px 0; }

/* ---------- Botones ---------- */
.btn-brand {
font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    padding: 10px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.btn-blue { background-color: var(--color-primary); color: var(--color-dark); }
.btn-blue:hover { background-color: var(--color-secondary);
    color: var(--color-primary); }
.btn-dark-brand { background-color: var(--color-secondary); color: var(--color-primary); }
body .btn-dark-brand:hover { background-color: var(--color-primary);
    color: var(--color-dark); }
.btn-blue-outline { background-color: transparent; border-color: var(--color-primary); color: var(--color-primary); }
body .btn-blue-outline:hover { background-color: var(--color-primary); color: var(--color-dark); }
.btn-dark-outline { background-color: transparent; border-color: var(--color-secondary); color: var(--color-secondary); }
.btn-dark-outline:hover { background-color: var(--color-secondary); color: var(--color-white); }
.btn-white-outline { background-color: transparent; border-color: var(--color-white); color: var(--color-white); }
.btn-white-outline:hover { background-color: var(--color-white); color: var(--color-dark); }
.btn-social { background-color: var(--color-white); border: 1.5px solid var(--color-dark); color: var(--color-dark); display: inline-flex; align-items: center; }
.btn-social:hover { background-color: var(--color-dark); color: var(--color-white); }

/* ==========================================================================
   Header (fixed, queda sobre el hero)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 22px 0;
    background-color: transparent;
    transition: background-color .3s ease;
}
.site-header.is-scrolled { background-color: var(--color-dark); }
.brand-logo { font-size: 1.5rem; color: var(--color-white); letter-spacing: 0.01em; }
.brand-logo b { font-weight: 700; }
.brand-logo i { font-style: italic; }
.site-header .nav-link-brand {
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--color-white);
    padding: 6px 0;
    transition: color .2s ease;
}
.site-header .nav-link-brand:hover { color: var(--color-primary); }
.site-header .navbar-toggler { color: var(--color-white); }
.height-100{
    height: 100vh;
}
/* ==========================================================================
   Hero (plano, encapsulado, todo centrado)
   ========================================================================== */
   video.tipohero {
       height: auto;
       left: 50%;
       min-height: 100%;
       width: 100% !important;
       position: absolute;
       top: 50%;
       transform: translate(-50%, -50%);
       width: auto;
       z-index: -1;
       background-size: cover;
       
   }
.hero-wrap { padding: 12px; }
.hero {
    position: relative;
    background-color: rgba(8, 31, 36, 0.8);
    border-radius: var(--radius);
    min-height: calc(100vh - 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; will-change: transform; }
.hero > .container { position: relative; z-index: 1; }
.hero-eyebrow {
    color: var(--color-red);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 18px;
}
.hero h1 {
    color: var(--color-primary);
    font-size: clamp(2.6rem, 8vw, 7rem);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: 0 .28em;
}
.rotator { display: inline-block; height: 1.12em; line-height: 1.12em; overflow: hidden; vertical-align: bottom; border-bottom: 0.045em solid currentColor; }
.rotator-list { display: flex; flex-direction: column; }
.rotator-list > span {
    height: 1.12em; line-height: 1.12em;
    font-family: var(--font-serif); font-style: italic;
    color: inherit;
    white-space: nowrap;
}
.hero-sub { color: var(--color-gray); font-size: 1.7rem; max-width: 560px; margin: 18px auto 0; letter-spacing: 2px; }
.eyebrow--red { color: #FF2457; }

/* ==========================================================================
   Parallax (imagen con zoom ligero via GSAP)
   ========================================================================== */
.parallax { position: relative; border-radius: var(--radius); overflow: hidden; }
.parallax img { width: 100%; height: 100%; object-fit: cover; will-change: transform; transform: scale(1.4); }
.media-tall { min-height: 540px; }
.media-cta { position: absolute; right: 24px; bottom: 24px; z-index: 2; }
.parallax img.media-logo { position: absolute; left: 50%; bottom: 32px; z-index: 2; width: 190px; height: auto; object-fit: contain; transform: translateX(-50%); }

/* ==========================================================================
   Section 3 - Cards (bg oscuro, centrado, solo titulo visible)
   ========================================================================== */
.topic-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    height: 440px;
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-secondary);
}
.font-weight-300{
    font-weight: 300 !important;
    letter-spacing: 1px !important;
}
.topic-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.topic-card__bar {
position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 23px 22px 26px;
    background-color: #0F3D45;
    transform: translateY(calc(100% - 70px));
    transition: transform .5s ease;
}
.topic-card__title { 
    font-size: 1.4rem;
        color: var(--color-white);
        margin-bottom: 24px;
}
.topic-card__text { font-size: 0.9rem; color: var(--color-gray); line-height: 1.5; }
.topic-card:hover .topic-card__bar { transform: translateY(0); }
.topic-card:hover .topic-card__img { transform: translateY(-22px) scale(1.06); }

/* ==========================================================================
   Section 4 - Imagen de fondo completo en parallax
   ========================================================================== */
.book-section { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; background-color: #E9E9E8; }
.book-bg { position: absolute; inset: 0; z-index: 0; }
.book-bg--video { width: 52%; right: auto; }
.book-bg img { position: absolute; top: 0%; left: 0; width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.book-bg__video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.book-veil { position: absolute; inset: 0; z-index: 1; background-color: var(--color-dark); opacity: 0.45; }
.book-section .container { position: relative; z-index: 2; }
.book-copy { color: var(--color-dark); }
.book-copy .eyebrow { color: var(--color-dark); font-size: 1.15rem; letter-spacing: 0.04em; }
.book-copy .t-ital { color: var(--color-teal); }

/* ==========================================================================
   Section 4.2 - Speaking: acordeones (Signature Message) + card con video
   ========================================================================== */
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border: 0; border-bottom: 1px solid var(--color-dark); background-color: transparent; color: var(--color-dark); font-family: var(--font-sans); font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase; text-align: left; cursor: pointer; }
.acc-head i { font-size: 0.9rem; }
.acc-head[aria-expanded="true"] i::before { content: "\f068"; }
.acc-body { padding: 26px 0 36px; }
.acc-body p { font-size: 1.05rem; line-height: 1.5; margin-bottom: 14px; }
.acc-body .d-flex { margin-top: 22px; }
.hero--speak { align-items: center; justify-content: flex-start; text-align: left; }
.hero--speak p, .hero--cta p { font-size: 1.05rem; line-height: 1.5; color: var(--color-white); }
.hero--cta { min-height: 70vh; text-align: left; }
.hero--cta .book-veil { opacity: 0.45; }
.glass-panel {
    padding: 44px 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background-color: rgba(8, 31, 36, 0.42);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* ==========================================================================
   Section 5 - Video con play que ocupa la pantalla
   ========================================================================== */
.video-box { position: relative; border-radius: var(--radius); overflow: hidden; background-color: var(--color-secondary); aspect-ratio: 4 / 3; cursor: pointer; }
.video-box .video-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 4; cursor: pointer; border: 0; background-color: transparent; }
.video-play span { width: 84px; height: 84px; border-radius: 50%; background-color: var(--color-primary); color: var(--color-dark); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; transition: background-color .25s ease; }
.video-play:hover span { background-color: var(--color-white); }

.video-modal { display: none; position: fixed; inset: 0; z-index: 2000; background-color: var(--color-dark); }
.video-modal.is-open { display: block; animation: video-fade .35s ease; }
.video-modal__frame { width: 100%; height: 100%; }
.video-modal__frame iframe { width: 100%; height: 100%; border: 0; display: block; transform: translateZ(0); backface-visibility: hidden; }
.video-modal__close { position: fixed; top: 22px; right: 26px; z-index: 2010; width: 48px; height: 48px; border: 0; border-radius: 50%; background-color: var(--color-white); color: var(--color-dark); font-size: 1.2rem; cursor: pointer; display: none; }
.video-modal.is-open .video-modal__close { display: block; }
@keyframes video-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
body.video-open .site-header { display: none; }

/* ==========================================================================
   Section 6 y 7 - Pin con scroll horizontal (flex, sin grid)
   ========================================================================== */
.pin-section { overflow: hidden; }
.pin-head { padding: 0 60px 46px; text-align: center; }
.pin-viewport { display: flex; align-items: center; }
.pin-track { display: flex; flex-wrap: nowrap; gap: 26px; padding: 0 60px; will-change: transform; }
.pin-track--center { padding: 0 max(60px, calc((100% - 1192px) / 2)); }

.line-card {
    flex: 0 0 auto;
    width: 380px;
    border: 1px solid var(--color-secondary);
    border-radius: var(--radius);
    padding: 110px 30px;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
}
.line-card__title { font-size: 1.7rem; margin-bottom: 16px;font-weight: 300 !important; }
.line-card__sub { font-size: 1rem; color: var(--color-primary); margin-bottom: 22px; }
.line-card__text { font-size: 0.92rem; color: white; line-height: 1.55; margin-bottom: 0px !important;}

.post-card { flex: 0 0 auto; width: 340px; }

.post-card__img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); }

/* ==========================================================================
   About - Stat cards (A Lifetime of Leadership)
   ========================================================================== */
.stat-card { border: 1px solid var(--color-secondary); border-radius: var(--radius); padding: 34px 30px; height: 100%; }
.stat-card__num { font-size: 2.6rem; color: var(--color-white); margin-bottom: 10px; font-weight: 300 !important;}
.stat-card__text {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin: 0;
    letter-spacing: 1px;
    font-weight: 300;
 }

/* ==========================================================================
   About - Areas of Focus (titulo sticky via pin + timeline numerado)
   ========================================================================== */
.focus-section { overflow: visible; }
.focus-title { padding-bottom: 30px; }
.focus-list { position: relative; padding-left: 96px; }
.focus-line { position: absolute; left: 27px; top: 36px; bottom: 36px; width: 2px; background-color: var(--color-secondary); }
.focus-line__fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background-color: var(--color-primary); }
.focus-item { position: relative; padding: 28px 0; }
.focus-item__num {
    position: absolute; left: -96px; top: 24px;
    width: 56px; height: 56px;
    border: 2px solid var(--color-secondary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 1.6rem;
    color: var(--color-gray); background-color: var(--color-dark);
    transition: background-color .3s ease, color .3s ease, border-color .3s ease;
}
.focus-item.is-active .focus-item__num { background-color: var(--color-primary); color: var(--color-dark); border-color: var(--color-primary); }
.focus-item__title { font-size: 1.8rem; color: var(--color-white); margin-bottom: 8px; }
.focus-item__text { color: var(--color-primary); margin: 0; font-size: 1.3rem;}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background-color: var(--color-dark); color: var(--color-gray); padding: 70px 0 30px; }
.site-footer a { color: var(--color-white); }
.site-footer a:hover { color: var(--color-primary); }
.footer-brand { display: flex; align-items: center; gap: 36px; margin-bottom: 64px; }
.footer-brand img { width: 86px; }
.footer-brand__name { display: block; font-size: 1.15rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-brand__tag { display: block; font-size: 1.45rem; }
.footer-links { padding: 0; }
.footer-links li { margin-bottom: 14px; }
.footer-links a { color: var(--color-primary); }
.footer-links a:hover { color: var(--color-white); }
.newsletter-card { background-color: var(--color-teal); border-radius: var(--radius); padding: 56px 52px; color: var(--color-white); }
.newsletter-card p { font-size: 0.95rem; line-height: 1.5; }
.newsletter-card--split { height: 100%; border-radius: 0; display: flex; flex-direction: column; justify-content: center; padding: 90px 12%; }
.split-media { height: 100%; min-height: 420px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-form--light { border-color: var(--color-white); }
.newsletter-form--light .newsletter-field, .newsletter-form--light .newsletter-field::placeholder, .newsletter-form--light .newsletter-submit { color: var(--color-white); }
.footer-bottom { border-top: 1px solid var(--color-secondary); margin-top: 60px; padding-top: 24px; font-size: 0.85rem; }
.footer-bottom, .footer-bottom a { color: #1B5D69; }

/* ==========================================================================
   Pagina Media (video destacado + grid de videos)
   ========================================================================== */
body.inner-page .site-header { background-color: var(--color-dark); }
.media-page { padding: 130px 0 90px; }

.media-hero-full { cursor: pointer; }
.media-hero-full .hero-cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.media-hero-full .hero-veil { position: absolute; inset: 0; background-color: rgba(8, 31, 36, 0.5); z-index: 1; }
.media-hero-full .container { position: relative; z-index: 2; }
.media-hero-full .hero-eyebrow { display: block; }
.media-hero-full h1 { color: var(--color-white); font-size: clamp(2.4rem, 6vw, 5.4rem); line-height: 1.05; }

.media-more { padding-top: 90px; }
.media-more-title { margin-bottom: 46px; }
.media-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; background-color: var(--color-dark); cursor: pointer; transition: transform .3s ease; }
.media-card:hover { transform: scale(1.03); }
.media-card__cover { width: 100%; height: 100%; object-fit: cover; }
.media-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 31, 36, 0.92) 0%, rgba(8, 31, 36, 0.45) 42%, rgba(8, 31, 36, 0) 72%); pointer-events: none; z-index: 1; }
.media-card .video-play { z-index: 3; }
.media-card__title { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; color: var(--color-white); font-size: 1.05rem; line-height: 1.3; z-index: 2; pointer-events: none; }

/* ==========================================================================
   Blog (index + post)
   ========================================================================== */
.blog-index { padding-top: 130px; }
.blog-index__title { color: var(--color-dark); margin-bottom: 46px; }

.blog-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; background-color: var(--color-dark); }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-card:hover .blog-card__img { transform: scale(1.04); }
.blog-card__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(to top, rgba(8, 31, 36, 0.92) 0%, rgba(8, 31, 36, 0.45) 42%, rgba(8, 31, 36, 0) 72%); }
.blog-card__date { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 8px; }
.blog-card__title { font-size: 1.2rem; font-weight: 500; color: var(--color-white); line-height: 1.3; }

/* ---------- Post estilo Superside ---------- */
.blog-post { padding-top: 130px; }
.blog-post__head { max-width: 820px; margin: 0 auto 42px; text-align: center; }
.blog-post__date { display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-secondary); margin-bottom: 22px; }
.blog-post__title { font-size: clamp(2.1rem, 4.6vw, 3.6rem); line-height: 1.12; color: var(--color-dark); margin-bottom: 28px; }
.blog-post__author { display: inline-flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--color-secondary); margin-bottom: 24px; }
.blog-post__author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.blog-post__author strong { color: var(--color-dark); font-weight: 600; }
.blog-post__share { display: flex; justify-content: center; gap: 14px; }
.blog-post__share a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--color-gray); display: inline-flex; align-items: center; justify-content: center; color: var(--color-dark); transition: background-color .2s ease, color .2s ease; }
.blog-post__share a:hover { background-color: var(--color-dark); color: var(--color-white); }

.blog-post__cover { margin: 0 0 56px; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 7.5; background-color: var(--color-dark); }
.blog-post__cover img { width: 100%; height: 100%; object-fit: cover; }

.blog-post__body { max-width: 720px; }
.blog-post__body p { font-size: 1.1rem; line-height: 1.85; color: #26383C; margin-bottom: 26px; }

.blog-post__aside { display: block; text-decoration: none; cursor: pointer; }
.blog-post__aside-cover { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; background-color: var(--color-dark); }
.blog-post__aside-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.blog-post__aside:hover .blog-post__aside-cover img { transform: scale(1.04); }
.blog-post__aside-label { display: block; margin-top: 14px; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-secondary); }
.blog-post__aside-t { display: block; margin-top: 4px; font-size: 1.05rem; line-height: 1.35; color: var(--color-dark); }

.video-play--sm span { width: 54px; height: 54px; font-size: 1rem; }

.blog-related { background-color: var(--color-dark); padding: 80px 0; margin-top: 90px; }
.blog-related__title { color: var(--color-white); margin-bottom: 40px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.hero--contact { min-height: 70vh; align-items: flex-end; padding-bottom: 56px; position: relative;}
.hero--contact h1 { color: var(--color-white); }

.contact-links { padding: 40px 0px 80px; }
.contact-links__list { list-style: none; margin: 0; padding: 34px 0 0; border-top: 1px solid var(--color-gray); display: flex; gap: 24px; }
.contact-link { flex: 1; display: flex; }
.contact-link > a { position: relative; display: block; width: 100%; background-color: var(--color-primary); border-radius: var(--radius); padding: 10px 36px 30px; text-decoration: none; }
.contact-link__arrow { position: absolute; top: 26px; right: 36px; font-size: 2rem; color: white; transform: rotate(45deg); transition: transform .3s ease; }
.contact-link > a:hover .contact-link__arrow { transform: rotate(90deg); }
.contact-link__title { color: white; font-size: 1.6rem; margin: 44px 0 14px; }
.contact-link__text { color: var(--color-secondary); font-size: 1rem; line-height: 1.5; margin: 0; max-width: 92%; }

.contact-section { background-color: var(--color-dark); }
.contact-section__head { margin-bottom: 52px; }
.contact-eyebrow { display: block; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.9rem; color: var(--color-primary); margin-bottom: 20px; }
.contact-eyebrow--dark { color: white; }
.contact-section h2 { color: var(--color-white); }

.contact-form { max-width: 1180px; margin: 0 auto; }
.form-field { width: 100%; background-color: transparent; border: 1px solid rgba(228, 228, 228, 0.5); border-radius: var(--radius); color: var(--color-white); padding: 20px 30px; font-family: var(--font-sans); font-size: 0.95rem; transition: border-color .2s ease; }
.form-field::placeholder { color: var(--color-gray); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.9rem; opacity: 1; }
.form-field:focus { outline: none; border-color: var(--color-primary); }
textarea.form-field { resize: vertical; min-height: 150px; }
.form-field--select { color: var(--color-gray); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.9rem; appearance: none; -webkit-appearance: none; padding-right: 46px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23AAD1D9' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 22px center; cursor: pointer; }
.form-field--select option { color: var(--color-dark); text-transform: none; }
.contact-form__actions { margin-top: 24px; }
.contact-form__actions .btn { width: 100%; padding: 18px 28px; font-size: 0.95rem; }

.newsletter-form { display: flex; align-items: center; max-width: 430px; border: 1px solid #ffffffa7; border-radius: var(--radius); overflow: hidden; }
.newsletter-field { flex: 1; min-width: 0; border: 0; background-color: transparent; color: var(--color-dark); padding: 16px 20px; font-family: var(--font-sans); }
.newsletter-field::placeholder { text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.82rem; font-weight: 600; color: var(--color-secondary); }
.newsletter-field:focus { outline: none; }
.newsletter-submit { flex-shrink: 0; border: 0; background-color: transparent; color: var(--color-secondary); padding: 0 20px; cursor: pointer; align-self: stretch; }
.newsletter-submit i { transition: transform .25s ease; }
.newsletter-submit:hover i { transform: translateX(4px); }

/* ==========================================================================
   Modal flotante New Book (solo home)
   ========================================================================== */
@keyframes bookPromoIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.book-promo { position: fixed; left: 24px; bottom: 24px; z-index: 1500; display: flex; align-items: center; gap: 18px; width: 430px; max-width: calc(100vw - 40px); padding: 24px 30px 24px 22px; background-color: var(--color-secondary); border-radius: var(--radius); opacity: 0; transform: translateY(10px); animation: bookPromoIn .6s ease .4s forwards; }
.book-promo.is-hidden { display: none; }
.book-promo__close { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border: 0; border-radius: 50%; background-color: rgba(255, 255, 255, 0.08); color: var(--color-primary); font-size: 0.95rem; cursor: pointer; transition: background-color .2s ease, color .2s ease; }
.book-promo__close:hover { background-color: rgba(255, 255, 255, 0.18); color: var(--color-white); }
.book-promo__cover { flex-shrink: 0; width: 116px; }
.book-promo__cover img { width: 100%; display: block; transition: transform .45s ease; }
.book-promo:hover .book-promo__cover img { transform: rotate(0deg) scale(1.06); }
.book-promo__title { color: var(--color-primary); font-size: 1.5rem; margin: 0 0 8px; }
.book-promo__title .t-ital { color: var(--color-white); }
.book-promo__text { color: var(--color-gray); font-size: 0.92rem; line-height: 1.45; margin: 0 0 16px; }
.book-promo .btn-blue:hover { background-color: var(--color-white); color: var(--color-dark); }
@media (max-width: 575px) {
    .book-promo { left: 16px; right: 16px; bottom: 16px; width: auto; gap: 14px; }
    .book-promo__cover { width: 92px; }
}

/* ==========================================================================
   Event Calendar (home) - lista ul > li en flex
   ========================================================================== */
.event-list { display: flex; flex-direction: column; padding: 0;}
.event-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition: border-color .25s ease, transform .25s ease;
}
.event-item:not(:last-child) { border-bottom-color: rgba(255, 255, 255, 0.15); }
.event-item:hover { border-color: var(--color-secondary); transform: scale(1.015); }
.event-item__date { flex: 0 0 170px; font-size: 20px; font-weight: 300; color: var(--color-primary); }
.event-item__title { flex: 1 1 30%; font-size: 20px; font-weight: 400; color: var(--color-white); }
.event-item__place { flex: 1 1 22%; font-size: 20px; font-weight: 300; color: var(--color-white); }
.event-item__venue { flex: 1 1 26%; font-size: 20px; font-weight: 300; color: var(--color-white); }
.event-item__action { flex: 0 0 auto; margin-left: auto; }
@keyframes fadeInUpSoft { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.event-item.animate__fadeInUp { animation-name: fadeInUpSoft; }

/* ==========================================================================
   Home - Inside Job (reutiliza .focus-* del about, con numeros en circulo)
   ========================================================================== */
body .display-5 { font-weight: 500 !important; }
.focus-intro { color: var(--color-gray); font-size: 1.4rem; line-height: 1.5; max-width: 420px; margin: 0; }
.focus-section--inside .focus-title { padding-bottom: 0; }
.focus-section--inside .focus-list { padding-left: 78px; }
.focus-section--inside .focus-line { left: 22px; }
.focus-section--inside .focus-item { padding: 32px 0; }
.focus-section--inside .focus-item__body { padding-top: 0px; }
.focus-section--inside .focus-item__num {
    left: -78px; top: 32px;
    width: 46px; height: 46px;
    border: 1.5px solid var(--color-secondary);
    border-radius: 50%;
    font-family: var(--font-serif); font-size: 1.35rem;
    color: var(--color-white);
}
.focus-section--inside .focus-item.is-active .focus-item__num { background-color: var(--color-dark); color: var(--color-white); border-color: var(--color-secondary); }
.focus-item__ring { position: absolute; inset: -1.5px; transform: rotate(-90deg); fill: none; stroke: var(--color-primary); stroke-width: 1.5; stroke-dasharray: 0 100; stroke-dashoffset: 0; pointer-events: none; }
.focus-section--inside .focus-item__text { color: var(--color-white); font-size: 1.5rem; line-height: 1.5; }
.mb-80{
    margin-bottom: 80px;
}
/* ---------- This Isn't Theory: card teal dentro del fondo oscuro ---------- */
.inside-card { background-color: var(--color-teal); border-radius: var(--radius); padding: 80px; }
.inside-card hr { color: var(--color-white); opacity: 0.5; margin: 0 0 56px; }
.inside-card__text p { color: var(--color-white); font-size: 1.2rem; line-height: 1.6; margin-bottom: 22px; }
.inside-card__text strong { font-weight: 700; }
.inside-card .btn-dark-brand { background-color: var(--color-dark); margin-top: 6px; }
.inside-card__photos { margin-top: 60px; }
.inside-card__img { aspect-ratio: 3 / 2; background-color: var(--color-dark); }
@media (max-width: 991px) {
    .inside-card { padding: 36px 24px; }
    .inside-card hr { margin-bottom: 36px; }
    .inside-card__photos { margin-top: 36px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .section { padding: 70px 0; }
    .media-tall { min-height: 360px; margin-top: 28px; }
    .pin-viewport { height: auto; display: block; }
    .pin-track { overflow-x: auto; padding: 0 20px 20px; }
    .pin-head { padding: 0 20px 30px; }
    .post-card + .post-card { border-left: 0; padding-left: 0; }
    .blog-index, .blog-post { padding-top: 108px; }
    .blog-post__aside { max-width: 380px; margin-top: 8px; }
    .contact-links__list { flex-direction: column; }
    .footer-brand { gap: 20px; margin-bottom: 36px; }
    .newsletter-card { padding: 32px 24px; }
    .newsletter-card--split { padding: 48px 24px; }
    .split-media { min-height: 300px; }
    .insights-head { align-items: flex-start; }
    .event-item { flex-wrap: wrap; gap: 8px; padding: 20px 14px; }
    .event-item:hover { transform: none; }
    .event-item__date { flex: 0 0 100%; }
    .event-item__title,
    .event-item__place,
    .event-item__venue { flex: 0 0 100%; font-size: 18px; }
    .event-item__action { margin-left: 0; margin-top: 10px; }
}

@media (max-width: 767px) {
    .glass-panel { padding: 28px 22px; }
}

@media (max-width: 767px) {
    .parallax img.media-logo { bottom: 20px; width: 140px; }
}

@media (max-width: 991px) {
    .book-bg--video { width: 100%; }
}


/* ==========================================================================
   Home - Event Calendar: boton See More / See Less
   ========================================================================== */
[data-toggle-text] .is-less { display: none; }
[data-toggle-text][aria-expanded="true"] .is-more { display: none; }
[data-toggle-text][aria-expanded="true"] .is-less { display: inline; }


/* ==========================================================================
   Home - Signature Message sobre fondo oscuro
   ========================================================================== */
.bg-dark-brand .acc-head { color: var(--color-white); border-bottom-color: var(--color-secondary); }
.bg-dark-brand .acc-body p { color: var(--color-gray); }
