

:root {
    --pink: #FF2D9B;
    --pink-hover: #ff50b0;
    --black: #0A0A0A;
    --black-light: #141414;
    --white: #FFFFFF;
    --gray: rgba(255, 255, 255, 0.5);
    --gray-dim: rgba(255, 255, 255, 0.15);

    --font-serif: 'Playfair Display', serif;
    --font-sans: system-ui, -apple-system, sans-serif;

    --nav-height: 72px;
    --container-max: 1320px;
    --container-padding: 2rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background-color: rgba(255, 45, 155, 0.3);
    color: #fff;
}

:focus-visible {
    outline: 2px solid var(--pink);
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

html {
    background-color: var(--black);
}

body {
    font-family: var(--font-sans);
    background-color: transparent;
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.pink {
    color: var(--pink);
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-weight: 900;
    font-style: normal;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease,
                color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background-color: var(--pink);
    color: var(--black);
    border-color: var(--pink);
}

@media (hover: hover) and (pointer: fine) {
    .btn--primary:hover {
        background-color: var(--pink-hover);
        border-color: var(--pink-hover);
        box-shadow: 0 0 30px rgba(255, 45, 155, 0.4);
        transform: translateY(-2px);
    }

    .btn--primary.no-hover-anim:hover {
        background-color: var(--pink);
        border-color: var(--pink);
        box-shadow: none;
        transform: none;
    }
}

.btn--primary:active {
    transform: scale(0.97) translateY(0);
    box-shadow: none;
    transition-duration: 80ms;
}

.btn--outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

@media (hover: hover) and (pointer: fine) {
    .btn--outline:hover {
        background-color: var(--white);
        color: var(--black);
        transform: translateY(-2px);
    }
}

.btn--outline:active {
    transform: scale(0.97) translateY(0);
    transition-duration: 80ms;
}

.btn--sm {
    padding: 0.65rem 1.4rem;
    font-size: 0.75rem;
}

.btn--lg {
    padding: 1.15rem 2.5rem;
    font-size: 0.95rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    display: flex;
    align-items: baseline;
    color: var(--white);
    transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .navbar__logo:hover {
        color: var(--pink);
    }
}

.logo-star {
    color: var(--pink);
    font-size: 1.2em;
    margin: 0 -0.05em;
}

.navbar__links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navbar__links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 0.25rem 0;
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--pink);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (hover: hover) and (pointer: fine) {
    .navbar__links a:hover::after {
        transform: scaleX(1);
    }
}

@media (hover: hover) and (pointer: fine) {
    .navbar__links a:hover {
        color: var(--pink);
    }
}

.navbar__bag {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.3rem;
    border: 1.5px solid var(--white);
    border-radius: 50px;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.navbar__bag .bag-icon {
    flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
    .navbar__bag:hover {
        background-color: var(--white);
        color: var(--black);
    }
}

.navbar__bag:active {
    transform: scale(0.95);
    transition-duration: 80ms;
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%) /* deliberate-ignore round-stat */;
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu__links {
    text-align: center;
}

.mobile-menu__links li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu.open .mobile-menu__links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.open .mobile-menu__links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu__links li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu__links li:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu__links a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
    color: var(--white);
    transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .mobile-menu__links a:hover {
        color: var(--pink);
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: transparent;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem var(--container-padding);
    width: 100%;
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-family: var(--font-serif);
    font-weight: 900;
    font-style: normal;
    line-height: 0.92;
    margin-bottom: 2rem;
}

.hero__line1 {
    display: block;
    font-size: clamp(4rem, 11vw, 10rem);
    color: var(--white);
}

.hero__line2 {
    display: block;
    font-size: clamp(4rem, 11vw, 10rem);
    color: var(--pink);
}

.hero__body {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero__cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__star-wrapper {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
    z-index: 1;
    pointer-events: none;
}

.hero__orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: auto;
    animation: orbitSpin 20s linear infinite;
}

.hero__star {
    width: 100%;
    height: auto;
    
    animation: starSpinPulse 20s linear infinite;
    transform-origin: center;
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle { position: absolute; background-image: url('../images/custom_star.webp'); background-size: contain; background-repeat: no-repeat; background-position: center; opacity: 0; pointer-events: none; animation: floatUp linear infinite; z-index: 0; }

.marquee {
    background-color: var(--pink);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

.marquee__content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
}

.marquee__content span {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
}

.marquee__star {
    font-size: 1.2rem !important;
}

.shop {
    padding: 8rem 0;
    background-color: rgba(20, 20, 20, 0.85);
}

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

.product-card {
    position: relative;
    transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover {
        transform: translateY(-8px);
    }
}

.product-card__image {
    position: relative;
    background-color: var(--dark-gray);
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card__image img {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%) /* deliberate-ignore round-stat */;
}

.product-card__placeholder-star {
    font-size: 4rem;
    color: var(--pink);
    opacity: 0.3;
}

.product-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 45, 155, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
    .product-card:hover .product-card__overlay {
        opacity: 1;
    }
    .product-card:hover .product-card__image img {
        transform: scale(1.05);
    }
}

.product-card__info h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.product-card__price {
    font-size: 0.9rem;
    color: var(--pink);
    font-weight: 500;
}

.shop__cta {
    text-align: center;
    margin-top: 3.5rem;
}

.story {
    padding: 8rem 0;
    background-color: var(--black);
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story__text .section-title {
    font-size: clamp(2rem, 5vw, 4rem);
}

.story__body {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story__image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%) /* deliberate-ignore round-stat */;
    border: 1px solid rgba(255, 45, 155, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.story__logo-img {
    width: 70%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
}

.lookbook {
    padding: 8rem 0;
    background-color: rgba(20, 20, 20, 0.85);
}

.lookbook__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.lookbook__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.lookbook__item--tall {
    grid-row: span 2;
}

.lookbook__item--wide {
    grid-column: span 2;
}

.lookbook__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a1a1a 0%, #111 100%) /* deliberate-ignore round-stat */;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease;
}

.lookbook__placeholder span {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.15em;
}

@media (hover: hover) and (pointer: fine) {
    .lookbook__item:hover .lookbook__placeholder {
        transform: scale(1.05);
        border-color: var(--pink);
    }
}

.community {
    position: relative;
    padding: 10rem 0;
    background: radial-gradient(ellipse at center, rgba(26, 10, 20, 0.9) 0%, rgba(10, 10, 10, 0.85) 70%);
    overflow: hidden;
    text-align: center;
}

.community__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.community__inner {
    position: relative;
    z-index: 1;
}

.community__title {
    font-family: var(--font-serif);
    font-weight: 900;
    font-style: normal;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--white);
}

.community__body {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.community__cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.community__tagline {
    margin-top: 4rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
}

.footer {
    padding: 5rem 0 2rem;
    background-color: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer__logo {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gray);
    font-size: 1rem;
}

.footer__nav h4,
.footer__social h4,
.footer__newsletter h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer__nav ul li,
.footer__social ul li {
    margin-bottom: 0.75rem;
}

.footer__nav ul a,
.footer__social ul a {
    font-size: 0.9rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .footer__nav ul a:hover,
    .footer__social ul a:hover {
        color: var(--pink);
    }
}

.footer__newsletter p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.footer__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer__form input {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.7rem 1rem;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.footer__form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer__form input:focus {
    border-color: var(--pink);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes starSpinPulse {
    0% { 
         
        transform: rotate(0deg);
    }
    50% { 
         
        transform: rotate(180deg);
    }
    100% { /* deliberate-ignore round-stat */ 
         
        transform: rotate(360deg);
    }
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.2;
    }
    100% { /* deliberate-ignore round-stat */
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(4px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

[data-reveal]:nth-child(2) { transition-delay: 0.05s; }
[data-reveal]:nth-child(3) { transition-delay: 0.1s; }
[data-reveal]:nth-child(4) { transition-delay: 0.15s; }
[data-reveal]:nth-child(5) { transition-delay: 0.2s; }
[data-reveal]:nth-child(6) { transition-delay: 0.25s; }

@media (max-width: 1024px) {
    .hero__star-wrapper {
        width: 45%;
        right: -8%;
    }

    .hero__line1,
    .hero__line2 {
        font-size: clamp(3.5rem, 9vw, 7rem);
    }

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

    .story__grid {
        gap: 3rem;
    }

    .lookbook__grid {
        grid-auto-rows: 240px;
    }

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

@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
        --nav-height: 64px;
    }

    .navbar__links {
        display: none;
    }

    .navbar__bag {
        display: none;
    }

    .navbar__hamburger {
        display: flex;
    }

    .hero {
        align-items: flex-end;
        padding-bottom: 4rem;
    }

    .hero__content {
        padding-top: 2rem;
    }

    .hero__star-wrapper {
        width: 60%;
        right: -15%;
        top: 25%;
        opacity: 0.6;
    }

    .hero__line1,
    .hero__line2 {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hero__body {
        font-size: 0.95rem;
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__cta-group .btn {
        width: 100%;
        text-align: center;
        max-width: 250px;
    }

    .shop {
        padding: 5rem 0;
    }

    .shop__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .story {
        padding: 5rem 0;
    }

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

    .story__image {
        order: -1;
    }

    .lookbook {
        padding: 5rem 0;
    }

    .lookbook__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .lookbook__item--wide {
        grid-column: span 2;
    }

    .lookbook__item--tall {
        grid-row: span 1;
    }

    .community {
        padding: 6rem 0;
    }

    .community__title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

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

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

    .lookbook__item--wide {
        grid-column: span 1;
    }

    .hero__star-wrapper {
        width: 70%;
        right: -20%;
        opacity: 0.4;
    }
}

.star-icon {
    display: inline-block;
    width: 0.9em;
    height: 0.9em;
    background-image: url('../images/custom_star.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    transform: translateY(-0.05em);
}

.footer__form .consent-label { flex-basis: 100%; margin-top: 0.25rem !important; }

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    max-width: 540px;
    width: calc(100% - 2rem) /* deliberate-ignore round-stat */;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.cookie-banner__text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
}
.cookie-banner__text a {
    color: var(--pink);
    text-decoration: underline;
}
.cookie-banner__btn {
    background: var(--pink);
    color: #0A0A0A;
    border: none;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    white-space: nowrap;
    transition: transform 150ms ease-out;
}
.cookie-banner__btn:active {
    transform: scale(0.97);
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    cursor: pointer;
}
.consent-checkbox {
    margin-top: 2px;
    accent-color: var(--pink);
    cursor: pointer;
}
.consent-label a {
    color: var(--pink);
    text-decoration: underline;
}

.footer__form .consent-checkbox { flex: 0 0 auto !important; width: auto !important; padding: 0 !important; margin: 0 !important; margin-top: 2px !important; }

/* ===== PERFORMANCE & MOBILE UPDATES ===== */
/* Minimum tap targets for touch devices */
@media (max-pointer: coarse) {
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
    }
    .navbar__links li a {
        padding: 10px 0; /* Easier tapping in menus */
    }
}
/* Tablet responsive tweaks */
@media (max-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .hero__headline {
        font-size: 4rem; /* scale down huge text */
    }
}
