:root {
    --ink: #19151f;
    --muted: #746b7e;
    --paper: #fff8f2;
    --white: #ffffff;
    --rose: #d83f6d;
    --teal: #0e9c93;
    --sun: #d8a642;
    --violet: #5e45b8;
    --plum: #2d1b3d;
    --cream: #fff3df;
    --line: rgba(39, 35, 49, 0.12);
    --shadow: 0 24px 70px rgba(33, 19, 48, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 2%, rgba(216, 166, 66, 0.18), transparent 28%),
        linear-gradient(180deg, #fffaf5 0%, #fff4eb 42%, #fff8f2 100%);
    line-height: 1.6;
}

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

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

.has-custom-cursor,
.has-custom-cursor * {
    cursor: none;
}

.cursor-ring,
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

.cursor-ring {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(216, 166, 66, 0.75);
    border-radius: 50%;
    background: rgba(255, 226, 161, 0.08);
    box-shadow: 0 0 26px rgba(216, 166, 66, 0.24);
    backdrop-filter: blur(2px);
    transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease, background 0.22s ease, opacity 0.18s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 18px rgba(216, 63, 109, 0.48);
    transition: opacity 0.18s ease;
}

.cursor-ring.is-visible,
.cursor-dot.is-visible {
    opacity: 1;
}

.cursor-ring.is-hovering {
    width: 64px;
    height: 64px;
    border-color: rgba(216, 63, 109, 0.78);
    background: rgba(216, 63, 109, 0.08);
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: grid;
    place-items: center;
    color: var(--white);
    background:
        radial-gradient(circle at 50% 42%, rgba(216, 166, 66, 0.22), transparent 24%),
        radial-gradient(circle at 30% 28%, rgba(216, 63, 109, 0.26), transparent 22%),
        linear-gradient(135deg, #141019, #2d1b3d 55%, #160f1c);
    overflow: hidden;
}

.site-loader::before,
.site-loader::after {
    content: "";
    position: absolute;
    width: 58vmin;
    height: 58vmin;
    border: 1px solid rgba(255, 226, 161, 0.12);
    border-radius: 50%;
    animation: loader-ring 5s linear infinite;
}

.site-loader::after {
    width: 78vmin;
    height: 78vmin;
    border-color: rgba(216, 63, 109, 0.12);
    animation-duration: 7s;
    animation-direction: reverse;
}

.site-loader.is-done {
    opacity: 0;
    transition: opacity 0.7s ease;
}

.loader-stage {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 18px;
    width: min(420px, calc(100vw - 36px));
    padding: 42px 24px;
}

.loader-logo {
    position: relative;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    border: 1px solid rgba(255, 226, 161, 0.45);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 244, 203, 0.98), rgba(216, 166, 66, 0.92)),
        linear-gradient(135deg, #fff4cb, #e5b74e);
    box-shadow: 0 24px 80px rgba(216, 166, 66, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: loader-logo-pop 1.7s ease-in-out infinite;
}

.loader-logo span {
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 800;
}

.loader-stage p {
    width: 100%;
    margin: 4px 0 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.4rem, 8vw, 4.7rem);
    line-height: 0.92;
    text-align: center;
}

.loader-words {
    position: relative;
    display: grid;
    min-height: 26px;
    width: 180px;
    overflow: hidden;
    text-align: center;
}

.loader-words span {
    grid-area: 1 / 1;
    color: #ffe2a1;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(18px);
    animation: loader-word 3.2s ease-in-out infinite;
}

.loader-words span:nth-child(2) {
    animation-delay: 0.8s;
}

.loader-words span:nth-child(3) {
    animation-delay: 1.6s;
}

.loader-words span:nth-child(4) {
    animation-delay: 2.4s;
}

.loader-line {
    width: min(260px, 64vw);
    height: 2px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.loader-line span {
    display: block;
    width: 48%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, #ffe2a1, var(--rose));
    animation: loader-line 1.45s ease-in-out infinite;
}

.loader-orbit {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 245px;
    height: 245px;
    border-radius: 50%;
    animation: loader-orbit 6s linear infinite;
}

.loader-orbit span {
    position: absolute;
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 22px rgba(216, 63, 109, 0.65);
}

.loader-orbit span:nth-child(1) {
    top: 0;
    left: 50%;
}

.loader-orbit span:nth-child(2) {
    top: 50%;
    right: 0;
    background: #ffe2a1;
}

.loader-orbit span:nth-child(3) {
    bottom: 0;
    left: 50%;
    background: var(--teal);
}

.loader-orbit span:nth-child(4) {
    top: 50%;
    left: 0;
    background: #ffffff;
}

@keyframes loader-ring {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1.04);
    }
}

@keyframes loader-logo-pop {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

@keyframes loader-word {
    0%,
    18% {
        opacity: 0;
        transform: translateY(18px);
    }

    28%,
    48% {
        opacity: 1;
        transform: translateY(0);
    }

    62%,
    100% {
        opacity: 0;
        transform: translateY(-18px);
    }
}

@keyframes loader-line {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(230%);
    }
}

@keyframes loader-orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-loader::before,
    .site-loader::after,
    .loader-logo,
    .loader-words span,
    .loader-line span,
    .loader-orbit {
        animation: none;
    }

    .loader-words span:first-child {
        opacity: 1;
        transform: none;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 64px);
    background: rgba(255, 248, 242, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: linear-gradient(135deg, #fff4cb, #e5b74e 48%, #fff2bb);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 24px rgba(216, 166, 66, 0.28);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    position: relative;
    overflow: hidden;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
}

.site-nav a span {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.28s ease;
}

.site-nav a::after {
    content: attr(data-label);
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(130%);
    color: var(--rose);
    transition: transform 0.28s ease;
}

.site-nav a:hover span,
.site-nav a.is-pressing span {
    transform: translateY(-150%);
}

.site-nav a:hover::after,
.site-nav a.is-pressing::after {
    transform: translateY(-50%);
}

.site-nav a.active,
.site-nav a:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 20px rgba(39, 35, 49, 0.08);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    position: relative;
    z-index: 60;
    padding: 0;
}

.nav-toggle span {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.28s ease, top 0.28s ease;
}

.nav-toggle span:first-child {
    top: 16px;
}

.nav-toggle span:last-child {
    top: 24px;
}

.nav-toggle.open span:first-child {
    top: 20px;
    transform: rotate(45deg);
}

.nav-toggle.open span:last-child {
    top: 20px;
    transform: rotate(-45deg);
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9997;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 50% 45%, rgba(216, 166, 66, 0.28), transparent 28%),
        linear-gradient(135deg, var(--ink), var(--plum));
    transform: translateY(100%);
    transition: transform 0.48s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.28s ease;
}

.page-transition.is-active {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    min-height: calc(100vh - 75px);
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    align-items: center;
    gap: clamp(24px, 5vw, 72px);
    padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 64px) 24px;
}

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(3.4rem, 8vw, 7.6rem);
    line-height: 0.92;
}

h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.04;
}

h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.25;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.section-head p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-copy p:not(.eyebrow) {
    font-size: 1.2rem;
}

.hero-actions,
.item-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn,
.item-foot a,
.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.item-foot a:hover,
.filter-btn:hover {
    transform: translateY(-2px);
}

.btn.primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--ink), var(--plum));
    box-shadow: 0 14px 30px rgba(25, 21, 31, 0.18);
}

.btn.secondary,
.filter-btn {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
}

.hero-visual {
    position: relative;
    min-height: 520px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.hero-visual > img {
    transform: scale(1.02);
    filter: saturate(1.08) contrast(1.04);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(25, 21, 31, 0.04), rgba(25, 21, 31, 0.68)),
        linear-gradient(90deg, rgba(25, 21, 31, 0.38), transparent 46%);
}

.hero-visual::after,
.decorations-hero::after {
    content: "";
    position: absolute;
    inset: auto 28px 28px auto;
    width: 150px;
    height: 150px;
    background: repeating-linear-gradient(45deg, var(--sun), var(--sun) 10px, var(--rose) 10px, var(--rose) 20px);
    border-radius: 50%;
    mix-blend-mode: screen;
    z-index: 2;
}

.hero-gold-frame {
    position: absolute;
    inset: 18px;
    z-index: 2;
    border: 1px solid rgba(255, 226, 161, 0.54);
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    pointer-events: none;
}

.hero-ribbon {
    position: absolute;
    z-index: 3;
    width: 260px;
    height: 84px;
    border: 2px solid rgba(255, 226, 161, 0.74);
    border-left: 0;
    border-bottom: 0;
    border-radius: 50%;
    opacity: 0.9;
    pointer-events: none;
}

.ribbon-one {
    top: 58px;
    right: -38px;
    transform: rotate(-18deg);
    animation: ribbon-drift 6s ease-in-out infinite;
}

.ribbon-two {
    left: -76px;
    bottom: 150px;
    width: 330px;
    height: 112px;
    border-color: rgba(216, 63, 109, 0.62);
    transform: rotate(20deg);
    animation: ribbon-drift 7.2s ease-in-out infinite reverse;
}

.balloon-cluster {
    position: absolute;
    top: 34px;
    left: 30px;
    z-index: 4;
    width: 176px;
    height: 160px;
    animation: premium-float 5.8s ease-in-out infinite;
}

.balloon {
    position: absolute;
    display: block;
    border-radius: 50% 50% 46% 54%;
    box-shadow: inset -12px -18px 28px rgba(25, 21, 31, 0.18), 0 18px 32px rgba(25, 21, 31, 0.2);
}

.balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -38px;
    width: 1px;
    height: 46px;
    background: rgba(255, 255, 255, 0.64);
    transform: translateX(-50%);
}

.balloon-rose {
    width: 72px;
    height: 88px;
    left: 0;
    top: 38px;
    background: linear-gradient(145deg, #ff8fa8, var(--rose));
}

.balloon-gold {
    width: 82px;
    height: 104px;
    left: 48px;
    top: 0;
    background: linear-gradient(145deg, #fff0b7, #d8a642);
}

.balloon-cream {
    width: 68px;
    height: 84px;
    right: 2px;
    top: 48px;
    background: linear-gradient(145deg, #ffffff, #ffe7c8);
}

.hero-product-tag {
    position: absolute;
    z-index: 5;
    width: min(220px, calc(100% - 44px));
    padding: 14px 16px;
    color: var(--white);
    background: rgba(25, 21, 31, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(25, 21, 31, 0.22);
    backdrop-filter: blur(16px);
    animation: tag-float 5.2s ease-in-out infinite;
}

.hero-product-tag span {
    display: block;
    color: #ffe2a1;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-product-tag strong {
    display: block;
    margin-top: 3px;
    font-size: 1rem;
    line-height: 1.2;
}

.tag-top {
    top: 32px;
    right: 32px;
}

.tag-side {
    right: 30px;
    bottom: 140px;
    animation-delay: -2.4s;
}

.hero-sparkle {
    position: absolute;
    z-index: 4;
    width: 11px;
    height: 11px;
    background: #ffe2a1;
    clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
    filter: drop-shadow(0 0 12px rgba(255, 226, 161, 0.75));
    animation: sparkle-pulse 2.4s ease-in-out infinite;
}

.sparkle-one {
    top: 34%;
    left: 45%;
}

.sparkle-two {
    top: 20%;
    right: 28%;
    animation-delay: -0.7s;
}

.sparkle-three {
    right: 16%;
    bottom: 34%;
    animation-delay: -1.3s;
}

.hero-panel {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 3;
    padding: 18px;
    color: var(--white);
    background: rgba(25, 21, 31, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(14px);
}

@keyframes premium-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-2deg);
    }

    50% {
        transform: translate3d(8px, -12px, 0) rotate(2deg);
    }
}

@keyframes tag-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes ribbon-drift {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 10px -8px;
    }
}

@keyframes sparkle-pulse {
    0%,
    100% {
        opacity: 0.28;
        transform: scale(0.72) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.18) rotate(18deg);
    }
}

.hero-panel span,
.collection-card p {
    color: #f4cc70;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-panel strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
}

.hero-panel p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.78);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(216, 166, 66, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    font-size: 0.85rem;
    font-weight: 800;
}

.shelf-strip {
    position: relative;
    overflow: hidden;
    padding: 18px 0 30px;
    border-top: 1px solid rgba(216, 166, 66, 0.16);
    border-bottom: 1px solid rgba(216, 166, 66, 0.16);
    background: linear-gradient(90deg, rgba(255, 243, 223, 0.4), rgba(255, 255, 255, 0.72), rgba(255, 243, 223, 0.4));
}

.shelf-strip::before,
.shelf-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: clamp(60px, 10vw, 150px);
    pointer-events: none;
}

.shelf-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--paper), transparent);
}

.shelf-strip::after {
    right: 0;
    background: linear-gradient(270deg, var(--paper), transparent);
}

.shelf-track {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 44px);
    width: max-content;
    animation: shelf-marquee 34s linear infinite;
}

.shelf-strip:hover .shelf-track {
    animation-play-state: paused;
}

.shelf-track span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 22px);
    padding: 0;
    color: var(--ink);
    font-size: clamp(1.05rem, 1.5vw, 1.45rem);
    font-weight: 900;
    white-space: nowrap;
}

.shelf-track span::after {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--sun));
    box-shadow: 0 0 16px rgba(216, 166, 66, 0.4);
}

@keyframes shelf-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.section,
.page-hero {
    padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.page-hero {
    min-height: 50vh;
    display: grid;
    align-content: center;
    position: relative;
    color: var(--white);
    background: linear-gradient(rgba(22, 20, 30, 0.52), rgba(22, 20, 30, 0.52)), url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.page-hero.compact {
    min-height: 42vh;
}

.page-hero p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.88);
}

.decorations-hero {
    background-image: linear-gradient(rgba(22, 20, 30, 0.46), rgba(22, 20, 30, 0.46)), url("https://images.unsplash.com/photo-1511795409834-ef04bbd61622?auto=format&fit=crop&w=1500&q=80");
}

.section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 28px;
}

.tint {
    background: linear-gradient(180deg, #fff1e6, #fff8f2);
}

.category-grid,
.items-grid,
.process-grid,
.gallery-grid,
.testimonial-track {
    display: grid;
    gap: 18px;
}

.category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.process-card,
.testimonial,
.contact-card,
.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(39, 35, 49, 0.08);
}

.category-card {
    min-height: 220px;
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -38px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(216, 63, 109, 0.16), rgba(216, 166, 66, 0.28));
}

.category-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--rose);
    font-size: 1.18rem;
    font-weight: 900;
}

.category-card p,
.item-body p,
.process-card p,
.testimonial span,
.contact-card p {
    color: var(--muted);
}

.items-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-grid {
    margin-top: 24px;
}

.item-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(39, 35, 49, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(39, 35, 49, 0.16);
}

.item-media {
    position: relative;
    height: 250px;
    background: var(--cream);
}

.item-media span {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    color: var(--white);
    background: rgba(25, 21, 31, 0.86);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 900;
}

.item-body {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.item-type {
    margin: 0;
    color: var(--rose);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.item-foot {
    justify-content: space-between;
    padding-top: 8px;
}

.item-foot a {
    min-height: 38px;
    padding: 0 13px;
    color: var(--white);
    background: var(--rose);
}

.dark-section {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(25, 21, 31, 0.95), rgba(45, 27, 61, 0.94)),
        url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.dark-section .section-head p:not(.eyebrow),
.dark-section .collection-card span {
    color: rgba(255, 255, 255, 0.74);
}

.collection-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.collection-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 8px;
    background: #1f1827;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.collection-card img {
    position: absolute;
    inset: 0;
    opacity: 0.72;
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 21, 31, 0.05), rgba(25, 21, 31, 0.84));
}

.collection-card div {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1;
}

.collection-card h3 {
    margin: 6px 0 8px;
    color: var(--white);
    font-size: 1.55rem;
}

.catalog-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
    gap: 24px;
    align-items: end;
    margin-bottom: 26px;
}

.catalog-intro p:last-child {
    margin: 0;
    color: var(--muted);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
    gap: 34px;
    align-items: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stats div {
    padding: 20px;
    color: var(--white);
    background: linear-gradient(135deg, var(--ink), var(--plum));
    border-radius: 8px;
}

.stats strong {
    display: block;
    color: var(--sun);
    font-size: 2rem;
    line-height: 1;
}

.stats span {
    display: block;
    margin-top: 8px;
    font-weight: 700;
}

.testimonials {
    background: linear-gradient(180deg, #eef9f7, #fff8f2);
}

.testimonial-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial {
    padding: 22px;
}

.stars {
    color: var(--sun);
    font-size: 1.1rem;
}

.filter-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--rose), var(--violet));
}

.process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card {
    padding: 24px;
}

.process-card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    color: var(--white);
    background: var(--teal);
    border-radius: 50%;
    font-weight: 900;
}

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

.gallery-card {
    position: relative;
    min-height: 330px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.gallery-card figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 8px 12px;
    color: var(--white);
    background: rgba(39, 35, 49, 0.72);
    border-radius: 8px;
    font-weight: 800;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 24px;
    align-items: start;
}

.contact-form,
.contact-card {
    padding: 24px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: #fffdfb;
    font: inherit;
}

.mini-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.mini-list span {
    padding: 11px 12px;
    color: var(--ink);
    background: #fff1e9;
    border-radius: 8px;
    font-weight: 800;
}

.site-footer {
    position: relative;
    display: grid;
    gap: 34px;
    padding: clamp(46px, 7vw, 84px) clamp(18px, 5vw, 64px) 28px;
    color: var(--white);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(25, 21, 31, 0.96), rgba(45, 27, 61, 0.95)),
        url("https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?auto=format&fit=crop&w=1500&q=80") center/cover;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(216, 166, 66, 0.14), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(216, 63, 109, 0.28), transparent 22%);
    pointer-events: none;
}

.site-footer > * {
    position: relative;
    z-index: 1;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    backdrop-filter: blur(16px);
}

.footer-cta h2 {
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 4.2rem);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(130px, 0.5fr)) minmax(230px, 0.72fr);
    gap: clamp(20px, 3.5vw, 42px);
    padding-top: 10px;
}

.footer-brand .brand-mark {
    margin-bottom: 18px;
}

.footer-brand h2 {
    font-size: 2rem;
}

.footer-brand p,
.footer-contact p {
    max-width: 410px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.footer-pills span {
    padding: 7px 10px;
    color: #ffe2a1;
    border: 1px solid rgba(216, 166, 66, 0.38);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-column h3 {
    margin-bottom: 6px;
    color: #ffe2a1;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact {
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.footer-contact p {
    display: grid;
    gap: 2px;
    margin: 0;
    font-size: 0.93rem;
    line-height: 1.35;
}

.footer-contact p span {
    color: #ffe2a1;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-whatsapp {
    display: inline-flex;
    justify-content: center;
    margin-top: 8px;
    padding: 11px 13px;
    color: var(--ink) !important;
    background: #ffe2a1;
    border-radius: 8px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.developer-credit {
    margin: 0;
    text-align: right;
    color: rgba(255, 226, 161, 0.72);
    font-size: clamp(0.9rem, 1.15vw, 1.05rem);
    font-weight: 900;
}

@media (max-width: 1080px) {
    .items-grid,
    .testimonial-track,
    .category-grid,
    .collection-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero,
    .split,
    .contact-layout,
    .catalog-intro,
    .footer-cta,
    .footer-main {
        grid-template-columns: 1fr;
    }

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

    .developer-credit {
        text-align: left;
    }

    .hero-visual {
        min-height: 420px;
    }

    .balloon-cluster {
        transform-origin: top left;
        scale: 0.82;
    }

    .tag-side {
        display: none;
    }
}

@media (max-width: 900px) {
    body.nav-open {
        overflow: hidden;
    }

    .site-header {
        align-items: center;
        z-index: 1000;
        backdrop-filter: none;
    }

    .nav-toggle {
        display: block;
        z-index: 1100;
    }

    .site-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: clamp(10px, 2vh, 18px);
        padding: 96px clamp(22px, 8vw, 42px) 40px;
        background:
            radial-gradient(circle at 18% 18%, rgba(216, 166, 66, 0.22), transparent 24%),
            radial-gradient(circle at 86% 70%, rgba(216, 63, 109, 0.2), transparent 24%),
            linear-gradient(135deg, rgba(25, 21, 31, 0.98), rgba(45, 27, 61, 0.98));
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-100%);
        transition: transform 0.62s cubic-bezier(0.77, 0, 0.18, 1), opacity 0.34s ease, visibility 0.34s ease;
    }

    .site-nav::before {
        content: "Birthday House";
        position: absolute;
        left: clamp(22px, 8vw, 42px);
        top: 34px;
        color: rgba(255, 226, 161, 0.72);
        font-size: 0.78rem;
        font-weight: 900;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .site-nav::after {
        content: "Decor for birthdays, mehndi, haldi, weddings and every celebration.";
        position: absolute;
        left: clamp(22px, 8vw, 42px);
        right: clamp(22px, 8vw, 42px);
        bottom: 34px;
        color: rgba(255, 255, 255, 0.58);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        width: 100%;
        padding: 4px 0;
        color: rgba(255, 255, 255, 0.8);
        background: transparent;
        border-radius: 0;
        font-family: "Playfair Display", Georgia, serif;
        font-size: clamp(3rem, 14vw, 5.8rem);
        font-weight: 800;
        line-height: 0.98;
        opacity: 0;
        transform: translateY(30px);
        transition: color 0.28s ease, transform 0.28s ease, opacity 0.28s ease;
    }

    .site-nav.open a {
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav a:nth-child(1) {
        transition-delay: 0.08s;
    }

    .site-nav a:nth-child(2) {
        transition-delay: 0.13s;
    }

    .site-nav a:nth-child(3) {
        transition-delay: 0.18s;
    }

    .site-nav a:nth-child(4) {
        transition-delay: 0.23s;
    }

    .site-nav a:nth-child(5) {
        transition-delay: 0.28s;
    }

    .site-nav a.active,
    .site-nav a:hover,
    .site-nav a.is-pressing {
        color: #ffe2a1;
        background: transparent;
        box-shadow: none;
        transform: translateX(10px);
    }

    .site-nav a::after {
        left: 0;
        color: var(--rose);
        text-shadow: 0 0 28px rgba(216, 63, 109, 0.36);
    }

    .nav-toggle.open {
        border-color: rgba(255, 226, 161, 0.34);
        background: rgba(255, 255, 255, 0.12);
    }

    .nav-toggle.open span {
        background: #ffe2a1;
    }

    .hero {
        min-height: auto;
        padding-top: 42px;
    }

    h1 {
        font-size: clamp(3rem, 16vw, 4.9rem);
    }

    .hero-visual {
        min-height: 330px;
    }

    .hero-gold-frame {
        inset: 12px;
    }

    .balloon-cluster {
        top: 18px;
        left: 16px;
        scale: 0.62;
    }

    .hero-product-tag {
        padding: 10px 12px;
    }

    .tag-top {
        top: 16px;
        right: 16px;
        width: 150px;
    }

    .tag-top strong {
        font-size: 0.86rem;
    }

    .hero-ribbon,
    .hero-sparkle {
        display: none;
    }

    .category-grid,
    .items-grid,
    .process-grid,
    .gallery-grid,
    .testimonial-track,
    .stats,
    .collection-row {
        grid-template-columns: 1fr;
    }

    .footer-cta {
        padding: 22px;
    }
}
