

:root {

    --color-primary: #B8860B;
    --color-primary-light: #DAA520;
    --color-primary-dark: #8B6914;
    --color-primary-rgb: 184, 134, 11;

    
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #1a1a2e;
    --color-gray-900: #1a1a1a;
    --color-gray-800: #2d2d2d;
    --color-gray-700: #333333;
    --color-gray-600: #555555;
    --color-gray-500: #777777;
    --color-gray-400: #999999;
    --color-gray-300: #cccccc;
    --color-gray-200: #e5e5e5;
    --color-gray-100: #f5f5f5;
    --color-gray-50: #fafafa;

    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Karla', 'Helvetica Neue', sans-serif;
    --font-script: 'Allura', cursive;
    --font-sans: 'Sofia Sans Condensed', sans-serif;

    
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px rgba(184, 134, 11, 0.25);
    --shadow-pink: 0 10px 40px rgba(184, 134, 11, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-white);
    color: var(--color-gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate {
    opacity: 0;
}

.animate.animated {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate--fade-up.animated { animation-name: fadeInUp; }
.animate--fade-left.animated { animation-name: fadeInLeft; }
.animate--fade-right.animated { animation-name: fadeInRight; }
.animate--fade.animated { animation-name: fadeIn; }
.animate--scale.animated { animation-name: scaleIn; }

.animate--delay-1 { animation-delay: 0.1s; }
.animate--delay-2 { animation-delay: 0.2s; }
.animate--delay-3 { animation-delay: 0.3s; }
.animate--delay-4 { animation-delay: 0.4s; }
.animate--delay-5 { animation-delay: 0.5s; }

.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.age-overlay.hidden { display: none; }

.age-overlay__box {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 420px;
    width: 100%;
}

.age-overlay__logo {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
}

.age-overlay__title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.age-overlay__text {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.age-overlay__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.age-overlay__btn {
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    background: var(--color-primary);
    color: var(--color-white);
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.age-overlay__btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
}

.age-overlay__btn--exit {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-gray-400);
    box-shadow: none;
}

.age-overlay__btn--exit:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    transform: none;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem calc(15% - 1rem);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem calc(15% - 1rem);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.nav__container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
    max-width: none;
}

.nav__logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
    margin-right: auto;
}

.nav__logo-img {
    height: 50px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 20, 147, 0.6));
    transition: var(--transition);
}

.nav__logo:hover .nav__logo-img {
    filter: brightness(1.4) drop-shadow(0 0 12px rgba(255, 20, 147, 0.8));
    transform: scale(1.02);
}

.nav.scrolled .nav__logo-img {
    filter: brightness(1) drop-shadow(0 0 6px rgba(255, 20, 147, 0.5));
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav__link {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--color-white); }

.nav.scrolled .nav__link { color: var(--color-gray-700); }
.nav.scrolled .nav__link::after { background: var(--color-primary); }
.nav.scrolled .nav__link:hover { color: var(--color-primary); }

.nav__social {
    display: flex;
    gap: 0.6rem;
}

.nav__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 0.85rem;
    transition: var(--transition);
}

.nav__social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.nav.scrolled .nav__social a {
    background: var(--color-gray-100);
    color: var(--color-gray-600);
}

.nav.scrolled .nav__social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

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

/* Hide mobile buttons on desktop */
.nav__mobile-buttons {
    display: none;
}

.nav__toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.nav.scrolled .nav__toggle span { background: var(--color-gray-700); }

.hero {
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    background-color: var(--color-gray-800);
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0;
    margin-left: 15%;
    max-width: 50%;
}

.hero__title {
    font-family: var(--font-script);
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 380px;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.hero__btn:hover {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
}

.hero__btn i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.hero__btn:hover i {
    transform: translateX(3px);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

.section {
    padding: 5rem 4rem;
    position: relative;
}

.essence {
    background: var(--color-white);
    padding-top: 4rem;
}

.essence__header {
    text-align: center;
    margin-bottom: 3rem;
}

.essence__main-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gray-800);
    margin-bottom: 0.5rem;
}

.essence__header-subtitle {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.essence__header-icon {
    margin-top: 1rem;
}

.essence__header-icon img {
    margin: 0 auto;
    opacity: 0.8;
}

.essence__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.essence__images {
    position: relative;
    min-height: 700px;
    padding: 20px;
}

.essence__image {
    position: absolute;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-white);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.essence__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.essence__image:hover {
    z-index: 10;
    box-shadow: var(--shadow-pink);
}

.essence__image:hover img {
    transform: scale(1.03);
}

.essence__image--1 {
    top: 0;
    left: 0;
    width: 60%;
    z-index: 3;
}

.essence__image--2 {
    top: 180px;
    left: 30%;
    width: 70%;
    z-index: 2;
}

.essence__image--3 {
    bottom: 0;
    left: 5%;
    width: 55%;
    z-index: 1;
}

.essence__content {
    padding: 2rem 0;
}

.essence__scroll-indicator {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-gray-400);
}

.essence__text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.essence__text--first::first-letter {
    font-family: var(--font-script);
    font-size: 4.5rem;
    float: left;
    line-height: 0.7;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--color-primary);
}

.essence__signature {
    margin-top: 2rem;
}

.essence__signature img {
    max-height: 80px;
}

.essence__signature-text {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--color-primary);
}

.essence__signature-text .xoxo {
    font-size: 2rem;
    margin-left: 0.5rem;
}

.details {
    background: var(--color-gray-50);
    padding: 5rem 4rem;
}

.details__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.details__image-wrapper {
    position: relative;
}

.details__image {
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    overflow: hidden;
}

.details__image:hover {
    box-shadow: var(--shadow-pink);
}

.details__image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.details__image:hover img {
    transform: scale(1.02);
}

.details__nav-dot {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--color-gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.details__nav-dot:hover {
    color: var(--color-primary);
}

.details__content {
    padding: 1rem 0;
}

.details__label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.details__title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-gray-800);
    margin-bottom: 2rem;
}

.details__items {
    margin-bottom: 2rem;
}

.details__item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.details__icon {
    flex-shrink: 0;
    color: var(--color-primary);
}

.details__item-content strong {
    display: block;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: 0.3rem;
}

.details__item-content p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.details__screening-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: 1rem;
}

.details__screening-list {
    list-style: none;
    margin-bottom: 2rem;
}

.details__screening-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

.details__screening-list li i {
    color: var(--color-primary);
    font-size: 0.6rem;
    margin-top: 0.4rem;
}

.details__wishlist {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-gray-700);
}

.details__wishlist i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.details__wishlist a {
    font-weight: 500;
    color: var(--color-gray-700);
}

.details__wishlist a:hover {
    color: var(--color-primary);
}

.gallery {
    background: var(--color-white);
    padding: 5rem 4rem;
}

.gallery__header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gray-800);
    margin-bottom: 0.3rem;
}

.gallery__subtitle {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.gallery__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.gallery__stack {
    position: relative;
    height: 500px;
    margin-left: 20px;
}

.gallery__stack-item {
    position: absolute;
    width: 200px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--color-white);
    overflow: hidden;
}

.gallery__stack-item img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.gallery__stack-item:hover {
    z-index: 10;
    box-shadow: var(--shadow-pink);
}

.gallery__stack-item:hover img {
    transform: scale(1.05);
}

.gallery__stack-item--1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-8deg);
}

.gallery__stack-item--2 {
    top: 120px;
    left: 130px;
    z-index: 2;
    transform: rotate(5deg);
}

.gallery__stack-item--3 {
    top: 270px;
    left: 30px;
    z-index: 1;
    transform: rotate(-4deg);
}

.gallery__stack-item:hover {
    transform: rotate(0deg) scale(1.05);
}

.gallery__main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery__main-image {
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    height: 500px;
    background: #f8f6f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery__main-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition-slow);
}

.gallery__main-image:hover img {
    transform: scale(1.02);
}

.gallery__thumbs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
    padding: 0.5rem 0;
}

.gallery__thumb {
    display: none;
    flex: 0 0 auto;
    width: 65px;
    height: 85px;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.4;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    border-radius: 6px;
    transform: scale(0.9);
}

/* Show visible thumbs (controlled by JS) */
.gallery__thumb.thumb-visible {
    display: block;
    opacity: 0.5;
    transform: scale(0.95);
}

.gallery__thumb.thumb-far {
    opacity: 0.3;
    transform: scale(0.85);
}

.gallery__thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.25);
}

.gallery__thumb:hover {
    opacity: 0.85;
    transform: scale(1);
}

.gallery__thumb.active:hover {
    transform: scale(1.05);
}

.gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Gallery Main Wrapper */
.gallery__main-wrapper {
    position: relative;
}

/* Gallery Navigation Controls */
.gallery__mobile-controls {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.gallery__mobile-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    color: var(--color-gray-700);
    font-size: 0.9rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.gallery__main-wrapper:hover .gallery__mobile-nav {
    opacity: 1;
}

.gallery__mobile-nav--prev { left: 10px; }
.gallery__mobile-nav--next { right: 10px; }

.gallery__mobile-nav:hover {
    background: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: var(--color-primary);
}

.gallery__mobile-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery__counter {
    display: none;
}

.gallery__dots {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox__image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox__close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--color-white);
    cursor: pointer;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox__nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox__prev { left: 25px; }
.lightbox__next { right: 25px; }

.lightbox__thumbs {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    max-width: 90%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) transparent;
}

.lightbox__thumbs::-webkit-scrollbar {
    height: 4px;
}

.lightbox__thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.lightbox__thumbs::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.lightbox__thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: var(--transition);
}

.lightbox__thumb:hover {
    opacity: 0.8;
}

.lightbox__thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
}

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

.lightbox-trigger { cursor: pointer; }

/* ===== MY FRIENDS SECTION ===== */
.friends {
    background: linear-gradient(180deg, var(--color-white) 0%, #faf8f5 100%);
    padding: 5rem 4rem;
    overflow: hidden;
}

.friends__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.friends__title {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.friends__subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--color-gray-500);
    text-transform: uppercase;
}

.friends__intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--color-gray-600);
    font-size: 1rem;
}

.friends__slider-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 60px;
}

.friends__slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.friends__slider::-webkit-scrollbar {
    display: none;
}

.friends__card {
    flex: 0 0 calc((100% - 3rem) / 3);
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.friends__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(184, 134, 11, 0.15);
}

.friends__card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.friends__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.friends__card-content {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 160px;
}

.friends__card-name {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.friends__card-desc {
    font-size: 0.85rem;
    color: var(--color-gray-500);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.friends__card-btn {
    display: inline-flex;
    margin-top: auto;
    flex-shrink: 0;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.friends__card-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.4);
}

.friends__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 10;
    color: var(--color-gray-700);
}

.friends__nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.friends__nav--prev {
    left: 0;
}

.friends__nav--next {
    right: 0;
}

.friends__dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.friends__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.friends__dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* ===== VIDEOS/TEASERS SECTION ===== */
.videos {
    background: linear-gradient(180deg, #fffdf9 0%, #faf8f5 100%);
    padding: 5rem 4rem;
    overflow: hidden;
}

.videos__header {
    text-align: center;
    margin-bottom: 1rem;
}

.videos__title {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.videos__subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--color-gray-500);
    text-transform: uppercase;
}

.videos__intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--color-gray-600);
    font-size: 1rem;
}

.videos__slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.videos__slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.videos__slider::-webkit-scrollbar {
    display: none;
}

/* Video Card */
.video-card {
    flex: 0 0 340px;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(184, 134, 11, 0.15);
}

.video-card__thumbnail {
    position: relative;
    width: 100%;
    height: 280px;
    background: #000;
    overflow: hidden;
}

.video-card__thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-card__thumbnail video {
    transform: scale(1.05);
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(184, 134, 11, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
}

.video-card__play svg {
    width: 26px;
    height: 26px;
    margin-left: 4px;
    color: white;
}

.video-card:hover .video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.5);
}

.video-card.is-playing .video-card__play {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.video-card__duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

.video-card__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--color-primary);
    transition: width 0.1s linear;
}

.video-card__body {
    padding: 1.75rem;
    text-align: center;
}

.video-card__title {
    font-family: var(--font-script);
    font-size: 2rem;
    color: var(--color-gray-900);
    margin-bottom: 0.6rem;
}

.video-card__desc {
    font-size: 0.95rem;
    color: var(--color-gray-500);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.videos__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    z-index: 10;
    color: var(--color-gray-700);
    font-size: 1.1rem;
}

.videos__nav:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.videos__nav--prev {
    left: 0;
}

.videos__nav--next {
    right: 0;
}

.videos__dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
}

.videos__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.videos__dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

/* Videos Responsive */
@media (max-width: 1100px) {
    .video-card {
        flex: 0 0 300px;
    }
    .video-card__thumbnail {
        height: 240px;
    }
}

@media (max-width: 768px) {
    .videos {
        padding: 3rem 1.5rem;
    }
    .videos__slider-wrapper {
        padding: 0 45px;
    }
    .videos__title {
        font-size: 2.5rem;
    }
    .video-card {
        flex: 0 0 280px;
    }
    .video-card__thumbnail {
        height: 220px;
    }
    .videos__nav {
        width: 38px;
        height: 38px;
    }
    .video-card__play {
        width: 56px;
        height: 56px;
    }
    .video-card__play svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .videos {
        padding: 3rem 1rem;
    }
    .videos__slider-wrapper {
        padding: 0 35px;
    }
    .video-card {
        flex: 0 0 260px;
    }
    .video-card__thumbnail {
        height: 200px;
    }
    .videos__nav {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    .videos__nav--prev {
        left: -5px;
    }
    .videos__nav--next {
        right: -5px;
    }
}

/* ===== HONORARIUM SECTION ===== */
.honorarium {
    background: var(--color-white);
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
}

.honorarium__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
}

.honorarium__prices {
    padding: 1rem 0;
}

.honorarium__intro {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.honorarium__list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.honorarium__list li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--color-gray-700);
    display: flex;
    align-items: center;
}

.honorarium__list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.honorarium__outcall::before {
    display: none !important;
}

.honorarium__outcall i {
    color: var(--color-primary);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.honorarium__duration {
    font-weight: 700;
    color: var(--color-gray-800);
}

.honorarium__deposit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.honorarium__deposit-icon {
    flex-shrink: 0;
    color: var(--color-primary);
}

.honorarium__deposit-icon img {
    width: 28px;
    height: auto;
}

.honorarium__deposit p {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.honorarium__deposit b {
    color: var(--color-gray-800);
}

.honorarium__image {
    position: relative;
    width: 320px;
    flex-shrink: 0;
}

.honorarium__image-frame {
    position: relative;
    border: 8px solid var(--color-primary);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    z-index: 2;
}

.honorarium__image-frame:hover {
    box-shadow: var(--shadow-pink);
}

.honorarium__image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.honorarium__image-frame:hover img {
    transform: scale(1.02);
}

.honorarium__decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.honorarium__decor--1 {
    top: -30px;
    right: -60px;
    z-index: 3;
}

.honorarium__decor--1 img {
    width: 120px;
    height: auto;
}

.honorarium__decor--2 {
    bottom: -40px;
    left: -50px;
    z-index: 1;
}

.honorarium__decor--2 img {
    width: 100px;
    height: auto;
    transform: rotate(-15deg);
}

.honorarium__title-wrap {
    text-align: left;
    padding-left: 1rem;
}

.honorarium__label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.honorarium__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-gray-800);
}

.honorarium__email-vertical {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gray-200);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.invitation {
    background: var(--color-white);
    padding: 4rem;
    position: relative;
}

.invitation__header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.invitation__close-btn {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(calc(50% + 200px));
    width: 50px;
    height: 50px;
    background: var(--color-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.invitation__close-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.invitation__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gray-800);
    margin-bottom: 0.3rem;
}

.invitation__subtitle {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.invitation__intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.invitation__intro p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.8;
}

.invitation__intro a {
    font-weight: 600;
}

.invitation__container {
    max-width: 900px;
    margin: 0 auto;
}

.invitation__form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form__group--full {
    grid-column: 1 / -1;
}

.form__label {
    font-size: 0.85rem;
    color: var(--color-gray-700);
    font-weight: 500;
}

.form__input,
.form__textarea,
.form__select {
    padding: 0.9rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    color: var(--color-gray-700);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    border-radius: 4px;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-primary);
    opacity: 0.7;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF0072' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__file-wrap {
    position: relative;
}

.form__file-input {
    display: none;
}

.form__file-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.form__file-label span:first-child {
    padding: 0.3rem 0.8rem;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-300);
    border-radius: 3px;
    font-size: 0.85rem;
}

.form__file-name {
    color: var(--color-primary);
    font-size: 0.85rem;
}

.form__checkbox {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 0;
}

.form__checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}

.form__checkbox label {
    font-size: 0.85rem;
    color: var(--color-gray-600);
}

.form__checkbox a {
    text-decoration: underline;
}

.form__message {
    padding: 1rem;
    text-align: center;
    display: none;
    border-radius: 4px;
}

.form__message.success {
    display: block;
    color: #2e7d32;
    background: #e8f5e9;
}

.form__message.error {
    display: block;
    color: #c62828;
    background: #ffebee;
}

.form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    background: var(--color-primary);
    border: none;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: lowercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 30px;
    margin: 1rem auto 0;
}

.form__submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

.invitation__alternative {
    text-align: center;
    margin-top: 2rem;
    padding: 1.2rem;
    background: var(--color-gray-50);
    border-radius: 8px;
}

.invitation__alternative p {
    font-size: 0.85rem;
    color: var(--color-gray-600);
}

.invitation__copy-link {
    font-weight: 600;
}

.mysocial {
    background: var(--color-gray-50);
    padding: 5rem 4rem;
    position: relative;
}

.mysocial__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.mysocial__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-gray-800);
    margin-bottom: 0.3rem;
}

.mysocial__subtitle {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.mysocial__intro {
    text-align: center;
    margin-bottom: 2.5rem;
}

.mysocial__intro p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
}

.mysocial__intro a {
    color: var(--color-primary);
    font-weight: 500;
}

.mysocial__intro i {
    margin: 0 0.15rem;
}

.mysocial__onlyfans-img {
    height: 18px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

.mysocial__cards {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.mysocial__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid var(--color-gray-200);
    border-radius: 12px;
    transition: var(--transition);
    padding: 1.5rem 1rem;
    text-decoration: none;
    width: 140px;
    min-height: 120px;
}

.mysocial__card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.15);
    transform: translateY(-5px);
}

.mysocial__card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-primary);
    background: transparent;
    border-radius: 0;
    flex-shrink: 0;
}

.mysocial__card-icon--text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-primary);
    background: transparent;
}

.mysocial__card-img {
    width: 40px;
    height: auto;
    filter: none;
}

.mysocial__card-name {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-gray-600);
    line-height: 1.3;
    text-align: center;
}

.mysocial__card--bitcoin {
    cursor: pointer;
}

.mysocial__card--bitcoin:hover .mysocial__card-name::after {
    content: ' (copy)';
    font-size: 0.6rem;
    opacity: 0.7;
}

/* ===== ACTION BUTTONS (Gift Me, Contact Me, Wish List) ===== */
.mysocial__buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.action-btn {
    position: relative;
}

.action-btn__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
}

.action-btn__trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
}

.action-btn__trigger i:first-child {
    font-size: 1rem;
}

.action-btn__arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.action-btn.active .action-btn__arrow {
    transform: rotate(180deg);
}

.action-btn__dropdown {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(184, 134, 11, 0.08),
        0 20px 60px rgba(184, 134, 11, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.action-btn.active .action-btn__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Arrow now points down (dropdown opens upward) */

.action-btn__dropdown::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
    filter: drop-shadow(0 2px 3px rgba(184, 134, 11, 0.08));
}

.action-btn__dropdown::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-primary));
    border-radius: 0 0 16px 16px;
}

.action-btn__dropdown a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: var(--color-gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.action-btn__dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(184, 134, 11, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.action-btn__dropdown a:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.15), transparent);
}

.action-btn__dropdown a:hover {
    color: var(--color-primary);
    background: transparent;
}

.action-btn__dropdown a:hover::before {
    width: 100%;
}

.action-btn__dropdown a i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.action-btn__dropdown a:hover i {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.action-btn__dropdown a span {
    position: relative;
    z-index: 1;
}

/* Action buttons responsive */
@media (max-width: 768px) {
    .mysocial__buttons {
        gap: 1rem;
    }
    .action-btn__trigger {
        padding: 0.85rem 1.5rem;
        font-size: 0.8rem;
    }
    .action-btn__dropdown {
        min-width: 180px;
    }
    .action-btn__dropdown a {
        padding: 0.9rem 1rem;
    }
    .action-btn__dropdown a i {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mysocial__buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .action-btn__trigger {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .action-btn__dropdown {
        width: 100%;
        max-width: 280px;
    }
}

.toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--color-gray-900);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10000;
}

.toast-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.footer {
    position: relative;
    padding: 3rem 4rem;
    overflow: hidden;
}

.footer__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8B6914 0%, #B8860B 50%, #DAA520 100%);
    z-index: 0;
}

.footer__container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer__logo {
    margin-bottom: 1.5rem;
}

.footer__logo-text {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-white);
}

.footer__content {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer__contact {
    margin-bottom: 1rem;
}

.footer__email {
    color: var(--color-white);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer__email:hover {
    color: var(--color-white);
    opacity: 0.8;
}

.footer__nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__nav a {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
    opacity: 0.9;
}

.footer__nav a:hover {
    color: var(--color-white);
    opacity: 1;
}

.footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer__social {
    display: flex;
    gap: 0.6rem;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1rem;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.footer__copyright {
    font-size: 0.8rem;
    color: var(--color-white);
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .nav { padding: 1.2rem 2rem; }
    .section { padding: 4rem 2rem; }

    .hero__content { margin-left: 8%; padding: 0 2rem; max-width: 450px; }
    .hero__title { font-size: 3.2rem; }
    .hero__subtitle { font-size: 0.8rem; max-width: 320px; }

    .essence__container,
    .details__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .essence__images {
        min-height: 500px;
        max-width: 450px;
        margin: 0 auto;
    }

    .essence__image--1 { width: 55%; }
    .essence__image--2 { width: 65%; top: 120px; left: 35%; }
    .essence__image--3 { width: 50%; }

    .details__image-wrapper { max-width: 450px; margin: 0 auto; }
    .details__nav-dot { display: none; }

    .gallery__container { grid-template-columns: 1fr; gap: 2rem; }
    .gallery__stack { height: 400px; max-width: 350px; margin: 0 auto; }
    .gallery__stack-item { width: 160px; }

    .honorarium {
        padding: 4rem 2rem;
    }
    .honorarium__container {
        grid-template-columns: 1fr auto;
        gap: 2rem;
    }
    .honorarium__title-wrap {
        grid-column: 1 / -1;
        text-align: center;
        order: -1;
        padding-left: 0;
    }
    .honorarium__image {
        max-width: 220px;
    }
    .honorarium__decor--1 {
        top: -20px;
        right: -40px;
    }
    .honorarium__decor--1 img {
        width: 80px;
    }
    .honorarium__decor--2 {
        bottom: -25px;
        left: -30px;
    }
    .honorarium__decor--2 img {
        width: 70px;
    }
    .honorarium__email-vertical {
        display: none;
    }

    .mysocial__cards {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .friends__slider-wrapper { padding: 0 40px; }
    .friends__card { flex: 0 0 calc((100% - 1.5rem) / 2); min-width: 200px; }
    .friends__nav { width: 35px; height: 35px; }

    .nav { padding: 1rem 1.5rem; }
    .nav.scrolled { padding: 0.8rem 1.5rem; }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    }

    .nav__menu.active { right: 0; }
    .nav__toggle { display: flex; }
    .nav__social { display: none; }

    .nav__menu .nav__link {
        color: var(--color-gray-700);
        font-size: 0.9rem;
    }

    /* Mobile Action Buttons in Nav */
    .nav__mobile-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--color-gray-200);
        width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .nav__action-btn {
        position: relative;
        width: 100%;
    }

    .nav__action-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.9rem 1.2rem;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
        color: var(--color-white);
        border: none;
        border-radius: 12px;
        font-family: var(--font-sans);
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav__action-trigger i:first-child {
        margin-right: 0.6rem;
    }

    .nav__action-trigger i:last-child {
        transition: transform 0.3s ease;
        font-size: 0.7rem;
    }

    .nav__action-btn.active .nav__action-trigger i:last-child {
        transform: rotate(180deg);
    }

    .nav__action-dropdown {
        display: none;
        flex-direction: column;
        background: var(--color-gray-50);
        border-radius: 10px;
        margin-top: 0.5rem;
        overflow: hidden;
    }

    .nav__action-btn.active .nav__action-dropdown {
        display: flex;
    }

    .nav__action-dropdown a {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.8rem 1.2rem;
        color: var(--color-gray-700);
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.2s ease;
        border-bottom: 1px solid var(--color-gray-100);
    }

    .nav__action-dropdown a:last-child {
        border-bottom: none;
    }

    .nav__action-dropdown a:hover {
        background: rgba(184, 134, 11, 0.08);
        color: var(--color-primary);
    }

    .nav__action-dropdown a i {
        width: 20px;
        text-align: center;
        color: var(--color-primary);
    }

    .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav__toggle.active span:nth-child(2) { opacity: 0; }
    .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero {
        background-position: 70% center;
    }

    .hero__content {
        margin-left: 5%;
        padding: 0 1.5rem;
        max-width: 55%;
    }

    .hero__title { font-size: 2.5rem; }
    .hero__subtitle { font-size: 0.75rem; max-width: none; }
    .hero__btn { padding: 0.9rem 1.6rem; font-size: 0.65rem; }

    .section { padding: 3rem 1.5rem; }

    .essence__main-title,
    .gallery__title,
    .honorarium__title,
    .invitation__title,
    .mysocial__title { font-size: 2rem; }

    .details__title { font-size: 1.8rem; }

    .essence__images {
        min-height: 350px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0;
    }
    .essence__image {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        width: 100% !important;
    }
    .essence__image--1 { grid-column: 1; grid-row: 1; }
    .essence__image--2 { grid-column: 2; grid-row: 1 / 3; }
    .essence__image--3 { grid-column: 1; grid-row: 2; display: block !important; }

    /* Mobile Gallery - Modern Slider Design */
    .gallery { padding: 2rem 0; }
    .gallery__header { padding: 0 1.5rem; margin-bottom: 1rem; }
    .gallery__container {
        display: block;
        padding: 0;
        max-width: 100%;
    }
    .gallery__stack { display: none; }
    .gallery__main {
        width: 100%;
        max-width: 100%;
        gap: 0;
    }

    .gallery__main-wrapper {
        position: relative;
        margin: 0 1rem;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        background: #f8f6f3;
        height: 60vh;
        max-height: 520px;
        min-height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery__main-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 0;
        box-shadow: none;
    }

    .gallery__main-image img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .gallery__main-image img.changing {
        opacity: 0;
        transform: scale(1.02);
    }

    /* Mobile Navigation Arrows - hidden on mobile, use swipe */
    .gallery__mobile-controls {
        display: none !important;
    }

    /* Photo Counter Badge */
    .gallery__counter {
        display: flex;
        align-items: center;
        gap: 2px;
        position: absolute;
        bottom: 16px;
        right: 16px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        padding: 8px 14px;
        border-radius: 20px;
        font-family: var(--font-sans);
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--color-white);
        z-index: 10;
    }

    .gallery__counter-current {
        color: var(--color-primary-light);
    }

    .gallery__counter-sep {
        opacity: 0.6;
        margin: 0 2px;
    }

    /* Dots Indicator */
    .gallery__dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 1rem;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .gallery__dot {
        width: 6px;
        height: 6px;
        border: none;
        border-radius: 50%;
        background: var(--color-gray-300);
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        flex-shrink: 0;
    }

    .gallery__dot:hover {
        background: var(--color-gray-400);
        transform: scale(1.3);
    }

    .gallery__dot.active {
        width: 18px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    }

    /* Thumbnails - dynamic slider on mobile */
    .gallery__thumbs {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 0.8rem 1rem;
        overflow: hidden;
        position: relative;
    }

    /* Hide all thumbs by default on mobile */
    .gallery__thumb {
        display: none !important;
        flex: 0 0 auto;
        width: 80px;
        height: 107px;
        border-radius: 10px;
        border: 3px solid transparent;
        opacity: 0.6;
        transition: all 0.4s ease;
        transform: scale(0.9);
    }

    /* Show only visible thumbs (controlled by JS) */
    .gallery__thumb.thumb-visible {
        display: block !important;
        transform: scale(1);
    }

    .gallery__thumb.thumb-prev {
        opacity: 0.4;
        transform: scale(0.85) translateX(-10px);
    }

    .gallery__thumb.thumb-next {
        opacity: 0.4;
        transform: scale(0.85) translateX(10px);
    }

    .gallery__thumb.active {
        opacity: 1;
        border-color: var(--color-primary);
        box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
        transform: scale(1.05);
    }

    .gallery__thumb img {
        border-radius: 7px;
    }

    .honorarium {
        padding: 3rem 1.5rem;
    }
    .honorarium__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .honorarium__image {
        max-width: 250px;
        margin: 0 auto;
        order: 0;
    }
    .honorarium__prices {
        order: 1;
        text-align: center;
    }
    .honorarium__list li {
        justify-content: center;
    }
    .honorarium__deposit {
        justify-content: center;
    }
    .honorarium__title-wrap {
        order: -1;
    }
    .honorarium__decor--1 {
        top: -15px;
        right: -25px;
    }
    .honorarium__decor--1 img {
        width: 60px;
    }
    .honorarium__decor--2 {
        bottom: -20px;
        left: -20px;
    }
    .honorarium__decor--2 img {
        width: 50px;
    }

    .form__row { grid-template-columns: 1fr; }
    .invitation__close-btn { display: none; }

    .mysocial__cards {
        gap: 0.8rem;
    }
    .mysocial__card {
        width: 110px;
        min-height: 100px;
        padding: 1rem 0.8rem;
    }
    .mysocial__card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    .mysocial__card-name { font-size: 0.65rem; }

    .footer__content { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer__nav { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
    .footer__bottom { flex-direction: column; gap: 1rem; }

    .age-overlay__box { padding: 2rem; margin: 1rem; }
    .age-overlay__logo { font-size: 3rem; }
}

@media (max-width: 480px) {
    .friends { padding: 3rem 1rem; }
    .friends__title { font-size: 2.5rem; }
    .friends__slider-wrapper { padding: 0 30px; }
    .friends__card { flex: 0 0 85%; min-width: 240px; }
    .friends__nav { width: 30px; height: 30px; font-size: 0.8rem; }
    .friends__nav--prev { left: -5px; }
    .friends__nav--next { right: -5px; }

    .nav { padding: 0.8rem 1rem; }
    .nav__logo-img { height: 38px; }

    .hero__content { margin-left: 3%; max-width: 75%; }
    .hero__title { font-size: 2rem; }
    .hero__subtitle { font-size: 0.7rem; }

    .section { padding: 2.5rem 1rem; }

    .essence__main-title,
    .gallery__title,
    .honorarium__title,
    .invitation__title,
    .mysocial__title { font-size: 1.7rem; }

    .essence__images {
        min-height: 280px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0;
    }
    .essence__image {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        width: 100% !important;
    }
    .essence__image--1 { grid-column: 1; grid-row: 1; }
    .essence__image--2 { grid-column: 2; grid-row: 1 / 3; }
    .essence__image--3 { grid-column: 1; grid-row: 2; display: block !important; }

    /* Mobile Gallery - smaller screens */
    .gallery { padding: 1.5rem 0; }
    .gallery__stack { display: none; }
    .gallery__main-wrapper {
        margin: 0 0.8rem;
        border-radius: 14px;
        height: 55vh;
        max-height: 450px;
        min-height: 280px;
    }
    .gallery__counter {
        padding: 5px 10px;
        font-size: 0.7rem;
        bottom: 10px;
        right: 10px;
    }
    .gallery__dots { gap: 4px; padding: 0.5rem; }
    .gallery__dot { width: 5px; height: 5px; }
    .gallery__dot.active { width: 14px; }
    .gallery__thumbs { gap: 8px; padding: 0.6rem 0.8rem; }
    .gallery__thumb {
        flex: 1 1 0;
        max-width: 95px;
        border-radius: 10px;
        border-width: 2px;
    }
    .gallery__thumb img { border-radius: 8px; }

    .mysocial__card {
        width: 95px;
        min-height: 90px;
        padding: 0.8rem 0.5rem;
        gap: 0.6rem;
    }
    .mysocial__card-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    .mysocial__card-img {
        width: 28px;
    }
    .mysocial__card-name { font-size: 0.6rem; }

    .footer { padding: 2.5rem 1rem; }
    .footer__logo-text { font-size: 2.2rem; }
    .footer__nav { gap: 1rem; }
    .footer__nav a { font-size: 0.65rem; }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

::selection {
    background: rgba(184, 134, 11, 0.2);
    color: var(--color-gray-800);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-gray-100); }
::-webkit-scrollbar-thumb { background: var(--color-gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary); }
