@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
    --ll-dark: #333333;
    --ll-muted: #767676;
    --ll-line: #e5e5e5;
    --ll-soft: #f7f7f7;
}

body {
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ll-dark);
    background: #fff url("../demo/luckylion-bg.png") center top / 100% auto repeat-y;
}

html,
body {
    overflow-x: hidden;
}

.site-header {
    min-height: 86px;
    padding: 14px clamp(18px, 5vw, 86px);
    gap: 30px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .07);
}

.brand img {
    height: 58px;
}

.main-nav {
    gap: clamp(16px, 2vw, 34px);
    color: #4a4a4a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
}

.nav-item {
    position: relative;
}

.has-dropdown:after {
    content: "";
    position: absolute;
    left: -18px;
    right: -18px;
    top: 100%;
    height: 16px;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 30;
    min-width: 220px;
    padding: 10px 0;
    background: #fff;
    border: 1px solid var(--ll-line);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: .18s ease;
}

.nav-dropdown a {
    display: block;
    padding: 10px 18px;
    color: #444;
    white-space: nowrap;
}

.nav-dropdown a:after {
    display: none;
}

.nav-dropdown a:hover {
    background: #f7f7f7;
    color: var(--primary);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.main-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav a:hover:after {
    transform: scaleX(1);
}

.locale-switch {
    align-items: center;
    gap: 6px;
}

.locale-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    border: 1px solid var(--ll-line);
    border-radius: 6px;
    color: #555;
    background: #fff;
    transition: .2s ease;
}

.locale-switch a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.locale-switch a.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .14);
}

.menu-button {
    background: #fff;
    color: var(--ll-dark);
    border: 1px solid var(--ll-line);
}

.hero-slider {
    background: transparent;
}

.hero,
.page-hero,
.product-hero {
    background-color: transparent;
    color: var(--ll-dark);
}

.hero {
    min-height: calc(100vh - 86px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(24px, 5vw, 80px);
    background-image: url("../demo/luckylion-bg.png") !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 70px clamp(20px, 7vw, 110px);
}

.hero:before,
.page-hero:before,
.product-hero:before {
    display: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    color: var(--ll-dark);
    max-width: min(520px, 48vw);
    padding: clamp(20px, 3vw, 32px);
    background: rgba(255, 255, 255, .82);
    border-left: 5px solid var(--primary);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .1);
    backdrop-filter: blur(6px);
}

.hero-copy * {
    overflow-wrap: anywhere;
}

.hero-product {
    position: relative;
    z-index: 1;
    width: min(46vw, 720px);
    max-height: 70vh;
    object-fit: contain;
    filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .16));
}

.hero h1,
.page-hero h1,
.product-hero h1 {
    color: #343434;
    font-size: clamp(34px, 4.8vw, 62px);
    font-weight: 900;
    letter-spacing: 0;
}

.hero h1 {
    text-shadow: 0 2px 0 rgba(255, 255, 255, .65);
}

.page-hero h1 {
    font-size: clamp(34px, 4.8vw, 58px);
}

.product-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
}

.hero p,
.product-hero p {
    font-size: clamp(15px, 1.25vw, 18px);
    color: #3f3f3f;
    font-weight: 700;
}

.hero p,
.page-hero p,
.product-hero p,
.split-copy,
.rich-text,
.contact-info,
.faq-list {
    color: var(--ll-muted);
}

.eyebrow {
    color: var(--primary);
    letter-spacing: .12em;
    font-size: 11px;
    font-weight: 800;
}

.btn-primary,
.btn-secondary,
.admin-btn {
    border-radius: 999px;
    min-height: 46px;
    padding: 12px 26px;
    letter-spacing: .04em;
}

.btn-primary {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}

.btn-secondary {
    background: transparent;
}

.split-section,
.content-band,
.contact-layout,
.faq-list,
.article-page {
    background: transparent;
}

.article-page > img {
    width: min(100%, 900px);
    height: auto;
    max-height: none;
    aspect-ratio: auto;
    margin: 28px auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.article-page .rich-text {
    max-width: 780px;
    margin: 8px auto 0;
    padding: 26px 30px;
    color: #222222;
    background: rgba(255, 255, 255, .78);
    border-left: 4px solid var(--primary);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
    font-size: 20px;
    line-height: 1.8;
    font-weight: 600;
}

.split-section {
    gap: clamp(28px, 5vw, 76px);
    padding: 84px clamp(20px, 7vw, 110px);
}

.split-section img,
.product-hero img {
    border-radius: 0;
    object-fit: contain;
    background: transparent;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 38px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.pagination li,
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination a,
.pagination span {
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    border: 1px solid var(--ll-line);
    border-radius: 999px;
    background: #fff;
    color: #343434;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.pagination .active span {
    background: var(--primary);
    border-color: var(--primary);
}

.pagination .disabled span {
    color: #aaa;
}

.section-heading h2,
.split-copy h2,
.contact-strip h2 {
    color: #343434;
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 900;
}

.content-band {
    padding: 82px clamp(20px, 7vw, 110px);
}

.card-grid {
    gap: 30px;
}

.model-card,
.news-card,
.service-card {
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 0;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .07);
}

.model-card:hover,
.news-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, .1);
}

.model-card img,
.news-card img,
.service-card img {
    aspect-ratio: 1.15;
    object-fit: contain;
    padding: 26px;
    background: #fff;
}

.model-card h3,
.news-card h3,
.service-card h2 {
    color: #343434;
    font-size: 22px;
    font-weight: 900;
}

.model-card p,
.news-card p,
.service-card p {
    color: var(--ll-muted);
    font-size: 14px;
}

.spec-row span {
    background: var(--ll-soft);
    color: #555;
    border: 1px solid var(--ll-line);
}

.contact-strip {
    margin: 24px clamp(20px, 7vw, 110px);
    border-radius: 0;
    background: #3a3a3a;
}

.page-hero {
    min-height: 300px;
    padding: 76px clamp(20px, 7vw, 110px) 48px;
}

.page-hero > * {
    position: relative;
}

.company-hero {
    min-height: 220px;
    padding-top: 54px;
    padding-bottom: 30px;
}

.company-hero h1 {
    max-width: 760px;
    font-size: clamp(30px, 4vw, 46px);
}

.company-hero p {
    margin: 0;
    max-width: 620px;
    color: #4a4a4a;
    font-size: 17px;
    font-weight: 700;
}

.company-section {
    align-items: start;
    padding-top: 42px;
}

.company-copy {
    max-width: 720px;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, .86);
    border-left: 4px solid var(--primary);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .07);
    color: #2f2f2f;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 600;
}

.company-section img {
    max-height: 420px;
}

.home-info-section {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: center;
    padding-top: 56px;
    padding-bottom: 56px;
}

.home-info-section.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.home-info-copy {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: clamp(22px, 3vw, 34px);
    background: rgba(255, 255, 255, .84);
    border-left: 4px solid var(--primary);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .07);
    color: #333333;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

.home-info-copy h2 {
    font-size: clamp(28px, 3.2vw, 42px);
}

.home-info-section img {
    position: relative;
    z-index: 0;
    width: 100%;
    max-height: 390px;
    object-fit: contain;
    align-self: center;
    justify-self: center;
}

.product-hero {
    min-height: calc(100vh - 86px);
    grid-template-columns: .78fr 1.22fr;
    align-items: center;
    padding: 64px clamp(20px, 7vw, 110px);
}

.product-hero img {
    width: min(100%, 780px);
    justify-self: end;
}

.model-strip {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    align-items: center;
    gap: 14px;
    padding: 34px clamp(18px, 6vw, 86px) 22px;
    background: rgba(255, 255, 255, .72);
    border-bottom: 1px solid var(--ll-line);
}

.model-strip-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 0 12px;
    scrollbar-width: none;
    scroll-behavior: auto;
    cursor: grab;
    user-select: none;
}

.model-strip-track::-webkit-scrollbar {
    display: none;
}

.model-strip-track.is-dragging {
    cursor: grabbing;
}

.model-strip-track.is-dragging a {
    pointer-events: none;
}

.model-strip-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--ll-line);
    border-radius: 999px;
    background: #fff;
    color: #343434;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.model-strip-button:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.model-strip-item {
    flex: 0 0 132px;
    display: grid;
    gap: 8px;
    justify-items: center;
    color: #4a4a4a;
    text-align: center;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
}

.model-strip-item img {
    width: 118px;
    height: 86px;
    object-fit: contain;
    transition: transform .18s ease;
}

.model-strip-item:hover img,
.model-strip-item.is-active img {
    transform: translateY(-4px);
}

.model-strip-item.is-active span {
    color: var(--primary);
}

.model-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: start;
    padding: 64px clamp(20px, 7vw, 110px);
}

.model-detail-image {
    position: sticky;
    top: 118px;
}

.model-detail-image img {
    width: 100%;
    max-height: 680px;
    object-fit: contain;
    filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .14));
}

.model-detail-copy h1 {
    margin: 0 0 14px;
    color: #343434;
    font-size: clamp(30px, 3.9vw, 48px);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.model-lead {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    margin: 0 0 12px;
}

.model-description {
    margin: 12px 0 16px;
    color: #666;
    font-size: 14px;
    line-height: 1.55;
}

.technical-sheet {
    width: min(100%, 760px);
    max-height: none;
    overflow-y: auto;
    margin-top: 22px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--ll-line);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .09);
}

.technical-sheet h2 {
    margin: 0 0 14px;
    color: #343434;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
}

.technical-sheet dl {
    margin: 0;
    display: grid;
    gap: 6px;
    border-top: 0;
}

.technical-sheet dl div {
    display: grid;
    grid-template-columns: minmax(140px, .75fr) 1fr;
    gap: 12px;
    padding: 9px 12px;
    background: #f8f8f8;
    border-left: 3px solid var(--primary);
}

.technical-sheet dt {
    color: #343434;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.technical-sheet dd {
    margin: 0;
    color: #555;
    font-size: 13px;
    font-weight: 700;
}

.model-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 0 clamp(20px, 7vw, 110px) 76px;
}

.model-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.spec-grid {
    gap: 18px;
}

.spec-grid div {
    border: 1px solid var(--ll-line);
    border-left: 4px solid var(--primary);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
}

.contact-info,
.contact-form {
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--ll-line);
    border-radius: 0;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .06);
}

.contact-map {
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid var(--ll-line);
    background: #f4f4f4;
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 320px;
    border: 0;
}

.contact-hero {
    min-height: 190px;
    padding-top: 48px;
    padding-bottom: 18px;
}

.contact-page-layout {
    padding-top: 26px;
}

.contact-form input,
.contact-form textarea {
    border-radius: 0;
    background: #fff;
}

.faq-list details {
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--ll-line);
    margin-bottom: 12px;
    padding: 20px 24px;
}

.site-footer {
    background: #343434;
}

.whatsapp-float {
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
}

.whatsapp-float svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

.admin-float {
    position: fixed;
    right: 20px;
    bottom: 88px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #343434;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}

.admin-float:hover {
    background: var(--primary);
    color: #343434;
}

@media (max-width: 900px) {
    .site-header {
        gap: 12px;
        min-height: 72px;
    }

    .main-nav {
        top: 72px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        padding: 4px 0 0 14px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav-dropdown a {
        padding: 8px 0;
        font-size: 11px;
    }

    .brand {
        margin-right: 0;
    }

    .locale-switch {
        display: flex;
        margin-left: auto;
    }

    .hero,
    .product-hero {
        min-height: auto;
        padding-top: 52px;
    }

    .hero {
        display: grid;
        background-position: center;
        gap: 24px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .product-hero img {
        justify-self: center;
    }

    .hero-product {
        width: min(92vw, 620px);
        justify-self: center;
    }

    .split-section,
    .content-band,
    .contact-layout,
    .page-hero,
    .product-hero,
    .site-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-hero {
        gap: 22px;
    }

    .model-detail {
        grid-template-columns: 1fr;
    }

    .model-detail-image {
        position: static;
    }

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

    .contact-strip {
        margin-left: 20px;
        margin-right: 20px;
    }

    .article-page .rich-text {
        padding: 22px;
        font-size: 18px;
    }

    .company-hero {
        min-height: auto;
    }

    .company-section {
        padding-top: 20px;
    }

    .home-info-section,
    .home-info-section.reverse {
        grid-template-columns: 1fr;
    }

    .home-info-copy {
        max-width: none;
    }

    .home-info-section img {
        max-height: 320px;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 14px;
        line-height: 1.6;
    }

    .site-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .brand img {
        height: 38px;
        max-width: 150px;
    }

    .menu-button {
        order: 3;
        width: 42px;
        height: 38px;
        padding: 0;
    }

    .main-nav {
        top: 108px;
    }

    .locale-switch {
        order: 2;
        margin-left: auto;
    }

    .locale-switch a {
        min-width: 30px;
        height: 28px;
    }

    .hero,
    .product-hero,
    .page-hero {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .hero h1,
    .page-hero h1,
    .product-hero h1 {
        font-size: 30px;
        line-height: 1;
    }

    .hero p,
    .product-hero p {
        font-size: 15px;
    }

    .hero-product {
        width: 100%;
        max-height: 360px;
    }

    .section-heading {
        text-align: left;
    }

    .model-card img,
    .news-card img,
    .service-card img {
        padding: 18px;
    }

    .contact-strip {
        display: grid;
        gap: 12px;
        padding: 28px 20px;
    }

    .contact-map iframe {
        min-height: 240px;
    }

    .article-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .article-page > img {
        width: 100%;
        margin: 20px auto;
    }

    .article-page .rich-text {
        padding: 18px;
        font-size: 16px;
        line-height: 1.7;
    }

    .model-strip {
        padding: 22px 16px 14px;
        grid-template-columns: 34px minmax(0, 1fr) 34px;
        gap: 8px;
    }

    .model-strip-button {
        width: 34px;
        height: 34px;
        font-size: 26px;
    }

    .model-strip-item {
        flex-basis: 108px;
        font-size: 10px;
    }

    .model-strip-item img {
        width: 96px;
        height: 72px;
    }

    .model-detail {
        padding: 38px 18px;
    }

    .technical-sheet dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .model-gallery {
        padding-left: 18px;
        padding-right: 18px;
        grid-template-columns: 1fr 1fr;
    }

    .admin-float {
        right: 14px;
        bottom: 82px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
    }
}
