/* ============================================================
   Café Kystens Perle — Main Stylesheet
   Palette: Deep teal, warm sand, coastal cream, gold accents
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colours */
    --clr-teal-900:   #0a2832;
    --clr-teal-800:   #103d4a;
    --clr-teal-700:   #1a5465;
    --clr-teal-600:   #206678;
    --clr-teal-500:   #2a7d96;
    --clr-teal-400:   #4a9fb5;
    --clr-teal-300:   #7cc4d6;
    --clr-teal-100:   #ddf1f6;
    --clr-teal-50:    #f0fafd;

    --clr-gold-600:   #b8862a;
    --clr-gold-500:   #d4a042;
    --clr-gold-400:   #e6b85c;
    --clr-gold-200:   #f5dfa3;
    --clr-gold-100:   #fdf5e0;

    --clr-sand:       #f5f0e8;
    --clr-cream:      #fafaf7;
    --clr-brown-700:  #5c4a3a;
    --clr-brown-600:  #7a6249;
    --clr-brown-400:  #a8906f;

    --clr-white:      #ffffff;
    --clr-text:       #1e2a30;
    --clr-text-light: #4a5e67;
    --clr-text-muted: #7a9299;

    /* Status */
    --clr-open:       #2e9e5f;
    --clr-open-bg:    #e8f8ef;
    --clr-closed:     #c0392b;
    --clr-closed-bg:  #fce8e6;

    /* Typography */
    --font-display:   'Playfair Display', Georgia, serif;
    --font-body:      'Inter', system-ui, -apple-system, sans-serif;

    --text-xs:    0.75rem;
    --text-sm:    0.875rem;
    --text-base:  1rem;
    --text-lg:    1.125rem;
    --text-xl:    1.25rem;
    --text-2xl:   1.5rem;
    --text-3xl:   1.875rem;
    --text-4xl:   2.25rem;
    --text-5xl:   3rem;
    --text-6xl:   3.75rem;

    /* Spacing */
    --sp-1:  0.25rem;
    --sp-2:  0.5rem;
    --sp-3:  0.75rem;
    --sp-4:  1rem;
    --sp-5:  1.25rem;
    --sp-6:  1.5rem;
    --sp-8:  2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    --sp-24: 6rem;

    /* Borders */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  16px;
    --radius-xl:  24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(10,40,50,0.08);
    --shadow-md:  0 4px 16px rgba(10,40,50,0.12);
    --shadow-lg:  0 8px 32px rgba(10,40,50,0.15);
    --shadow-xl:  0 16px 48px rgba(10,40,50,0.18);

    /* Transitions */
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

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

/* Accessibility: Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--sp-4);
    background: var(--clr-teal-700);
    color: var(--clr-white);
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition);
    text-decoration: none;
}
.skip-link:focus {
    top: var(--sp-4);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--clr-teal-600);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--clr-teal-400); }
a:focus-visible {
    outline: 2px solid var(--clr-gold-500);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--clr-teal-900);
    font-weight: 700;
}

h1 { font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl)); }
h2 { font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl)); }
h3 { font-size: clamp(var(--text-xl), 3vw, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }

p { margin-bottom: var(--sp-4); }

address { font-style: normal; }

/* ---------- Layout Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--sp-6);
}

@media (max-width: 640px) {
    .container { padding-inline: var(--sp-4); }
}

.section {
    padding-block: var(--sp-16);
}

.section-sm {
    padding-block: var(--sp-10);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-gold-500), var(--clr-gold-600));
    color: var(--clr-teal-900);
    border-color: var(--clr-gold-600);
    box-shadow: 0 4px 15px rgba(212,160,66,0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--clr-gold-400), var(--clr-gold-500));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,160,66,0.4);
    color: var(--clr-teal-900);
}

.btn-outline {
    background: transparent;
    color: var(--clr-teal-700);
    border-color: var(--clr-teal-700);
}
.btn-outline:hover {
    background: var(--clr-teal-700);
    color: var(--clr-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: var(--sp-2) var(--sp-4);
    font-size: var(--text-sm);
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10,40,50,0.96);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background var(--transition-slow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    min-height: var(--header-height);
    flex-wrap: wrap;
}

/* Logo */
.logo-wrap { flex-shrink: 0; }
.site-logo {
    height: 52px;
    width: auto;
    filter: brightness(1.05);
    transition: opacity var(--transition);
}
.site-logo:hover { opacity: 0.85; }

/* Header top bar */
.header-top-bar {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

/* Opening badge */
.opening-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    white-space: nowrap;
    flex-wrap: wrap;
}
.opening-badge.open {
    background: var(--clr-open-bg);
    color: var(--clr-open);
}
.opening-badge.closed {
    background: var(--clr-closed-bg);
    color: var(--clr-closed);
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}
.open .badge-dot { background: var(--clr-open); }
.closed .badge-dot {
    background: var(--clr-closed);
    animation: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.badge-time {
    font-size: var(--text-xs);
    opacity: 0.8;
}

/* Language switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
    color: rgba(255,255,255,0.75);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--sp-2) var(--sp-3);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all var(--transition);
    text-decoration: none;
}
.lang-switch:hover {
    background: rgba(255,255,255,0.12);
    color: var(--clr-white);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--sp-2);
    border-radius: var(--radius-md);
    transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.ham-line {
    width: 26px;
    height: 2px;
    background: var(--clr-white);
    border-radius: var(--radius-full);
    transition: all var(--transition);
    display: block;
}
.hamburger.active .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .ham-line:nth-child(2) { opacity: 0; }
.hamburger.active .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- NAVIGATION ---------- */
.main-nav {
    background: rgba(8,32,40,0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
    flex-wrap: wrap;
    padding-block: var(--sp-2);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: var(--sp-2) var(--sp-3);
    color: rgba(255,255,255,0.78);
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
    color: var(--clr-gold-400);
    background: rgba(255,255,255,0.06);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}
.dropdown-toggle .arrow {
    font-size: 10px;
    transition: transform var(--transition);
}
.nav-dropdown:hover .dropdown-toggle .arrow,
.nav-dropdown.open .dropdown-toggle .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + var(--sp-2));
    left: 0;
    min-width: 220px;
    background: var(--clr-teal-900);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: var(--sp-2);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu .nav-link {
    display: block;
    width: 100%;
    border-radius: var(--radius-md);
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--text-sm);
}
.dropdown-menu .nav-link:hover {
    background: rgba(255,255,255,0.08);
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: var(--sp-20);
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,40,50,0.72) 0%,
        rgba(10,40,50,0.55) 50%,
        rgba(32,102,120,0.45) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-inline: var(--sp-4);
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: rgba(212,160,66,0.15);
    border: 1px solid rgba(212,160,66,0.4);
    color: var(--clr-gold-400);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--sp-5);
    backdrop-filter: blur(8px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.1;
    margin-bottom: var(--sp-6);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title em {
    font-style: italic;
    color: var(--clr-gold-400);
}

.hero-desc {
    font-size: var(--text-lg);
    color: rgba(255,255,255,0.88);
    margin-bottom: var(--sp-8);
    line-height: 1.7;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    align-items: center;
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--sp-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    color: rgba(255,255,255,0.6);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-chevron {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- FEATURES / INFO CARDS ---------- */
.features {
    background: var(--clr-sand);
    padding-block: var(--sp-16);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-6);
}

.feature-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-teal-500), var(--clr-gold-500));
    transform: scaleX(0);
    transition: transform var(--transition-slow);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--sp-4);
    display: block;
}

.feature-title {
    font-size: var(--text-xl);
    font-family: var(--font-display);
    color: var(--clr-teal-800);
    margin-bottom: var(--sp-3);
}

.feature-text {
    font-size: var(--text-base);
    color: var(--clr-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ---------- ABOUT SECTION ---------- */
.about {
    background: var(--clr-cream);
    padding-block: var(--sp-20);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
}

.about-content .section-label {
    display: inline-block;
    color: var(--clr-gold-600);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
}

.about-content h2 {
    margin-bottom: var(--sp-5);
}

.about-content p {
    color: var(--clr-text-light);
    font-size: var(--text-lg);
    line-height: 1.8;
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
}
.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.about-image-wrap:hover img { transform: scale(1.03); }

.about-image-badge {
    position: absolute;
    bottom: var(--sp-6);
    left: var(--sp-6);
    background: linear-gradient(135deg, var(--clr-teal-800), var(--clr-teal-700));
    color: var(--clr-white);
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.12);
}
.about-image-badge .year {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--clr-gold-400);
    line-height: 1;
}
.about-image-badge .year-label {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---------- GALLERY PREVIEW ---------- */
.gallery-preview {
    padding-block: var(--sp-16);
    background: var(--clr-teal-900);
}

.gallery-preview .section-title {
    color: var(--clr-white);
    text-align: center;
    margin-bottom: var(--sp-2);
}

.gallery-preview .section-sub {
    color: rgba(255,255,255,0.6);
    text-align: center;
    font-size: var(--text-lg);
    margin-bottom: var(--sp-10);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: var(--sp-4);
}

@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    cursor: pointer;
}
.gallery-item.featured {
    grid-column: span 2;
    aspect-ratio: 3/2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }



/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--clr-teal-900) 0%, var(--clr-teal-700) 100%);
    padding-top: calc(var(--header-height) + 60px + var(--sp-16));
    padding-bottom: var(--sp-16);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    background: rgba(212,160,66,0.15);
    border: 1px solid rgba(212,160,66,0.35);
    color: var(--clr-gold-400);
    padding: var(--sp-1) var(--sp-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-4);
}

.page-hero h1 {
    color: var(--clr-white);
    margin-bottom: var(--sp-4);
}

.page-hero .page-desc {
    color: rgba(255,255,255,0.75);
    font-size: var(--text-xl);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- CONTENT LAYOUT ---------- */
.page-content {
    padding-block: var(--sp-16);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    max-width: 900px;
    margin-inline: auto;
}

/* Menu items */
.menu-section {
    padding-block: var(--sp-8);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.menu-section:last-child { border-bottom: none; }

.menu-section-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--clr-teal-800);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-3);
    border-bottom: 2px solid var(--clr-gold-400);
    display: inline-block;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-block: var(--sp-5);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    gap: var(--sp-4);
}
.menu-item:last-child { border-bottom: none; }

.menu-item-info h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--clr-teal-800);
    margin-bottom: var(--sp-1);
}

.menu-item-info p {
    color: var(--clr-text-light);
    font-size: var(--text-base);
    margin-bottom: 0;
    line-height: 1.5;
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--clr-gold-600);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ---------- HOURS PAGE ---------- */
.hours-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    max-width: 600px;
    margin-inline: auto;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--sp-4);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    gap: var(--sp-4);
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today {
    background: var(--clr-teal-50);
    margin-inline: calc(-1 * var(--sp-8));
    padding-inline: var(--sp-8);
    border-radius: var(--radius-md);
}

.hours-day {
    font-weight: 600;
    color: var(--clr-teal-800);
    font-size: var(--text-lg);
}

.hours-time {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: var(--clr-text);
    font-weight: 600;
}

.hours-note {
    text-align: center;
    margin-top: var(--sp-5);
    font-size: var(--text-sm);
    color: var(--clr-text-muted);
    font-style: italic;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--sp-5);
    color: var(--clr-teal-800);
}

.info-item {
    display: flex;
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
    align-items: flex-start;
}

.info-item-icon {
    width: 42px;
    height: 42px;
    background: var(--clr-teal-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item-text strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.info-item-text a,
.info-item-text span {
    color: var(--clr-text);
    font-size: var(--text-base);
}

.bank-info {
    background: var(--clr-sand);
    border-radius: var(--radius-md);
    padding: var(--sp-4);
    margin-top: var(--sp-4);
    font-size: var(--text-sm);
    border-left: 3px solid var(--clr-gold-500);
}

/* Map embed */
.map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 380px;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- EVENT / SELSKAB SECTIONS ---------- */
.event-info-box {
    background: var(--clr-teal-50);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    border: 1px solid var(--clr-teal-300);
    margin-bottom: var(--sp-8);
}

.event-info-box ul {
    list-style: disc;
    padding-left: var(--sp-6);
    color: var(--clr-text-light);
}

.event-info-box ul li {
    margin-bottom: var(--sp-2);
    font-size: var(--text-base);
}

.menu-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-6);
    margin-top: var(--sp-8);
}

.package-card {
    background: var(--clr-white);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.package-card .badge {
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-4);
    background: linear-gradient(135deg, var(--clr-gold-500), var(--clr-gold-600));
    color: var(--clr-teal-900);
    font-size: var(--text-xs);
    font-weight: 700;
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.package-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--sp-4);
    color: var(--clr-teal-800);
}

.package-card .price {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--clr-gold-600);
    margin-bottom: var(--sp-4);
}

.package-card .price span {
    font-size: var(--text-sm);
    color: var(--clr-text-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

.package-card ul {
    list-style: none;
    padding: 0;
}

.package-card ul li {
    padding-block: var(--sp-2);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--clr-text-light);
    font-size: var(--text-base);
    display: flex;
    align-items: flex-start;
    gap: var(--sp-2);
}
.package-card ul li:last-child { border-bottom: none; }
.package-card ul li::before {
    content: '✓';
    color: var(--clr-teal-500);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---------- SECTION HEADER UTILITY ---------- */
.section-header {
    text-align: center;
    margin-bottom: var(--sp-12);
}

.section-label {
    display: inline-block;
    color: var(--clr-gold-600);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
}

.section-title {
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    margin-bottom: var(--sp-4);
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-teal-500), var(--clr-gold-500));
    margin: var(--sp-4) auto;
    border-radius: var(--radius-full);
}

.section-sub {
    font-size: var(--text-lg);
    color: var(--clr-text-light);
    max-width: 640px;
    margin-inline: auto;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--clr-teal-900);
    color: rgba(255,255,255,0.75);
    margin-top: 0;
}

.footer-top {
    padding-block: var(--sp-16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: var(--sp-8);
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-col { }

.footer-logo {
    filter: brightness(1.1);
    margin-bottom: var(--sp-4);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: var(--sp-4);
}

.smiley-link { display: inline-block; margin-top: var(--sp-2); }
.smiley-badge { border-radius: var(--radius-sm); }

.footer-heading {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: var(--sp-5);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: var(--sp-3);
}

.footer-address {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: rgba(255,255,255,0.65);
    margin-bottom: var(--sp-4);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--text-sm);
}

.footer-contact-list a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--clr-gold-400); }

.contact-icon { font-size: var(--text-base); }

.footer-hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    margin-bottom: var(--sp-4);
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.65);
    padding-block: var(--sp-2);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-hours-list li span:last-child { font-weight: 600; color: rgba(255,255,255,0.85); }

.footer-kitchen-note {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.45);
    margin-bottom: var(--sp-4);
}

.footer-book-btn {
    display: inline-block;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    color: rgba(255,255,255,0.7);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition);
    text-decoration: none;
}
.social-link:hover {
    transform: translateX(4px);
    color: var(--clr-white);
}
.social-facebook:hover { background: rgba(24,119,242,0.15); border-color: rgba(24,119,242,0.3); }
.social-instagram:hover { background: rgba(225,48,108,0.15); border-color: rgba(225,48,108,0.3); }

.footer-lang-switch { }
.lang-switch-footer {
    color: rgba(255,255,255,0.55);
    font-size: var(--text-sm);
    transition: color var(--transition);
    text-decoration: none;
}
.lang-switch-footer:hover { color: var(--clr-gold-400); }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-block: var(--sp-5);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-3);
}

.footer-copy,
.footer-credit {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-credit a {
    color: var(--clr-gold-400);
    font-weight: 600;
    text-decoration: none;
}
.footer-credit a:hover { color: var(--clr-gold-300); }

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
    position: fixed;
    bottom: var(--sp-6);
    right: var(--sp-6);
    width: 48px;
    height: 48px;
    background: var(--clr-teal-700);
    color: var(--clr-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    background: var(--clr-teal-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .hamburger { display: flex; }

    .header-top-bar .btn-book { display: none; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-teal-900);
        border-top: 1px solid rgba(255,255,255,0.08);
        box-shadow: var(--shadow-xl);
    }

    .main-nav.open { display: block; }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding-block: var(--sp-4);
        gap: 0;
    }

    .nav-link {
        width: 100%;
        padding: var(--sp-4) var(--sp-5);
        font-size: var(--text-base);
        border-radius: 0;
    }

    .nav-dropdown { position: static; }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(255,255,255,0.04);
        padding-left: var(--sp-6);
        display: none;
    }

    .nav-dropdown.open .dropdown-menu { display: block; }
    .nav-dropdown .dropdown-toggle { width: 100%; }

    .hero-actions { flex-direction: column; align-items: flex-start; }

    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.featured { grid-column: span 2; }

    .menu-packages { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
    :root {
        --header-height: 70px;
    }
    .header-inner {
        padding-block: var(--sp-3);
        flex-wrap: nowrap;
    }
    .site-logo { height: 40px; }
    .header-top-bar { gap: var(--sp-2); }
    .opening-badge { display: none; }

    .hero-title { font-size: 2rem; }

    .gallery-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
    .gallery-item.featured { grid-column: span 2; }

    .about-image-badge { display: none; }

    .hours-card { padding: var(--sp-5); }
    .hours-row.today {
        margin-inline: calc(-1 * var(--sp-5));
        padding-inline: var(--sp-5);
    }

    .features-grid { grid-template-columns: 1fr; }
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--clr-gold-500); }
.text-teal { color: var(--clr-teal-600); }
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}
