/* ===================================
   LIAKOPOULOS CASA - Main Stylesheet
   Immersive Editorial Design
   =================================== */

/* === CSS Variables === */
:root {
    /* Colors */
    --color-bg: #FAFAF8;
    --color-bg-dark: #0D0D0D;
    --color-bg-warm: #F5F0EB;
    --color-text: #1A1A1A;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-accent: #B8860B;
    --color-accent-light: #DAA520;
    --color-accent-dark: #8B6914;
    --color-border: #E5E5E5;
    --color-border-dark: #333333;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-2xl: 12rem;
    
    /* Sizing */
    --container-max: 1440px;
    --container-padding: 4rem;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 0.3s;
    --duration-normal: 0.6s;
    --duration-slow: 1s;
    
    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* === Custom Cursor === */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

.cursor.hovering .cursor-ring {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 255, 255, 0.8);
}

/* === Loader === */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    margin-bottom: 3rem;
}

.loader-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: white;
}

.loader-subtext {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--color-accent);
    margin-top: 0.5rem;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--color-accent);
    animation: loaderProgress 2s var(--ease-out) forwards;
}

@keyframes loaderProgress {
    to { width: 100%; }
}

/* === Header / Navigation === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem var(--container-padding);
    transition: all var(--duration-fast) var(--ease-out);
}

.header.scrolled {
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem var(--container-padding);
    box-shadow: 0 1px 0 var(--color-border);
}

.contact-form {
    scroll-margin-top: 7rem;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    transition: all var(--duration-fast);
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.loader-logo-img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4.5rem;
    position: relative;
    z-index: 10;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--duration-fast);
    cursor: pointer;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--duration-fast) var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header.scrolled .nav-link {
    color: var(--color-text-light);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-text);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--duration-fast);
}

.header.scrolled .lang-switcher {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.1);
}

.lang-btn {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.65);
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    transition: all var(--duration-fast);
    line-height: 1;
    cursor: pointer;
}

.header.scrolled .lang-btn {
    color: var(--color-text-muted);
}

.lang-btn:hover {
    color: #ffffff;
}

.header.scrolled .lang-btn:hover {
    color: var(--color-text);
}

.lang-btn.active {
    color: var(--color-accent);
    font-weight: 700;
}

.header.scrolled .lang-btn.active {
    color: var(--color-accent);
}

.lang-divider {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    user-select: none;
}

.header.scrolled .lang-divider {
    color: rgba(0, 0, 0, 0.2);
}

.nav-social {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--duration-fast);
    cursor: pointer;
}

.header.scrolled .nav-social {
    color: var(--color-text-light);
}

.nav-social:hover {
    color: var(--color-accent);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-menu-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: white;
    transition: all var(--duration-fast) var(--ease-out);
}

.header.scrolled .nav-menu-btn span {
    background: var(--color-text);
}

.nav-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.nav-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-dark);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-inner {
    text-align: center;
}

.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: white;
    margin: 1rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration-fast) var(--ease-out);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }

.mobile-link:hover {
    color: var(--color-accent);
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem auto 0.5rem;
    padding: 0.35rem 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

.mobile-lang-btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    transition: all var(--duration-fast);
    cursor: pointer;
}

.mobile-lang-btn.active {
    background: var(--color-accent);
    color: #000000;
    font-weight: 600;
}

.mobile-menu-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-dark);
}

.mobile-menu-footer a,
.mobile-menu-footer span {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0.5rem 0;
}

.mobile-menu-footer a:hover {
    color: var(--color-accent);
}

/* === Hero Section === */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 30%, #4a4a4a 60%, #2c2c2c 100%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(184, 134, 11, 0.12), transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(160, 160, 160, 0.15), transparent 50%);
}

.hero-bg-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-tagline-line {
    width: 40px;
    height: 1px;
    background: var(--color-accent);
}

.hero-tagline-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 400;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: white;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    color: var(--color-accent-light);
    font-style: italic;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* Hero Floating Elements */
.hero-float {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.hero-float-1 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    top: -100px;
    right: -100px;
    animation: float1 20s ease-in-out infinite;
}

.hero-float-2 {
    width: 300px;
    height: 300px;
    background: #0f3460;
    bottom: -100px;
    left: -100px;
    animation: float2 15s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(0.9); }
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.btn-primary.btn-light {
    background: white;
    color: var(--color-text);
}

.btn-primary.btn-light:hover {
    background: var(--color-bg-warm);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-ghost:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--duration-fast);
}

.link-arrow svg {
    transition: transform var(--duration-fast) var(--ease-out);
}

.link-arrow:hover {
    color: var(--color-accent);
}

.link-arrow:hover svg {
    transform: translateX(5px);
}

/* === Marquee === */
.marquee-section {
    padding: 2rem 0;
    background: var(--color-bg-dark);
    overflow: hidden;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-inner span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.marquee-dot {
    font-size: 0.5rem !important;
    color: var(--color-accent) !important;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Section Headers === */
.section-header {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 300;
    margin-top: 1rem;
    max-width: 500px;
}

.section-header.centered .section-desc {
    margin-left: auto;
    margin-right: auto;
}

/* === Categories Section === */
.categories-section {
    padding: var(--space-xl) 0;
}

.categories-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 var(--container-padding);
    margin-bottom: 3rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.categories-scroll::-webkit-scrollbar {
    display: none;
}

.categories-track {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 1rem;
    justify-content: center;
}

.category-card {
    flex-shrink: 0;
    width: 300px;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform var(--duration-fast) var(--ease-out);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    padding: var(--space-lg) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.category-cards-grid .category-card {
    width: 100%;
    max-width: 320px;
}

.category-card::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
    pointer-events: none;
}

.category-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.category-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-card-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

img.category-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
}

.category-card:hover .category-card-placeholder {
    transform: scale(1.05);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    z-index: 1;
}

.category-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.category-card-number {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    display: block;
}

.category-card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: white;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.category-card-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.categories-cta {
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* === Features Section === */
.features-section {
    padding: var(--space-xl) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.feature-large {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}

.feature-large-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.feature-large-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
}

.feature-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 300;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.feature-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 400px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--color-bg-warm);
    transition: all var(--duration-fast) var(--ease-out);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.feature-item-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-item-content p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 300;
    line-height: 1.5;
}

/* === Inspiration Section === */
.inspiration-section {
    padding: var(--space-xl) var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    min-height: 600px;
    margin-bottom: 3rem;
}

.inspiration-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: transform var(--duration-fast) var(--ease-out);
}

.inspiration-item:hover {
    transform: scale(0.98);
}

.inspiration-item-large {
    grid-row: span 2;
}

.inspiration-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform var(--duration-slow) var(--ease-out);
}

.inspiration-item:hover .inspiration-item-bg {
    transform: scale(1.05);
}

.inspiration-item-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.inspiration-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.inspiration-item-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    line-height: 1.3;
}

.inspiration-item-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.inspiration-cta {
    text-align: center;
}

/* === Stats Section === */
.stats-section {
    padding: var(--space-xl) var(--container-padding);
    background: var(--color-bg-warm);
}

.stats-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--color-text);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-accent);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-top: 0.75rem;
    letter-spacing: 0.05em;
}

/* === Instagram Section === */
.instagram-section {
    padding: var(--space-xl) 0;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    margin: 3rem 0;
}

.instagram-item {
    aspect-ratio: 1;
    transition: all var(--duration-fast) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.instagram-item:hover {
    opacity: 0.8;
    transform: scale(0.95);
}

.instagram-feed-embed {
    max-width: 500px;
    margin: 3rem auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 769px) {
    .instagram-feed-embed {
        max-width: 1100px;
    }
}

.instagram-cta {
    text-align: center;
    margin-top: 3rem;
}

/* === Footer === */
.footer {
    background: var(--color-bg-dark);
    color: white;
    padding: var(--space-lg) var(--container-padding);
}

.footer-top {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border-dark);
}

.footer-logo-main {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
}

.footer-logo-sub {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-top: 0.25rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 1.5rem;
    font-weight: 300;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    transition: color var(--duration-fast);
    cursor: pointer;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--duration-fast);
}

.footer-social a:hover {
    color: var(--color-accent);
}

/* === Responsive === */
@media (max-width: 1200px) {
    :root {
        --container-padding: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        min-height: 400px;
    }
    
    .inspiration-grid {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }
    
    .inspiration-item-large {
        grid-row: span 1;
        grid-column: span 2;
        min-height: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .cursor {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    a, button {
        cursor: pointer;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-social {
        display: none;
    }
    
    .nav-right {
        gap: 0.75rem;
    }
    
    .nav-menu-btn {
        display: flex;
    }
    
    .hero-title-line {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .category-card {
        width: 260px;
        height: 360px;
    }
    
    .inspiration-grid {
        grid-template-columns: 1fr;
    }
    
    .inspiration-item-large {
        grid-column: span 1;
        min-height: 280px;
    }
    
    .inspiration-item:not(.inspiration-item-large) {
        min-height: 200px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    .header {
        padding: 1rem var(--container-padding);
    }
    
    .logo-main {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
    }
    
    .category-card {
        width: 240px;
        height: 320px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* === Back to Top Button === */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-fast) var(--ease-out);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
}

/* === WhatsApp / Call CTA (Mobile Fixed) === */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-dark);
    padding: 0.75rem var(--container-padding);
    z-index: 800;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

.mobile-cta-bar-inner {
    display: flex;
    gap: 0.75rem;
}

.mobile-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background var(--duration-fast);
}

.mobile-cta-call {
    background: var(--color-accent);
    color: white;
}

.mobile-cta-directions {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: block;
    }
    
    .footer {
        padding-bottom: 5rem;
    }

    .back-to-top {
        bottom: 5rem;
    }
}

/* === Enhanced Visual Polish === */
.feature-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    z-index: 1;
}

.feature-large-content {
    z-index: 2;
}

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* Selection color */
::selection {
    background: var(--color-accent);
    color: white;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* Smooth scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-dark);
}

/* === Reviews Section === */
.reviews-section {
    padding: var(--space-xl) var(--container-padding);
    background: var(--color-bg-warm);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.reviews-score {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-text);
    line-height: 1;
}

.reviews-stars {
    display: flex;
    gap: 0.25rem;
}

.reviews-count {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--container-max);
    margin: 0 auto 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
}

.review-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
}

.review-stars-small {
    color: var(--color-accent);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.review-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.reviews-cta {
    text-align: center;
}

/* === Cookie Consent Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-bg-dark);
    color: white;
    padding: 1.25rem var(--container-padding);
    z-index: 9500;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--color-accent-light);
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-accept {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

.cookie-decline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    font-family: var(--font-body);
    cursor: pointer;
    transition: color var(--duration-fast);
    padding: 0.75rem 1rem;
}

.cookie-decline:hover {
    color: white;
}

/* Reviews responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-banner {
        padding-bottom: 1.5rem;
    }
}

/* Contact page responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 3rem var(--container-padding) !important;
    }
}

/* WhatsApp Floating Button */
/* Category Popup */
.category-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    backdrop-filter: blur(4px);
}

.category-popup-overlay.active {
    display: flex;
}

.category-popup {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 640px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: popupIn 0.3s var(--ease-out);
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.category-popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: var(--color-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color var(--duration-fast);
}

.category-popup-close:hover {
    color: var(--color-text);
}

.category-popup-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.category-popup-list {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
}

.category-popup-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
    border-bottom: 1px solid var(--color-border);
    padding-left: 1.2rem;
    position: relative;
    break-inside: avoid;
}

.category-popup-list li:last-child {
    border-bottom: none;
}

.category-popup-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* Nav Search */
.nav-search {
    position: relative;
}

.nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--duration-fast);
    cursor: pointer;
}

.header.scrolled .nav-search-btn {
    color: var(--color-text-light);
}

.nav-search-btn:hover {
    color: var(--color-accent);
}

.nav-search-box {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 1rem;
    width: 280px;
    display: none;
    flex-direction: column;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 100;
}

.nav-search-box.active {
    display: flex;
}

.nav-search-box input {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    outline: none;
    background: white;
    cursor: text;
}

.nav-search-box input::placeholder {
    color: var(--color-text-muted);
}

.search-results {
    max-height: 240px;
    overflow-y: auto;
    border-top: 1px solid var(--color-border);
}

.search-results:empty {
    border-top: none;
}

.search-result-item {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--color-text);
    transition: background var(--duration-fast);
    cursor: pointer;
}

.search-result-item:hover {
    background: var(--color-bg-warm);
    color: var(--color-accent);
}

.search-no-results {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 50px;
        height: 50px;
    }
}
