:root {
    --black: #050505;
    --panel: rgba(255, 255, 255, .065);
    --panel-strong: rgba(255, 255, 255, .105);
    --panel-soft: rgba(255, 255, 255, .045);
    --white: #ffffff;
    --muted: rgba(255, 255, 255, .72);
    --faint: rgba(255, 255, 255, .48);
    --line: rgba(255, 255, 255, .14);
    --line-strong: rgba(255, 255, 255, .24);
    --orange: #ff7a18;
    --orange-soft: rgba(255, 122, 24, .16);
    --shadow: 0 28px 90px rgba(0, 0, 0, .38);
    --blur: blur(24px) saturate(140%);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    color: var(--white);
    background: var(--black);
    letter-spacing: 0;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: -5%;
    z-index: -3;
    background: var(--black);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 122, 24, .18), transparent 32%),
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, .08), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, .58), #050505 72%);
    pointer-events: none;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 12px clamp(16px, 4vw, 52px);
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, .58);
    backdrop-filter: var(--blur);
}

.brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .34));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.main-nav a {
    padding: 11px 13px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(255, 255, 255, .76);
    transition: .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    border-color: var(--line);
    background: var(--panel);
}

.main-nav .nav-cta {
    color: #fff;
    border-color: rgba(255, 122, 24, .44);
    background: var(--orange-soft);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--panel);
    backdrop-filter: var(--blur);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: #fff;
}

.hero-slider {
    position: relative;
    min-height: clamp(760px, 82vh, 920px);
    margin-top: 56px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: clamp(110px, 11vw, 170px) 18px clamp(150px, 14vw, 210px);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .8s ease, transform 1.5s ease;
}

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

.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(255, 122, 24, .14), transparent 40%),
        linear-gradient(180deg, rgba(5, 5, 5, .42), rgba(5, 5, 5, .88));
}

.hero-content {
    position: relative;
    width: min(860px, calc(100% - 36px));
    padding: clamp(34px, 4.6vw, 56px);
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, .07);
    box-shadow: var(--shadow);
    backdrop-filter: var(--blur);
}

.hero-logo {
    width: min(180px, 46vw);
    height: auto;
    margin: 0 auto 22px;
    filter:
        brightness(1.06)
        drop-shadow(0 0 12px rgba(255, 255, 255, .12))
        drop-shadow(0 0 28px rgba(255, 122, 24, .18));
}

.eyebrow {
    margin: 0 0 15px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .34em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

h1 {
    max-width: 980px;
    font-size: clamp(40px, 7vw, 82px);
    line-height: 1;
}

h2 {
    font-size: clamp(30px, 4.8vw, 54px);
    line-height: 1.05;
}

h3 {
    font-size: clamp(22px, 3vw, 31px);
    line-height: 1.12;
}

.hero-content p:not(.eyebrow),
.page-hero p,
.tenant-hero p {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.65;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .075);
    backdrop-filter: var(--blur);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.button:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 122, 24, .72);
    background: rgba(255, 122, 24, .13);
}

.button.primary {
    border-color: rgba(255, 122, 24, .58);
    background: linear-gradient(180deg, rgba(255, 122, 24, .98), rgba(255, 122, 24, .72));
    box-shadow: 0 18px 42px rgba(255, 122, 24, .22);
}

.button.ghost {
    color: #fff;
}

.hero-content .button,
.detail-hero .button,
.tenant-hero .button {
    margin-top: 24px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.slider-dots button {
    width: 42px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
}

.slider-dots button.is-active {
    background: var(--orange);
}

.strip-banner {
    position: relative;
    width: min(1920px, 100%);
    aspect-ratio: 1920 / 900;
    max-height: calc(100vh - 86px);
    min-height: 420px;
    margin: 0 auto;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #050505;
    box-shadow: 0 36px 100px rgba(0, 0, 0, .45);
}

.strip-banner-track,
.strip-slide {
    position: absolute;
    inset: 0;
}

.strip-slide {
    display: grid;
    align-content: center;
    justify-items: start;
    gap: 14px;
    padding: clamp(34px, 8vw, 128px);
    opacity: 0;
    color: #fff;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 122, 24, .16), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
        rgba(255, 255, 255, .04);
    transform: scale(1.02);
    transition: opacity .6s ease, transform 1.1s ease;
    backdrop-filter: var(--blur);
}

.strip-slide.has-image {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .84), rgba(5, 5, 5, .3) 56%, rgba(5, 5, 5, .72)),
        linear-gradient(0deg, rgba(5, 5, 5, .72), transparent 48%, rgba(5, 5, 5, .45)),
        var(--strip-image) center/cover;
}

.strip-slide::after {
    content: "";
    position: absolute;
    inset: clamp(20px, 4vw, 70px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 34px;
    pointer-events: none;
}

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

.strip-slide span {
    position: relative;
    z-index: 1;
    color: var(--orange);
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 800;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.strip-slide strong {
    position: relative;
    z-index: 1;
    max-width: 980px;
    font-size: clamp(42px, 6.8vw, 104px);
    line-height: 1.05;
    text-shadow: 0 18px 48px rgba(0, 0, 0, .5);
}

.strip-slide small {
    position: relative;
    z-index: 1;
    max-width: 780px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 28px);
    line-height: 1.5;
}

.strip-dots {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: clamp(24px, 4vw, 56px);
    z-index: 2;
    display: flex;
    gap: 12px;
    transform: translateX(-50%);
}

.strip-dots button {
    width: 54px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
}

.strip-dots button.is-active {
    background: var(--orange);
}

.section-pad,
.section-tight {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 88px 0 26px;
}

.section-tight {
    padding: 22px 0 76px;
}

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 70px;
}

.quick-links a,
.event-card,
.store-card a,
.detail-layout article,
.detail-layout aside,
.notice,
.lead-form form,
.feature-bands article,
.benefits article {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: var(--blur);
}

.quick-links a {
    min-height: 190px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .25s ease;
}

.quick-links a:hover,
.store-card a:hover,
.event-card:hover,
.food-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 122, 24, .42);
    background: var(--panel-strong);
}

.quick-links span,
.store-card span,
.event-card p,
.feature-bands span,
.detail-layout aside strong {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.quick-links strong {
    font-size: clamp(25px, 3vw, 34px);
}

.quick-links small,
.event-card span,
.store-card em,
.detail-layout p,
.feature-bands p,
.admin-copy,
.section-note {
    color: var(--muted);
    line-height: 1.58;
}

.section-note {
    max-width: 520px;
    margin: 14px 0 0;
    font-size: 15px;
}

.split-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
}

.cards-grid,
.store-grid,
.store-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.event-card {
    overflow: hidden;
    transition: .25s ease;
}

.event-image {
    position: relative;
    min-height: 250px;
    display: block;
    background-size: cover;
    background-position: center;
}

.event-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .58));
}

.event-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    padding: 9px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(5, 5, 5, .52);
    backdrop-filter: var(--blur);
    font-weight: 800;
}

.event-card div {
    padding: 24px;
}

.event-card p {
    margin: 0 0 10px;
}

.event-card span {
    display: block;
    margin: 14px 0 20px;
}

.event-card a:last-child {
    color: var(--orange);
    font-weight: 800;
}

.store-card a {
    min-height: 272px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .25s ease;
}

.store-card img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
}

.store-card strong {
    font-size: 29px;
}

.store-card em {
    font-style: normal;
    font-weight: 700;
}

.instagram-section {
    padding-bottom: 90px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.insta-grid a,
.food-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    display: flex;
    align-items: end;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.insta-grid a::before,
.food-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .76));
}

.insta-grid span,
.food-card span,
.food-card strong {
    position: relative;
}

.page-hero,
.tenant-hero,
.detail-hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 56vh;
    padding: 110px 18px 76px;
    text-align: center;
    background: linear-gradient(rgba(5, 5, 5, .42), rgba(5, 5, 5, .86)), url("../../background.png") center/cover;
}

.page-hero::after,
.tenant-hero::after {
    content: "";
    position: absolute;
    inset: auto 16px 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .26), transparent);
}

.page-hero.compact h1 {
    margin: auto;
    font-size: clamp(42px, 7vw, 78px);
}

.filters {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 14px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0 17px;
    color: #fff;
    background: var(--panel);
    backdrop-filter: var(--blur);
    font: inherit;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--faint);
}

textarea {
    min-height: 132px;
    padding-top: 16px;
}

.detail-hero {
    min-height: 74vh;
    justify-items: start;
    padding: 120px clamp(18px, 6vw, 90px) 82px;
    text-align: left;
    background: linear-gradient(90deg, rgba(5, 5, 5, .82), rgba(5, 5, 5, .28)), var(--hero-image) center/cover;
}

.detail-hero > div {
    width: min(820px, 100%);
    padding: clamp(28px, 5vw, 50px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, .07);
    box-shadow: var(--shadow);
    backdrop-filter: var(--blur);
}

.detail-logo {
    width: 108px;
    height: 108px;
    object-fit: contain;
    margin-bottom: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .09);
}

.detail-hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-actions.centered {
    justify-content: center;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
}

.detail-layout article,
.detail-layout aside,
.notice,
.lead-form form {
    padding: clamp(24px, 4vw, 42px);
}

.detail-layout aside {
    display: grid;
    align-content: start;
    gap: 8px;
}

.detail-layout aside strong {
    margin-top: 10px;
}

.notice {
    margin-top: 24px;
    display: grid;
    gap: 8px;
    box-shadow: none;
}

.food-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.food-filters button {
    min-height: 44px;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #fff;
    background: var(--panel);
    backdrop-filter: var(--blur);
    font: inherit;
    font-weight: 800;
}

.food-filters button.active {
    border-color: rgba(255, 122, 24, .62);
    background: var(--orange-soft);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.food-card {
    min-height: 380px;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    gap: 8px;
    transition: .25s ease;
}

.food-card strong {
    font-size: clamp(30px, 5vw, 48px);
}

.feature-bands,
.benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.feature-bands article,
.benefits article {
    min-height: 230px;
    padding: 26px;
}

.feature-bands p {
    font-size: 18px;
}

.tenant-hero {
    min-height: 76vh;
    justify-items: start;
    padding-left: clamp(18px, 7vw, 110px);
    text-align: left;
}

.tenant-hero > div {
    width: min(860px, 100%);
    padding: clamp(30px, 5vw, 56px);
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255, 255, 255, .07);
    box-shadow: var(--shadow);
    backdrop-filter: var(--blur);
}

.tenant-hero p {
    margin-left: 0;
}

.benefits article {
    display: flex;
    align-items: end;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

.lead-form {
    display: grid;
    place-items: center;
}

.lead-form form {
    width: min(760px, 100%);
    display: grid;
    gap: 14px;
}

.lead-form .button {
    border: 0;
    cursor: pointer;
}

.site-footer {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 34px clamp(18px, 4vw, 54px);
    border-top: 1px solid var(--line);
    background: rgba(5, 5, 5, .72);
    backdrop-filter: var(--blur);
}

.site-footer img {
    width: 82px;
}

.site-footer p {
    color: var(--muted);
}

.site-footer div {
    display: flex;
    gap: 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 16px 38px rgba(37,211,102,.28);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.floating-whatsapp svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.floating-whatsapp.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(22px) scale(.88); }

@media (max-width: 980px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 86px;
        left: 14px;
        right: 14px;
        display: none;
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 24px;
        background: rgba(5, 5, 5, .82);
        backdrop-filter: var(--blur);
    }

    .main-nav.is-open {
        display: flex;
    }

    .quick-links,
    .cards-grid,
    .store-grid,
    .store-strip,
    .insta-grid,
    .feature-bands,
    .benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-layout,
    .filters,
    .site-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .strip-banner {
        aspect-ratio: auto;
        min-height: 520px;
        max-height: none;
    }

    .strip-slide {
        padding: 34px 22px;
        align-content: end;
        padding-bottom: 92px;
    }

    .strip-slide::after {
        inset: 14px;
        border-radius: 24px;
    }

    .strip-slide strong {
        font-size: clamp(40px, 13vw, 62px);
    }

    .strip-slide small {
        font-size: 16px;
    }

    .strip-dots {
        bottom: 34px;
    }

    .hero-slider {
        min-height: 760px;
        margin-top: 34px;
    }

    .hero-slide {
        padding: 86px 14px 132px;
    }

    .hero-content {
        border-radius: 24px;
        padding: 28px;
    }

    h1 {
        font-size: clamp(38px, 13vw, 62px);
    }

    .split-heading {
        align-items: start;
        flex-direction: column;
    }

    .quick-links,
    .cards-grid,
    .store-grid,
    .store-strip,
    .insta-grid,
    .food-grid,
    .feature-bands,
    .benefits {
        grid-template-columns: 1fr;
    }

    .event-image {
        min-height: 220px;
    }

    .food-card {
        min-height: 300px;
    }

    .site-footer div {
        flex-direction: column;
    }
}

/* 2026 visual system: editorial, tactile and content-first */
.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 12px 16px;
    color: #050505;
    background: var(--orange);
    transform: translateY(-140%);
}

.skip-link:focus { transform: none; }

.site-header {
    min-height: 78px;
    border-bottom-color: rgba(255,255,255,.1);
}

.brand img { width: 58px; height: 58px; }

.main-nav { font-family: "Poppins", sans-serif; letter-spacing: .04em; }

.hero-content {
    border-radius: 2px 42px 2px 42px;
    background: linear-gradient(145deg, rgba(10,10,10,.74), rgba(10,10,10,.38));
}

.hero-content h1,
.strip-slide strong {
    letter-spacing: -.055em;
    text-wrap: balance;
}

.quick-links a {
    position: relative;
    overflow: hidden;
}

.quick-links a::after {
    content: "↗";
    position: absolute;
    right: 22px;
    top: 20px;
    color: var(--orange);
    font-size: 22px;
    transition: transform .25s ease;
}

.quick-links a:hover::after { transform: translate(4px,-4px); }

.cms-section {
    width: min(1440px, calc(100% - 36px));
    margin: 30px auto;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(255,255,255,.045);
    overflow: hidden;
}

.cms-copy { max-width: 780px; }
.cms-copy > p:not(.eyebrow) { color: var(--muted); font-size: clamp(17px,2vw,21px); line-height: 1.7; }
.cms-copy .button { margin-top: 16px; }
.cms-image { display: grid; grid-template-columns: minmax(280px,.8fr) minmax(380px,1.2fr); gap: clamp(30px,6vw,90px); align-items: center; }
.cms-image figure { margin: 0; min-height: 480px; }
.cms-image figure img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; border-radius: 24px; }
.cms-video { margin-top: 36px; aspect-ratio: 16/9; overflow: hidden; border-radius: 24px; background: #000; }
.cms-video iframe,.cms-video video { width: 100%; height: 100%; border: 0; object-fit: cover; }
.cms-gallery { grid-column: 1/-1; display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 12px; margin-top: 34px; }
.cms-gallery img { width: 100%; height: 360px; object-fit: cover; border-radius: 20px; }
.cms-gallery img:first-child { grid-row: span 2; height: 732px; }
.cms-cta { display: grid; place-items: center; min-height: 480px; text-align: center; background: radial-gradient(circle at 50% 0, rgba(255,122,24,.24), transparent 45%), rgba(255,255,255,.045); }
.cms-cta .cms-copy { margin: auto; }

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

@media (max-width: 760px) {
    .cms-section { width: calc(100% - 24px); border-radius: 24px; }
    .cms-image { grid-template-columns: 1fr; }
    .cms-image figure,.cms-image figure img { min-height: 320px; }
    .cms-gallery { grid-template-columns: 1fr 1fr; }
    .cms-gallery img,.cms-gallery img:first-child { height: 240px; grid-row: auto; }
}

/* Refinamentos solicitados: tipografia Poppins e home mais objetiva */
body { font-family: "Poppins", sans-serif; font-weight: 400; }
h1,h2,h3,.strip-slide strong,.quick-links strong,.store-card strong { font-family: "Poppins", sans-serif; }
h1,h2 { font-weight: 700; }
h3,.quick-links strong,.store-card strong { font-weight: 600; }
.main-nav { font-family: "Poppins", sans-serif; font-weight: 500; }
.eyebrow { font-weight: 600; }

.site-header { min-height: 88px; }
.brand img { width: 76px; height: 76px; }

.strip-banner { background: #090909; }
.strip-slide { padding: 0; background: #090909; }
.strip-slide.is-placeholder::before {
    content: "";
    position: absolute;
    inset: clamp(20px,4vw,64px);
    border: 1px dashed rgba(255,255,255,.16);
    border-radius: 28px;
    background: rgba(255,255,255,.018);
}
.strip-slide::after { display: none; }
.strip-slide.has-image { background: var(--strip-image) center/cover no-repeat; }

.hero-slider { min-height: 720px; height: 720px; }
.hero-content {
    width: min(900px,calc(100% - 36px));
    height: 500px;
    padding: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 34px;
}
.hero-logo { width: min(240px,48vw); margin-bottom: 34px; }
.hero-content h1 { font-size: clamp(34px,5vw,62px); font-weight: 700; line-height: 1.04; }
.hero-content p:not(.eyebrow) { margin-top: 18px; font-size: clamp(14px,1.65vw,19px); line-height: 1.55; }

.quick-links a { justify-content: flex-end; gap: 10px; }
.quick-links a::after { right: 22px; top: 20px; font-size: 17px; }
.quick-links strong { font-size: clamp(23px,2.6vw,31px); }

.store-strip { grid-template-columns: repeat(3,1fr); }
.store-placeholder>div {
    min-height: 272px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px dashed rgba(255,255,255,.2);
    border-radius: 26px;
    background: rgba(255,255,255,.025);
}
.store-placeholder img { opacity: .28; filter: grayscale(1); }
.store-placeholder em { color: var(--muted); font-style: normal; }

.instagram-section .split-heading { display: block; }
.instagram-section .eyebrow { margin-bottom: 28px; font-size: clamp(12px,1.3vw,15px); }

.site-footer { grid-template-columns: 88px 1fr auto; }
.site-footer p { margin: 0; font-size: 13px; }
.social-links { display: flex; gap: 10px!important; }
.social-links a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .2s ease; }
.social-links a:hover { border-color: var(--orange); transform: translateY(-2px); }
.social-links svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.social-links svg .fill { fill: currentColor; stroke: none; }
.studio-credit { padding: 10px 20px 12px; color: rgba(255,255,255,.38); background: #050505; text-align: center; font-size: 10px; letter-spacing: .04em; }
.studio-credit span { color: rgba(255,255,255,.62); font-weight: 600; }

@media (max-width: 640px) {
    .site-header { min-height: 82px; }
    .brand img { width: 70px; height: 70px; }
    .main-nav { top: 82px; }
    .hero-slider { min-height: 650px; height: 650px; }
    .hero-content { height: 460px; padding: 30px 24px; border-radius: 26px; }
    .hero-logo { width: min(210px,55vw); }
    .store-strip { grid-template-columns: 1fr; }
    .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* Header simétrico: navegação no centro real e marca sempre inteira */
.site-header {
    min-height: 102px;
    display: grid;
    grid-template-columns: 132px minmax(0,1fr) 132px;
    align-items: center;
    justify-content: initial;
    padding: 6px clamp(12px,2vw,28px);
}
.brand {
    grid-column: 1;
    width: 132px;
    height: 88px;
    display: grid;
    place-items: center;
    overflow: visible;
}
.brand img { width: 160px; height: 160px; max-width: none; object-fit: contain; }
.main-nav { grid-column: 2; justify-self: center; }
.menu-toggle { grid-column: 3; justify-self: end; }

@media (max-width: 980px) {
    .main-nav { top: 102px; }
}

@media (max-width: 640px) {
    .site-header { min-height: 94px; grid-template-columns: 116px minmax(0,1fr) 116px; padding: 4px 10px; }
    .brand { width: 116px; height: 82px; }
    .brand img { width: 146px; height: 146px; }
    .main-nav { top: 94px; }
}

/* Contenção definitiva do logo e equilíbrio interno do hero */
.site-header {
    min-height: 116px;
    grid-template-columns: 160px minmax(0,1fr) 160px;
    padding-block: 6px;
}
.brand { width: 160px; height: 104px; overflow: hidden; }
.brand img {
    width: 160px;
    height: 104px;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slider { min-height: 760px; height: 760px; }
.hero-content {
    height: 540px;
    padding: 56px clamp(34px,5vw,72px);
    display: grid;
    grid-template-rows: auto auto auto;
    align-content: center;
    justify-items: center;
    gap: 22px;
}
.hero-logo {
    width: min(300px,50vw);
    height: 170px;
    margin: 0;
    object-fit: cover;
    object-position: center;
}
.hero-content h1 {
    margin: 0;
    font-size: clamp(32px,4.5vw,56px);
    line-height: 1.08;
}
.hero-content p:not(.eyebrow) {
    margin: 0 auto;
    font-size: clamp(14px,1.5vw,18px);
    line-height: 1.55;
}

@media (max-width: 980px) {
    .site-header { grid-template-columns: 142px minmax(0,1fr) 142px; }
    .brand { width: 142px; }
    .brand img { width: 142px; }
    .main-nav { top: 116px; }
}

@media (max-width: 640px) {
    .site-header { min-height: 104px; grid-template-columns: 132px minmax(0,1fr) 54px; padding: 5px 10px; }
    .brand { width: 132px; height: 94px; }
    .brand img { width: 132px; height: 94px; }
    .main-nav { top: 104px; }
    .hero-slider { min-height: 680px; height: 680px; }
    .hero-content { height: 500px; padding: 38px 26px; gap: 18px; }
    .hero-logo { width: min(230px,66vw); height: 130px; }
    .hero-content h1 { font-size: clamp(30px,10vw,46px); }
    .hero-content p:not(.eyebrow) { font-size: 15px; }
}

/* Contato: formulário editorial sobre a arquitetura do KOTA */
.contact-page {
    position: relative;
    min-height: 100vh;
    padding: clamp(90px,10vw,150px) 18px 100px;
    background:
        linear-gradient(180deg,rgba(5,5,5,.35),rgba(5,5,5,.78) 48%,#050505 100%),
        url("../../background.png") center/cover fixed;
}
.contact-intro {
    position: relative;
    z-index: 1;
    width: min(1100px,100%);
    margin: 0 auto 42px;
    text-align: center;
}
.contact-intro h1 { margin: 0; font-size: clamp(44px,7vw,82px); }
.contact-intro>p:not(.eyebrow) { max-width: none; margin: 18px auto 0; color: var(--muted); font-size: clamp(16px,1.6vw,19px); white-space: nowrap; }
.contact-card {
    position: relative;
    z-index: 1;
    width: min(920px,100%);
    margin: 0 auto;
    padding: clamp(24px,4vw,48px);
    border: 1px solid var(--line);
    border-radius: 32px;
    background: rgba(10,10,10,.72);
    box-shadow: 0 32px 100px rgba(0,0,0,.48);
    backdrop-filter: blur(26px) saturate(130%);
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: grid; gap: 9px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 600; }
.contact-form label>span { padding-left: 3px; }
.contact-form .full { grid-column: 1/-1; }
.contact-form input,.contact-form textarea { border-radius: 14px; background: rgba(255,255,255,.065); transition: border-color .2s ease,background .2s ease,box-shadow .2s ease; }
.contact-form input:focus,.contact-form textarea:focus { border-color: rgba(255,122,24,.75); background: rgba(255,255,255,.09); box-shadow: 0 0 0 4px rgba(255,122,24,.1); }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-submit { grid-column: 1/-1; justify-self: start; min-width: 210px; border: 0; cursor: pointer; }
.contact-submit span { margin-left: 18px; }
.contact-honeypot { position: absolute!important; left: -10000px!important; width: 1px!important; height: 1px!important; overflow: hidden!important; }
.contact-feedback { margin-bottom: 22px; padding: 16px 18px; display: grid; gap: 3px; border-radius: 14px; font-size: 14px; }
.contact-feedback.success { color: #dfffea; background: rgba(37,211,102,.14); border: 1px solid rgba(37,211,102,.32); }
.contact-feedback.error { color: #ffe2dc; background: rgba(255,92,60,.14); border: 1px solid rgba(255,92,60,.32); }
.contact-feedback span { opacity: .78; }
.contact-direct {
    margin-top: 34px;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}
.contact-direct a { min-height: 48px; padding: 0 18px; display: inline-flex; align-items: center; gap: 10px; border-radius: 999px; color: #07190e; background: #25d366; font-size: 12px; font-weight: 700; text-transform: uppercase; transition: transform .2s ease,box-shadow .2s ease; }
.contact-direct a:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(37,211,102,.22); }
.contact-direct svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 900px) {
    .contact-intro>p:not(.eyebrow) { white-space: normal; }
}

@media (max-width: 640px) {
    .contact-page { padding: 76px 12px 70px; background-attachment: scroll; }
    .contact-intro { margin-bottom: 28px; }
    .contact-intro>p:not(.eyebrow) { white-space: normal; }
    .contact-card { padding: 22px 16px; border-radius: 24px; }
    .contact-form { grid-template-columns: 1fr; gap: 16px; }
    .contact-form .full,.contact-submit { grid-column: 1; }
    .contact-submit { width: 100%; }
    .contact-direct { align-items: stretch; flex-direction: column; text-align: center; }
    .contact-direct a { justify-content: center; }
}
