/* ===== ULTRA PREMIUM DESIGN SYSTEM ===== */
:root {
    --color-primary: #0a1612;
    --color-primary-light: #1a3d33;
    --color-accent: #c9a96e;
    --color-accent-light: #dfc699;
    --color-accent-glow: rgba(201, 169, 110, 0.4);
    --color-white: #ffffff;
    --color-off-white: #faf9f7;
    --color-cream: #f3f1ed;
    --color-gray-100: #e5e3df;
    --color-gray-200: #c9c6c0;
    --color-gray-400: #8a8680;
    --color-gray-600: #5a5752;
    --color-gray-800: #2d2b28;
    --color-black: #0d0c0b;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
    --container-width: 1440px;
    --section-padding: clamp(100px, 15vh, 180px);
    --header-height: 100px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-800);
    background: var(--color-off-white);
    overflow-x: hidden;
    cursor: auto;
}

/* Ensure default cursor visibility */
html, body, * {
    cursor: auto;
}

a, button, [role="button"], input[type="submit"], input[type="button"] {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-black);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button,
input {
    font-family: inherit;
    border: none;
    background: none;
    outline: none;
}

::selection {
    background: var(--color-accent);
    color: var(--color-white);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.preloader.loaded .preloader-overlay {
    animation: preloaderReveal 1.2s var(--ease-out-expo) forwards;
}

@keyframes preloaderReveal {
    to {
        clip-path: inset(0 0 100% 0);
    }
}

.preloader-inner {
    text-align: center;
    z-index: 1;
}

.preloader-logo {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 50px;
}

.preloader-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.preloader-circle {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 1.5;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: preloaderCircle 2.5s var(--ease-out-expo) forwards;
}

@keyframes preloaderCircle {
    to {
        stroke-dashoffset: 0;
    }
}

.preloader-letters {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 2px;
}

.preloader-letters .letter {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    opacity: 0;
    animation: letterFade 0.5s var(--ease-out-expo) forwards;
}

@keyframes letterFade {
    to {
        opacity: 1;
    }
}

.preloader-progress {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 24px;
    overflow: hidden;
    border-radius: 2px;
}

.preloader-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    animation: preloaderBar 2.5s var(--ease-out-expo) forwards;
    border-radius: 2px;
}

@keyframes preloaderBar {
    to {
        width: 100%;
    }
}

.preloader-counter {
    font-size: 0.85rem;
    color: var(--color-gray-400);
    letter-spacing: 0.3em;
}

.preloader-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    clip-path: inset(0 0 0 0);
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent-glow), transparent);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 61, 51, 0.3), transparent);
    bottom: 20%;
    left: -10%;
    animation-delay: -7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-glow), transparent);
    top: 50%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all var(--duration-normal) var(--ease-out-expo);
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    max-width: 1600px;
    padding: 0 40px;
}

.header.scrolled {
    height: 70px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--color-gray-800);
    font-size: 0.9rem;
    margin-right: 16px;
    padding: 8px;
    border-radius: 4px;
    transition: background var(--duration-fast);
}

.lang-selector:hover {
    background: var(--color-off-white);
}

.lang-selector i {
    font-size: 1rem;
    color: var(--color-gray-600);
}

.current-lang {
    font-weight: 500;
}

.action-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-gray-800);
    border-radius: 50%;
    transition: all var(--duration-fast);
}

.action-btn:hover {
    background: var(--color-off-white);
    color: var(--color-black);
    transform: translateY(-1px);
}

.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: var(--color-gray-800);
    cursor: pointer;
    border: none;
    background: none;
    margin-left: 8px;
}

/* Side Drawer */
.side-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--color-white);
    z-index: 10002;
    transition: right 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.side-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--color-gray-100);
}

.drawer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-black);
}

.drawer-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-gray-600);
    cursor: pointer;
    transition: color var(--duration-fast);
}

.drawer-close:hover {
    color: var(--color-black);
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
}

.drawer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    border-bottom: 1px solid var(--color-gray-100);
    cursor: pointer;
    transition: background var(--duration-fast);
}

.drawer-item:hover {
    background: var(--color-off-white);
}

.drawer-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-gray-800);
    flex: 1;
}

.drawer-item i {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    transition: color var(--duration-fast);
}

.drawer-item:hover i {
    color: var(--color-black);
}

/* Submenu stiliai */
.drawer-item-expandable {
    display: flex;
    flex-direction: column;
}

.drawer-submenu {
    display: flex;
    flex-direction: column;
    background: var(--color-off-white);
    overflow: hidden;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 300px;
    }
}

.drawer-submenu .drawer-sublink,
a.drawer-sublink {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 32px 16px 48px;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-gray-600);
    border-bottom: 1px solid var(--color-gray-100);
    transition: all var(--duration-fast);
    text-decoration: none;
}

.drawer-sublink span {
    flex: 1;
}

.drawer-sublink i {
    color: var(--color-gray-400);
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.drawer-sublink:hover {
    background: var(--color-cream);
    color: var(--color-black);
    padding-left: 52px;
}

.drawer-sublink:hover i {
    transform: translateX(4px);
    color: var(--color-black);
}

.drawer-sublink:last-child {
    border-bottom: none;
}

.drawer-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 32px;
    border-bottom: 1px solid var(--color-gray-100);
    position: relative;
}

.clean-select {
    appearance: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-gray-800);
    background: transparent;
    padding-right: 20px;
    cursor: pointer;
    width: 100%;
    outline: none;
}

.select-arrow {
    position: absolute;
    right: 32px;
    pointer-events: none;
}

.drawer-footer {
    padding: 32px;
    border-top: 1px solid var(--color-gray-100);
}

.btn-block {
    width: 100%;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .side-drawer {
        width: 100%;
        right: -100%;
    }

    .lang-selector,
    .action-btn:not([aria-label="Search"]):not([aria-label="Wishlist"]) {
        display: none;
    }

    /* Hide some icons on mobile header */
    .menu-toggle {
        display: flex;
    }

    .action-btn[aria-label="Wishlist"] {
        display: flex;
    }

    /* Keep wishlist */
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }
}

/* Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
    min-width: max-content;
    white-space: nowrap;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.8rem;
    gap: 8px;
}

.btn-sm .btn-icon {
    width: 16px;
    height: 16px;
}

.btn-bg {
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    z-index: 0;
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.btn:hover .btn-icon svg {
    transform: translateX(4px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 2;
}

.btn:hover .btn-shine {
    animation: btnShine 0.6s forwards;
}

@keyframes btnShine {
    to {
        left: 100%;
    }
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -15px rgba(15, 31, 26, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-gray-200);
}

.btn-hover-bg {
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out-expo);
    z-index: 0;
}

.btn-outline:hover {
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-outline:hover .btn-hover-bg {
    transform: scaleX(1);
}

.btn-dark {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -15px rgba(15, 31, 26, 0.5);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    border-color: var(--color-white);
}

.btn-outline-light:hover .btn-hover-bg {
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(1);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-outline-dark:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-white .btn-bg {
    background: var(--color-white);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-glass i {
    margin-right: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-off-white) 50%, rgba(201, 169, 110, 0.05) 100%);
}

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 1px 1px, var(--color-gray-400) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: glowFloat 15s ease-in-out infinite;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--color-accent-glow);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(26, 61, 51, 0.2);
    bottom: 10%;
    left: -10%;
    animation-delay: -5s;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: var(--color-accent-glow);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes glowFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

.hero-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(15, 31, 26, 0.05);
    border-radius: 100px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.badge-dot {
    position: relative;
    width: 10px;
    height: 10px;
}

.badge-dot-inner {
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {

    0%,
    100% {
        left: -100%;
    }

    50% {
        left: 150%;
    }
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 400;
    margin-bottom: 32px;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-accent {
    color: var(--color-accent);
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-gray-600);
    max-width: 480px;
    margin-bottom: 48px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--color-white);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.1);
    width: fit-content;
    max-width: 260px;
}

.hero-stats > .hero-stat,
.hero-stats > .stat-divider {
    flex: 0 0 auto;
}

.hero-stats .stat-label {
    white-space: nowrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-gray-100);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-showcase {
    position: relative;
}

.showcase-frame {
    position: relative;
    overflow: hidden;
}

.showcase-image-wrapper {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-out;
}

.showcase-frame:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(15, 31, 26, 0.4) 100%);
}

.showcase-frame-border {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    pointer-events: none;
}

.showcase-frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-accent);
}

.corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.showcase-decoration {
    position: absolute;
    inset: -40px;
    pointer-events: none;
}

.deco-line {
    position: absolute;
    background: var(--color-accent);
}

.deco-line-1 {
    top: 0;
    left: 0;
    width: 150px;
    height: 1px;
}

.deco-line-2 {
    bottom: 0;
    right: 0;
    width: 150px;
    height: 1px;
}

.deco-circle {
    position: absolute;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
}

.deco-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation: decoRotate 30s linear infinite;
}

.deco-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation: decoRotate 25s linear infinite reverse;
}

@keyframes decoRotate {
    to {
        transform: rotate(360deg);
    }
}

.showcase-badge {
    position: absolute;
    top: 30px;
    right: -40px;
    width: 130px;
    height: 130px;
}

.badge-ring {
    width: 100%;
    height: 100%;
    animation: rotateBadge 25s linear infinite;
}

.badge-ring svg {
    width: 100%;
    height: 100%;
}

.badge-ring text {
    font-size: 6.5px;
    fill: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@keyframes rotateBadge {
    to {
        transform: rotate(360deg);
    }
}

.badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.3rem;
    box-shadow: 0 10px 30px -10px var(--color-accent-glow);
}

.showcase-floating-card {
    position: absolute;
    bottom: 40px;
    left: -50px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: var(--color-white);
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.15);
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.3rem;
}

.floating-card-title {
    display: block;
    font-weight: 600;
    color: var(--color-black);
    font-size: 0.95rem;
}

.floating-card-text {
    font-size: 0.8rem;
    color: var(--color-gray-400);
}

/* Hero Bottom */
.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 40px 0 60px;
    margin: 0 clamp(24px, 5vw, 80px);
    border-top: 1px solid var(--color-gray-100);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--color-gray-400);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 1px;
    height: 60px;
    background: var(--color-gray-200);
    position: relative;
    overflow: hidden;
}

.scroll-line {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-accent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -50%;
    }

    100% {
        top: 150%;
    }
}

.hero-clients {
    display: flex;
    align-items: center;
    gap: 40px;
}

.clients-label {
    font-size: 0.75rem;
    color: var(--color-gray-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.clients-logos {
    display: flex;
    gap: 40px;
}

.client-logo {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-gray-300);
    letter-spacing: 0.05em;
    transition: all var(--duration-normal);
}

.client-logo:hover {
    color: var(--color-gray-600);
    transform: translateY(-2px);
}

.hero-gradient-orb {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, var(--color-accent-glow), transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

/* Marquee */
.marquee {
    padding: 24px 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    overflow: hidden;
}

.marquee-track {
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    to {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-white);
    white-space: nowrap;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.marquee-divider {
    color: var(--color-accent);
    font-size: 0.8rem;
}

/* Section Styles */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.label-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 0.9rem;
}

.section-label span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.label-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
}

.section-label-light .label-icon {
    background: rgba(255, 255, 255, 0.1);
}

.section-label-light span {
    color: var(--color-accent-light);
}

.section-label-center {
    justify-content: center;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin-bottom: 16px;
}

/* Base section-header spacing */
.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 48px;
}

/* Flex column on key sections to prevent margin collapsing */
.collection > .container {
    display: flex;
    flex-direction: column;
}

.projects > .container {
    display: flex;
    flex-direction: column;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

/* Collection section: ensure header clears the grid */
.collection .section-header {
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

/* Projects section: filters above decorative text */
.projects-filters {
    position: relative;
    z-index: 2;
}

.projects .section-header-center {
    margin-bottom: 60px;
}

/* General: ensure all image containers clip content */
.card-media,
.project-image,
.visual-image-wrapper {
    overflow: hidden;
}

.section-header-center .section-desc {
    margin: 0 auto;
}

/* About Section */
.about {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-white);
    overflow: hidden;
}

.about-bg {
    position: absolute;
    inset: 0;
}

.about-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent);
    top: -200px;
    right: -200px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 32px;
}

.about-text {
    color: var(--color-gray-600);
    margin-bottom: 24px;
    line-height: 1.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 48px 0;
}

.feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    position: relative;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
}

.feature-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
}

.feature-icon svg {
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 1.5;
}

.feature-text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--color-gray-400);
}

.about-visual {
    position: relative;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.visual-item {
    position: relative;
    overflow: hidden;
}

.visual-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.visual-item:hover img {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 31, 26, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.visual-item:hover .visual-overlay {
    opacity: 1;
}

.visual-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.visual-overlay-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-top: 12px;
    font-size: 0.8rem;
}

.visual-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.visual-item:hover .visual-shine {
    left: 150%;
}

.visual-item-1 {
    grid-row: span 2;
}

.visual-item-1 img {
    height: 520px;
}

.visual-item-2 img,
.visual-item-3 img {
    height: 250px;
}

.visual-counter {
    position: absolute;
    bottom: -50px;
    right: 40px;
    padding: 36px 44px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    text-align: center;
    box-shadow: 0 20px 50px -20px var(--color-accent-glow);
}

.counter-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--color-accent-glow), transparent);
    filter: blur(30px);
    z-index: -1;
}

.counter-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1;
}

.counter-number::after {
    content: '+';
}

.counter-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-decoration {
    position: absolute;
    top: 0;
    left: -50px;
    pointer-events: none;
}

.about-deco-circle {
    width: 200px;
    height: 200px;
    border: 1px solid var(--color-gray-100);
    border-radius: 50%;
}

/* Collection Section */
.collection {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-primary);
    overflow: hidden;
}

.collection-bg {
    position: absolute;
    inset: 0;
}

.collection-gradient-1 {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.12), transparent);
    top: -300px;
    left: -200px;
}

.collection-gradient-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 61, 51, 0.4), transparent);
    bottom: -200px;
    right: -100px;
}

.collection-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.5) 1px, transparent 0);
    background-size: 50px 50px;
}

.collection .section-title {
    color: var(--color-white);
}

.collection .section-title .title-accent {
    color: var(--color-accent);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.collection-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.card-border {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color var(--duration-normal);
    pointer-events: none;
}

.collection-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
}

.collection-card:hover .card-border {
    border-color: var(--color-accent);
}

.card-featured {
    grid-column: span 2;
}

.card-wide {
    grid-column: span 2;
}

.card-media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-featured .card-media {
    height: 380px;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.collection-card:hover .card-media img {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 26, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
}

.collection-card:hover .card-shine {
    animation: cardShine 0.8s forwards;
}

@keyframes cardShine {
    to {
        left: 150%;
    }
}

.card-explore {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--color-white);
    border-radius: 100px;
    transform: scale(0.9);
    opacity: 0;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.collection-card:hover .card-explore {
    transform: scale(1);
    opacity: 1;
}

.explore-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.card-explore svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 2;
}

.card-content {
    padding: 28px;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--color-gray-400);
    margin-bottom: 16px;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    gap: 24px;
}

.meta-count,
.meta-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-gray-400);
}

.meta-count i {
    font-size: 0.7rem;
}

.meta-price {
    color: var(--color-accent);
}

.collection-cta {
    text-align: center;
}

/* Projects Section */
.projects {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-off-white);
    overflow: hidden;
}

.projects-bg {
    position: absolute;
    inset: 0;
}

.projects-gradient {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06), transparent);
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.project-item {
    position: relative;
    overflow: hidden;
}

.project-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.project-item:hover .project-image img {
    transform: scale(1.08);
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 31, 26, 0.6), transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-normal);
    pointer-events: none;
}

.project-item:hover .project-image-overlay {
    opacity: 1;
}

.project-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity var(--duration-normal);
    pointer-events: none;
}

.project-item:hover .project-shine {
    opacity: 1;
}

.project-info {
    padding: 32px 0;
}

.project-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-gray-200);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--duration-normal);
}

.project-item:hover .project-number {
    color: var(--color-accent);
}

.project-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 8px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-gray-400);
    margin-bottom: 20px;
}

.project-location i {
    font-size: 0.75rem;
    color: var(--color-accent);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: all var(--duration-fast);
}

.project-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--duration-normal);
}

.project-link:hover {
    color: var(--color-accent);
}

.project-link:hover svg {
    transform: translateX(4px);
}

.projects-cta {
    text-align: center;
}

/* Testimonial */
.testimonial {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-cream);
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
}

.testimonial-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1), transparent 60%);
}

.testimonial-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(circle at 1px 1px, var(--color-gray-600) 1px, transparent 0);
    background-size: 30px 30px;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote {
    margin-bottom: 40px;
}

.testimonial-quote svg {
    width: 70px;
    height: 70px;
    color: var(--color-accent);
    opacity: 0.25;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    font-weight: 400;
    font-style: italic;
    color: var(--color-black);
    line-height: 1.6;
    margin-bottom: 48px;
}

.testimonial-text .highlight {
    color: var(--color-accent);
    font-style: normal;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.author-image {
    position: relative;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-image-border {
    position: absolute;
    inset: -3px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
    font-size: 1.05rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--color-gray-400);
}

.author-rating {
    display: flex;
    gap: 4px;
    margin-left: 24px;
    color: var(--color-accent);
    font-size: 0.95rem;
}

.testimonial-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.testi-deco-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid var(--color-gray-100);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.testi-deco-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid var(--color-gray-100);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

/* CTA Section */
.cta {
    position: relative;
    padding: var(--section-padding) 0;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 18, 0.95), rgba(10, 22, 18, 0.85));
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-white);
}

.cta-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.cta-label-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 169, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.cta-title span {
    color: var(--color-accent);
    font-style: italic;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.trust-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-gradient-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-glow);
    top: -100px;
    left: -100px;
    opacity: 0.3;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(26, 61, 51, 0.4);
    bottom: -50px;
    right: -50px;
}

/* Footer */
.footer {
    position: relative;
    background: var(--color-primary);
    color: var(--color-white);
    overflow: hidden;
}

.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-cta h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 0.95rem;
    transition: all var(--duration-fast);
}

.newsletter-input::placeholder {
    color: var(--color-gray-400);
}

.newsletter-input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--duration-normal);
}

.newsletter-btn:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding: 80px 0;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 320px;
}

/* Logo text base styles - ensures two-line layout */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-tagline {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

/* Footer logo image */
.footer-logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-footer .logo-icon {
    background: rgba(255, 255, 255, 0.1);
}

.logo-footer .logo-name {
    color: var(--color-white);
}

/* Smaller footer logo variant */
.logo-footer-small .logo-text {
    transform: scale(0.85);
    transform-origin: left center;
}

.logo-footer-small .logo-name {
    font-size: 1.4rem;
}

.logo-footer-small .logo-tagline {
    font-size: 0.85rem;
}

.footer-desc {
    color: var(--color-gray-400);
    margin: 24px 0;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-white);
    transition: all var(--duration-normal);
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul a {
    color: var(--color-gray-400);
    font-size: 0.95rem;
    transition: color var(--duration-fast);
}

.footer-col ul a:hover {
    color: var(--color-accent);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-gray-400);
    font-size: 0.95rem;
}

.footer-contact ul li i {
    color: var(--color-accent);
    margin-top: 4px;
    font-size: 0.85rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--color-gray-400);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    transition: color var(--duration-fast);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 300px;
    background: radial-gradient(ellipse, var(--color-accent-glow), transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 40px;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out-expo);
    z-index: 100;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.4);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    position: relative;
    z-index: 1;
}

.back-to-top-progress {
    position: absolute;
    inset: 0;
}

.back-to-top-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.back-to-top-progress circle {
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 2;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.3s;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        gap: 60px;
    }

    .about-grid {
        gap: 80px;
    }

    .footer-main {
        gap: 60px;
    }

    .footer-links {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.5s var(--ease-out-expo);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link-text {
        font-size: 1.5rem;
        color: var(--color-black);
    }

    .nav-link-hover {
        font-size: 1.5rem;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-main {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-description {
        margin: 0 auto 48px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .showcase-floating-card {
        left: 20px;
    }

    .showcase-badge {
        right: -20px;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .collection-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card-featured,
    .card-wide {
        grid-column: span 2;
    }

    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .project-image {
        aspect-ratio: 4/3;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .showcase-image-wrapper {
        height: 450px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .card-featured,
    .card-wide {
        grid-column: span 1;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-badge {
        padding: 10px 16px;
    }

    .hero-badge span {
        font-size: 0.7rem;
    }

    .btn {
        padding: 16px 28px;
        font-size: 0.85rem;
    }

    .showcase-badge {
        display: none;
    }

    .showcase-floating-card {
        display: none;
    }

    .visual-item-1 img {
        height: 350px;
    }

    .visual-item-2 img,
    .visual-item-3 img {
        height: 170px;
    }

    .project-image {
        aspect-ratio: 4/3;
    }

    .back-to-top {
        bottom: 90px;
        right: 24px;
        width: 48px;
        height: 48px;
    }
}

/* ========================================
   News Section
======================================== */
.news {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-cream);
    overflow: hidden;
}

.news-bg {
    position: absolute;
    inset: 0;
}

.news-gradient {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent);
    top: -100px;
    right: -100px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.news-card {
    position: relative;
    background: var(--color-white);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.news-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

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

.news-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: rgba(255, 255, 255, 0.3);
    fill: none;
    stroke-width: 1.5;
}

.news-card-content {
    padding: 28px;
}

.news-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.news-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--duration-fast);
}

.news-link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--duration-normal);
}

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

.news-link:hover svg {
    transform: translateX(4px);
}

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

/* News Section Responsive */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-title {
        font-size: 1.2rem;
    }
    
    .news-card-content {
        padding: 20px;
    }
}

/* ============================================
   NEWS SECTION - EXACT PROJECTS LAYOUT
   ============================================ */

/* Reduce section padding (eliminate excessive empty space) */
.news-section.projects {
    padding: clamp(48px, 8vh, 90px) 0;
}

/* Center header above all cards */
.news-section .section-header {
    margin-bottom: 32px;
    text-align: center;
}

.news-section .section-header.section-header-center {
    display: flex;
    justify-content: center;
}

.news-section .section-label.section-label-center {
    justify-content: center;
}

/* Bigger icon for news label */
.news-section .label-icon,
.news-label-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

.news-section .label-icon svg,
.news-label-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
}

/* Force 3-column grid for news (override global breakpoint collapse) */
.news-section .projects-showcase,
.news-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 0;
}

/* Hide any numbering (defensive) */
.news-section .project-number {
    display: none !important;
}

/* News card styling: anchor behaves like project cards */
.news-project-item {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    /* Clean layout - no borders */
}

/* Tighter info padding + centered text */
.news-section .project-info,
.news-article-info {
    padding: 20px 0 0;
    text-align: center;
}

.news-section .project-title,
.news-article-info h3 {
    text-align: center;
}

.news-article-excerpt {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
}

/* Use accent color for link - centered */
.news-section .project-link,
.news-article-link {
    color: var(--color-accent);
    text-decoration: none;
    display: flex;
    justify-content: center;
}

/* Center "All news" button */
.news-section .projects-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 40px;
    padding: 0;
}

.news-section .projects-actions .btn,
.news-section .projects-actions a {
    float: none !important;
    margin: 0 auto !important;
}

/* News section button fix - ensure btn-outline text is visible */
.news-section .btn-outline {
    border: 1px solid var(--color-gray-200) !important;
    color: var(--color-primary) !important;
    position: relative;
    overflow: hidden;
}

.news-section .btn-outline .btn-bg {
    display: none !important;
}

.news-section .btn-outline .btn-text {
    position: relative;
    z-index: 1;
    color: var(--color-primary) !important;
}

.news-section .btn-outline .btn-icon {
    position: relative;
    z-index: 1;
}

.news-section .btn-outline .btn-icon svg {
    stroke: var(--color-primary);
}

.news-section .btn-outline:hover {
    border-color: var(--color-primary) !important;
}

.news-section .btn-outline:hover .btn-text {
    color: var(--color-white) !important;
}

.news-section .btn-outline:hover .btn-icon svg {
    stroke: var(--color-white);
}

.news-section .project-link:hover,
.news-article-link:hover {
    color: var(--color-accent);
}

/* Responsive: keep 3 columns until narrower screens */
@media (max-width: 900px) {
    .news-section .projects-showcase,
    .news-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .news-section .projects-showcase,
    .news-showcase {
        grid-template-columns: 1fr;
    }
}

/* Fade-in Animations */
.news-fade-in {
    animation: newsFadeIn 0.8s var(--ease-out-expo) forwards;
}

.news-card-fade-in {
    opacity: 0;
    animation: newsCardFadeIn 0.6s var(--ease-out-expo) forwards;
}

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

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

/* ===== VISUAL EDITOR EDIT MODE STYLES ===== */

/* Disable pointer events on decorative overlays during editing */
body[data-edit-mode="text"] .project-image-overlay,
body[data-edit-mode="text"] .project-shine,
body[data-edit-mode="image"] .project-image-overlay,
body[data-edit-mode="image"] .project-shine {
    pointer-events: none !important;
}

/* Make links non-navigable in edit modes */
body[data-edit-mode="text"] a,
body[data-edit-mode="image"] a {
    cursor: default;
}

/* Highlight all editable dynamic entity elements */
body[data-edit-mode="text"] [data-entity-type] {
    cursor: text !important;
    position: relative;
}

body[data-edit-mode="text"] [data-entity-type]:hover {
    outline: 2px dashed hsl(270 70% 50%) !important;
    outline-offset: 4px;
    background: hsla(270, 70%, 50%, 0.08) !important;
}

/* Footer brand text - single line */
.footer-brand-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: inherit;
    white-space: nowrap;
}