/* ===================================
   MAISON NOIRE - 2025 Minimal Luxury
   =================================== */

/* ===================================
   LUXURY EASING CURVES
   =================================== */

:root {
    /* Easing curves */
    --ease-luxury: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-entrance: cubic-bezier(0.0, 0.0, 0.2, 1);
    --ease-exit: cubic-bezier(0.4, 0.0, 1, 1);
    --ease-slow: cubic-bezier(0.25, 0.1, 0.25, 1);
    
    /* Colors */
    --color-black: #050608;
    --color-dark-gray: #0B0B0B;
    --color-gold: #CBAF6E;
    --color-light: #F5F3EE;
    --color-gray: #A0A0A0;
    --color-dark-text: #6B6B6B;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
    --spacing-3xl: 10rem;
    
    /* Section padding */
    --section-padding: 10rem 0;
    --section-padding-mobile: 6rem 0;
    
    /* Container widths */
    --container-max: 1400px;
    --container-narrow: 900px;
    
    /* Transitions */
    --transition-base: 0.4s var(--ease-luxury);
    --transition-slow: 0.8s var(--ease-luxury);
    
    /* Gold opacity for gradients */
    --gold-gradient-light: rgba(203, 175, 110, 0.05);
    --gold-gradient-medium: rgba(203, 175, 110, 0.08);
    --gold-gradient-strong: rgba(203, 175, 110, 0.15);
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #050608;
    color: #F5F3EE;
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
    opacity: 0;
    animation: pageEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes pageEntrance {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Canela", "Cormorant Garamond", serif;
    font-weight: 400;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

.section-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    color: #F5F3EE;
}

.section-heading-center {
    text-align: center;
}

/* ===================================
   LAYOUT UTILITIES
   =================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

/* ===================================
   LOADING SCREEN
   =================================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-luxury), visibility 0.8s var(--ease-luxury);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loading-logo {
    font-family: "Canela", "Cormorant Garamond", serif;
    font-size: 2rem;
    letter-spacing: 0.15em;
    color: var(--color-light);
    margin-bottom: var(--spacing-md);
    opacity: 0;
    animation: logoFadeIn 1s var(--ease-entrance) 0.2s forwards;
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
    }
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(203, 175, 110, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: var(--color-gold);
    width: 0;
    animation: loadingProgress 2s var(--ease-luxury) forwards;
}

@keyframes loadingProgress {
    to {
        width: 100%;
    }
}

/* ===================================
   SKIP TO CONTENT
   =================================== */

.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    z-index: 10000;
    transition: top 0.3s var(--ease-luxury);
}

.skip-to-content:focus {
    top: 1rem;
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.8s var(--ease-luxury);
    background: rgba(5, 6, 8, 0.2);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    opacity: 0;
    transform: translateY(-100%);
    animation: navEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) 2.4s forwards;
}

@keyframes navEntrance {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav.scrolled {
    background: rgba(5, 6, 8, 0.95);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    padding: 1rem 0;
    box-shadow: 0 1px 0 rgba(203, 175, 110, 0.15);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: "Canela", "Cormorant Garamond", serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    transition: color 0.4s var(--ease-luxury);
}

.nav-logo:hover {
    color: #CBAF6E;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #F5F3EE;
    transition: color 0.5s var(--ease-luxury), transform 0.4s var(--ease-luxury);
    position: relative;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #CBAF6E;
    transition: width 0.6s var(--ease-luxury);
}

.nav-links a:hover {
    color: #CBAF6E;
    transform: translateY(-1px);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #F5F3EE;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('images/TABLES.png');
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 6, 8, 0.3), rgba(5, 6, 8, 0.7), rgba(11, 11, 11, 0.5));
    background-size: 200% 200%;
    animation: heroGradientMove 15s ease-in-out infinite;
    will-change: background-position;
}

@keyframes heroGradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroContentEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroContentEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #A0A0A0;
    margin-bottom: 1rem;
}

.hero-label-enhanced {
    font-family: "Canela", "Cormorant Garamond", serif;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: #F5F3EE;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* Hide on desktop, show on mobile */
.hero-label-mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .hero-label-mobile-only {
        display: none !important;
    }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-subtitle {
    font-family: "Canela", "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 300;
    font-style: italic;
}

.hero-description {
    font-size: 1.1rem;
    color: #A0A0A0;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid #CBAF6E;
    color: #F5F3EE;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.6s var(--ease-luxury), transform 0.4s var(--ease-luxury);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #CBAF6E;
    transform: translateY(100%);
    transition: transform 0.6s var(--ease-luxury);
    z-index: -1;
}

.btn-primary:hover {
    color: #050608;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(203, 175, 110, 0.2);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
    transition: transform 0.15s var(--ease-exit);
}

.btn-secondary {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: #A0A0A0;
    position: relative;
    transition: color 0.5s var(--ease-luxury), transform 0.4s var(--ease-luxury);
    display: inline-block;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #A0A0A0;
    transition: background 0.5s var(--ease-luxury), transform 0.5s var(--ease-luxury);
    transform-origin: left;
}

.btn-secondary:hover {
    color: #CBAF6E;
    transform: translateY(-1px);
}

.btn-secondary:hover::after {
    background: #CBAF6E;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: scrollIndicatorEntrance 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

@keyframes scrollIndicatorEntrance {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #CBAF6E, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* ===================================
   FILOSOFI SECTION
   =================================== */

.filosofi {
    position: relative;
    padding: 12rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, #050608, #0B0B0B, #050608);
    overflow: hidden;
}

.filosofi::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(203, 175, 110, 0.08) 30%, transparent 60%, rgba(203, 175, 110, 0.05) 100%);
    background-size: 400% 400%;
    animation: filosofiGradientShift 20s ease-in-out infinite;
    pointer-events: none;
    will-change: background-position;
}

@keyframes filosofiGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.filosofi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(203, 175, 110, 0.3), transparent);
    z-index: 2;
}

.filosofi-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/WINEGLASSES.png');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    filter: blur(8px);
}

.filosofi-text {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.filosofi-text p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.filosofi-text p:last-child {
    font-family: "Canela", "Cormorant Garamond", serif;
    font-style: italic;
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
}

.filosofi-final-line {
    display: block;
}

.filosofi-line {
    display: inline;
}

@media (max-width: 768px) {
    .filosofi-line {
        display: block;
        margin-bottom: 0.8rem;
    }
    
    .filosofi-line:last-child {
        margin-bottom: 0;
    }
}

.gold-line {
    width: 80px;
    height: 1px;
    background: #CBAF6E;
    margin: 0 auto;
}

/* ===================================
   UPPLEVELSEN SECTION
   =================================== */

.upplevelsen {
    padding: 10rem 0;
    background: linear-gradient(to bottom, #0B0B0B, #050608);
    position: relative;
}

.upplevelsen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(203, 175, 110, 0.06) 0%, transparent 40%, rgba(203, 175, 110, 0.03) 70%, transparent 100%);
    background-size: 200% 200%;
    animation: upplevelsenGradientMove 18s ease-in-out infinite;
    pointer-events: none;
    will-change: background-position;
}

@keyframes upplevelsenGradientMove {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

.upplevelsen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(203, 175, 110, 0.3), transparent);
}

.upplevelsen .section-heading-center {
    text-align: center;
    width: 100%;
}

.upplevelsen .split-content {
    padding-right: 2rem;
}

.upplevelsen-details {
    margin-top: 2rem;
}

.detail-item {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: #F5F3EE;
    opacity: 0;
    transform: translateY(20px);
}

.split-image {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.main-image {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    border: none;
    will-change: transform;
}

.upplevelsen-plate {
    object-position: center bottom;
}

/* ===================================
   FIRE TRANSITION SECTION
   =================================== */

.fire-transition {
    padding: 0;
    background: #050608;
    overflow: hidden;
}

.fire-image {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.fire-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

@media (max-width: 768px) {
    .fire-image img {
        object-fit: contain;
        object-position: center center;
        padding: 2rem 1rem;
    }
}

.fire-transition.fade-in .fire-image img {
    transform: scale(1.05);
}

/* ===================================
   PLATING SHOWCASE SECTION
   =================================== */

.plating-showcase {
    padding: 0;
    background: #0B0B0B;
    overflow: hidden;
}

.plating-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.plating-item {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.plating-item {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.plating-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.95) saturate(1.05);
    transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.plating-showcase.fade-in .plating-item img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .plating-grid {
        grid-template-columns: 1fr;
    }
    
    .plating-item {
        height: 50vh;
        min-height: 400px;
    }
}

/* ===================================
   KÖKET SECTION
   =================================== */

.koket {
    padding: 10rem 0;
    background: linear-gradient(to bottom, #050608, #0B0B0B);
    position: relative;
}

.koket::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(203, 175, 110, 0.3), transparent);
}

.chef-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
    filter: grayscale(20%);
    will-change: transform;
}

.chef-image-mobile {
    display: none;
}

.chef-name {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    color: #CBAF6E;
    font-weight: 300;
}

.chef-bio p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #F5F3EE;
}

/* ===================================
   PRESS MENTIONS SECTION
   =================================== */

.press-mentions {
    padding: var(--spacing-2xl) var(--spacing-md);
    background: linear-gradient(to bottom, var(--color-dark-gray), var(--color-black));
    text-align: center;
}

.press-mentions .container-narrow {
    max-width: 1200px;
}

.press-intro {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.press-item {
    padding: var(--spacing-md);
    border-top: 1px solid rgba(203, 175, 110, 0.2);
    transition: border-color var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.press-item:hover {
    border-top-color: var(--color-gold);
}

.press-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.press-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    opacity: 0.85;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.press-item:hover .press-logo img {
    opacity: 1;
    transform: scale(1.05);
}

.press-publication {
    font-family: "Canela", "Cormorant Garamond", serif;
    font-size: 1.3rem;
    color: var(--color-light);
    margin-bottom: 0.3rem;
    font-weight: 400;
    white-space: nowrap;
}

.press-issue {
    font-size: 0.8rem;
    color: var(--color-gray);
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
    white-space: nowrap;
}

.press-quote {
    font-size: 0.95rem;
    color: var(--color-gray);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    white-space: nowrap;
}

.press-year {
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.press-disclaimer {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: var(--spacing-lg);
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .press-mentions {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
    
    .press-logo {
        height: 70px;
        margin-bottom: var(--spacing-sm);
    }
    
    .press-item {
        padding: var(--spacing-md) var(--spacing-sm);
    }
}

/* ===================================
   BRIGADEN SECTION
   =================================== */

.brigaden {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.brigaden-background {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-image: url('images/BRIGADEN.png');
    background-size: cover;
    background-position: center bottom;
    will-change: transform;
}

@media (max-width: 768px) {
    .brigaden-background {
        top: -10%;
        height: 120%;
        background-position: center 40%;
        background-size: cover;
        transform: translateY(0);
    }
    
    .brigaden {
        height: 90vh;
        min-height: 650px;
    }
    
    .brigaden-content {
        padding: 0 1.5rem 5rem;
    }
}

.brigaden-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.3) 50%, rgba(203, 175, 110, 0.02) 65%, transparent 70%);
    background-size: 100% 200%;
    z-index: 1;
    animation: brigadenGradientFlow 16s ease-in-out infinite;
    will-change: background-position;
}

@keyframes brigadenGradientFlow {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
}

@media (max-width: 768px) {
    .brigaden-overlay {
        background: linear-gradient(to top, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.6) 30%, rgba(5, 6, 8, 0.3) 50%, rgba(5, 6, 8, 0.1) 70%, transparent 85%);
        background-size: 100% 200%;
        animation: brigadenGradientFlow 16s ease-in-out infinite;
    }
}

.brigaden-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem 6rem;
}

.brigaden-text p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* ===================================
   PLATSEN SECTION
   =================================== */

.platsen {
    padding: 10rem 0;
    background: linear-gradient(to right, #0B0B0B, #050608);
    position: relative;
}

.platsen::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(203, 175, 110, 0.06) 0%, transparent 40%, rgba(203, 175, 110, 0.03) 70%, transparent 100%);
    background-size: 200% 200%;
    animation: platsenGradientMove 22s ease-in-out infinite reverse;
    pointer-events: none;
    will-change: background-position;
}

@keyframes platsenGradientMove {
    0%, 100% {
        background-position: 100% 100%;
    }
    50% {
        background-position: 0% 0%;
    }
}

.platsen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(203, 175, 110, 0.3), transparent);
}

.platsen-text {
    margin-bottom: 2rem;
}

.platsen-text p {
    font-family: "Canela", "Cormorant Garamond", serif;
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    font-weight: 300;
}

.platsen-images {
    position: relative;
    height: 600px;
}

.exterior-day {
    display: none;
}

.exterior-night {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.exterior-night img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery {
    padding: 8rem 0;
    background: linear-gradient(to right, #050608, #0B0B0B);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(203, 175, 110, 0.3), transparent);
}

.gallery-grid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    transition: border-color 0.8s var(--ease-luxury);
    pointer-events: none;
}

.gallery-item:hover::after {
    border-color: rgba(203, 175, 110, 0.6);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s var(--ease-slow);
    will-change: transform;
}

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

/* ===================================
   BOKA BORD SECTION
   =================================== */

.boka {
    padding: 10rem 0;
    background: linear-gradient(to right, #0B0B0B, #050608);
    position: relative;
}

.boka::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(203, 175, 110, 0.05) 40%, rgba(203, 175, 110, 0.08) 60%, transparent 100%);
    background-size: 100% 300%;
    animation: bokaGradientFlow 14s ease-in-out infinite;
    pointer-events: none;
    will-change: background-position;
}

@keyframes bokaGradientFlow {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
}

.boka::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(203, 175, 110, 0.3), transparent);
}

.boka-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.boka-intro p {
    font-size: 1.1rem;
    color: #F5F3EE;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.boka-intro .boka-secondary {
    font-size: 0.95rem;
    color: #A0A0A0;
    margin-top: 1.5rem;
}

.pricing-hint {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    margin: var(--spacing-lg) 0;
    border-top: 1px solid rgba(203, 175, 110, 0.2);
    border-bottom: 1px solid rgba(203, 175, 110, 0.2);
}

.pricing-label {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: var(--spacing-sm);
}

.pricing-amount {
    font-family: "Canela", "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-xs);
    font-weight: 300;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-style: italic;
}

.reservation-form {
    background: transparent;
    padding: 3rem 0;
    border: none;
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #A0A0A0;
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(160, 160, 160, 0.3);
    color: #F5F3EE;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.6s var(--ease-luxury);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #CBAF6E;
    transform: translateX(4px);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not([value=""]),
.form-group textarea:valid:not(:placeholder-shown) {
    border-bottom-color: rgba(203, 175, 110, 0.5);
}

.form-group input:valid:not(:placeholder-shown) ~ label::after,
.form-group select:valid:not([value=""]) ~ label::after,
.form-group textarea:valid:not(:placeholder-shown) ~ label::after {
    content: '✓';
    color: var(--color-gold);
    margin-left: 0.5rem;
    font-size: 0.9rem;
    animation: checkmarkAppear 0.3s var(--ease-entrance);
}

@keyframes checkmarkAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-group {
    position: relative;
}

.form-group label {
    position: relative;
    display: inline-block;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(160, 160, 160, 0.5);
    transition: color 0.4s var(--ease-luxury);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(203, 175, 110, 0.3);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23A0A0A0" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 24px;
    padding-right: 30px;
}

.form-group select:focus {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23CBAF6E" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
}

.form-group select option {
    background: #0B0B0B;
    color: #F5F3EE;
    padding: 1rem;
}

/* Date input specific styling */
.form-group input[type="date"] {
    position: relative;
    cursor: pointer;
    background: rgba(245, 243, 238, 0.04);
    padding-right: 2.5rem;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23F5F3EE" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
    cursor: pointer;
    opacity: 1;
    width: 20px;
    height: 20px;
    filter: brightness(1);
    transition: all 0.3s var(--ease-luxury);
    position: absolute;
    right: 0;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    filter: brightness(1.6);
    transform: scale(1.15);
}

.form-group input[type="date"]:focus {
    background: rgba(245, 243, 238, 0.06);
    border-bottom-color: #CBAF6E;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.reservation-form .btn-primary {
    width: 100%;
    margin-top: 2rem;
    padding: 1.2rem;
}

.btn-submit {
    cursor: pointer;
    transition: all 0.8s var(--ease-luxury);
}

.btn-submit:hover {
    letter-spacing: 0.12em;
}

.form-success {
    display: none;
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    background: transparent;
    border-top: 1px solid rgba(203, 175, 110, 0.3);
    border-bottom: 1px solid rgba(203, 175, 110, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease-entrance), transform 0.8s var(--ease-entrance);
}

.form-success.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-success p {
    color: #CBAF6E;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.form-success-secondary {
    color: #A0A0A0 !important;
    font-size: 0.95rem !important;
}

.form-wait-notice {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: #A0A0A0;
    font-style: italic;
    line-height: 1.6;
    opacity: 0.8;
}

.back-to-top-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(203, 175, 110, 0.3);
    color: #A0A0A0;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.6s var(--ease-luxury);
    opacity: 0.7;
}

.back-to-top-btn:hover {
    border-color: #CBAF6E;
    color: #CBAF6E;
    opacity: 1;
    transform: translateY(-2px);
}

.back-to-top-btn svg {
    transition: transform 0.4s var(--ease-luxury);
}

.back-to-top-btn:hover svg {
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top-btn {
        position: fixed;
        bottom: 2rem;
        right: 1.5rem;
        z-index: 100;
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
        background: rgba(5, 6, 8, 0.95);
        backdrop-filter: blur(12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.6s var(--ease-luxury), transform 0.4s var(--ease-luxury);
    }
    
    .back-to-top-btn.visible {
        opacity: 0.9;
        pointer-events: all;
    }
    
    .back-to-top-btn span {
        display: none;
    }
    
    .back-to-top-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #0B0B0B;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(203, 175, 110, 0.1);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-name {
    font-family: "Canela", "Cormorant Garamond", serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-address,
.footer-email {
    font-size: 0.85rem;
    color: #A0A0A0;
    margin-bottom: 0.5rem;
}

/* ===================================
   FOOTER
   =================================== */

.footer-social {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #A0A0A0;
    transition: all 0.6s var(--ease-luxury);
    cursor: default;
}

.social-link:hover {
    color: #CBAF6E;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(203, 175, 110, 0.4));
}

.footer-credits {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(203, 175, 110, 0.1);
}

.footer-credit {
    font-size: 0.9rem;
    color: #A0A0A0;
    margin-bottom: 0.75rem;
}

.vav-link {
    color: #A0A0A0;
    text-decoration: none;
    transition: all 0.4s var(--ease-luxury);
    border-bottom: 1px solid transparent;
}

.vav-link:hover {
    color: #CBAF6E;
    border-bottom-color: #CBAF6E;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #6B6B6B;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.footer-credit,
.footer-disclaimer {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: none;
}

/* ===================================
   FADE-IN ANIMATIONS
   =================================== */

.fade-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--ease-entrance), transform 1s var(--ease-entrance);
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-layout.reverse {
        direction: ltr;
    }
    
    .upplevelsen .split-content {
        padding-right: 0;
    }
    
    .split-image {
        height: 500px;
    }
    
    .main-image {
        height: 130%;
    }
    
    .chef-image img {
        height: 500px;
    }
    
    .platsen-images {
        height: 500px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Ensure horizontal dividers on mobile */
    .filosofi::before,
    .upplevelsen::before,
    .koket::before,
    .platsen::before,
    .gallery::before,
    .boka::before {
        width: 100px !important;
        height: 1px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    /* Mobile image improvements */
    .main-image {
        height: auto;
        min-height: 400px;
        max-height: 500px;
        object-fit: cover;
        margin-bottom: 2rem;
    }
    
    .split-image {
        margin-bottom: 2rem;
    }
    
    .fire-image,
    .plating-image {
        height: 50vh;
        min-height: 350px;
        margin: 2rem 0;
    }
    
    .fire-image img,
    .plating-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .split-layout.reverse .chef-image:not(.chef-image-mobile) {
        display: none;
    }
    
    .chef-image-mobile {
        display: block;
        height: auto;
        margin: 2rem 0;
    }
    
    .chef-image-mobile img {
        height: auto;
        min-height: 450px;
        max-height: 550px;
        object-fit: cover;
    }
    
    .koket .split-content {
        text-align: center;
    }
    
    .chef-name {
        text-align: center;
    }
    
    .platsen-images {
        height: auto;
        min-height: 400px;
        margin-top: 2rem;
    }
    
    .exterior-night img {
        height: 450px;
        object-fit: cover;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 1px rgba(203, 175, 110, 0.2);
        border: 1px solid rgba(203, 175, 110, 0.15);
    }
    
    .gallery-item {
        margin-bottom: 2rem;
    }
    
    .gallery-item img {
        height: auto;
        min-height: 300px;
        aspect-ratio: 4/5;
        object-fit: cover;
    }
    
    .brigaden {
        height: 70vh;
        min-height: 500px;
    }
    
    .brigaden-content {
        padding: 0 1.5rem 4rem;
    }
    
    .brigaden-text p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: rgba(5, 6, 8, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.6s var(--ease-luxury);
        border-left: 1px solid rgba(203, 175, 110, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        opacity: 0;
        transform: translateX(20px);
        transition: opacity 0.4s var(--ease-entrance), transform 0.4s var(--ease-entrance), color 0.5s var(--ease-luxury);
    }
    
    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active a:nth-child(7) { transition-delay: 0.4s; }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .filosofi {
        padding: 8rem 2rem;
    }
    
    .upplevelsen,
    .koket,
    .platsen {
        padding: 6rem 0;
    }
    
    .split-layout {
        flex-direction: column;
        gap: 4rem;
    }
    
    .split-content {
        padding: 0 1.5rem;
    }
    
    .platsen .split-content {
        text-align: center;
        padding: 0 2rem;
    }
    
    .platsen .gold-line {
        margin: 2rem auto;
    }
    
    .upplevelsen .split-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .upplevelsen-details {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .upplevelsen .section-heading-center {
        width: 100%;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .reservation-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .section-heading-center {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .detail-item {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-credits {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .footer-disclaimer {
        font-size: 0.7rem;
        padding: 0 1rem;
        white-space: normal;
    }
    
    .footer-credit {
        white-space: nowrap;
    }
    
    .form-wait-notice {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .main-image {
        height: 400px;
    }
    
    .chef-image img {
        height: 400px;
    }
    
    .platsen-images {
        height: 400px;
    }
    
    .footer-disclaimer {
        font-size: 0.65rem;
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .form-wait-notice {
        font-size: 0.75rem;
    }
}
