/* Scrollbar für Chrome, Safari und Opera verstecken */
html::-webkit-scrollbar {
    display: none;
}

/* Scrollbar für IE, Edge und Firefox verstecken */
html {
    -ms-overflow-style: none;  /* IE und Edge */
    scrollbar-width: none;  /* Firefox */
}

/* --- CSS VARIABLES & RESET --- */
:root {
    --color-sixoseven: #d4547a; /* Vibrant pink */
    --color-bg: #F9F7F2;     /* Soft bone/cream */
    --color-text: #2C2C2C;   /* Dark Charcoal */
    --color-light: #EFEFEF;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;

    --spacing-container: max(2rem, 5vw); /* Fluid padding */
    --spacing-element: 2rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a { text-decoration: none; color: inherit; transition: opacity 0.3s ease; cursor: pointer; }
a:hover { opacity: 0.6; }

/* --- UTILITY --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* --- PAGE CONTENT --- */
.page-content {
    min-height: 60vh;
    padding-top: 120px;
    animation: fadeInPage 0.5s ease-out;
}

.page-content.no-padding {
    padding-top: 0;
}

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

/* Content Container */
.content-container {
    padding: 0 var(--spacing-container) 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.content-container h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-sixoseven);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.content-container h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-sixoseven);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.content-container h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-sixoseven);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-container p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-container ul, .content-container ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-container li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.content-container blockquote {
    border-left: 3px solid var(--color-sixoseven);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-sixoseven);
}

/* Lead paragraph */
.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-sixoseven);
    margin-bottom: 2rem;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem var(--spacing-container);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 200;
    color: var(--color-sixoseven);
    transition: background-color 0.3s ease;
    /* Frosted glass effect */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.35);
}

/* Match menu background when open */
.menu-overlay.active ~ header {
    background: var(--color-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

header > * { pointer-events: auto; }

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 201;
    display: block;
    max-width: 160px;
    height: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translate(-50%, -50%) scale(1.02);
}

/* --- HAMBURGER MENU BUTTON --- */
.menu-btn {
    cursor: pointer;
    z-index: 201;
    position: relative;
    width: 32px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    background: transparent;
    border: none;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #2C2C2C;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

.menu-btn span:nth-child(1) {
    width: 100%;
}

.menu-btn span:nth-child(2) {
    width: 65%;
}

.menu-btn span:nth-child(3) {
    width: 100%;
}

/* Hover state - lines expand */
.menu-btn:hover span:nth-child(2) {
    width: 100%;
}

/* Active state - transform to X */
.menu-btn.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* --- FULL SCREEN MENU OVERLAY --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    z-index: 150;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-links {
    list-style: none;
    text-align: center;
}

.menu-links li {
    margin: 2rem 0;
    overflow: hidden;
}

.menu-links a {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-sixoseven);
    text-decoration: none;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-overlay.active .menu-links a { transform: translateY(0); }
.menu-links li:nth-child(1) a { transition-delay: 0.1s; }
.menu-links li:nth-child(2) a { transition-delay: 0.2s; }
.menu-links li:nth-child(3) a { transition-delay: 0.3s; }
.menu-links li:nth-child(4) a { transition-delay: 0.4s; }

/* --- HERO + HORIZONTAL SCROLL CONTAINER --- */
.hero-scroll-container {
    position: relative;
    background: var(--color-bg);
}

/* --- HERO SECTION (Split Layout) --- */
.hero {
    width: 100%;
    display: flex;
    height: 750px;
    max-height: 80vh;
    z-index: 50;
}

/* Only sticky during horizontal scroll */
.hero.is-sticky {
    position: sticky;
    top: calc(-80vh + 70px);
}

.hero-photo {
    width: 33.333%;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 66.666%;
    position: relative;
    overflow: hidden;
    background: var(--color-text);
}

.hero-photo img,
.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(212, 84, 122, 0.5) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Page Hero (smaller) */
.page-hero {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.page-hero .hero-bg {
    height: 100%;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.page-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0.5rem;
}

.page-hero-content p {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 0;
    background: var(--color-bg);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--color-sixoseven);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text);
    opacity: 0.6;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Desktop Gallery Grid - 3 columns, no gaps */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.gallery-row {
    display: contents;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--color-light);
}

/* 4:5 Aspect Ratio Container */
.gallery-item::before {
    content: '';
    display: block;
    padding-top: 150%; /* 5/4 = 1.25 = 125% */
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Caption - elegant reveal on hover */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(212, 84, 122, 0.85) 0%, rgba(212, 84, 122, 0) 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-bg);
    margin: 0 0 0.25rem 0;
    font-weight: 400;
}

.gallery-caption span {
    font-size: 0.75rem;
    color: rgba(249, 247, 242, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Gallery view more link */
.gallery-more {
    text-align: center;
    margin-top: 4rem;
}

.gallery-more a {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sixoseven);
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-sixoseven);
    transition: all 0.3s ease;
}

.gallery-more a:hover {
    background: var(--color-sixoseven);
    color: var(--color-bg);
}

/* Staggered animation for gallery items */
.gallery-item.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:nth-child(3n+1).fade-in { transition-delay: 0s; }
.gallery-item:nth-child(3n+2).fade-in { transition-delay: 0.1s; }
.gallery-item:nth-child(3n+3).fade-in { transition-delay: 0.2s; }

/* --- HORIZONTAL SCROLL SECTION (Full-bleed, 4:5 images) --- */
.horizontal-wrapper {
    height: 650vh;
    position: relative;
    margin-top: -70px;
    padding-top: 70px;
}

.horizontal-section {
    position: sticky;
    top: 70px;
    height: calc(100vh - 70px);
    overflow: hidden;
    background: var(--color-bg);
    display: flex;
    align-items: center;
}

/* Extend background above to cover the navbar area when hero unsticks */
.horizontal-section::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--color-bg);
}

.horizontal-track {
    display: flex;
    gap: 0;
    will-change: transform;
}

.horizontal-item {
    flex-shrink: 0;
    /* 2:3 aspect ratio (width:height) */
    height: calc(100vh - 70px);
    width: calc((100vh - 70px) * 2 / 3); /* 2:3 ratio */
    position: relative;
    overflow: hidden;
}

.horizontal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* Caption overlay on images */
.horizontal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    color: var(--color-bg);
}

.horizontal-caption span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.5rem;
}

.horizontal-caption h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

/* --- QUOTE SECTION --- */
.quote-section {
    padding: 100px 40px;
    background: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.quote-content {
    text-align: center;
    max-width: 800px;
}

.quote-content blockquote {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-style: italic;
    color: var(--color-sixoseven);
    margin: 0 0 2rem 0;
    line-height: 1.3;
}

.quote-content cite {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text);
    opacity: 0.6;
}

/* --- SPLIT SECTION --- */
.split-section {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 100;
    background: var(--color-bg);
}

.split-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.split-text {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--color-bg);
}

.split-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-sixoseven);
    margin-bottom: 1.5rem;
}

/* Füge dies zu deinem CSS hinzu, am besten im Bereich SPLIT SECTION */

.split-label img {
    width: 80px;       /* Hier die gewünschte Größe einstellen */
    height: auto;      /* Verhindert Verzerrung */
    display: block;    /* Sorgt dafür, dass es sauber über dem Text steht */
    margin-bottom: 1rem; /* Etwas Abstand zum Text darunter ("Ready to Order") */
}

/* Optional: Falls das Logo auf Mobile zu klein/groß ist */
@media (max-width: 768px) {
    .split-label img {
        width: 60px; /* Etwas kleiner auf Handys */
    }
}

.split-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-sixoseven);
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.split-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sixoseven);
    text-decoration: none;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-sixoseven);
    display: inline-block;
    transition: all 0.3s ease;
}

.split-link:hover {
    padding-left: 10px;
}

/* --- FULL IMAGE SECTION --- */
.full-image-section {
    height: 70vh;
    min-height: 500px;
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Premium pink gradient background */
.full-image-section.pink-gradient {
    background: linear-gradient(135deg,
        var(--color-sixoseven) 0%,
        #a83d5c 50%,
        #7a2d44 100%);
}

.full-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.full-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 84, 122, 0.4);
}

.full-image-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-bg);
}

.full-image-content span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

.full-image-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    margin: 1rem 0 2rem 0;
}

.btn-light {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-bg);
    color: var(--color-bg);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--color-bg);
    color: var(--color-sixoseven);
}

/* --- MOBILE LAST IMAGE (hidden on desktop) --- */
.mobile-last-image {
    display: none;
}

/* --- SCROLL ANIMATIONS --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.contact-card h3 {
    font-family: var(--font-serif);
    color: var(--color-sixoseven);
    margin-bottom: 1rem;
    margin-top: 0;
}

.contact-card p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--color-sixoseven);
    text-decoration: underline;
}

/* --- STORES GRID --- */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.store-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.store-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

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

.store-info {
    padding: 1.5rem;
    background: white;
}

.store-info h3 {
    font-family: var(--font-serif);
    color: var(--color-sixoseven);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.store-info p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* --- FAQ ACCORDION --- */
.faq-item {
    border-bottom: 1px solid var(--color-light);
    padding: 1.5rem 0;
}

.faq-question {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-sixoseven);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

/* --- CAREERS --- */
.job-listing {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.job-listing h3 {
    margin-top: 0;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--color-sixoseven);
    color: var(--color-bg);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-sixoseven);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--color-sixoseven);
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--color-sixoseven);
}

.btn-outline:hover {
    background: var(--color-sixoseven);
    color: var(--color-bg);
}

/* --- FOOTER --- */
footer {
    background-color: var(--color-sixoseven);
    color: var(--color-bg);
    padding: 5rem var(--spacing-container) 2rem;
    font-weight: 300;
    margin-top: auto;
    position: relative;
    z-index: 100;
}

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

.footer-col h4 {
    font-family: var(--font-serif);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { opacity: 0.7; font-size: 0.85rem; }
.footer-col a:hover { opacity: 1; text-decoration: underline; }

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.social-icons a:hover { text-decoration: none; }
.social-icons svg {
    width: 20px;
    height: 20px;
    fill: var(--color-bg);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    max-width: 300px;
}
.input-group {
    display: flex;
    border-bottom: 1px solid rgba(249, 247, 242, 0.3);
    padding-bottom: 0.5rem;
}
.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--color-bg);
    width: 100%;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(249, 247, 242, 0.4); }
.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--color-bg);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    opacity: 0.8;
    padding-left: 1rem;
}

/* Legal Line */
.legal-line {
    border-top: 1px solid rgba(249, 247, 242, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg);
    color: var(--color-text);
    padding: 1.5rem var(--spacing-container);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    z-index: 999;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border: 1px solid var(--color-sixoseven);
    transition: all 0.3s;
}

.btn-cookie-accept {
    background-color: var(--color-sixoseven);
    color: var(--color-bg);
}

.btn-cookie-accept:hover {
    background-color: transparent;
    color: var(--color-sixoseven);
}

.btn-cookie-settings {
    background-color: transparent;
    color: var(--color-sixoseven);
}

.btn-cookie-settings:hover {
    background-color: rgba(212, 84, 122, 0.05);
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: var(--color-bg);
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    font-family: var(--font-serif);
    color: var(--color-sixoseven);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cookie-modal-content > p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.cookie-option {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-light);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.cookie-option-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-sixoseven);
    cursor: pointer;
}

.cookie-option-header input[type="checkbox"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-required {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5;
}

.cookie-option-desc {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.6;
    line-height: 1.5;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 600px) {
    .cookie-modal-content {
        padding: 1.5rem;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .cookie-modal-buttons .btn-cookie {
        width: 100%;
        text-align: center;
    }
}

/* --- NEWSLETTER POPUP --- */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newsletter-popup.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup-content {
    background: var(--color-bg);
    padding: 3rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
}

.newsletter-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.newsletter-popup-close:hover {
    opacity: 1;
}

.newsletter-popup-content h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-sixoseven);
    margin-bottom: 1rem;
}

.newsletter-popup-content > p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.newsletter-popup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-popup-form input {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-popup-form input:focus {
    border-color: var(--color-sixoseven);
}

.newsletter-popup-form input:invalid:not(:placeholder-shown) {
    border-color: #c00;
}

.newsletter-popup-form button {
    padding: 0.9rem 1rem;
    background: var(--color-sixoseven);
    color: var(--color-bg);
    border: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-popup-form button:hover {
    background: var(--color-text);
}

.newsletter-popup-note {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-top: 1rem;
    margin-bottom: 0 !important;
}

@media (max-width: 600px) {
    .newsletter-popup-content {
        padding: 2rem 1.5rem;
    }
    .newsletter-popup-content h3 {
        font-size: 1.5rem;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero {
        height: 500px;
        max-height: 60vh;
    }
    .gallery-section {
        padding: 60px 20px;
    }
    .gallery-grid {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal scroll on entire page */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
        width: 100%;
    }

    * {
        max-width: 100vw;
    }

    /* Hero: show photo + video stacked */
    .hero {
        flex-direction: column;
        height: auto;
        max-height: none;
        width: 100%;
    }
    .hero-photo {
        width: 100%;
        height: 85vh;
        min-height: 500px;
    }
    .hero-video {
        display: none;
    }

    /* Completely disable horizontal scroll section on mobile */
    .horizontal-wrapper {
        height: auto !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        overflow: hidden !important;
        width: 100% !important;
    }
    .horizontal-section {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        overflow: hidden !important;
        width: 100% !important;
    }
    .horizontal-section::before {
        display: none !important;
    }
    .horizontal-track {
        flex-direction: column !important;
        transform: none !important;
        width: 100% !important;
    }
    .horizontal-item {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 3/4;
        flex-shrink: 0;
    }
    .horizontal-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    object-position: top;
    }
    /* Hide last gallery image (it moves after Ready to Order) */
    .horizontal-item:last-child {
        display: none;
    }
    /* Show mobile-only last image */
    .mobile-last-image {
        display: block;
        width: 100%;
        aspect-ratio: 3/4;
    }
    .mobile-last-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    object-position: top;
    }

    /* Quote section mobile */
    .quote-section {
        padding: 60px 30px;
        min-height: auto;
    }

    /* Split section mobile */
    .split-section {
        flex-direction: column;
        min-height: auto;
    }
    .split-image,
    .split-text {
        width: 100%;
    }
    .split-image {
        height: 50vh;
        min-height: 300px;
    }
    .split-text {
        padding: 3rem 1.5rem;
        text-align: center;
        align-items: center;
    }
    .split-label img {
        margin: 0 auto 1rem;
    }
    .split-text p {
        max-width: 100%;
    }

    /* Full image mobile */
    .full-image-section {
        height: 40vh;
        min-height: 300px;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    :root { --spacing-container: 1.25rem; }

    /* Header */
    .logo {
        max-width: 120px;
    }

    /* Menu */
    .menu-links a { font-size: 1.75rem; }
    .menu-links li { margin: 1.5rem 0; }

    /* Hero mobile */
    .hero-photo {
        height: 75vh;
        min-height: 400px;
    }
    .hero-caption {
        font-size: 0.65rem;
        bottom: 1.5rem;
        left: 1.5rem;
    }

    /* Horizontal items as vertical gallery */
    .horizontal-item {
        aspect-ratio: 4/5;
    }
    .horizontal-caption {
        padding: 1.25rem;
    }
    .horizontal-caption span {
        font-size: 0.6rem;
    }
    .horizontal-caption h3 {
        font-size: 1rem;
    }

    /* Quote mobile */
    .quote-section {
        padding: 50px 20px;
    }
    .quote-content blockquote {
        font-size: 1.5rem;
    }

    /* Split section mobile */
    .split-image {
        height: 40vh;
        min-height: 250px;
    }
    .split-text {
        padding: 2.5rem 1.25rem;
    }
    .split-text h2 {
        font-size: 1.5rem;
    }
    .split-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* Full image section */
    .full-image-section {
        height: 35vh;
        min-height: 250px;
    }
    .full-image-content h2 {
        font-size: 1.75rem;
    }
    .btn-light {
        padding: 0.75rem 1.5rem;
        font-size: 0.7rem;
    }

    /* Cookie banner */
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }
    .cookie-text {
        min-width: auto;
        font-size: 0.8rem;
    }
    .cookie-buttons {
        width: 100%;
        justify-content: stretch;
    }
    .btn-cookie {
        flex: 1;
        padding: 0.7rem 1rem;
        font-size: 0.7rem;
    }

    /* Page hero */
    .page-hero { height: 30vh; min-height: 180px; }
    .page-hero-content h1 { font-size: 1.75rem; }

    /* Footer mobile optimization - compact 2-column layout */
    footer { padding: 2rem var(--spacing-container) 1rem; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem 0.75rem;
        margin-bottom: 1.5rem;
    }
    .footer-col:first-child {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
    }
    .footer-col h4 {
        margin-bottom: 0.5rem;
        font-size: 0.75rem;
    }
    .footer-col li { margin-bottom: 0.25rem; }
    .footer-col a { font-size: 0.7rem; }
    .footer-col p { font-size: 0.75rem; line-height: 1.4; }
    .newsletter-form { max-width: 100%; }
    .newsletter-form input { font-size: 0.8rem; padding: 0.4rem 0; }
    .newsletter-form button { font-size: 0.65rem; }
    .social-icons { margin-top: 1rem !important; }
    .social-icons svg { width: 16px; height: 16px; }
    .legal-line {
        padding-top: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
        font-size: 0.65rem;
    }
}
