:root {
    --primary-black: #0a0a0a;
    --primary-white: #faf8f5;
    --accent-gold: #d4af37;
    --accent-rose: #f5a9a3;
    --accent-champagne: #f3e5d8;
    --dark-espresso: #1a1410;
    --soft-beige: #e8ddd5;
    --surface-cream: #f8f1ea;
    --text-primary: #1a1410;
    --text-secondary: #6b6761;
    --text-light: rgba(250, 248, 245, 0.88);
    --border-soft: rgba(26, 20, 16, 0.08);
    --border-gold: rgba(212, 175, 55, 0.26);
    --shadow-soft: 0 18px 45px rgba(26, 20, 16, 0.08);
    --shadow-luxury: 0 30px 80px rgba(17, 11, 7, 0.14);
    --menu-backdrop: rgba(10, 10, 10, 0.76);
    --page-padding: clamp(20px, 5vw, 40px);
    --section-space: clamp(72px, 11vw, 120px);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --transition-fast: 220ms ease;
    --transition-smooth: 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.09), transparent 30%),
        linear-gradient(180deg, #fdfbf8 0%, var(--primary-white) 28%, #fff8f2 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open,
body.modal-open,
body.lightbox-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

button,
input {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

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

::selection {
    background: rgba(212, 175, 55, 0.24);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1200;
    transform: translateY(-140%);
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--accent-gold);
    color: var(--primary-black);
    font-size: 0.92rem;
    font-weight: 600;
}

.skip-link:focus {
    transform: translateY(0);
}

.section-container {
    width: min(100%, 1380px);
    margin: 0 auto;
    padding-inline: var(--page-padding);
    position: relative;
    z-index: 1;
}

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

.section-header {
    margin-bottom: clamp(32px, 5vw, 56px);
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: var(--primary-black);
    margin-bottom: 14px;
}

.section-subtitle,
.section-description {
    max-width: 640px;
    margin-inline: auto;
    color: var(--text-secondary);
    font-size: clamp(1rem, 2.4vw, 1.08rem);
    line-height: 1.8;
}

.section-description {
    margin-inline: 0;
}

.btn-primary,
.btn-secondary,
.btn-book,
.nav-menu-cta,
.product-action-btn {
    min-height: 48px;
}

.btn-primary,
.btn-secondary,
.btn-book,
.nav-menu-cta {
    border-radius: 999px;
    padding: 0.95rem 1.45rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, var(--dark-espresso), #2a2019);
    color: var(--primary-white);
    box-shadow: 0 14px 32px rgba(26, 20, 16, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(26, 20, 16, 0.25);
}

.btn-secondary {
    background: rgba(250, 248, 245, 0.55);
    border: 1px solid rgba(26, 20, 16, 0.18);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.92);
}

.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    height: 3px;
    width: 0;
    z-index: 1300;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-rose));
}

.site-sparkles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.95;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 24%),
        var(--primary-black);
    transition: opacity 500ms ease, visibility 500ms ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-ring {
    width: 64px;
    height: 64px;
    margin-inline: auto;
    margin-bottom: 24px;
    position: relative;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-top-color: var(--accent-gold);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.14),
        0 0 28px rgba(212, 175, 55, 0.3),
        0 0 56px rgba(212, 175, 55, 0.22);
    animation: spin 1.25s linear infinite, preloader-pulse 2.2s ease-in-out infinite;
}

.preloader-ring::before,
.preloader-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.preloader-ring::before {
    inset: -10px;
    border: 1px solid rgba(212, 175, 55, 0.32);
    opacity: 1;
    animation: halo-pulse 2.1s ease-in-out infinite;
}

.preloader-ring::after {
    top: 4px;
    right: 6px;
    width: 9px;
    height: 9px;
    background: radial-gradient(circle, rgba(255, 247, 220, 1) 0%, rgba(212, 175, 55, 0.95) 42%, rgba(212, 175, 55, 0) 72%);
    box-shadow:
        0 0 14px rgba(255, 244, 204, 1),
        0 0 24px rgba(212, 175, 55, 0.85),
        0 0 34px rgba(212, 175, 55, 0.45);
    animation: orbit-spark 1.25s linear infinite;
}

.preloader-text {
    color: var(--accent-gold);
    font-family: Georgia, serif;
    font-size: 1.55rem;
    letter-spacing: 0.2em;
}

.preloader-line {
    width: 56px;
    height: 1px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.floating-whatsapp,
.back-to-top {
    position: fixed;
    right: 18px;
    z-index: 900;
    display: grid;
    place-items: center;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
}

.floating-whatsapp {
    bottom: 18px;
    width: 56px;
    height: 56px;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #169f4e);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
}

.back-to-top {
    bottom: 88px;
    width: 48px;
    height: 48px;
    opacity: 0;
    visibility: hidden;
    color: var(--accent-gold);
    background: rgba(10, 10, 10, 0.92);
    transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1100;
    padding: 14px 0;
    transition: padding var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 248, 243, 0.58);
    backdrop-filter: blur(18px) saturate(145%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    box-shadow: 0 10px 30px rgba(26, 20, 16, 0.05);
    pointer-events: none;
}

.navbar.scrolled::before,
.navbar.mobile-open::before {
    background: rgba(255, 250, 246, 0.72);
    border-bottom-color: rgba(212, 175, 55, 0.22);
}

.navbar-container {
    width: min(100%, 1380px);
    margin: 0 auto;
    padding-inline: var(--page-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.navbar-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex-shrink: 0;
}

.logo-text {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.18em;
}

.logo-accent {
    color: var(--accent-gold);
    font-size: 0.74rem;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-book {
    display: none;
    background: linear-gradient(135deg, var(--accent-gold), #e3c565);
    color: var(--primary-black);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.24);
}

.navbar-toggle {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.24);
    backdrop-filter: blur(14px);
}

.navbar-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-black);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.navbar.mobile-open .navbar-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.mobile-open .navbar-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.mobile-open .navbar-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar-menu {
    position: fixed;
    inset: 0;
    padding: 92px var(--page-padding) 28px;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.86)),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 28%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.navbar.mobile-open .navbar-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.navbar-menu-panel {
    min-height: calc(100dvh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.navbar-menu-label {
    color: rgba(250, 248, 245, 0.52);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-link {
    color: var(--primary-white);
    font-family: Georgia, serif;
    font-size: clamp(2rem, 7vw, 3rem);
    line-height: 1.05;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-menu-cta {
    margin-top: 10px;
    width: 100%;
    max-width: 320px;
    background: linear-gradient(135deg, var(--accent-gold), #e8cb71);
    color: var(--primary-black);
}

.hero {
    position: relative;
    padding: 26px 0 42px;
    min-height: min(100dvh, 980px);
    display: flex;
    align-items: center;
    overflow: clip;
}

.hero-background,
.sparkles-container {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 28%, rgba(212, 175, 55, 0.18), transparent 22%),
        radial-gradient(circle at 0% 80%, rgba(245, 169, 163, 0.14), transparent 30%);
}

.sparkles-container {
    pointer-events: none;
}

.sparkles-secondary {
    z-index: 0;
}

.sparkle {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 249, 228, 1) 0%, rgba(212, 175, 55, 0.92) 45%, rgba(212, 175, 55, 0.08) 100%);
    box-shadow:
        0 0 16px rgba(212, 175, 55, 0.75),
        0 0 30px rgba(255, 243, 201, 0.46),
        0 0 46px rgba(212, 175, 55, 0.28);
    animation: sparkle-float 3.6s ease-in-out infinite, sparkle-twinkle 1.8s ease-in-out infinite;
}

.sparkle::before,
.sparkle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    background: rgba(255, 248, 223, 0.7);
    pointer-events: none;
}

.sparkle::before {
    width: 2px;
    height: 18px;
    opacity: 0.88;
}

.sparkle::after {
    width: 18px;
    height: 2px;
    opacity: 0.88;
}

.hero-content {
    display: grid;
    gap: 28px;
    align-items: center;
}

.hero-text {
    display: grid;
    gap: 18px;
}

.hero-label {
    color: var(--accent-gold);
    font-size: 0.84rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero-headline {
    max-width: 12ch;
    font-size: clamp(2.7rem, 9vw, 5.2rem);
    line-height: 0.98;
}

.hero-description {
    max-width: 34rem;
    color: var(--text-secondary);
    font-size: clamp(1.02rem, 2.8vw, 1.14rem);
}

.hero-buttons {
    display: grid;
    gap: 12px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    width: 100%;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(212, 175, 55, 0.14);
    color: var(--text-secondary);
    backdrop-filter: blur(12px);
    font-size: 0.88rem;
}

.trust-icon {
    color: var(--accent-gold);
}

.hero-image-container {
    position: relative;
    min-height: 420px;
}

.hero-image-frame {
    position: relative;
    height: 100%;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--surface-cream);
    border: 1px solid rgba(212, 175, 55, 0.24);
    box-shadow: var(--shadow-luxury);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.hero-image-glow {
    position: absolute;
    inset: auto auto 10% -10%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.28), transparent 72%);
    filter: blur(18px);
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 22px;
    height: 34px;
    border: 1px solid rgba(212, 175, 55, 0.65);
    border-radius: 999px;
    position: relative;
}

.scroll-arrow::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: var(--accent-gold);
    animation: scroll-dot 1.8s ease-in-out infinite;
}

.featured-collections,
.product-showcase,
.craftsmanship,
.bridal,
.custom-design,
.gallery,
.trust-section,
.testimonials,
.appointment-cta {
    padding-block: var(--section-space);
    position: relative;
}

.featured-collections {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(243, 229, 216, 0.6));
}

.collections-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
}

.collections-grid::-webkit-scrollbar,
.product-filters::-webkit-scrollbar,
.gallery-mobile-carousel::-webkit-scrollbar,
.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.collection-card {
    position: relative;
    min-height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    background: var(--surface-cream);
    box-shadow: var(--shadow-soft);
}

.collection-image,
.collection-image img,
.collection-overlay {
    position: absolute;
    inset: 0;
}

.collection-image img {
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-smooth);
}

.collection-overlay {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.72) 100%);
}

.collection-content {
    position: absolute;
    inset: auto 0 0;
    padding: 28px 24px 24px;
    color: var(--primary-white);
    display: grid;
    gap: 10px;
}

.collection-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.72);
}

.collection-content h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.04;
}

.collection-content p {
    color: rgba(250, 248, 245, 0.84);
    font-size: 0.96rem;
    max-width: 28ch;
}

.collection-link {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.92rem;
}

.product-showcase {
    background:
        linear-gradient(180deg, rgba(250, 248, 245, 0.9), rgba(243, 229, 216, 0.95));
}

.product-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 2px 10px;
    margin-bottom: 28px;
    scroll-snap-type: x proximity;
    touch-action: pan-x pan-y;
}

.filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 44px;
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 20, 16, 0.12);
    background: rgba(255, 255, 255, 0.74);
    color: var(--text-primary);
    font-size: 0.92rem;
    transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    border-color: var(--primary-black);
}

.products-grid {
    display: grid;
    gap: 18px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(212, 175, 55, 0.16);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 52px rgba(26, 20, 16, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-image {
    position: relative;
    aspect-ratio: 0.86;
    background: var(--surface-cream);
    overflow: hidden;
}

.product-image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-label {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 0.38rem 0.78rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.94);
    color: var(--primary-black);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.product-wishlist {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: var(--primary-black);
    font-size: 1.12rem;
    transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.product-wishlist.added {
    background: rgba(245, 169, 163, 0.16);
    color: var(--accent-rose);
    transform: scale(1.08);
}

.product-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 18px 20px;
    flex: 1;
}

.product-category {
    color: var(--accent-gold);
    font-size: 0.77rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.28rem;
    line-height: 1.2;
}

.product-material {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.product-price {
    margin-top: 2px;
    font-size: 1.22rem;
    font-weight: 600;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.product-action-btn {
    padding: 0.82rem 1rem;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--primary-black);
    color: var(--primary-white);
    border: 1px solid var(--primary-black);
    transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.product-action-btn.secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(26, 20, 16, 0.18);
}

.product-action-btn:hover {
    transform: translateY(-1px);
}

.product-action-btn.secondary:hover {
    background: rgba(26, 20, 16, 0.06);
}

.craftsmanship {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(250, 241, 232, 0.78));
}

.craftsmanship-content,
.bridal-content {
    display: grid;
    gap: 28px;
    align-items: center;
}

.craftsmanship-image,
.bridal-image {
    position: relative;
    min-height: 420px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.craftsmanship-image img,
.bridal-image img {
    height: 100%;
    object-fit: cover;
}

.image-border {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 22px;
    pointer-events: none;
}

.craftsmanship-text {
    display: grid;
    gap: 22px;
}

.craftsmanship-features {
    display: grid;
    gap: 16px;
}

.feature-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.feature-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.feature-item h4 {
    margin-bottom: 6px;
    font-size: 1.08rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.94rem;
}

.bridal {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(243, 229, 216, 0.92));
    overflow: clip;
}

.bridal-background {
    position: absolute;
    inset: 0;
}

.bridal-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 32%, rgba(245, 169, 163, 0.18), transparent 28%),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15));
}

.bridal-glow {
    position: absolute;
    right: -10%;
    bottom: -8%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 169, 163, 0.28), transparent 70%);
    filter: blur(18px);
}

.bridal-text {
    display: grid;
    gap: 18px;
}

.bridal-highlights {
    display: grid;
    gap: 12px;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(245, 169, 163, 0.18);
}

.highlight-icon {
    color: var(--accent-rose);
}

.bridal-buttons,
.appointment-buttons {
    display: grid;
    gap: 12px;
}

.custom-design {
    background: linear-gradient(180deg, rgba(232, 221, 213, 0.72), rgba(250, 248, 245, 0.9));
}

.process-timeline {
    display: grid;
    gap: 16px;
    margin: 32px 0 0;
}

.process-step {
    position: relative;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: var(--shadow-soft);
}

.step-number {
    color: var(--accent-gold);
    font-family: Georgia, serif;
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 14px;
}

.process-step h3 {
    font-size: 1.45rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-secondary);
}

.step-icon {
    display: none;
}

.process-cta {
    margin-top: 24px;
}

.gallery {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 229, 216, 0.72));
}

.gallery-showcase {
    display: none;
}

.gallery-featured-card,
.gallery-mobile-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-luxury);
}

.gallery-mobile-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 85%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    touch-action: pan-x pan-y;
}

.gallery-mobile-card {
    min-height: 430px;
    scroll-snap-align: center;
}

.gallery-mobile-card img {
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.gallery-mobile-card:hover img {
    transform: scale(1.03);
}

.gallery-mobile-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 18px;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.78));
    color: var(--primary-white);
}

.gallery-mobile-caption {
    font-size: 1.1rem;
}

.gallery-progress-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(26, 20, 16, 0.18);
    transition: width var(--transition-fast), background-color var(--transition-fast);
}

.gallery-dot.active {
    width: 28px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-rose));
}

.gallery-strip {
    margin-top: 26px;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.14);
    background: rgba(255, 255, 255, 0.5);
}

.gallery-strip-track {
    display: flex;
    width: max-content;
    animation: gallery-strip 34s linear infinite;
}

.gallery-strip-item {
    width: 140px;
    height: 90px;
    margin: 10px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.18);
}

.gallery-strip-item img {
    height: 100%;
    object-fit: cover;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(10, 10, 10, 0.94);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: min(100%, 1120px);
    min-height: min(78dvh, 720px);
    padding: 70px 18px 20px;
    border-radius: 30px;
    background: rgba(20, 15, 12, 0.72);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: grid;
    gap: 16px;
}

.lightbox-image-wrap {
    min-height: 48dvh;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.lightbox-image-wrap img {
    height: 100%;
    object-fit: contain;
}

.lightbox-caption-wrap {
    color: var(--primary-white);
}

.lightbox-kicker {
    color: rgba(212, 175, 55, 0.84);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 6px;
}

.lightbox-caption {
    font-size: 1.08rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-white);
    font-size: 1.6rem;
}

.lightbox-close {
    top: 16px;
    right: 16px;
}

.lightbox-prev,
.lightbox-next {
    top: calc(50% - 14px);
    transform: translateY(-50%);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.trust-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(232, 221, 213, 0.7));
}

.trust-grid {
    display: grid;
    gap: 16px;
}

.trust-card {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: var(--shadow-soft);
}

.trust-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 40px;
    margin-bottom: 18px;
    border-radius: 999px;
    padding: 0 16px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--accent-gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-card h3 {
    font-size: 1.28rem;
    margin-bottom: 10px;
}

.trust-card p,
.trust-stat {
    color: var(--text-secondary);
}

.trust-testimonial {
    margin-top: 26px;
}

.trust-stat {
    font-size: clamp(1.06rem, 3vw, 1.28rem);
}

.testimonials {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 238, 0.9));
}

.testimonials-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    touch-action: pan-x pan-y;
}

.testimonial-card {
    scroll-snap-align: start;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(232, 221, 213, 0.58));
    border: 1px solid rgba(212, 175, 55, 0.14);
    box-shadow: var(--shadow-soft);
}

.testimonial-content {
    display: grid;
    gap: 16px;
}

.testimonial-stars {
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.02rem;
    line-height: 1.9;
    font-style: italic;
}

.testimonial-author {
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.author-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.author-occasion {
    color: var(--accent-gold);
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.appointment-cta {
    overflow: clip;
}

.appointment-background,
.appointment-overlay {
    position: absolute;
    inset: 0;
}

.appointment-background img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.appointment-overlay {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.44), rgba(10, 10, 10, 0.68)),
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 30%);
}

.appointment-content {
    max-width: 740px;
    margin: 0 auto;
    padding: clamp(28px, 6vw, 56px);
    border-radius: 34px;
    background: rgba(20, 15, 12, 0.52);
    border: 1px solid rgba(212, 175, 55, 0.24);
    box-shadow: var(--shadow-luxury);
    backdrop-filter: blur(10px);
    color: var(--primary-white);
}

.appointment-kicker {
    margin-bottom: 14px;
    color: rgba(212, 175, 55, 0.88);
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.appointment-content .section-title,
.appointment-content .section-description {
    color: var(--primary-white);
}

.appointment-buttons .btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #e8cb71);
    color: var(--primary-black);
}

.appointment-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--primary-white);
}

.footer {
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 22%),
        #0d0b09;
    color: var(--primary-white);
    padding: 58px 0 26px;
}

.footer-grid {
    display: grid;
    gap: 28px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 14px;
    font-size: 1.12rem;
}

.footer-description,
.footer-section p,
.footer-section li a,
.footer-bottom p,
.footer-links a {
    color: rgba(250, 248, 245, 0.72);
}

.footer-description,
.footer-section p {
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    color: var(--accent-gold);
}

.newsletter-form {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.newsletter-form input {
    min-height: 48px;
    padding: 0.88rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(255, 255, 255, 0.06);
    color: var(--primary-white);
}

.newsletter-form input::placeholder {
    color: rgba(250, 248, 245, 0.44);
}

.newsletter-form button {
    min-height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-gold), #e8cb71);
    color: var(--primary-black);
    font-weight: 700;
}

.footer-bottom {
    display: grid;
    gap: 12px;
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 1350;
    display: none;
}

.quick-view-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: absolute;
    inset: auto 0 0;
    width: 100%;
    max-height: min(88dvh, 760px);
    overflow: auto;
    background: linear-gradient(180deg, #fffaf6, #f8efe8);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -24px 60px rgba(10, 10, 10, 0.28);
    transform: translateY(100%);
    transition: transform var(--transition-smooth);
}

.quick-view-modal.active .modal-content {
    transform: translateY(0);
}

.modal-content::before {
    content: "";
    position: sticky;
    top: 14px;
    display: block;
    width: 54px;
    height: 5px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(26, 20, 16, 0.18);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--primary-black);
    font-size: 1.7rem;
}

.modal-body {
    padding: 28px 20px 24px;
}

.quick-view-grid {
    display: grid;
    gap: 20px;
}

.quick-view-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 24px;
    background: var(--surface-cream);
}

.quick-view-image img {
    height: 100%;
    object-fit: cover;
}

.quick-view-details {
    display: grid;
    gap: 16px;
}

.quick-view-collection {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 700;
}

.quick-view-title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    line-height: 1.06;
}

.quick-view-description {
    color: var(--text-secondary);
}

.quick-view-meta {
    display: grid;
    gap: 12px;
}

.quick-view-meta-item {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.quick-view-meta-label {
    margin-bottom: 6px;
    color: var(--accent-gold);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.quick-view-price {
    font-size: 1.5rem;
    font-weight: 700;
}

.quick-view-actions {
    display: grid;
    gap: 10px;
}

.quick-view-actions button {
    min-height: 48px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    font-weight: 600;
}

.quick-view-actions .btn-outline {
    border: 1px solid rgba(26, 20, 16, 0.18);
    background: transparent;
    color: var(--text-primary);
}

.quick-view-actions .btn-soft {
    background: rgba(245, 169, 163, 0.18);
    color: #8f5b58;
}

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
    transform: translateX(-32px);
}

.reveal-right {
    transform: translateX(32px);
}

.reveal-scale {
    transform: scale(0.96);
}

.is-visible {
    opacity: 1;
    transform: none;
}

@media (min-width: 700px) {
    .products-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-buttons,
    .bridal-buttons,
    .appointment-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: auto;
    }

    .bridal-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .quick-view-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .modal-content {
        inset: 50% auto auto 50%;
        width: min(92vw, 960px);
        max-height: 86dvh;
        border-radius: 30px;
        transform: translate(-50%, calc(-50% + 40px));
    }

    .quick-view-modal.active .modal-content {
        transform: translate(-50%, -50%);
    }

    .modal-content::before {
        display: none;
    }

    .modal-body {
        padding: 32px;
    }
}

@media (min-width: 900px) {
    .btn-book {
        display: inline-flex;
    }

    .navbar-toggle {
        display: none;
    }

    .navbar-menu {
        position: static;
        inset: auto;
        padding: 0;
        background: transparent;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        flex: 1;
    }

    .navbar-menu-panel {
        min-height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: clamp(18px, 3vw, 42px);
    }

    .navbar-menu-label,
    .nav-menu-cta {
        display: none;
    }

    .nav-link {
        color: var(--text-primary);
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.94rem;
        letter-spacing: 0.03em;
        line-height: 1;
        position: relative;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 100%;
        height: 1px;
        transform: scaleX(0);
        transform-origin: left;
        background: linear-gradient(90deg, var(--accent-gold), transparent);
        transition: transform var(--transition-fast);
    }

    .nav-link:hover::after {
        transform: scaleX(1);
    }

    .hero-content {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
        gap: clamp(42px, 6vw, 80px);
    }

    .hero {
        padding: 40px 0 56px;
    }

    .hero-image-container,
    .hero-image-frame {
        min-height: 640px;
    }

    .collections-grid {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
    }

    .collection-card:hover .collection-image img {
        transform: scale(1.08);
    }

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

    .craftsmanship-content,
    .bridal-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(34px, 5vw, 60px);
    }

    .gallery-showcase {
        display: grid;
        grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
        gap: 22px;
        align-items: stretch;
    }

    .gallery-featured-card {
        display: grid;
        grid-template-rows: minmax(420px, 560px) auto;
        padding: 0;
        text-align: left;
    }

    .gallery-featured-media {
        position: relative;
        overflow: hidden;
    }

    .gallery-featured-media img {
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-smooth);
    }

    .gallery-featured-card:hover .gallery-featured-media img {
        transform: scale(1.05);
    }

    .gallery-featured-media::after {
        content: "";
        position: absolute;
        inset: 14px;
        border: 1px solid rgba(212, 175, 55, 0.42);
        border-radius: 24px;
        pointer-events: none;
    }

    .gallery-featured-content {
        display: grid;
        gap: 10px;
        padding: 22px 24px 26px;
    }

    .gallery-featured-label {
        color: var(--accent-gold);
        font-size: 0.78rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .gallery-featured-title {
        font-size: clamp(1.8rem, 3vw, 2.7rem);
        line-height: 1.06;
    }

    .gallery-featured-copy {
        color: var(--text-secondary);
        max-width: 34ch;
    }

    .gallery-thumbnails {
        display: grid;
        gap: 16px;
    }

    .gallery-thumb {
        display: grid;
        grid-template-columns: 104px 1fr;
        gap: 16px;
        align-items: center;
        padding: 12px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(212, 175, 55, 0.16);
        text-align: left;
        transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
    }

    .gallery-thumb:hover,
    .gallery-thumb.active {
        transform: translateX(4px);
        border-color: rgba(212, 175, 55, 0.38);
        background: rgba(255, 255, 255, 0.94);
    }

    .gallery-thumb-media {
        height: 94px;
        overflow: hidden;
        border-radius: 16px;
    }

    .gallery-thumb-media img {
        height: 100%;
        object-fit: cover;
        transition: transform var(--transition-fast);
    }

    .gallery-thumb:hover .gallery-thumb-media img,
    .gallery-thumb.active .gallery-thumb-media img {
        transform: scale(1.06);
    }

    .gallery-thumb-copy {
        display: grid;
        gap: 6px;
    }

    .gallery-thumb-eyebrow {
        color: var(--accent-gold);
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .gallery-thumb-title {
        font-size: 1.08rem;
        line-height: 1.2;
        color: var(--text-primary);
    }

    .gallery-mobile-carousel,
    .gallery-progress-dots {
        display: none;
    }

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

    .testimonials-carousel {
        grid-auto-flow: row;
        grid-auto-columns: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
        gap: 34px;
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .lightbox {
        padding: 28px;
    }

    .lightbox-content {
        grid-template-columns: 1fr;
        padding: 44px 70px 24px;
    }

    .lightbox-prev {
        left: 22px;
    }

    .lightbox-next {
        right: 22px;
    }
}

@media (min-width: 1120px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-content {
        padding: 20px 20px 22px;
    }

    .process-step {
        padding: 28px;
    }

    .step-icon {
        display: block;
        position: absolute;
        top: 34px;
        right: -20px;
        color: var(--accent-gold);
        font-size: 1.4rem;
    }
}

@media (max-width: 899px) {
    .navbar.mobile-open .navbar-container {
        align-items: center;
    }

    .hero-image-frame img {
        object-position: center 26%;
    }

    .appointment-content {
        padding-inline: 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .lightbox-prev {
        left: 18px;
    }

    .lightbox-next {
        right: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .preloader,
    .navbar,
    .scroll-progress,
    .floating-whatsapp,
    .back-to-top,
    .quick-view-modal,
    .lightbox {
        display: none !important;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes preloader-pulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(212, 175, 55, 0.14),
            0 0 28px rgba(212, 175, 55, 0.3),
            0 0 56px rgba(212, 175, 55, 0.22);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(212, 175, 55, 0.24),
            0 0 38px rgba(212, 175, 55, 0.52),
            0 0 78px rgba(212, 175, 55, 0.34);
    }
}

@keyframes halo-pulse {
    0%, 100% {
        transform: scale(0.94);
        opacity: 0.56;
    }
    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

@keyframes orbit-spark {
    from {
        transform: rotate(0deg) translateX(28px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(28px) rotate(-360deg);
    }
}

@keyframes sparkle-float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.42;
    }
    50% {
        transform: translateY(-18px) scale(1.62);
        opacity: 0.96;
    }
}

@keyframes sparkle-twinkle {
    0%, 100% {
        filter: brightness(0.95);
    }
    50% {
        filter: brightness(1.35);
    }
}

@keyframes scroll-dot {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 10px);
    }
}

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