:root {
    --rg-primary: #2c3e2d;
    --rg-secondary: #5a6f5c;
    --rg-accent: #c9a86c;
    --rg-warm: #e8ddd0;
    --rg-dark: #1a1a1a;
    --rg-white: #fdfcfa;
    --rg-sand: #f5f2ed;
    --text-body: #2b2b2b;
    --text-muted: #5b5b5b;
    --border: #e2dfd8;
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
    --radius-base: 10px;
    --radius-pill: 999px;
    --font-body: "Inter", "Helvetica Neue", sans-serif;
    --font-heading: "Playfair Display", Georgia, serif;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    background: var(--rg-white);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--rg-dark);
    letter-spacing: 0.2px;
    margin: 0 0 16px;
}

p {
    margin: 0 0 14px;
    color: var(--text-body);
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.25s ease;
}

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

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

section {
    padding: 90px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--rg-sand);
    color: var(--rg-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--rg-primary);
    color: var(--rg-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: #243426;
}

.btn-outline {
    background: transparent;
    color: var(--rg-primary);
    border-color: var(--rg-secondary);
}

.btn-outline:hover {
    background: var(--rg-sand);
}

.btn-warm {
    background: var(--rg-accent);
    color: var(--rg-dark);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--rg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--rg-secondary);
    margin-bottom: 10px;
}

.muted {
    color: var(--text-muted);
}

/* Header */
.rg-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.rg-header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 1.1rem;
}

.logo span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-main > li > a {
    padding: 10px 12px;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.nav-main > li > a:hover {
    background: var(--rg-sand);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--rg-white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-base);
    padding: 10px 0;
    min-width: 230px;
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--text-body);
}

.dropdown-menu li a:hover {
    background: var(--rg-sand);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: var(--rg-sand);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
}

.lang-switch a {
    color: var(--rg-primary);
}

.lang-switch .active {
    color: var(--rg-secondary);
    text-decoration: underline;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero */
.hero-destination {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--rg-white);
    background: var(--rg-dark);
}

.hero-video-bg video,
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(44, 62, 45, 0.75), rgba(26, 26, 26, 0.55));
}

.hero-content-center {
    position: relative;
    text-align: center;
    padding: 0 20px;
    max-width: 720px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(233, 227, 216, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-pill);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hero-content-center h1 {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    color: var(--rg-white);
    margin-bottom: 16px;
}

.hero-content-center p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Restaurant features */
.restaurants-showcase {
    background: var(--rg-white);
}

.section-header-elegant {
    text-align: center;
    margin-bottom: 40px;
}

.section-header-elegant h2 {
    margin-bottom: 8px;
}

.section-header-elegant p {
    color: var(--text-muted);
}

.restaurant-feature {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-base);
    background: var(--rg-white);
    box-shadow: var(--shadow-card);
    margin-bottom: 26px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: center;
}

.feature-image img {
    width: 100%;
    border-radius: var(--radius-base);
    height: 320px;
    object-fit: cover;
}

.restaurant-type {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--rg-secondary);
    text-transform: uppercase;
    font-weight: 700;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 20px;
}

.feature-highlights span {
    background: var(--rg-sand);
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    color: var(--rg-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.restaurant-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 14px 0;
    color: var(--text-muted);
}

.reverse .feature-grid {
    direction: rtl;
}

.reverse .feature-grid > * {
    direction: ltr;
}

/* Sustainability */
.sustainability {
    background: var(--rg-sand);
}

.green-list {
    padding-left: 18px;
}

.green-list li {
    margin-bottom: 10px;
    color: var(--text-body);
}

.section-label-green {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(44, 62, 45, 0.1);
    color: var(--rg-primary);
    border-radius: var(--radius-pill);
    font-weight: 700;
}

/* Cards */
.card {
    background: var(--rg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-base);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.card img.cover {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.card-body {
    padding: 22px;
}

.card-title {
    margin: 0 0 10px;
}

.meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Menu & pricing */
.menu-section {
    background: var(--rg-sand);
    border-radius: var(--radius-base);
    padding: 20px;
    border: 1px solid var(--border);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.menu-item {
    background: var(--rg-white);
    border-radius: var(--radius-base);
    padding: 16px;
    border: 1px solid var(--border);
}

.menu-item h4 {
    margin: 0 0 6px;
}

.menu-price {
    font-weight: 700;
    color: var(--rg-primary);
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--rg-sand);
    color: var(--rg-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: 10px;
}

/* Timeline */
.timeline {
    position: relative;
    border-left: 2px solid var(--border);
    padding-left: 20px;
}

.timeline-entry {
    margin-bottom: 18px;
}

.timeline-entry h4 {
    margin-bottom: 6px;
}

/* Booking / form */
.booking-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-base);
    background: var(--rg-white);
    box-shadow: var(--shadow-card);
    padding: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    font-family: var(--font-body);
}

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

/* Info blocks */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.info-tile {
    background: var(--rg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-base);
    padding: 18px;
    box-shadow: var(--shadow-card);
}

.stat {
    font-size: 2.2rem;
    color: var(--rg-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

/* Contact */
.contact-cta {
    background: var(--rg-white);
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.map-placeholder {
    width: 100%;
    border-radius: var(--radius-base);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.map-placeholder img {
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background: var(--rg-primary);
    color: var(--rg-white);
    padding: 70px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.footer-grid h4 {
    margin-top: 0;
    color: var(--rg-white);
}

.footer-grid a {
    color: rgba(253, 252, 250, 0.85);
}

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

.footer-bottom {
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.9rem;
    color: rgba(253, 252, 250, 0.75);
}

/* Language visibility */
[lang="da"] { display: block; }
[lang="en"] { display: none; }

body.lang-en [lang="da"] { display: none; }
body.lang-en [lang="en"] { display: block; }

/* Responsive */
@media (max-width: 900px) {
    .nav-main {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--rg-white);
        padding: 14px 22px;
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid var(--border);
        display: none;
    }

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

    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        position: relative;
        box-shadow: none;
        border: none;
        padding-left: 12px;
    }

    .feature-image img {
        height: 240px;
    }
}
