/* ==========================================================================
   Grupo Safadi - Sistema base y tokens de diseno
   ========================================================================== */
:root {
    /* Palette: updated for premium look */
    --color-platinum: #090d1b;
    --color-white: #f8f7f2;
    --color-charcoal: #f8f7f2;
    --color-secondary: #bbb5a8;
    --color-muted: #aaa596;
    --color-accent: #d0ae46;
    --color-surface: #0e1424;
    --color-wine: #d0ae46;
    --color-border: rgba(255, 255, 255, 0.13);
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.22);
    --shadow-wine: 0 16px 28px rgba(208, 174, 70, 0.18);
    --container: 1180px;
    --header-height: 82px;
    --transition: 240ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--color-charcoal);
    background: var(--color-platinum);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid rgba(88, 17, 26, 0.42);
    outline-offset: 4px;
}

/* ==========================================================================
   Header fijo
   ========================================================================== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 20;
    background: var(--color-charcoal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: padding var(--transition), background-color var(--transition), backdrop-filter var(--transition);
}

.header-container {
    width: min(100% - 48px, var(--container));
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: min-height var(--transition);
}

.site-header.is-compact {
    background: rgba(44, 53, 57, 0.88);
    backdrop-filter: blur(14px);
}

.site-header.is-compact .header-container {
    min-height: 64px;
}

.brand-logo {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    white-space: nowrap;
}

.brand-logo span,
.footer-brand span {
    color: var(--color-wine);
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 34px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

.main-navigation a:hover {
    color: var(--color-accent);
}

.language-toggle {
    min-width: 46px;
    min-height: 34px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: var(--color-white);
    background: transparent;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.language-toggle:hover {
    color: var(--color-charcoal);
    border-color: var(--color-white);
    background: var(--color-white);
}

/* ==========================================================================
   Hero corporativo
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-charcoal);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(44, 53, 57, 0.42), rgba(44, 53, 57, 0.46)),
        radial-gradient(circle at center, rgba(44, 53, 57, 0.04), rgba(44, 53, 57, 0.34));
}

.hero-carousel,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-carousel {
    z-index: 0;
}

.hero-slide {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 2200ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-content {
    position: absolute;
    left: 50%;
    bottom: 88px;
    z-index: 2;
    width: min(100% - 48px, 980px);
    margin: 0;
    display: grid;
    justify-items: center;
    text-align: center;
    transform: translateX(-50%);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 680px;
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2.45rem, 5.8vw, 4.85rem);
    line-height: 1.02;
    font-weight: 800;
}

.hero-overlay-content h1 {
    max-width: 860px;
    margin: 0;
    color: var(--color-white);
    font-size: clamp(2rem, 4.8vw, 4rem);
    line-height: 1.08;
    font-weight: 800;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.22);
}

.hero-copy {
    max-width: 610px;
    margin: 28px 0 0;
    color: rgba(44, 53, 57, 0.82);
    font-size: clamp(1rem, 2vw, 1.14rem);
}

.hero-overlay-content .hero-copy {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: var(--color-charcoal);
    background: var(--color-accent);
    box-shadow: none;
}

.btn-primary:hover {
    background: #8f8f8f;
}

.btn-secondary {
    color: var(--color-white);
    border-color: rgba(255,255,255,0.12);
    background: transparent;
}

.btn-secondary:hover {
    color: var(--color-white);
    background: var(--color-charcoal);
}

.hero-overlay-content .btn-secondary {
    color: var(--color-white);
    border-color: rgba(255,255,255,0.12);
    background: rgba(255, 255, 255, 0.04);
}

.hero-overlay-content .btn-secondary:hover {
    color: var(--color-charcoal);
    background: var(--color-white);
}


.hero-visual {
    min-height: 470px;
    display: grid;
    place-items: center;
}

.carousel-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 34px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    transition: width var(--transition), background-color var(--transition);
}

.carousel-dots span.is-active {
    width: 28px;
    background: var(--color-white);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--color-white);
    background: rgba(44, 53, 57, 0.08);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color var(--transition), transform var(--transition);
}

.carousel-arrow:hover {
    background: rgba(44, 53, 57, 0.34);
    transform: translateY(-50%) scale(1.05);
}

.carousel-arrow span {
    width: 24px;
    height: 24px;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
}

.carousel-arrow-prev {
    left: 34px;
}

.carousel-arrow-prev span {
    transform: rotate(-45deg);
}

.carousel-arrow-next {
    right: 34px;
}

.carousel-arrow-next span {
    transform: rotate(135deg);
}

/* ==========================================================================
   Grid modular de marcas
   ========================================================================== */
.brands-section {
    padding: 96px 0 112px;
    background: var(--color-platinum);
}

.section-heading {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading h2 {
    margin: 0;
    color: var(--color-charcoal);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.04;
}

.section-heading p:last-child {
    max-width: 640px;
    margin: 14px 0 0;
    color: var(--color-muted);
    font-size: 1.02rem;
}

.brands-grid {
    width: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--color-border);
}

    .brand-card {
    min-height: 150px;
    max-height: 220px;
    background: var(--color-surface);
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.brand-card:nth-child(2n) {
    border-right: 0;
}

.brand-link {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6px 8px 6px;
    color: var(--color-charcoal);
    text-align: center;
    text-decoration: none;
    transition: background-color var(--transition), color var(--transition);
    overflow: hidden;
}

.brand-link img {
        display: block;
        width: auto;
        height: 100%;
        max-height: none;
        max-width: 98%;
        object-fit: contain;
        margin: 0;
        filter: grayscale(0.04);
        opacity: 1;
        transform: none;
        transition: transform var(--transition), filter var(--transition), opacity var(--transition);
        align-self: center;
        z-index: 1;
    }

.visit-badge {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translate(-50%, 16px);
    min-width: 120px;
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--color-charcoal);
    background: var(--color-accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.visit-badge:hover,
.brand-link:focus-visible .visit-badge {
    background: #f1d47a;
    box-shadow: 0 8px 20px rgba(208, 174, 70, 0.32);
}

.brand-card:hover .brand-link,
.brand-card:focus-within .brand-link {
    color: var(--color-white);
    background: var(--color-charcoal);
}

.brand-card:hover img,
.brand-card:focus-within img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.35);
 }

.brand-card:hover .visit-badge,
.brand-card:focus-within .visit-badge {
    opacity: 1;
    transform: translate(-50%, 0);
}

.brand-card-upcoming {
    background: rgba(44, 53, 57, 0.04);
}

.brand-card-upcoming .brand-link {
    gap: 8px;
}

.brand-card-upcoming .brand-link strong {
    font-size: 1.35rem;
}

.upcoming-mark {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--color-muted);
    border: 1px solid rgba(100,95,92,0.12);
    font-size: 2rem;
    line-height: 1;
}

/* ==========================================================================
   Footer corporativo y contacto
   ========================================================================== */
.contact-section {
    position: relative;
    padding: 64px 0 68px;
    color: var(--color-white);
    background: var(--color-charcoal);
}

.contact-accent {
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: rgba(255,255,255,0.06);
}

.contact-container {
    width: min(100% - 48px, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.62fr 1.38fr;
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
}

.footer-brand {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.monogram {
    width: 146px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 8px solid var(--color-white);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1;
}

.footer-brand p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.contact-panel h2 {
    margin: 0 0 18px;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    line-height: 1.05;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-item {
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.24);
}

.contact-item h3 {
    margin: 0 0 10px;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-item p,
.contact-item a {
    margin: 0;
    color: var(--color-white);
    font-size: 1rem;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.contact-item a {
    transition: color var(--transition);
}

.contact-item a:hover {
    color: #F0C7CC;
}

/* ==========================================================================
   Boton flotante de WhatsApp
   ========================================================================== */
.whatsapp-sticky {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 18;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--color-white);
    background: #25D366;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.18);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-sticky svg {
    width: 34px;
    height: 34px;
}

.whatsapp-sticky:hover {
    transform: scale(1.08);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.42);
}

/* ==========================================================================
   Secciones adicionales de landing page
   ========================================================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-white);
}

.stats-section,
.features-section,
.gallery-section,
.about-section {
    padding: 92px 0;
    background: var(--color-platinum);
}

.stats-section {
    padding: 0;
    color: var(--color-charcoal);
    background: #d0ae46;
}

.stats-grid,
.features-grid,
.gallery-grid {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
    display: grid;
    gap: 24px;
}

.stats-grid {
    width: min(100%, 1440px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.stat-card,
.feature-card,
.about-card,
.timeline-item {
    padding: 28px;
    border: 1px solid rgba(24, 24, 26, 0.08);
    border-radius: 22px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.stat-card {
    min-height: 224px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.stat-card strong {
    display: block;
    margin: 10px 0 0;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1;
    color: var(--color-charcoal);
} 


.stat-card p {
    margin: 8px 0 0;
    color: rgba(24, 24, 26, 0.84);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(88, 17, 26, 0.08);
    font-size: 1.35rem;
}

.stat-icon {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.2;
}


.section-heading--centered {
    text-align: center;
    margin-bottom: 42px;
}

.section-heading--centered p:last-child {
    margin-inline: auto;
}

.features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(48px, 10vw, 160px);
    row-gap: 52px;
}

.features-section {
    color: var(--color-white);
    background: #090d1b;
}

.feature-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.feature-icon {
    width: 46px;
    height: 46px;
    padding: 0;
    fill: none;
    stroke: #d0ae46;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    background: transparent;
}

.feature-card h3,
.about-card h3,
.timeline-item h4 {
    margin: 16px 0 10px;
    font-size: 1.15rem;
}

.feature-card p,
.about-card p,
.timeline-item p,
.about-story p,
.about-story li {
    margin: 0;
    color: var(--color-muted);
}

.feature-card h3 {
    margin-top: 17px;
    color: var(--color-white);
    font-size: 1.35rem;
}

.feature-card p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1.06rem;
}

.slogan-section {
    padding: 110px 0;
    background: linear-gradient(rgba(24,24,26,0.55), rgba(24,24,26,0.55)), url('../img/productos/proctuto8.jpeg') center/cover;
    color: var(--color-white);
}

.slogan-overlay {
    width: min(100% - 48px, 960px);
    margin-inline: auto;
    text-align: center;
}

.line-decoration {
    width: 96px;
    height: 2px;
    margin: 20px auto;
    background: rgba(255,255,255,0.55);
}

.slogan-section blockquote {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.35;
    font-weight: 700;
}

.slogan-signature {
    margin-top: 16px;
    color: rgba(255,255,255,0.84);
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 24px;
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    min-height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 320ms ease;
}

@media (min-width: 721px) {
    .gallery-item {
        min-height: 340px;
    }
}




.gallery-item:hover img {
    transform: scale(1.08);
}

.about-grid {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.about-story h2 {
    margin: 12px 0 18px;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.08;
}

.about-story p + p {
    margin-top: 16px;
}

.about-image-card {
    margin-top: 24px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.about-image-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.about-highlights {
    display: grid;
    gap: 18px;
}

.about-card ul {
    margin: 10px 0 0;
    padding-left: 20px;
    display: grid;
    gap: 6px;
}

.timeline-section {
    width: 100%;
    margin: 92px 0 0;
    padding: 74px max(24px, calc((100% - var(--container)) / 2));
    color: var(--color-white);
    background: #090d1b;
}

.timeline-section h3 {
    margin: 0 0 76px;
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    text-align: center;
}

.timeline {
    position: relative;
    display: grid;
    gap: 48px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(208, 174, 70, 0.3);
}

.timeline-item {
    position: relative;
    width: calc(50% - 42px);
    min-height: 140px;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0;
    background: rgba(15, 20, 37, 0.82);
    box-shadow: none;
}

.timeline-item:nth-child(odd) {
    justify-self: start;
    text-align: right;
}

.timeline-item:nth-child(even) {
    justify-self: end;
}

.timeline-item::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 3px solid #d0ae46;
    border-radius: 50%;
    background: #090d1b;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::after {
    right: -53px;
}

.timeline-item:nth-child(even)::after {
    left: -53px;
}

.timeline-year {
    display: block;
    min-height: 0;
    color: #d0ae46;
    font-size: 1.8rem;
    font-weight: 800;
}

.timeline-item h4 {
    margin: 0 0 8px;
    color: var(--color-white);
}

.timeline-item p {
    color: rgba(255, 255, 255, 0.62);
}

.contact-panel h2 {
    margin-bottom: 12px;
}

.contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #25D366;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 12px;
}

.footer-socials a {
    color: rgba(255,255,255,0.84);
    text-decoration: none;
    font-size: 0.95rem;
}

.copyright {
    margin-top: 12px;
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
}

/* ==========================================================================
   Tema editorial: azul noche, marfil y dorado
   ========================================================================== */
.site-header,
.contact-section {
    background: #090d1b;
}

.site-header.is-compact {
    background: rgba(9, 13, 27, 0.94);
}

.hero-section {
    background: #090d1b;
}

.btn-primary,
.visit-badge {
    color: #090d1b;
}

.btn-primary:hover {
    background: #e0bf58;
}

.btn-secondary:hover,
.hero-overlay-content .btn-secondary:hover,
.language-toggle:hover {
    color: #090d1b;
    background: var(--color-white);
}

.brands-section,
.gallery-section,
.about-section {
    background: #090d1b;
}

.brands-section .eyebrow,
.section-heading .eyebrow {
    color: var(--color-accent);
}

.brand-card-upcoming,
.gallery-item {
    background: var(--color-surface);
}

.brand-card:hover .brand-link,
.brand-card:focus-within .brand-link {
    background: #141b2d;
}

.stats-section {
    background: var(--color-accent);
}

.stat-card,
.stat-card strong,
.stat-card p {
    color: #090d1b;
}

.about-section {
    padding: 104px 0 0;
}

.about-grid {
    display: block;
}

.about-intro {
    max-width: 1160px;
    margin: 0 auto 104px;
    text-align: center;
}

.about-kicker {
    margin: 0 0 28px;
    color: var(--color-accent);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.about-intro .about-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.about-intro .about-kicker::before,
.about-intro .about-kicker::after {
    content: "";
    width: 48px;
    height: 2px;
    background: var(--color-accent);
}

.about-intro h2 {
    max-width: 1100px;
    margin: 0 auto;
    color: var(--color-white);
    font-size: clamp(3rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.about-story {
    max-width: 1120px;
    margin: 0 auto;
}

.about-story p:not(.about-kicker) {
    max-width: none;
    color: var(--color-secondary);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.7;
}

.about-story p + p {
    margin-top: 18px;
}

.about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    width: min(100% - 48px, var(--container));
    margin: 82px auto 0;
}

.about-card {
    min-height: 300px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0;
    background: #0e1424;
    box-shadow: none;
}

.about-card-icon {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: var(--color-accent);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.about-card h3 {
    margin: 14px 0 22px;
    color: var(--color-white);
    font-size: 1.7rem;
}

.about-card p {
    color: var(--color-secondary);
    font-size: 1.08rem;
    line-height: 1.65;
}

.about-image-card {
    display: none;
}

/* Ajustes de escala, galería y estructura editorial */
.hero-overlay-content h1 {
    font-size: clamp(2rem, 4.2vw, 3.45rem);
}

.section-heading h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
}

.timeline-section h3 {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
}

.gallery-section {
    padding: 82px 0 96px;
}

.gallery-section .section-heading {
    margin-bottom: 48px;
}

.gallery-section .eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.gallery-section .eyebrow::before,
.gallery-section .eyebrow::after {
    content: "";
    width: 48px;
    height: 2px;
    background: var(--color-accent);
}

.gallery-grid {
    width: min(100% - 48px, 1400px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery-item {
    min-height: 325px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    box-shadow: none;
}

.gallery-item img {
    aspect-ratio: auto;
    transform: scale(1.01);
    transition: transform 500ms ease, filter 500ms ease;
}

.gallery-item:hover img {
    filter: saturate(1.12) contrast(1.04);
    transform: scale(1.08);
}

.about-section {
    padding: 92px 0 0;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.8fr);
    gap: clamp(36px, 6vw, 88px);
    align-items: start;
}

.about-intro {
    display: none;
}

.about-story {
    max-width: none;
    margin: 0;
}

.about-story .eyebrow {
    color: var(--color-accent);
}

.about-story h2 {
    margin: 10px 0 22px;
    color: var(--color-white);
    font-size: clamp(2.1rem, 3.7vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.about-story p:not(.eyebrow) {
    color: var(--color-secondary);
    font-size: 1.04rem;
    line-height: 1.7;
}

.about-image-card {
    display: block;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    box-shadow: none;
}

.about-image-card img {
    height: 260px;
    filter: saturate(0.78) contrast(1.06) brightness(0.72);
    transition: transform 600ms ease, filter 600ms ease;
}

.about-image-card:hover img {
    filter: saturate(0.95) contrast(1.04) brightness(0.85);
    transform: scale(1.04);
}

.about-highlights {
    width: auto;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 16px;
}

.about-card {
    min-height: 0;
    padding: 30px 32px;
    transition: transform 280ms ease, border-color 280ms ease, background-color 280ms ease;
}

.about-card:hover {
    border-color: rgba(208, 174, 70, 0.6);
    background: #131b30;
    transform: translateY(-5px);
}

.about-card h3 {
    margin: 10px 0 12px;
    font-size: 1.35rem;
}

.about-card p,
.about-card ul {
    color: var(--color-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
}

.about-card ul {
    margin: 0;
    padding-left: 18px;
}

.stat-icon,
.feature-icon,
.about-card-icon {
    transition: transform 320ms ease, stroke 320ms ease;
}

.stat-card:hover .stat-icon,
.feature-card:hover .feature-icon,
.about-card:hover .about-card-icon {
    stroke: #f1cc58;
    transform: translateY(-5px) scale(1.08);
}

.feature-card,
.stat-card,
.timeline-item {
    transition: transform 280ms ease, background-color 280ms ease, border-color 280ms ease;
}

.feature-card:hover {
    transform: translateX(8px);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.timeline-item:hover {
    border-color: rgba(208, 174, 70, 0.62);
    background: #131b30;
    transform: translateY(-4px);
}

.timeline-item {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 560ms ease, transform 560ms ease, background-color 280ms ease, border-color 280ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.is-visible:hover {
    transform: translateY(-4px);
}

.stat-card:nth-child(3) strong {
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 920px) {
    .header-container {
        width: min(100% - 32px, var(--container));
    }

    .contact-container {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-items: center;
    }

    .hero-section {
        min-height: 86vh;
    }

    .hero-overlay-content {
        width: min(100% - 40px, 760px);
        bottom: 76px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 721px) and (max-width: 920px) {
    .menu-toggle {
        display: inline-flex;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        display: none;
        padding: 14px 16px;
        border-radius: 8px;
        background: rgba(9, 13, 27, 0.98);
        box-shadow: var(--shadow-soft);
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 76px;
    }

    .header-container {
        min-height: var(--header-height);
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        display: none;
        padding: 12px;
        border-radius: 16px;
        background: rgba(24,24,26,0.96);
        box-shadow: var(--shadow-soft);
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .main-navigation a {
        font-size: 0.82rem;
    }

    .site-header.is-compact .header-container {
        min-height: 70px;
    }

    .section-heading,
    .brands-grid,
    .contact-container {
        width: min(100% - 32px, var(--container));
    }

    .hero-section {
        min-height: 100svh;
    }

    .hero-overlay-content {
        width: min(100% - 32px, 420px);
        bottom: 70px;
    }

    .carousel-dots {
        bottom: 26px;
    }

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

    .about-section {
        padding-top: 74px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .about-story h2 {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .about-story p:not(.eyebrow) {
        font-size: 1rem;
    }

    .about-image-card img {
        height: 210px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .gallery-item {
        min-height: 210px;
    }

    .gallery-section .eyebrow::before,
    .gallery-section .eyebrow::after {
        width: 30px;
    }

    .about-intro {
        margin-bottom: 68px;
    }

    .about-kicker {
        margin-bottom: 22px;
        font-size: 0.7rem;
        letter-spacing: 0.25em;
    }

    .about-intro .about-kicker {
        gap: 12px;
    }

    .about-intro .about-kicker::before,
    .about-intro .about-kicker::after {
        width: 28px;
    }

    .about-intro h2 {
        font-size: clamp(2.45rem, 11vw, 3.4rem);
        line-height: 1.12;
    }

    .about-story p:not(.about-kicker) {
        font-size: 1.05rem;
        line-height: 1.68;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 56px;
    }

    .about-card {
        min-height: 0;
        padding: 32px 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .timeline-section {
        margin-top: 64px;
        padding: 58px 24px;
    }

    .timeline-section h3 {
        margin-bottom: 48px;
        font-size: 2rem;
    }

    .timeline {
        gap: 28px;
        padding-left: 32px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        min-height: 0;
        justify-self: stretch;
        padding: 22px;
        text-align: left;
    }

    .timeline-item::after,
    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        top: 28px;
        left: -35px;
        right: auto;
        width: 16px;
        height: 16px;
    }

    .stat-card {
        min-height: 180px;
        padding: 26px 14px;
    }

    .stat-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(24, 24, 26, 0.18);
    }

    .stat-card:nth-child(odd) {
        border-right: 1px solid rgba(24, 24, 26, 0.18);
    }

    .stat-card p {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }

    .brands-grid {
        width: 100%;
    }

    .hero-overlay-content h1 {
        font-size: clamp(2.25rem, 11vw, 3.35rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .carousel-arrow {
        width: 46px;
        height: 46px;
    }

    .carousel-arrow-prev {
        left: 14px;
    }

    .carousel-arrow-next {
        right: 14px;
    }

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

    .brand-card,
    .brand-card:nth-child(2n) {
        border-right: 0;
    }

    .brand-card {
        min-height: 236px;
    }

    .brand-link {
        padding: 16px 14px;
    }

    .contact-section {
        padding-bottom: 116px;
    }

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

    .contact-item {
        padding-top: 16px;
    }

    .whatsapp-sticky {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
    }

    .monogram {
        width: 112px;
        font-size: 3.6rem;
        border-width: 6px;
    }
}

@media (max-width: 440px) {
    .hero-overlay-content {
        bottom: 64px;
    }

    .carousel-arrow {
        width: 42px;
        height: 42px;
    }

    .carousel-arrow span {
        width: 18px;
        height: 18px;
    }

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

    .gallery-item {
        min-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }
}
