/* ============================================
   ZELLIJ — ORIGINAL MOROCCAN CAFÉ DESIGN
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
    --orange: #D4761C;
    --orange-light: #E89A47;
    --orange-pale: #F5D3A8;
    --green: #1B6B4A;
    --green-light: #2A8F64;
    --green-dark: #0F3D2B;
    --gold: #C9A84C;
    --gold-pale: #E8D9A0;

    --cream: #FAF5ED;
    --cream-dark: #F0E8DA;
    --sand: #E8DCC8;
    --brown-deep: #1A0F0A;
    --brown: #2C1810;
    --brown-warm: #4A2C1A;
    --text: #2C1810;
    --text-soft: #6B5544;

    --nav-h: 80px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
    scrollbar-width: thin;
    scrollbar-color: var(--orange) var(--cream-dark);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 3px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.15;
    font-weight: 600;
}

h2 em,
h3 em {
    font-style: italic;
    color: var(--orange);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
}

ul {
    list-style: none;
}

button {
    cursor: none;
}

input,
textarea,
select {
    cursor: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Selection ---------- */
::selection {
    background: var(--orange);
    color: var(--cream);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s, opacity 0.3s;
    mix-blend-mode: difference;
    opacity: 0;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, opacity 0.3s;
    opacity: 0;
}

body:hover .cursor {
    opacity: 1;
}

body:hover .cursor-follower {
    opacity: 0.5;
}

.cursor.hover {
    width: 50px;
    height: 50px;
    background: rgba(212, 118, 28, 0.15);
    mix-blend-mode: normal;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--green);
    opacity: 0.8;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--brown-deep);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-zellige {
    width: 80px;
    height: 80px;
    animation: preloaderSpin 3s linear infinite;
}

.zellige-spinner polygon {
    stroke: var(--orange);
    animation: zelligeStrokePulse 2s ease-in-out infinite alternate;
}

.zellige-spinner polygon:nth-child(2) {
    stroke: var(--green);
    animation-delay: 0.3s;
}

.zellige-spinner polygon:nth-child(3) {
    stroke: var(--gold);
    animation-delay: 0.6s;
}

.preloader-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    animation: fadeInUp 0.8s var(--ease) 0.3s both;
}

@keyframes preloaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes zelligeStrokePulse {
    from {
        stroke-opacity: 0.3;
    }

    to {
        stroke-opacity: 1;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    padding: 0 20px;
    transition: all 0.5s var(--ease);
}

.navbar.scrolled {
    background: rgba(26, 15, 10, 0.9);
    backdrop-filter: blur(20px) saturate(1.5);
    box-shadow: 0 1px 0 rgba(212, 118, 28, 0.15);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-img {
    height: 42px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 20px;
    position: relative;
    z-index: 9001;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s var(--ease);
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:last-child {
    bottom: 0;
}

.hamburger.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--brown-deep);
    overflow: hidden;
}

.hero-zellige-bg {
    position: absolute;
    inset: 0;
    opacity: 0.8;
}

.hero-zellige-bg .zellige-pattern {
    width: 100%;
    height: 100%;
    animation: patternDrift 60s linear infinite;
}

@keyframes patternDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-100px, -100px) rotate(3deg);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 118, 28, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(27, 107, 74, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(26, 15, 10, 0.4) 0%, rgba(26, 15, 10, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 60px) 40px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--orange-light);
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.tag-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--orange);
}

.hero-logo {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    align-self: flex-start;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    max-width: 420px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--orange);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 30px rgba(212, 118, 28, 0.3);
}

.btn-explore:hover {
    background: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(212, 118, 28, 0.4);
    gap: 18px;
}

.btn-ghost {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.btn-ghost::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

.btn-ghost:hover {
    color: rgba(255, 255, 255, 0.9);
}

.btn-ghost:hover::after {
    background: var(--orange);
}

/* Hero Images */
.hero-right {
    display: flex;
    justify-content: center;
}

.hero-image-stack {
    position: relative;
    width: 420px;
    height: 520px;
}

.hero-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.hero-img:hover img {
    transform: scale(1.05);
}

.img-frame {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 118, 28, 0.3);
    border-radius: 10px;
    pointer-events: none;
    transition: border-color 0.3s;
}

.hero-img:hover .img-frame {
    border-color: rgba(212, 118, 28, 0.6);
}

.hero-img-1 {
    top: 0;
    left: 0;
    width: 280px;
    height: 380px;
    z-index: 2;
}

.hero-img-2 {
    bottom: 0;
    right: 0;
    width: 240px;
    height: 300px;
    z-index: 1;
}

.hero-floating-badge {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: var(--green);
    color: #fff;
    padding: 18px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(27, 107, 74, 0.4);
    animation: badgeFloat 4s ease-in-out infinite;
}

.badge-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--cream);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: -20px;
    }

    100% {
        top: 60px;
    }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
    background: var(--green-dark);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    white-space: nowrap;
}

.marquee-content span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-pale);
    letter-spacing: 1px;
}

@keyframes marqueeScroll {
    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   SECTION LABEL
   ============================================ */
.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.label-diamond {
    width: 8px;
    height: 8px;
    background: var(--orange);
    transform: rotate(45deg);
}

.section-label span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--orange);
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-hero {
    opacity: 0;
    transform: translateY(30px);
    animation: revealHero 1s var(--ease) both;
}

.reveal-hero:nth-child(1) {
    animation-delay: 0.5s;
}

.reveal-hero:nth-child(2) {
    animation-delay: 0.7s;
}

.reveal-hero:nth-child(3) {
    animation-delay: 0.9s;
}

.reveal-hero:nth-child(4) {
    animation-delay: 1.1s;
}

@keyframes revealHero {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 140px 0;
    position: relative;
}

.about-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.about-image-main:hover img {
    transform: scale(1.04);
}

.zellige-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
}

.zellige-corner::before,
.zellige-corner::after {
    content: '';
    position: absolute;
}

.zellige-corner-tl {
    top: -12px;
    left: -12px;
}

.zellige-corner-tl::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--orange), transparent);
}

.zellige-corner-tl::after {
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--orange), transparent);
}

.zellige-corner-br {
    bottom: -12px;
    right: -12px;
}

.zellige-corner-br::before {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, var(--green), transparent);
}

.zellige-corner-br::after {
    bottom: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, var(--green), transparent);
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.about-image-accent img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    color: var(--brown);
}

.about-text p {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 12px;
}

.about-numbers {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--sand);
}

.number-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.number-label {
    font-size: 0.78rem;
    color: var(--text-soft);
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.number-divider {
    width: 1px;
    height: 50px;
    background: var(--sand);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: 120px 0 80px;
    background: var(--brown-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212, 118, 28, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(27, 107, 74, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.products-header .section-label {
    justify-content: center;
}

.products-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.products-subtitle {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Carousel */
.products-carousel {
    position: relative;
    padding: 0 40px;
}

.carousel-track {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0 40px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.product-slide {
    flex: 0 0 340px;
    scroll-snap-align: start;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.5s var(--ease), border-color 0.4s;
}

.product-slide:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 118, 28, 0.25);
}

.slide-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.product-slide:hover .slide-image img {
    transform: scale(1.08);
}

.slide-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.slide-content {
    padding: 28px;
}

.slide-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--cream);
}

.slide-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 16px;
}

.slide-price {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(212, 118, 28, 0.15);
    color: var(--orange-light);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    border: 1px solid rgba(212, 118, 28, 0.2);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease);
}

.carousel-btn:hover:not(.disabled) {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: scale(1.08);
}

.carousel-btn.disabled {
    opacity: 0.25;
    cursor: default;
    pointer-events: none;
    transform: none;
}

.carousel-counter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-counter #currentSlide {
    font-size: 1.8rem;
    color: var(--orange-light);
    font-weight: 700;
}

.counter-divider {
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 140px 0;
}

.gallery-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    color: var(--brown);
    margin-bottom: 60px;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
    padding: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
}

.mosaic-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.mosaic-tall {
    grid-row: span 2;
}

.mosaic-wide {
    grid-column: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.mosaic-item:hover img {
    transform: scale(1.08);
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 15, 10, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity 0.4s;
}

.mosaic-item:hover .mosaic-overlay {
    opacity: 1;
}

.mosaic-overlay span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--cream);
    transform: translateY(10px);
    transition: transform 0.5s var(--ease);
}

.mosaic-item:hover .mosaic-overlay span {
    transform: translateY(0);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 140px 0;
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.contact-bg-pattern .zellige-pattern {
    width: 100%;
    height: 100%;
}

.contact-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    color: var(--brown);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.detail-item strong {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.detail-item p {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.contact-socials {
    display: flex;
    gap: 20px;
}

.contact-socials a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-soft);
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.contact-socials a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease);
}

.contact-socials a:hover {
    color: var(--orange);
}

.contact-socials a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--orange), var(--green), var(--orange));
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--brown);
    margin-bottom: 4px;
}

.form-header p {
    font-size: 0.85rem;
    color: var(--text-soft);
}

.form-field {
    position: relative;
    margin-bottom: 24px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 18px 0 8px;
    border: none;
    border-bottom: 1.5px solid var(--sand);
    background: transparent;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.3s;
    cursor: none;
}

.form-field textarea {
    resize: vertical;
    min-height: 100px;
}

.form-field label {
    position: absolute;
    top: 18px;
    left: 0;
    font-size: 0.9rem;
    color: var(--text-soft);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.form-field input:focus~label,
.form-field input:not(:placeholder-shown)~label,
.form-field textarea:focus~label,
.form-field textarea:not(:placeholder-shown)~label {
    top: 0;
    font-size: 0.7rem;
    color: var(--orange);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-field input:focus,
.form-field textarea:focus {
    border-bottom-color: var(--orange);
}

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--green);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 60px;
    border: none;
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 30px rgba(27, 107, 74, 0.25);
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(27, 107, 74, 0.35);
    gap: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--brown-deep);
    color: rgba(255, 255, 255, 0.5);
    padding: 60px 0 40px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.footer-logo {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-pale);
    opacity: 0.6;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
    margin-bottom: 32px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--orange);
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, var(--orange), var(--green), var(--gold));
    z-index: 100001;
    transition: width 0.05s linear;
    box-shadow: 0 0 8px rgba(212, 118, 28, 0.5);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brown);
    color: var(--cream);
    border: 1px solid rgba(212, 118, 28, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8000;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 118, 28, 0.3);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    cursor: none;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    transform: scale(0.9);
    transition: transform 0.5s var(--ease);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.lightbox-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: rotate(90deg);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 8000;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.4s var(--ease);
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.15), 0 0 0 12px rgba(37, 211, 102, 0.08);
    }
}

/* ============================================
   TEXT REVEAL (word by word)
   ============================================ */
.text-reveal .word {
    display: inline-block;
    overflow: hidden;
    margin-right: 0.3em;
}

.text-reveal .word-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.7s var(--ease);
}

.text-reveal.visible .word-inner {
    transform: translateY(0);
}

/* Stagger delays — set via JS */

/* ============================================
   PARALLAX IMAGE
   ============================================ */
.parallax-img {
    overflow: hidden;
}

.parallax-img img {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ============================================
   MAGNETIC BUTTON
   ============================================ */
.btn-explore,
.form-submit,
.carousel-btn {
    position: relative;
    transition: all 0.4s var(--ease);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-logo {
        align-self: center;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .hero-cta {
        justify-content: center;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .mosaic-tall {
        grid-row: span 2;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    /* Hide custom cursor on mobile */
    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }

    a,
    button {
        cursor: auto;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 15, 10, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: right 0.5s var(--ease);
        z-index: 9000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .about {
        padding: 80px 0;
    }

    .about-image-accent {
        display: none;
    }

    .about-numbers {
        flex-wrap: wrap;
        gap: 24px;
    }

    .number-divider {
        display: none;
    }

    .products {
        padding: 80px 0 60px;
    }

    .products-carousel {
        padding: 0 24px;
    }

    .product-slide {
        flex: 0 0 85vw;
    }

    .gallery {
        padding: 80px 0;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        padding: 0 24px;
    }

    .mosaic-tall {
        grid-row: span 1;
    }

    .mosaic-wide {
        grid-column: span 1;
    }

    .contact {
        padding: 80px 0;
    }

    .contact-form {
        padding: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        height: 80px;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-numbers {
        justify-content: center;
        text-align: center;
    }
}

/* ============================================
   GOOGLE REVIEW POPUP
   ============================================ */
.review-popup {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 320px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    background: rgba(26, 15, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 118, 28, 0.25);
    border-radius: 20px;
    padding: 28px 24px;
    z-index: 9500;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.5s;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 40px rgba(212, 118, 28, 0.1);
}

.review-popup.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.review-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: rgba(255, 255, 255, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.review-popup-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.review-popup-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.review-popup-stars svg {
    filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.4));
    animation: starPulse 2s ease-in-out infinite alternate;
}

.review-popup-stars svg:nth-child(2) {
    animation-delay: 0.1s;
}

.review-popup-stars svg:nth-child(3) {
    animation-delay: 0.2s;
}

.review-popup-stars svg:nth-child(4) {
    animation-delay: 0.3s;
}

.review-popup-stars svg:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes starPulse {
    0% {
        filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.6));
    }
}

.review-popup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 600;
}

.review-popup-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: 18px;
}

.review-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 12px 22px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 118, 28, 0.3);
}

.review-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 118, 28, 0.4);
}

.review-popup-btn svg {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .review-popup {
        right: 12px;
        left: 12px;
        width: auto;
        max-width: none;
        bottom: 90px;
    }
}