/* ==========================================================================
   Site theme — clean automotive look: white base, dark charcoal header/footer,
   red accent. Fonts: Barlow Condensed (display) + Inter (body).
   ========================================================================== */

:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f5f6f8;
    --color-card: #ffffff;
    --color-dark: #16181d;
    --color-dark-2: #1f2229;
    --color-text: #23262d;
    --color-strong: #16181d;
    --color-muted: #6b7280;
    --color-accent: #e11d2e;
    --color-accent-dark: #b3121f;
    --color-border: #e5e7eb;
    --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --header-height: 72px;
    --radius: 10px;
    --shadow: 0 8px 24px rgba(16, 18, 24, 0.09);
}

html[data-theme="dark"] {
    --color-bg: #14161b;
    --color-bg-alt: #1b1e25;
    --color-card: #1f232b;
    --color-text: #d7dae0;
    --color-strong: #f3f4f6;
    --color-muted: #9aa1ab;
    --color-border: #2c313b;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.5em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-dark); }

.container {
    width: min(1200px, 100% - 2.5rem);
    margin-inline: auto;
}

.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }

.lead { font-size: 1.1rem; color: var(--color-muted); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    margin: 0.25rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary { background: var(--color-accent); color: #fff; }
.btn-primary:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-2px); }

.btn-outline { border-color: var(--color-strong); color: var(--color-strong); background: transparent; }
.btn-outline:hover { background: var(--color-strong); color: var(--color-bg); }

.btn-block { display: block; text-align: center; margin: 1rem 0 0; }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-dark);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 1.5rem;
}

.brand { display: flex; align-items: center; }

.brand-mark {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
}

.brand-mark::first-letter { color: var(--color-accent); }

.main-nav .menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item { position: relative; }

.menu-item > a {
    display: block;
    padding: 0.6rem 0.85rem;
    color: #d9dbe0;
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease;
}

.menu-item > a:hover,
.menu-item.is-active > a {
    color: #fff;
    border-bottom-color: var(--color-accent);
}

.caret { font-size: 0.7em; opacity: 0.7; }

/* Dropdown */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--color-dark-2);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.18s ease;
}

.menu-item.has-children:hover .submenu,
.menu-item.has-children:focus-within .submenu,
.menu-item.submenu-open .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu a {
    display: block;
    padding: 0.55rem 1.2rem;
    color: #d9dbe0;
    font-size: 0.95rem;
}

.submenu a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }

/* Theme toggle */
.theme-toggle {
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.4rem;
    line-height: 1;
}

.theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: inline; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 0.5rem;
    cursor: pointer;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.2s ease;
}

@media (max-width: 960px) {
    .nav-toggle { display: flex; }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-dark);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.is-open { max-height: 100vh; overflow-y: auto; box-shadow: 0 16px 24px rgba(0,0,0,0.4); }

    .main-nav .menu { flex-direction: column; align-items: stretch; padding: 0.5rem 0 1rem; }

    .menu-item > a { padding: 0.8rem 1.5rem; border-bottom: 0; }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border-radius: 0;
    }

    .menu-item.submenu-open .submenu { display: block; }
    .submenu a { padding-left: 2.5rem; }
}

/* --------------------------------------------------------------------------
   Hero carousel (homepage)
   -------------------------------------------------------------------------- */

/* Height follows the image so uploads are never cropped — upload slides
   with the same aspect ratio for a stable slider height. */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
}

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

.hero-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 11, 14, 0.78) 0%, rgba(10, 11, 14, 0.35) 55%, rgba(10, 11, 14, 0.05) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 1200px;
}

.hero-content h1 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }

.hero-content p {
    font-size: 1.15rem;
    max-width: 520px;
    color: #e4e6ea;
    margin-bottom: 1.5rem;
}

.hero-dots {
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-dot.is-active { background: var(--color-accent); transform: scale(1.25); }

.hero-arrow { z-index: 3; }
.hero.is-dragging { cursor: grabbing; }
.hero { cursor: grab; touch-action: pan-y; }

/* Inner page hero */
.page-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    background: var(--color-dark);
    color: #fff;
}

.page-hero .hero-content { padding: 3.5rem 0; }
.page-hero h1 { color: #fff; }
.page-hero-plain { min-height: 200px; background: linear-gradient(120deg, var(--color-dark) 0%, #2a2e38 60%, #3d1016 100%); }
.page-hero .lead { color: #c9ccd3; }

.breadcrumb {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.breadcrumb a { color: var(--color-accent); }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: 4.5rem 0; }
.section-alt { background: var(--color-bg-alt); }

.section-dark {
    background: var(--color-dark);
    color: #e4e6ea;
}

.section-dark .section-title { color: #fff; }

.section-title { position: relative; margin-bottom: 2.5rem; }

.section-title::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    background: var(--color-accent);
    margin-top: 0.6rem;
    border-radius: 2px;
}

.section-title.center::after { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card-grid {
    display: grid;
    gap: 1.75rem;
}

.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
    .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
    display: block;
    background: var(--color-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: var(--color-text); }

.card-img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.card-product .card-img, .card-award .card-img { aspect-ratio: 1; }

.card-img-placeholder {
    background: linear-gradient(135deg, #2a2e38 0%, #16181d 60%, #3d1016 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.card-body { padding: 1.25rem 1.4rem 1.5rem; }
.card-body h3 { margin-bottom: 0.35rem; }

.card-tagline { color: var(--color-muted); font-size: 0.92rem; margin: 0 0 0.5rem; }
.card-brand {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.25rem;
}
.card-price { font-weight: 600; margin: 0 0 0.5rem; }
.card-year { color: var(--color-muted); font-size: 0.85rem; margin: 0; }

.card-link {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   Package / product detail
   -------------------------------------------------------------------------- */

.detail-header { margin-bottom: 2.5rem; }
.detail-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
}

.detail-image { margin: 0 0 3rem; border-radius: var(--radius); overflow: hidden; }
.detail-image img { width: 100%; }

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 860px) {
    .detail-layout { grid-template-columns: 1fr; }
}

.detail-aside {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 1.75rem;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.feature-list { list-style: none; margin: 0 0 1rem; padding: 0; }

.feature-list li {
    padding: 0.5rem 0 0.5rem 1.7rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 860px) {
    .product-layout { grid-template-columns: 1fr; }
}

.product-media img { border-radius: var(--radius); }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
}

.gallery-grid.preview { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid.preview { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid, .gallery-grid.preview { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 1.5rem 0.9rem 0.7rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(8, 9, 12, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox img {
    max-width: min(1100px, 90vw);
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
}

.lightbox-caption { color: #c9ccd3; margin-top: 1rem; min-height: 1.5em; }

.lightbox button {
    position: absolute;
    background: none;
    border: 0;
    color: #fff;
    font-size: 2.6rem;
    cursor: pointer;
    opacity: 0.75;
    line-height: 1;
    padding: 0.5rem 1rem;
}

.lightbox button:hover { opacity: 1; }
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 0.5rem; top: 50%; transform: translateY(-50%); }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

@media (max-width: 960px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
    margin: 0;
    background: var(--color-dark-2);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial p { font-style: italic; color: #d9dbe0; }

.testimonial footer { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.25rem; }

.testimonial-photo { border-radius: 50%; width: 48px; height: 48px; object-fit: cover; }

.testimonial footer strong { display: block; color: #fff; }
.testimonial footer span { font-size: 0.85rem; color: var(--color-muted); }

/* --------------------------------------------------------------------------
   Rich text / stream body
   -------------------------------------------------------------------------- */

.richtext h2 { margin-top: 2rem; }
.richtext img { border-radius: var(--radius); }
.richtext blockquote {
    border-left: 4px solid var(--color-accent);
    margin: 1.5rem 0;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--color-muted);
    font-style: italic;
}

.stream-image { margin: 2rem 0; }

.stream-video {
    display: block;
    width: 100%;
    margin: 2rem 0;
    border-radius: var(--radius);
    background: #000;
}

.stream-embed {
    position: relative;
    margin: 2rem 0;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

.stream-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-actions { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--color-dark);
    color: #a7abb4;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 2.5rem;
    padding: 3.5rem 0 2.5rem;
}

@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* Footer social: fixed label column + stacked accounts column, so multiple
   accounts for one platform line up neatly under the first. */
.social-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.social-kind {
    flex: 0 0 5.4em;
    color: #fff;
    font-weight: 600;
    font-size: 0.82rem;
}
.social-accounts {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}
.social-accounts a {
    font-size: 0.82rem;
    line-height: 1.4;
    /* Keep handles on one line — never split a username mid-word. */
    overflow-wrap: normal;
    word-break: keep-all;
}

.footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: var(--radius);
}

.site-footer h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer a { color: #a7abb4; }
.site-footer a:hover { color: #fff; }

.footer-brand p { margin: 0.5rem 0; font-size: 0.92rem; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.2rem 0;
    font-size: 0.85rem;
}

.footer-bottom p { margin: 0; }

/* --------------------------------------------------------------------------
   Gallery / award tile titles (always visible, inside the image)
   -------------------------------------------------------------------------- */

.gallery-tile-title {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 2rem 0.9rem 0.8rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.02rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
}

.gallery-tile-title small {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0;
    color: #c9ccd3;
    margin-top: 0.15rem;
}

.award-tile { cursor: default; }
.award-tile img { transition: transform 0.3s ease; }
.award-tile:hover img { transform: scale(1.06); }

/* --------------------------------------------------------------------------
   Media slider (package / product / gallery detail)
   -------------------------------------------------------------------------- */

.media-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    margin: 0 0 3rem;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
    will-change: transform;
}

.slider-track.no-transition { transition: none; }

.slider-slide {
    position: relative;
    flex: 0 0 100%;
    margin: 0;
}

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

.slider-track img {
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.media-slider { cursor: grab; touch-action: pan-y; }
.media-slider.is-dragging { cursor: grabbing; }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(10, 11, 14, 0.55);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.slider-arrow:hover { background: var(--color-accent); }
.slider-prev { left: 0.9rem; }
.slider-next { right: 0.9rem; }

.slider-dots {
    position: absolute;
    bottom: 0.9rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.is-active { background: var(--color-accent); transform: scale(1.25); }

.product-media .media-slider { margin: 0; }

/* --------------------------------------------------------------------------
   Share buttons
   -------------------------------------------------------------------------- */

.share-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 2rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.share-label {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-muted);
}

.share-btn {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-card);
    color: var(--color-text);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn:hover { border-color: var(--color-accent); color: var(--color-accent); }
.share-wa:hover { border-color: #25d366; color: #128c4a; }

/* --------------------------------------------------------------------------
   Brand grid
   -------------------------------------------------------------------------- */

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 960px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }

.brand-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    min-height: 130px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.brand-tile img { max-height: 90px; width: auto; }

.brand-tile-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-strong);
    text-align: center;
}

/* --------------------------------------------------------------------------
   Split layout (video + text) and step cards
   -------------------------------------------------------------------------- */

.split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 860px) { .split-layout { grid-template-columns: 1fr; } }

.split-media .stream-video,
.split-media .stream-embed { margin: 0; }

.card-step { overflow: visible; }

.card-step .card-img { border-radius: var(--radius) var(--radius) 0 0; }

.card-step .card-body { position: relative; }

.step-number {
    position: absolute;
    top: -22px;
    right: 1.2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: var(--shadow);
}

/* --------------------------------------------------------------------------
   Quote, slogan, maps (About)
   -------------------------------------------------------------------------- */

.big-quote {
    margin: 0;
    text-align: center;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--color-strong);
    line-height: 1.5;
}

.big-quote p { margin: 0 0 1rem; }

.big-quote footer {
    font-family: var(--font-display);
    font-style: normal;
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
}

.slogan-band {
    background: var(--color-dark);
    padding: 3.5rem 0;
}

.slogan-text {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.slogan-text::first-letter { color: var(--color-accent); }

.map-section { line-height: 0; }
.map-section iframe { width: 100%; height: 420px; border: 0; }

/* --------------------------------------------------------------------------
   Forms (inquiry / booking)
   -------------------------------------------------------------------------- */

.inquiry-form {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-field { margin-bottom: 1.25rem; }

.form-field label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
}

.form-field .req { color: var(--color-accent); }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="url"],
.form-field input[type="number"],
.form-field input[type="date"],
.form-field input[type="datetime-local"],
.form-field input[type="time"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: border-color 0.15s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-field textarea { min-height: 130px; resize: vertical; }

.form-help { color: var(--color-muted); font-size: 0.82rem; }
.form-error { color: var(--color-accent); font-size: 0.85rem; margin: 0.25rem 0 0; }
.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select { border-color: var(--color-accent); }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */

.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-details {
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.contact-list { list-style: none; margin: 0 0 1.5rem; padding: 0; }

.contact-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-list strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
}

.contact-map { border-radius: var(--radius); overflow: hidden; line-height: 0; }
.contact-map iframe { width: 100%; height: 240px; border: 0; }

.contact-card { margin-top: 1.5rem; }

.contact-card h4 {
    font-size: 1.05rem;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--color-accent);
}

.contact-card .contact-list { margin-bottom: 0; }

/* FAQ */
.faq-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-bottom: 0.9rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1rem 1.4rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
    font-size: 1.4rem;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after { content: "–"; }

.faq-answer { padding: 0 1.4rem 1.2rem; color: var(--color-muted); }

/* Product filter bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding: 1.1rem 1.4rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
}

.filter-bar label span {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    margin-bottom: 0.3rem;
}

.filter-bar select {
    padding: 0.5rem 2.2rem 0.5rem 0.8rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--color-card);
    color: var(--color-text);
    cursor: pointer;
}

.filter-reset {
    font-size: 0.9rem;
    font-weight: 600;
    padding-bottom: 0.6rem;
}

/* Product specification */
.spec-box {
    margin-top: 3rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius);
    padding: 2rem;
}

.spec-box h2 { margin-bottom: 1rem; }

.spec-box table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.spec-box th,
.spec-box td {
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--color-border);
    text-align: left;
}

.spec-box th,
.spec-box tr:first-child td:first-child,
.spec-box td:first-child {
    font-weight: 600;
}

.spec-box tr:nth-child(even) td { background: rgba(127, 127, 127, 0.06); }

/* Product image gallery: selected image on top, thumb strip below */
.product-gallery { position: relative; }

.pg-main {
    margin: 0 0 0.9rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    cursor: zoom-in;
}

.pg-main img { display: none; width: 100%; height: auto; }

.pg-main img.is-active {
    display: block;
    transition: transform 0.25s ease;
}

/* In-place zoom: the image magnifies inside its own frame and follows the
   cursor; clicking again zooms back out. */
.product-gallery.is-zoomed .pg-main { cursor: zoom-out; }

.product-gallery.is-zoomed .pg-main img.is-active {
    transform: scale(2.2);
}

.pg-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pg-arrow {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-card, #fff);
    color: var(--color-text);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pg-arrow:hover { border-color: var(--color-accent); color: var(--color-accent); }

.pg-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
}

.pg-thumb {
    flex: 0 0 auto;
    width: 68px;
    height: 68px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    opacity: 0.65;
    transition: all 0.2s ease;
}

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

.pg-thumb:hover { opacity: 1; }
.pg-thumb.is-active { border-color: var(--color-accent); opacity: 1; }

/* Previous / next navigation (award pages) */
.prev-next-nav {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.pn-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-card, #fff);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.9rem 1.2rem;
    color: var(--color-text);
    max-width: 46%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pn-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--color-text); }

.pn-thumb { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; flex: 0 0 auto; }

.pn-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    font-weight: 600;
}

.pn-title {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
}

.pn-next { text-align: right; margin-left: auto; }

/* WhatsApp float */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.wa-float:hover { transform: scale(1.08); color: #fff; }
