:root {
    --color-cream: #F5F0E8;
    --color-cream-light: #FAF8F4;
    --color-brown-dark: #2C1810;
    --color-brown-medium: #4A3728;
    --color-brown-light: #6B5344;
    --color-accent: #C4A77D;
    --color-accent-dark: #A68B5B;
    --color-gold: #D4AF37;
    --color-text: #3D2E24;
    --color-text-light: #6B5D54;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
    
    --section-padding: clamp(80px, 12vw, 160px);
    --container-width: 1400px;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero elements will be hidden by JavaScript initially */

.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 167, 125, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    mix-blend-mode: multiply;
}

a, button, input, textarea, select {
    cursor: pointer;
}

::selection {
    background-color: var(--color-accent);
    color: var(--color-cream);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 8px 40px;
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(44, 24, 16, 0.08);
    padding: 8px 40px;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 76px;
}

.nav-container .logo {
    position: absolute;
    left: 0;
}

.nav-container .nav-cta {
    position: absolute;
    right: 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 50px;
}

.logo {
    text-decoration: none;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(44, 24, 16, 0.1));
}

.logo:hover .nav-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(44, 24, 16, 0.2));
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--color-accent-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 14px 28px;
    background: var(--color-brown-dark);
    color: var(--color-cream);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover {
    background: var(--color-brown-medium);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.2);
}

.nav-cta:hover::before {
    left: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--color-cream-light);
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg-noise {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    mix-blend-mode: overlay;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 600px 400px at 15% 70%, rgba(196, 167, 125, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 500px 350px at 85% 25%, rgba(196, 167, 125, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::before {
    display: none;
}

.hero::after {
    display: none;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0) rotate(-30deg); }
    50% { transform: translateY(-20px) rotate(-25deg); }
}

.hero-images {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-image {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 60px rgba(44, 24, 16, 0.3),
        0 10px 20px rgba(44, 24, 16, 0.2);
    pointer-events: auto;
    will-change: transform, opacity;
}

.hero-image-1 { animation-delay: 0.2s; }
.hero-image-2 { animation-delay: 0.35s; }
.hero-image-3 { animation-delay: 0.5s; }
.hero-image-4 { animation-delay: 0.65s; }

@keyframes heroImageEntrance {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(var(--image-rotation, 0deg));
    }
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth), filter 0.6s ease;
}

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

.hero-image:hover {
    box-shadow: 
        0 35px 80px rgba(44, 24, 16, 0.35),
        0 15px 30px rgba(44, 24, 16, 0.25);
}

.image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(196, 167, 125, 0.2) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-image:hover .image-glow {
    opacity: 1;
}

.hero-image .image-glow::before,
.hero-image .image-glow::after {
    content: '';
    position: absolute;
    bottom: 60%;
    width: 30px;
    height: 60px;
    background: linear-gradient(to top, rgba(255,255,255,0.15), transparent);
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0;
    animation: steam 3s ease-in-out infinite;
}

.hero-image .image-glow::before {
    left: 30%;
    animation-delay: 0s;
}

.hero-image .image-glow::after {
    left: 55%;
    animation-delay: 1.5s;
}

.hero-image:hover .image-glow::before,
.hero-image:hover .image-glow::after {
    opacity: 1;
}

@keyframes steam {
    0% {
        transform: translateY(0) scaleX(1);
        opacity: 0;
    }
    15% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-40px) scaleX(1.5);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-80px) scaleX(2);
        opacity: 0;
    }
}

.hero-image-1 {
    top: 12%;
    left: 3%;
    width: 280px;
    height: 350px;
    --image-rotation: -3deg;
}

.hero-image-2 {
    top: 16%;
    right: 5%;
    width: 240px;
    height: 300px;
    --image-rotation: 2deg;
}

.hero-image-3 {
    bottom: 28%;
    left: 8%;
    width: 220px;
    height: 280px;
    --image-rotation: 1deg;
}

.hero-image-4 {
    bottom: 33%;
    right: 7%;
    width: 260px;
    height: 320px;
    --image-rotation: -2deg;
}

.hero-image:hover {
    z-index: 10;
}

    .hero-content {
    text-align: center;
    z-index: 5;
    padding: 60px 80px;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(245, 240, 232, 0.7) 0%, transparent 70%);
    border-radius: 20px;
}

.hero-content::before {
    display: none;
}

.hero-content::after {
    display: none;
}

@keyframes pulseRing {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 0.3; }
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    /* animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s; */
}

.hero-tagline span:not(.line) {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.hero-tagline .line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-brown-dark);
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(44, 24, 16, 0.1);
    font-variant-ligatures: none;
}

.hero-title em {
    font-style: italic;
    color: var(--color-accent-dark);
    position: relative;
}

.hero-title .char {
    display: inline-block;
    vertical-align: baseline;
}

.hero-title .line,
.hero-title .word,
.hero-title .char {
    overflow: visible !important;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), var(--color-gold), var(--color-accent), transparent);
    border-radius: 2px;
    opacity: 0.6;
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title em.line-animated::after {
    transform: scaleX(1);
}

.title-line {
    display: block;
}

.title-line-2 {
    animation-delay: 0.7s;
    font-size: 0.85em;
}

@keyframes revealTitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-bottom: 50px;
    /* animation: fadeInUp 1s ease forwards;
    animation-delay: 1.2s; */
}


.hero-cta {
    /* animation: fadeInUp 1s ease forwards;
    animation-delay: 1.4s; */
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.4s var(--transition-smooth);
}

.btn-primary {
    padding: 18px 40px;
    background: var(--color-brown-dark);
    color: var(--color-cream);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--color-accent-dark);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s var(--transition-smooth);
    z-index: 0;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(44, 24, 16, 0.25);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    padding: 18px 40px;
    background: transparent;
    color: var(--color-brown-dark);
    border: 2px solid var(--color-brown-dark);
    border-radius: 8px;
}

.btn-secondary:hover {
    background: var(--color-brown-dark);
    color: var(--color-cream);
    transform: translateY(-3px);
}

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

/* ============================================
   MARQUEE
   ============================================ */
.marquee-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-brown-dark);
    padding: 18px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    width: fit-content;
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    padding-right: 60px;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-cream);
    letter-spacing: 0.2em;
    white-space: nowrap;
    opacity: 0.9;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   MENY SECTION - LETTER BOARD
   ============================================ */
.meny {
    position: relative;
    padding: var(--section-padding) 40px;
    background: var(--color-cream-light);
    overflow: hidden;
}

/* Noise texture */
.meny::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.4;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    mix-blend-mode: overlay;
    z-index: 0;
}

.meny::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 50% 60%, rgba(196, 167, 125, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(74, 55, 40, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.meny-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.meny-header {
    text-align: center;
    margin-bottom: 60px;
}

.meny-header .section-label {
    padding-left: 0;
}

.meny-header .section-label::before {
    display: none;
}

.meny-header {
}

.letter-board {
    position: relative;
    padding: 20px;
}

.letter-board::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(196, 167, 125, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.board-frame {
    position: relative;
    background: linear-gradient(145deg, #8B7355 0%, #6B5344 20%, #5D4635 50%, #6B5344 80%, #8B7355 100%);
    border-radius: 10px;
    padding: 22px;
    box-shadow: 
        0 30px 100px rgba(44, 24, 16, 0.5),
        0 15px 40px rgba(44, 24, 16, 0.35),
        0 5px 15px rgba(44, 24, 16, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.3);
}

.board-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 3px,
            rgba(0, 0, 0, 0.03) 3px,
            rgba(0, 0, 0, 0.03) 6px
        );
    pointer-events: none;
}

.board-surface {
    background: #1a1a1a;
    border-radius: 4px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
}

.board-surface::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 22px,
        rgba(255, 255, 255, 0.03) 22px,
        rgba(255, 255, 255, 0.03) 24px,
        transparent 24px,
        transparent 26px
    );
    pointer-events: none;
}

.board-surface::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 4px;
    box-shadow: 
        inset 0 3px 15px rgba(0, 0, 0, 0.5),
        inset 0 -2px 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.board-category {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.board-category-second {
    margin-top: 35px;
}

.category-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: #F5F0E8;
    letter-spacing: 0.15em;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(245, 240, 232, 0.1);
    display: inline-block;
}

.board-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.board-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 4px 0;
    transition: transform 0.3s var(--transition-smooth);
}

.board-item:hover {
    transform: translateX(8px);
}

.board-item:hover .item-name,
.board-item:hover .item-price {
    color: var(--color-accent);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(196, 167, 125, 0.4);
}

.item-name {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 500;
    color: #F5F0E8;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.item-dots {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        transparent 0px,
        transparent 4px,
        rgba(245, 240, 232, 0.3) 4px,
        rgba(245, 240, 232, 0.3) 8px
    );
    min-width: 20px;
    margin: 0 5px;
}

.item-price {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: #F5F0E8;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.meny-note {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

.board-category,
.board-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s var(--transition-smooth);
}

.board-category.animate,
.board-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.board-item:nth-child(1) { transition-delay: 0.05s; }
.board-item:nth-child(2) { transition-delay: 0.1s; }
.board-item:nth-child(3) { transition-delay: 0.15s; }
.board-item:nth-child(4) { transition-delay: 0.2s; }
.board-item:nth-child(5) { transition-delay: 0.25s; }
.board-item:nth-child(6) { transition-delay: 0.3s; }
.board-item:nth-child(7) { transition-delay: 0.35s; }
.board-item:nth-child(8) { transition-delay: 0.4s; }

@media (max-width: 768px) {
    .meny {
        padding: 60px 20px;
        overflow-x: hidden;
    }
    
    .board-surface {
        padding: 30px 25px;
    }
    
    .board-frame {
        padding: 15px;
    }
    
    .letter-board {
        padding: 10px;
    }
    
    .item-name {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }
    
    .item-price {
        font-size: 0.95rem;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
}

/* ============================================
   OM OSS SECTION
   ============================================ */
.om-oss {
    position: relative;
    padding: var(--section-padding) 40px;
    background: var(--color-cream-light);
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(196, 167, 125, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.om-oss-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.om-oss-image-wrapper {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
}

.frame-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-accent);
}

.frame-corner-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.frame-corner-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.frame-corner-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.frame-corner-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.owner-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0%);
    transition: all 0.8s var(--transition-smooth);
    transform: scale(1.02);
}

.image-container:hover .owner-image {
    transform: scale(1.08);
    filter: grayscale(0%) contrast(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 60%,
        rgba(44, 24, 16, 0.4) 100%
    );
    pointer-events: none;
}

.owner-info {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-cream);
    padding: 20px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(44, 24, 16, 0.15);
    border-radius: 4px;
}

.owner-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-brown-dark);
    letter-spacing: 0.05em;
}

.owner-title {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-top: 5px;
}

.floating-badge {
    position: absolute;
    top: 40px;
    right: -30px;
    background: var(--color-accent);
    color: var(--color-brown-dark);
    padding: 25px 20px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(196, 167, 125, 0.4);
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-years {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 3px;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.om-oss-content {
}

.section-header {
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--color-accent);
    transform: translateY(-50%);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-brown-dark);
}

.title-italic {
    font-style: italic;
    color: var(--color-accent-dark);
}

.content-body {
    max-width: 600px;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-brown-medium);
    margin-bottom: 25px;
    font-weight: 400;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}


.founder-quote {
    position: relative;
    padding: 35px 40px;
    background: linear-gradient(135deg, var(--color-brown-dark) 0%, var(--color-brown-medium) 100%);
    border-radius: 8px;
    margin-top: 40px;
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 25px;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.3;
}

.founder-quote p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-cream);
    position: relative;
    z-index: 1;
}

.founder-quote cite {
    display: block;
    margin-top: 20px;
    font-size: 0.85rem;
    font-style: normal;
    letter-spacing: 0.1em;
    color: var(--color-accent);
}

.deco-circle {
    display: none;
}

.deco-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.deco-circle-2 {
    width: 250px;
    height: 250px;
    bottom: 100px;
    left: -80px;
}


/* ============================================
   GALLERI SECTION
   ============================================ */
.galleri {
    padding: var(--section-padding) 40px;
    background: #EDE5D8;
    overflow: hidden;
    position: relative;
}

/* Noise texture */
.galleri::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    mix-blend-mode: overlay;
}

.galleri::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 40% at 20% 30%, rgba(196, 167, 125, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 70%, rgba(196, 167, 125, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.galleri-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.galleri-header .section-label {
    padding-left: 0;
}

.galleri-header .section-label::before {
    display: none;
}

.galleri-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 280px);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.galleri-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.galleri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--transition-smooth);
}

.galleri-item-9 img {
    object-position: center top;
}

.galleri-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 24, 16, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.galleri-item:hover::after {
    opacity: 1;
}

.galleri-item:hover img {
    transform: scale(1.08);
}

.galleri-item-1 {
    grid-column: span 2;
    grid-row: span 2;
}

.galleri-item-2 {
    grid-column: span 1;
    grid-row: span 1;
}

.galleri-item-3 {
    grid-column: span 1;
    grid-row: span 1;
}

.galleri-item-4 {
    grid-column: span 1;
    grid-row: span 1;
}

.galleri-item-5 {
    grid-column: span 1;
    grid-row: span 1;
}

.galleri-item-6 {
    grid-column: span 1;
    grid-row: span 2;
}

.galleri-item-7 {
    grid-column: span 1;
    grid-row: span 2;
}

.galleri-item-8 {
    grid-column: span 1;
    grid-row: span 2;
}

.galleri-item-9 {
    grid-column: span 1;
    grid-row: span 2;
}


@media (max-width: 1024px) {
    .galleri-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
    }
    
    .galleri-item-1 {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .galleri-item-6 {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .galleri {
        padding: 60px 20px;
        overflow-x: hidden;
    }
    
    .galleri-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }
    
    .galleri-item-1,
    .galleri-item-6 {
        grid-column: span 2;
    }
}

.hitta-hit {
    position: relative;
    background: var(--color-brown-dark);
}

.hitta-hit-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
}

.hitta-hit-info {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hitta-hit-info .section-label {
    color: var(--color-accent);
    padding-left: 0;
}

.hitta-hit-info .section-label::before {
    display: none;
}

.hitta-hit-info .section-title {
    color: var(--color-cream);
}

.hitta-hit-info .title-italic {
    color: var(--color-accent);
}

.info-content {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-block h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.info-block address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-cream);
}

.info-block .area-label {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: var(--color-accent);
    font-weight: 500;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    max-width: 280px;
    font-size: 1rem;
    color: var(--color-cream);
}

.hours-row .closed {
    color: var(--color-cream);
    font-weight: 500;
}

.transport-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.8);
}

.hitta-hit-map {
    position: relative;
    min-height: 400px;
}

.hitta-hit-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.4s ease;
}

.hitta-hit-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}


.footer {
    background: var(--color-brown-dark);
    border-top: 1px solid rgba(196, 167, 125, 0.2);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 40px 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(196, 167, 125, 0.15);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.7);
}

.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.footer-contact a {
    display: block;
    text-decoration: none;
    color: var(--color-cream);
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-accent);
}

.footer-social .social-links {
    display: flex;
    gap: 12px;
    padding-top: 0;
    border-top: none;
}

.footer-social .social-links a {
    width: 44px;
    height: 44px;
    background: rgba(196, 167, 125, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    transition: all 0.3s ease;
}

.footer-social .social-links a:hover {
    background: var(--color-accent);
    color: var(--color-brown-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.5);
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .om-oss-container {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .om-oss-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .floating-badge {
        right: 10px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hitta-hit-container {
        grid-template-columns: 1fr;
    }
    
    .hitta-hit-map {
        min-height: 400px;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-contact,
    .footer-social {
        text-align: center;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-container {
        padding: 0;
    }
    
    .nav-cta {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }
    
    .hero-images {
        display: none;
    }
    
    .hero {
        overflow: hidden;
    }
    
    .hero-content {
        padding: 40px 20px;
        max-width: calc(100vw - 40px);
        margin: 0 auto;
    }
    
    .marquee-content {
        gap: 30px;
        font-size: 0.9rem;
    }
    
    .marquee-content span {
        font-size: 0.9rem;
        letter-spacing: 0.1em;
    }
    
    .om-oss {
        padding: 60px 20px;
        overflow-x: hidden;
    }
    
    .om-oss-container {
        gap: 60px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .value-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
        padding: 20px;
    }
    
    .value-icon {
        margin: 0;
        flex-shrink: 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-divider {
        width: 100px;
        height: 1px;
    }
    
    .cursor-glow {
        display: none;
    }
    
    body {
        cursor: auto;
    }
    
    .hitta-hit-info {
        padding: 50px 20px;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hitta-hit-map {
        min-height: 300px;
    }
    
    .footer-container {
        padding: 40px 20px 20px;
        overflow-x: hidden;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand,
    .footer-contact,
    .footer-social {
        text-align: center;
    }
    
    .footer-social .social-links {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
