:root {
    --orange: #f47c20;
    --orange-dark: #d95d00;
    --orange-light: #ffbe7d;
    --black: #111111;
    --dark-gray: #1b1b1b;
    --light-gray: #f6f1ed;
    --white: #ffffff;
    --text: #2d241f;
    --muted: #76685f;
    --font-body: 'Prompt', sans-serif;
    --font-display: 'Chakra Petch', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 10% -10%, rgba(255, 190, 125, 0.3), transparent 36%),
        radial-gradient(circle at 100% 0, rgba(244, 124, 32, 0.12), transparent 28%),
        var(--light-gray);
    color: var(--text);
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    letter-spacing: 0.015em;
}

p,
li,
input,
select,
textarea,
button {
    font-family: var(--font-body);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    background: rgba(255, 249, 244, 0.86);
    border-bottom: 1px solid rgba(244, 124, 32, 0.16);
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.1);
    backdrop-filter: blur(16px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 0;
    gap: 1.5rem;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: fit-content;
    flex-shrink: 0;
    text-decoration: none !important;
}

.brand-mark img {
   /* width: 70px;*/
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(244, 124, 32, 0.85);
    box-shadow: 0 8px 18px rgba(244, 124, 32, 0.18);
    flex-shrink: 0;
}

.brand-mark div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex-shrink: 0;
    min-width: fit-content;
}

.brand-mark strong {
    color: var(--black);
    font-family: var(--font-display);
    letter-spacing: 0.12rem;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-mark small {
    display: block;
    color: var(--orange);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    line-height: 1;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: flex-start;
}

.main-nav a {
    position: relative;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    transition: color 0.28s ease, background 0.28s ease, transform 0.28s ease;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.09rem;
    color: var(--text);
    text-transform: uppercase;
    font-size: 0.85rem;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.3rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(244, 124, 32, 0), rgba(244, 124, 32, 1), rgba(255, 190, 125, 0.9), rgba(244, 124, 32, 0));
    transform: scaleX(0.2);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.32s ease, opacity 0.32s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: -0.15rem;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(244, 124, 32, 0.28) 0%, rgba(244, 124, 32, 0) 72%);
    opacity: 0;
    transform: scaleX(0.5);
    transition: opacity 0.32s ease, transform 0.32s ease;
    pointer-events: none;
}

.main-nav a:hover {
    color: var(--black);
    background: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}

.main-nav a:hover::before,
.main-nav a.active::before {
    transform: scaleX(1);
    opacity: 1;
}

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

.main-nav a.active {
    color: var(--black);
    background: rgba(255, 255, 255, 0.72);
}

.lang-switch {
    display: inline-flex;
    border: 1px solid rgba(244, 124, 32, 0.42);
    border-radius: 999px;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: auto;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
}

.navbar-toggler {
    color: var(--text) !important;
    padding: 0.25rem 0.5rem !important;
    border: none !important;
    order: 2;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-collapse {
    order: 3;
    width: 100%;
}

/* Desktop: show navbar collapse by default */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
        order: unset;
        width: auto;
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: none !important;
    }

    .navbar-toggler {
        display: none;
    }

    .main-nav {
        flex-direction: row;
        gap: 0.2rem;
        margin: 0 1.5rem 0 auto;
        width: auto;
        margin-bottom: 0;
    }

    .main-nav li {
        width: auto;
    }

    .main-nav a {
        display: inline-block;
        padding: 0.6rem 1.1rem;
        border-radius: 8px;
        width: auto;
    }

    .lang-switch {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }
}

.lang-switch a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.48rem 0.8rem;
    color: var(--text);
    letter-spacing: 0.05rem;
}

.lang-switch a.active {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    width: 22px;
    height: 2px;
    display: block;
    background: var(--text);
    border-radius: 99px;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    top: 6px;
}

.page-wrap {
    padding-top: 85px;
}

.hero {
    min-height: 78vh;
    position: relative;
    background: linear-gradient(180deg, #eaf2fb 0%, #d9e8f6 100%);
    border-bottom: 1px solid rgba(244, 124, 32, 0.24);
    box-shadow: 0 32px 64px rgba(17, 17, 17, 0.26);
}

.hero-swiper,
.hero-swiper .swiper-slide,
.hero-swiper img {
    height: 78vh;
}

.hero-swiper {
    overflow: hidden;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.hero-slide-media {
    display: block;
    height: 100%;
    width: 100%;
}

.hero-swiper img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 9s ease both;
}

.hero-luxury-edge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 110px;
    background: linear-gradient(180deg, rgba(246, 241, 237, 0) 0%, rgba(246, 241, 237, 0.45) 70%, var(--light-gray) 100%);
}

.hero .swiper-pagination {
    bottom: 28px !important;
    z-index: 8;
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.78);
    opacity: 0.6;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero .swiper-pagination-bullet-active {
    width: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    opacity: 1;
    border-color: transparent;
}

.hero-slide.swiper-slide-active img {
    animation: heroZoom 8s ease both, heroGlow 1.4s ease;
}

.reveal-up {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s ease;
    filter: blur(6px);
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.why-grid .col-6,
.featured-grid > div,
.newsroom-grid > div {
    transition: transform 0.45s ease;
}

.why-grid .col-6:nth-child(2) .reveal-up,
.featured-grid > div:nth-child(2) .reveal-up,
.newsroom-grid > div:nth-child(2) .reveal-up {
    transition-delay: 0.08s;
}

.why-grid .col-6:nth-child(3) .reveal-up,
.featured-grid > div:nth-child(3) .reveal-up,
.newsroom-grid > div:nth-child(3) .reveal-up {
    transition-delay: 0.16s;
}

.why-grid .col-6:nth-child(4) .reveal-up,
.featured-grid > div:nth-child(4) .reveal-up {
    transition-delay: 0.24s;
}

.brand-gold {
    color: var(--orange-light);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 0;
    background: var(--orange);
    color: var(--white);
    border-radius: 8px;
    padding: 0.75rem 1.4rem;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05rem;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
    box-shadow: 0 10px 18px rgba(255, 107, 53, 0.24);
    isolation: isolate;
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.3) 50%, transparent 80%);
    transform: translateX(-130%);
    transition: transform 0.65s ease;
    z-index: -1;
}

.btn-gold:hover {
    background: var(--orange-dark);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 16px 28px rgba(255, 107, 53, 0.34);
}

.btn-gold:hover::before {
    transform: translateX(130%);
}

.btn-outline-light {
    position: relative;
    border: 1px solid rgba(255, 190, 125, 0.45);
    border-radius: 8px;
    color: var(--white);
    padding: 0.7rem 1.3rem;
    background: rgba(255, 255, 255, 0.06);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05rem;
    overflow: hidden;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 190, 125, 0.14);
    color: var(--white);
    border-color: rgba(255, 190, 125, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(17, 17, 17, 0.16);
}

.btn-outline-section {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 17, 17, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05rem;
    padding: 0.72rem 1.2rem;
    box-shadow: 0 8px 16px rgba(17, 17, 17, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.btn-outline-section:hover,
.btn-outline-section:focus-visible {
    background: linear-gradient(135deg, #fff6ef, #fff);
    color: var(--orange-dark);
    border-color: rgba(244, 124, 32, 0.36);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(244, 124, 32, 0.12);
}

.section-block {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, #fffaf6 100%);
}

.section-block:nth-child(even) {
    background: linear-gradient(180deg, #fbf4ee 0%, #f5ece6 100%);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2.85rem;
}

.section-head h2,
.why-head h2 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    padding: 0.46rem 0.88rem;
    border-radius: 999px;
    color: var(--orange-dark);
    background: linear-gradient(135deg, #ffd9c7, #fff5ef);
    border: 1px solid #ffc3aa;
    margin-bottom: 0.85rem;
}

.why-section {
    margin-top: 0;
    padding-top: 3.1rem;
    position: relative;
    z-index: 9;
}

.why-shell {
    background:
        radial-gradient(circle at 0 0, rgba(244, 124, 32, 0.18), transparent 26%),
        radial-gradient(circle at 100% 100%, rgba(255, 190, 125, 0.2), transparent 30%),
        linear-gradient(180deg, #fffefc 0%, #fff4ea 100%);
    border: 1px solid rgba(244, 124, 32, 0.18);
    border-radius: 30px;
    padding: clamp(1.35rem, 3vw, 2.6rem);
    box-shadow: 0 30px 60px rgba(17, 17, 17, 0.1);
}

.why-layout {
    margin-bottom: 1.8rem;
}

.why-lead {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.2rem;
    min-height: 100%;
    padding: clamp(1.2rem, 2.2vw, 2rem);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 190, 125, 0.18), transparent 28%),
        linear-gradient(180deg, #2b2019 0%, #171311 100%);
    border: 1px solid rgba(255, 190, 125, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 38px rgba(17, 17, 17, 0.14);
}

.why-lead .kicker {
    width: fit-content;
}

.why-lead h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2rem, 3.3vw, 3rem);
    line-height: 1.06;
    max-width: 10ch;
}

.why-intro {
    margin: 0;
    color: rgba(255, 248, 243, 0.82);
    font-size: 1.02rem;
    line-height: 1.85;
    max-width: 52ch;
}

.why-stat-grid {
    display: grid;
    gap: 0.9rem;
}

.why-stat {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-stat.accent {
    background: linear-gradient(135deg, rgba(244, 124, 32, 0.28), rgba(255, 190, 125, 0.12));
    border-color: rgba(255, 190, 125, 0.26);
}

.why-stat strong {
    display: block;
    margin-bottom: 0.26rem;
    color: var(--orange-light);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
}

.why-stat span {
    display: block;
    color: rgba(255, 248, 243, 0.74);
    line-height: 1.7;
    font-size: 0.92rem;
}

.why-grid {
    margin-bottom: 0;
}

.why-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-radius: 24px;
    border: 1px solid rgba(244, 124, 32, 0.14);
    background:
        radial-gradient(circle at top right, rgba(255, 190, 125, 0.18), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
    padding: 1.25rem 1.15rem;
    box-shadow: 0 16px 28px rgba(17, 17, 17, 0.07);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(244, 124, 32, 0.3);
    background:
        radial-gradient(circle at top right, rgba(255, 190, 125, 0.28), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fff1e1 100%);
    box-shadow: 0 24px 36px rgba(255, 107, 53, 0.14);
}

.why-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0.95rem;
    padding: 0.28rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 230, 0.92));
    box-shadow: 0 12px 24px rgba(244, 124, 32, 0.12);
}

.why-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffb76f 0%, #f47c20 52%, #ff9e42 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 14px 22px rgba(244, 124, 32, 0.22);
    transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.why-card:hover .why-icon {
    transform: translateY(-3px) rotate(-3deg);
    box-shadow: 0 18px 28px rgba(244, 124, 32, 0.26);
}

.low-icon {
    font-weight: 800;
    letter-spacing: 0.04rem;
    font-size: 0.72rem;
}

.why-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: #fff;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    margin: 0;
    color: var(--black);
    font-size: clamp(1.12rem, 1.8vw, 1.38rem);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.why-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

.why-summary-wrap {
    padding: 1.35rem 1.45rem;
    border-radius: 22px;
    border: 1px solid rgba(244, 124, 32, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 248, 240, 0.9) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64), 0 10px 22px rgba(244, 124, 32, 0.08);
}

.why-summary {
    max-width: 1040px;
    margin: 0;
    text-align: left;
    color: #2f2f2f;
    line-height: 1.95;
    font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.section-head h2 {
    margin: 0;
    font-size: clamp(2.05rem, 3.3vw, 3rem);
    color: var(--black);
    letter-spacing: 0.03em;
    line-height: 1.05;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 56ch;
}

.product-filter-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.4rem;
}

.product-filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 124, 32, 0.25);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.product-filter-chip:hover {
    border-color: rgba(244, 124, 32, 0.5);
    background: #fff5ec;
    color: var(--orange-dark);
    transform: translateY(-1px);
}

.product-filter-chip.active {
    border-color: var(--orange);
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
}

@media (max-width: 576px) {
    .product-filter-menu {
        gap: 0.45rem;
    }

    .product-filter-chip {
        font-size: 0.76rem;
        padding: 0.42rem 0.8rem;
    }
}

.card-premium {
    background: linear-gradient(180deg, #ffffff 0%, #fff9f4 100%);
    border: 1px solid rgba(244, 124, 32, 0.14);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.08);
}

.card-media {
    position: relative;
    overflow: hidden;
}

.card-showcase .card-media,
.card-editorial .card-media {
    background: linear-gradient(180deg, #fff5eb 0%, #f8ebe0 100%);
}

.card-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 44%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.14) 100%);
    pointer-events: none;
}

.card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--orange);
    box-shadow: 0 16px 30px rgba(255, 107, 53, 0.22);
}

.card-premium img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.03);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.card-premium:hover img {
    transform: scale(1.06);
    filter: saturate(1.08) contrast(1.05) brightness(1.01);
}

.card-showcase .inner,
.card-editorial .inner {
    transition: transform 0.35s ease;
}

.card-showcase:hover .inner,
.card-editorial:hover .inner {
    transform: translateY(-2px);
}

.card-premium .inner {
    padding: 1.35rem;
}

.card-premium h4 {
    font-size: clamp(1.24rem, 1.8vw, 1.55rem);
    line-height: 1.18;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.card-premium p {
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.78;
    margin-bottom: 0.95rem;
}

.featured-section .section-head,
.news-section .section-head {
    margin-bottom: 2.1rem;
}

.card-showcase {
    min-height: 100%;
}

.card-uniform {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.card-uniform .card-media {
    flex-shrink: 0;
}

.card-uniform .card-media img {
    height: 260px;
}

.card-uniform .inner {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-uniform .btn-gold {
    margin-top: auto !important;
}

.card-showcase .card-media img {
    height: 280px;
}

.card-showcase.is-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    min-height: 100%;
}

.card-showcase.is-featured .card-media img {
    height: 100%;
    min-height: 100%;
}

.card-showcase.is-featured .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.card-showcase.is-featured h4 {
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}

.card-showcase.is-tall .card-media img {
    height: 320px;
}

.card-editorial {
    background: linear-gradient(180deg, #fffefc 0%, #fff7f0 100%);
}

.card-editorial .card-media img {
    height: 250px;
}

.card-editorial.is-lead {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    overflow: hidden;
}

.card-editorial.is-lead .card-media img {
    height: 380px;
    min-height: 380px;
}

.card-editorial.is-lead .inner {
    padding: 1.7rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-editorial.is-lead h4 {
    font-size: clamp(1.7rem, 2.7vw, 2.2rem);
    max-width: 18ch;
}

.featured-grid,
.newsroom-grid {
    align-items: stretch;
}

.newsroom-layout {
    align-items: stretch;
}

.newsroom-side {
    display: grid;
    gap: 1rem;
    height: 100%;
}

.card-editorial.is-side {
    display: grid;
    grid-template-columns: 156px minmax(0, 1fr);
    align-items: stretch;
}

.card-editorial.is-side .card-media img {
    height: 100%;
    min-height: 100%;
}

.card-editorial.is-side .inner {
    padding: 1rem 1rem 1rem 1.05rem;
}

.card-editorial.is-side h4 {
    font-size: 1.08rem;
    margin-bottom: 0.45rem;
}

.card-editorial.is-side p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0.65rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--orange-dark);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.text-link::after {
    content: '->';
    transition: transform 0.25s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(3px);
}

.meta {
    color: var(--orange);
    font-size: 0.76rem;
    font-family: var(--font-display);
    letter-spacing: 0.16rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}

.detail-hero {
    border-bottom: 1px solid #e0e0e0;
    padding: 3rem 0;
    background: var(--white);
}

.detail-hero img {
    border-radius: 16px;
    width: 100%;
    max-height: 430px;
    object-fit: cover;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.product-gallery-main-wrap {
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    overflow: hidden;
    background: #fafafa;
}

.product-gallery-main {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
    gap: 0.55rem;
}

.product-thumb {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0;
    background: var(--white);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb:hover {
    transform: translateY(-2px);
    border-color: #ffc3aa;
}

.product-thumb.is-active {
    border-color: var(--orange);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.15);
}

.product-thumb img {
    display: block;
    width: 100%;
    height: 72px;
    object-fit: cover;
}

.article-text {
    color: var(--text);
    line-height: 1.8;
    font-size: 0.95rem;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    color: var(--black);
    margin: 1.2rem 0 0.7rem;
}

.rich-content p,
.rich-content ul,
.rich-content ol,
.rich-content table {
    margin-bottom: 1rem;
}

.rich-content ul,
.rich-content ol {
    padding-left: 1.35rem;
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.rich-content th,
.rich-content td {
    border: 1px solid #e0e0e0;
    padding: 0.75rem;
    text-align: left;
    vertical-align: top;
}

.rich-content th {
    background: #f6f6f6;
    color: var(--black);
}

.rich-content a {
    color: var(--orange);
    text-decoration: underline;
}

.detail-lead {
    font-size: 1.02rem;
    color: #4d4d4d;
    max-width: 62ch;
}

.detail-summary-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 1.4rem;
}

.detail-price-card {
    min-width: 180px;
    padding: 0.95rem 1.1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff3eb 0%, #ffffff 100%);
    border: 1px solid rgba(244, 124, 32, 0.22);
    box-shadow: 0 12px 26px rgba(244, 124, 32, 0.08);
}

.detail-price-card span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: var(--orange-dark);
    margin-bottom: 0.3rem;
}

.detail-price-card strong {
    display: block;
    color: var(--black);
    font-size: 1.25rem;
}

.detail-hero-actions {
    margin-top: 1.25rem;
}

.detail-pdf-row {
    margin-top: 0.9rem;
}

.detail-section-head {
    align-items: center;
}

.detail-content-card {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
    border: 1px solid rgba(244, 124, 32, 0.15);
    border-radius: 22px;
    padding: 1.7rem;
    box-shadow: 0 18px 36px rgba(30, 25, 19, 0.08);
}

.detail-content-card-spec {
    background: linear-gradient(180deg, #fffdfb 0%, #fff4ec 100%);
}

.detail-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.15rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(244, 124, 32, 0.12);
}

.detail-card-head h3 {
    margin: 0;
    color: var(--black);
}

.detail-content-card .article-text,
.detail-content-card .rich-content {
    color: #353535;
    font-size: 1rem;
    line-height: 1.9;
}

.detail-content-card .rich-content table {
    background: #fff;
}

.detail-content-card .rich-content tr:nth-child(even) td {
    background: #fffaf6;
}

.detail-side-stack {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 110px;
}

.detail-side-card {
    background: #fff;
    border: 1px solid #ece3dc;
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: 0 12px 28px rgba(30, 25, 19, 0.06);
}

.detail-side-card-accent {
    background: linear-gradient(180deg, #fff4eb 0%, #ffffff 100%);
    border-color: rgba(244, 124, 32, 0.22);
}

.detail-featured-section {
    border-top: 1px solid #eadfd6;
}

.detail-featured-card {
    height: 100%;
}

.detail-featured-card .inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.detail-featured-card .btn-gold {
    margin-top: auto;
}

.contact-page {
    position: relative;
    overflow: hidden;
}

.contact-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(244, 124, 32, 0.16), transparent 28%),
        radial-gradient(circle at 100% 10%, rgba(255, 190, 125, 0.22), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.contact-page > .container {
    position: relative;
    z-index: 1;
}

.contact-hero {
    display: grid;
    grid-template-columns: 1.3fr 0.95fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-hero-copy,
.contact-hero-card,
.contact-info-panel,
.contact-form-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(244, 124, 32, 0.14);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(10px);
}

.contact-hero-copy {
    padding: 2.5rem;
}

.contact-kicker,
.contact-section-tag,
.contact-hero-card-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(244, 124, 32, 0.1);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1rem;
}

.contact-hero-copy h1 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.05;
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-hero-copy p,
.contact-hero-card p,
.contact-info-head p,
.contact-form-head p,
.contact-note p,
.contact-submit-note {
    color: var(--muted);
    line-height: 1.75;
}

.contact-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-hero-pills span {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.04);
    border: 1px solid rgba(17, 17, 17, 0.08);
    color: var(--black);
    font-weight: 600;
    font-size: 0.93rem;
}

.contact-hero-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero-card h2 {
    margin-bottom: 0.75rem;
    font-size: 1.55rem;
    color: var(--black);
}

.contact-mini-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.contact-mini-list a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(244, 124, 32, 0.06);
    border: 1px solid rgba(244, 124, 32, 0.12);
    color: var(--black);
    font-weight: 600;
    word-break: break-word;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
}

.contact-info-panel,
.contact-form-panel {
    padding: 1.8rem;
}

.contact-info-head h3,
.contact-form-head h3 {
    color: var(--black);
    margin-bottom: 0.6rem;
}

.contact-info-card-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.4rem 0;
}

.contact-info-card {
    display: block;
    padding: 1rem 1.05rem;
    border-radius: 16px;
    background: #fffaf6;
    border: 1px solid rgba(244, 124, 32, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(244, 124, 32, 0.12);
    border-color: rgba(244, 124, 32, 0.24);
}

.contact-info-card span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
}

.contact-info-card strong {
    display: block;
    color: var(--black);
    line-height: 1.6;
    word-break: break-word;
}

.contact-info-card-static {
    cursor: default;
}

.contact-note {
    padding: 1rem 1.05rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(244, 124, 32, 0.12), rgba(255, 190, 125, 0.12));
    border: 1px solid rgba(244, 124, 32, 0.16);
}

.contact-note strong {
    display: block;
    color: var(--black);
    margin-bottom: 0.35rem;
}

.contact-form .form-label {
    color: var(--black);
    font-weight: 600;
}

.contact-form .form-control {
    background: var(--white);
    border-color: rgba(17, 17, 17, 0.12);
    color: var(--black);
    padding: 0.85rem 0.95rem;
}

.contact-form .form-control::placeholder {
    color: #8e7f77;
}

.contact-form .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(244, 124, 32, 0.15);
}

.captcha-box {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 1rem;
    align-items: end;
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.03), rgba(244, 124, 32, 0.05));
    border: 1px dashed rgba(244, 124, 32, 0.24);
}

.captcha-question {
    margin: 0;
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.captcha-input {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-submit-note {
    font-size: 0.9rem;
}

.contact-page .alert {
    border-radius: 14px;
}

@media (max-width: 991px) {
    .contact-hero,
    .contact-grid-layout,
    .captcha-box {
        grid-template-columns: 1fr;
    }

    .contact-hero-copy,
    .contact-hero-card,
    .contact-info-panel,
    .contact-form-panel {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-hero-copy h1 {
        font-size: 2rem;
    }

    .contact-hero-pills span {
        width: 100%;
        justify-content: center;
    }
}

.side-panel {
    background: var(--light-gray);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
}

.side-panel h5,
.side-panel h4 {
    color: var(--black);
}

.pdf-frame {
    width: 100%;
    min-height: 720px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background: var(--white);
}

/* ===== CTA Finale Section ===== */

.cta-finale-section {
    background: linear-gradient(135deg, rgba(244, 124, 32, 0.06) 0%, rgba(255, 190, 125, 0.04) 100%);
}

.cta-finale-layout {
    max-width: 1100px;
    margin: 0 auto;
}

.cta-message {
    background: linear-gradient(135deg, rgba(244, 124, 32, 0.15) 0%, rgba(255, 190, 125, 0.08) 100%);
    border: 1px solid rgba(244, 124, 32, 0.25);
    border-radius: 24px;
    padding: 2.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.cta-kicker {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1rem;
    opacity: 0.95;
}

.cta-message h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-family: var(--font-display);
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
}

.cta-message p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 1.6rem;
    font-weight: 400;
}

.cta-accent-box {
    background: rgba(244, 124, 32, 0.12);
    border-left: 4px solid var(--orange);
    border-radius: 8px;
    padding: 1.4rem;
    margin-top: auto;
}

.cta-accent-box strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.cta-accent-box span {
    display: block;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #76685f;
}

/* Contact Card */
.cta-contact-card {
    background: var(--white);
    border: 2px solid rgba(244, 124, 32, 0.18);
    border-radius: 24px;
    padding: 2.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

@media (max-width: 1199px) {
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.4rem;
    }
}

@media (max-width: 576px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.contact-method {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
}

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange), #ffbe7d);
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(244, 124, 32, 0.18);
}

.contact-icon.line-icon {
    background: linear-gradient(135deg, #00B900, #00D400);
    box-shadow: 0 8px 18px rgba(0, 185, 0, 0.18);
    color: var(--white);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #76685f;
    margin-bottom: 0.4rem;
}

.contact-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--orange);
}

.cta-action {
    margin-top: 1rem;
}

.btn-lg {
    font-size: 1rem;
    padding: 1.1rem 2rem;
    font-weight: 700;
    border-radius: 12px;
    display: inline-block;
    text-align: center;
}

.cta-footnote {
    font-size: 0.8rem;
    color: #76685f;
    margin-top: 0.8rem;
    text-align: center;
    font-style: italic;
    margin-bottom: 0;
}

/* Responsive CTA Section */
@media (max-width: 991px) {
    .cta-message,
    .cta-contact-card {
        padding: 2rem 1.8rem;
    }

    .cta-message h2 {
        font-size: 1.8rem;
    }

    .cta-message p {
        font-size: 0.93rem;
    }
}

@media (max-width: 576px) {
    .cta-message,
    .cta-contact-card {
        padding: 1.8rem 1.5rem;
    }

    .cta-kicker {
        font-size: 0.75rem;
    }

    .cta-message h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .cta-message p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .cta-accent-box {
        padding: 1.2rem;
    }

    .contact-grid {
        gap: 1.4rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .btn-lg {
        font-size: 0.95rem;
        padding: 1rem 1.8rem;
    }

    .cta-footnote {
        font-size: 0.78rem;
    }
}

/* Legacy form-shell (kept for other pages) */
.form-shell {
    background: linear-gradient(180deg, #191919 0%, #242424 100%);
    border: 1px solid rgba(244, 124, 32, 0.18);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 16px 30px rgba(17, 17, 17, 0.18);
}

.form-shell h3 {
    color: var(--white);
}

.form-shell p {
    color: rgba(255, 255, 255, 0.76);
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    background: var(--white);
    color: var(--text);
    padding: 0.7rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
    background: var(--white);
    color: var(--text);
}

.site-footer {
    border-top: 1px solid rgba(244, 124, 32, 0.35);
    background: linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
    padding: 2.4rem 0;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1.4fr 1fr 1fr;
}

.site-footer h5,
.site-footer h6 {
    margin-bottom: 0.6rem;
    color: var(--white);
}

.site-footer p,
.site-footer small,
.site-footer a {
    color: #d0d0d0;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.empty-state {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 2.2rem;
    text-align: center;
    color: var(--muted);
    background: var(--light-gray);
}

.form-label {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.alert {
    border-radius: 8px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.06);
    }
}

@keyframes heroGlow {
    from {
        filter: saturate(1) brightness(1);
    }
    to {
        filter: saturate(1.06) brightness(1.02);
    }
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

.featured-grid .card-showcase.is-featured.is-visible,
.newsroom-grid .card-editorial.is-lead.is-visible {
    animation: floatCard 6s ease-in-out 0.9s infinite;
}

@media (max-width: 991px) {
    .nav-shell {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .brand-mark {
        order: 0;
    }

    .navbar-toggler {
        order: 2;
    }

    .navbar-collapse {
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid #e0e0e0;
    }

    .main-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 0.7rem 1rem;
        border-radius: 12px;
        width: 100%;
    }

    .main-nav a::before,
    .main-nav a::after {
        left: 1rem;
        right: auto;
        width: 64px;
        transform-origin: left;
    }

    .lang-switch {
        width: fit-content;
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .hero-swiper,
    .hero-swiper .swiper-slide,
    .hero-swiper img {
        height: 60vh;
    }

    .card-showcase.is-featured,
    .card-editorial.is-lead {
        grid-template-columns: 1fr;
    }

    .card-editorial.is-side {
        grid-template-columns: 140px minmax(0, 1fr);
    }

    .card-showcase.is-featured .inner,
    .card-editorial.is-lead .inner {
        padding: 1.4rem;
    }

    .why-section {
        padding-top: 2rem;
    }

    .why-shell {
        border-radius: 20px;
    }

    .why-lead h2 {
        max-width: none;
    }

    .why-card {
        padding: 0.9rem 0.65rem;
    }

    .btn-outline-section {
        padding: 0.68rem 1.05rem;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .pdf-frame {
        min-height: 520px;
    }

    .product-gallery-main {
        height: 320px;
    }

    .brand-mark img {
       /* width: 60px;*/
        height: 56px;
        padding: 4px;
    }

    .brand-mark strong {
        font-size: 0.9rem;
    }

    .brand-mark small {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .nav-shell {
        padding: 0.6rem 0;
        gap: 0.3rem;
    }

    .brand-mark {
        gap: 0.6rem;
    }

    .brand-mark img {
       /* width: 55px;*/
        height: 50px;
        padding: 5px;
    }

    .brand-mark strong {
        font-size: 0.8rem;
    }

    .brand-mark small {
        font-size: 0.6rem;
    }

    .navbar-toggler {
        padding: 0.2rem 0.3rem !important;
    }

    .main-nav a {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }

    .lang-switch a {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .why-section {
        padding-top: 1.5rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-swiper,
    .hero-swiper .swiper-slide {
        height: auto;
        min-height: auto;
    }

    .hero-swiper img {
        height: auto;
        max-height: none;
        object-fit: contain;
        transform: none;
    }

    .hero-luxury-edge {
        height: 60px;
    }

    .why-shell {
        padding: 1rem 0.85rem;
    }

    .why-lead {
        padding: 1rem;
        border-radius: 18px;
    }

    .why-lead h2 {
        font-size: clamp(1.7rem, 7vw, 2.2rem);
    }

    .why-icon {
        width: 50px;
        height: 50px;
    }

    .why-icon svg {
        width: 24px;
        height: 24px;
    }

    .card-showcase .card-media img,
    .card-showcase.is-tall .card-media img,
    .card-editorial .card-media img {
        height: 220px;
    }

    .card-editorial.is-lead .card-media img {
        height: 240px;
        min-height: 240px;
    }

    .card-editorial.is-side {
        grid-template-columns: 1fr;
    }

    .card-editorial.is-side .card-media img {
        height: 200px;
    }

    .card-uniform .card-media img {
        height: 220px;
    }

    .product-gallery-main {
        height: 250px;
    }

    .section-head h2 {
        font-size: clamp(1.6rem, 5.2vw, 2.2rem);
    }

    .btn-outline-section {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
