/* ===== CREATIVE DESIGN SYSTEM ===== */

:root {
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --cream: #faf7f2;
    --cream-dark: #f0ebe3;
    --gold: #c9a06c;
    --gold-light: #e8d4b0;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --header-height: 88px;
    --topbar-height: 38px;
}

body {
    background: var(--cream);
}

/* ===== SITE HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .topbar {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}

.site-header .navbar,
.site-header .creative-nav {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-top: 0;
}

.site-header.is-scrolled {
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled .topbar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    border: none;
}

.site-header.is-scrolled .creative-nav {
    margin-top: 0;
    background: rgba(26, 26, 26, 0.92);
    border-radius: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.topbar {
    background: var(--anthracite-darkest);
    border-bottom: none;
    padding: 0.45rem 0;
    font-size: 0.78rem;
    position: relative;
    max-height: 40px;
    transition: all 0.4s ease;
    letter-spacing: 0.03em;
}

.topbar-item span {
    opacity: 0.85;
}

.creative-nav {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
    margin-top: 0;
    padding: 0 1.5rem;
}

.creative-nav .container {
    max-width: 1320px;
}

.creative-nav .nav-wrapper {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 0.5rem 0.6rem 0.5rem 1.25rem;
    margin: 0.75rem auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.navbar .logo-img {
    height: 56px;
    filter: brightness(1.05);
}

.nav-menu {
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.25rem;
    border-radius: 100px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.55rem 1.1rem;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.75);
}

.nav-link::after {
    display: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.4rem;
    background: linear-gradient(135deg, var(--gold) 0%, #b8894f 100%);
    color: var(--anthracite-darkest);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 160, 108, 0.4);
}

.hamburger span {
    height: 2px;
    background: var(--white);
}

.hamburger span:nth-child(2) {
    width: 18px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    padding: 0;
}

/* ===== MOBILE MENU ===== */
body.menu-open {
    overflow: hidden;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.active {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 380px);
    height: 100%;
    background: var(--anthracite-darkest);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    overflow-y: auto;
}

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

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__logo img {
    height: 40px;
    width: auto;
}

.mobile-menu__close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.mobile-menu__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.75rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(20px);
}

.mobile-menu.active .mobile-menu__link {
    animation: mobileLinkIn 0.45s ease forwards;
}

.mobile-menu.active .mobile-menu__link:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.active .mobile-menu__link:nth-child(2) { animation-delay: 0.14s; }
.mobile-menu.active .mobile-menu__link:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.active .mobile-menu__link:nth-child(4) { animation-delay: 0.26s; }

@keyframes mobileLinkIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.mobile-menu__link.active .mobile-menu__link-text {
    color: var(--gold-light);
}

.mobile-menu__link-num {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    opacity: 0.7;
    min-width: 24px;
}

.mobile-menu__link-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    flex: 1;
    letter-spacing: -0.01em;
}

.mobile-menu__link-arrow {
    font-size: 1.3rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
    color: var(--gold);
}

.mobile-menu__link:hover .mobile-menu__link-arrow,
.mobile-menu__link.active .mobile-menu__link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu__cta {
    display: block;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, #b8894f 100%);
    color: var(--anthracite-darkest);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 160, 108, 0.35);
}

.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mobile-menu__contact a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.mobile-menu__contact a:hover {
    color: var(--gold-light);
}

.mobile-menu__contact i {
    font-size: 1.1rem;
    color: var(--gold);
}

.mobile-menu__social {
    display: flex;
    gap: 0.75rem;
}

.mobile-menu__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-menu__social a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold);
    border-color: rgba(201, 160, 108, 0.3);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 25px;
}

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

.mobile-menu:not(.active) .mobile-menu__link {
    opacity: 0;
    transform: translateX(20px);
    animation: none;
}

/* ===== CREATIVE SLIDER ===== */
.creative-slider {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--topbar-height) + var(--header-height) + 1.5rem);
    padding-bottom: 0;
    overflow: hidden;
    background: var(--cream);
}

.creative-slider__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.creative-slider__mesh {
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: background 0.8s ease;
}

.creative-slider__mesh[data-theme="pro"] {
    background:
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 160, 108, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 10% 80%, rgba(47, 47, 47, 0.06) 0%, transparent 50%),
        var(--cream);
}

.creative-slider__mesh[data-theme="home"] {
    background:
        radial-gradient(ellipse 70% 50% at 80% 30%, rgba(180, 200, 220, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 20% 70%, rgba(201, 160, 108, 0.12) 0%, transparent 50%),
        var(--cream);
}

.creative-slider__mesh[data-theme="fragrance"] {
    background:
        radial-gradient(ellipse 75% 55% at 65% 25%, rgba(212, 165, 116, 0.22) 0%, transparent 58%),
        radial-gradient(ellipse 45% 35% at 15% 75%, rgba(139, 90, 43, 0.08) 0%, transparent 50%),
        var(--cream);
}

.creative-slider .hero-slider {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    min-height: 0;
    height: auto;
}

.creative-slider .hero-slide {
    align-items: flex-start;
    padding: 1.5rem 0 0;
}

.creative-slider .hero-slide:not(.active) {
    inset: auto;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
}

.creative-slider .hero-slide.active {
    display: flex;
}

.hero-slide-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-tag {
    background: var(--anthracite);
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 100px;
}

.hero-slide-index {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.hero-slide-index span {
    color: var(--anthracite);
    font-size: 1rem;
}

.creative-display {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--anthracite-darkest);
}

.creative-display em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-light);
    max-width: 460px;
}

.hero-slide-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-ring {
    position: absolute;
    width: min(420px, 90%);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(201, 160, 108, 0.25);
    animation: ringPulse 4s ease-in-out infinite;
}

.hero-visual-ring::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(201, 160, 108, 0.15);
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.04); opacity: 1; }
}

.creative-slider .hero-slide-image {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.creative-slider .hero-slide-image img {
    max-height: clamp(280px, 38vh, 420px);
    border-radius: var(--radius-lg);
    box-shadow: none;
}

.btn-creative {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 100px;
    padding: 0.95rem 1.75rem;
}

.btn-creative i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-creative:hover i {
    transform: translateX(4px);
}

.btn-creative-outline {
    border-radius: 100px;
    border-width: 1.5px;
}

.creative-slider__footer {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    padding: 1rem 20px 2rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.creative-slider__progress {
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.creative-slider__progress-bar {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, var(--gold), var(--anthracite));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.creative-slider__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.creative-slider .hero-slider-controls {
    position: static;
    transform: none;
    gap: 0.5rem;
}

.creative-slider .slider-dot {
    width: auto;
    height: auto;
    border-radius: 100px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.creative-slider .slider-dot span {
    display: block;
}

.creative-slider .slider-dot.active,
.creative-slider .slider-dot:hover {
    background: var(--anthracite);
    border-color: var(--anthracite);
    color: var(--white);
}

.creative-slider .slider-arrow {
    position: static;
    transform: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.creative-slider .slider-arrow:hover {
    background: var(--anthracite);
    color: var(--white);
}

/* ===== CREATIVE PAGE HERO ===== */
.creative-page-hero {
    position: relative;
    padding: calc(var(--topbar-height) + var(--header-height) + 3rem) 0 4rem;
    overflow: hidden;
    background: var(--anthracite-darkest);
    color: var(--white);
}

.creative-page-hero__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(201, 160, 108, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.creative-page-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.creative-page-hero__orb--1 {
    width: 300px;
    height: 300px;
    background: rgba(201, 160, 108, 0.12);
    top: -80px;
    right: 10%;
}

.creative-page-hero__orb--2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    bottom: -40px;
    left: 5%;
}

.creative-page-hero__watermark {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
    pointer-events: none;
    user-select: none;
}

.creative-page-hero__inner {
    position: relative;
    z-index: 1;
}

.creative-page-hero .breadcrumb a,
.creative-page-hero .breadcrumb-sep {
    color: rgba(255, 255, 255, 0.45);
}

.creative-page-hero .breadcrumb a:hover {
    color: var(--gold-light);
}

.creative-page-hero .breadcrumb-current {
    color: var(--gold);
}

.creative-page-hero__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.creative-page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 700px;
}

.creative-page-hero__title em {
    display: block;
    font-style: italic;
    color: var(--gold-light);
    font-weight: 400;
}

.creative-page-hero__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
}

/* ===== CREATIVE SECTION HEADERS ===== */
.creative-section {
    padding: 6rem 0;
}

.creative-section-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.creative-section-head__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 0.5rem;
}

.creative-section-head__num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
    color: var(--gold);
    opacity: 0.9;
}

.creative-section-head__line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.creative-section-head__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.creative-section-head__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--anthracite-darkest);
    letter-spacing: -0.02em;
}

.creative-section-head__title em {
    font-style: italic;
    color: var(--gold);
}

.creative-section-head__desc {
    margin-top: 0.75rem;
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 520px;
}

/* ===== SECTIONS REDESIGN ===== */
.features.creative-section {
    background: var(--white);
}

.feature-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    background: var(--anthracite);
    border-radius: 16px;
}

.product-preview-section.creative-section {
    background: var(--cream-dark);
}

.product-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
}

.product-card-image {
    position: relative;
}

.product-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.03), transparent 40%);
    pointer-events: none;
}

.product-card-body .btn-primary {
    border-radius: 100px;
}

.creative-section--dark {
    background: var(--anthracite-darkest);
    color: var(--white);
}

.creative-section--dark .creative-section-head__title {
    color: var(--white);
}

.creative-section--dark .creative-section-head__desc,
.creative-section--dark .fragrance-description {
    color: rgba(255, 255, 255, 0.65);
}

.creative-section--dark .fragrance-feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.creative-section--dark .fragrance-feature-item h4 {
    color: var(--white);
}

.creative-section--dark .fragrance-feature-item p {
    color: rgba(255, 255, 255, 0.55);
}

.creative-section--dark .fragrance-feature-item i {
    color: var(--gold);
}

.testimonials.creative-section {
    background: var(--white);
}

.testimonial-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--cream);
}

/* ===== ESANS TABS CREATIVE ===== */
.scent-pyramid-section {
    background: var(--white);
}

.scent-tabs {
    background: var(--cream);
    padding: 0.5rem;
    border-radius: 100px;
    display: inline-flex;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.scent-tab {
    border: none;
    border-radius: 100px;
    background: transparent;
    min-width: 52px;
}

.scent-tab.active {
    background: var(--anthracite);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scent-panel-content {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail-section {
    background: var(--cream);
}

.product-detail-main {
    border-radius: var(--radius-xl);
    background: var(--white);
}

.product-feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.product-feature-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(201, 160, 108, 0.35);
}

.product-feature-box:hover::before {
    opacity: 1;
}

.product-feature-box__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--anthracite-darkest), var(--anthracite));
    color: var(--gold-light);
    border-radius: 14px;
    font-size: 1.35rem;
}

.product-feature-box__text {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--anthracite-darkest);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--cream);
}

.contact-form-wrapper {
    border-radius: var(--radius-xl);
    background: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav-cta {
        display: none;
    }

    .nav-menu--desktop {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .creative-nav .nav-wrapper {
        border-radius: 20px;
        padding: 0.75rem 1rem;
    }

    .creative-section-head {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .creative-section-head__meta {
        flex-direction: row;
        align-items: center;
    }

    .creative-section-head__line {
        width: 60px;
        height: 1px;
        background: linear-gradient(to right, var(--gold), transparent);
    }

    .creative-page-hero__watermark {
        opacity: 0.4;
        right: -5%;
    }

    .creative-slider {
        padding-top: 100px;
    }

    .product-feature-boxes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slide-content {
        text-align: left;
    }

    .creative-slider__controls {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar .logo-img {
        height: 48px;
    }
}

@media (max-width: 576px) {
    .mobile-menu__panel {
        width: 100%;
        border-left: none;
    }

    .mobile-menu__link-text {
        font-size: 1.35rem;
    }

    .creative-nav {
        padding: 0 0.75rem;
    }

    .navbar .logo-img {
        height: 44px;
    }

    .creative-display {
        font-size: 2.2rem;
    }

    .creative-slider .hero-slide-image {
        padding: 1rem;
    }

    .product-feature-boxes {
        grid-template-columns: 1fr;
    }
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
}

.footer-brand .logo-text {
    display: none;
}

/* ===== CREATIVE PRELOADER ===== */
.loading-screen {
    background: var(--anthracite-darkest);
    overflow: hidden;
}

.loading-screen__mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201, 160, 108, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 40% 30% at 80% 80%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.loading-screen__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.loading-screen__orb--1 {
    width: 280px;
    height: 280px;
    background: rgba(201, 160, 108, 0.15);
    top: 20%;
    left: 15%;
    animation: preloaderOrb 6s ease-in-out infinite;
}

.loading-screen__orb--2 {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    bottom: 15%;
    right: 10%;
    animation: preloaderOrb 8s ease-in-out infinite reverse;
}

@keyframes preloaderOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.08); }
}

.loading-content {
    position: relative;
    z-index: 1;
    gap: 1.75rem;
}

.loading-logo {
    position: relative;
    z-index: 2;
    animation: loadingLogoIn 0.8s ease forwards;
}

@keyframes loadingLogoIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.loading-logo-img {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 4px 24px rgba(201, 160, 108, 0.35));
    animation: none;
}

.loading-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar__fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: loadingBarSlide 1.4s ease-in-out infinite;
}

@keyframes loadingBarSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

.loading-text {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    animation: textPulse 2s ease-in-out infinite;
}

.loading-spinner {
    display: none;
}

