/* --- NORMALIZE 8.0.1 (Minified) --- */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/* --- FONTS --- */
@font-face {
    font-family: 'Forum';
    src: url('../fonts/forum-v19-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* --- VARIABLEN --- */
:root {
    --eden-salbei:      rgb(106, 124, 102);
    --eden-salbei-hell: rgb(240, 244, 238);
    --eden-gold:        rgb(212, 155, 35);
    --bellingen-blue:   rgb(26, 58, 95);
    --sand-bg:          rgb(249, 247, 242);
    --beige-schatten:   rgb(225, 218, 205);
    --white:            rgb(255, 255, 255);
    --text:             rgb(51, 51, 51);
    --radius:           1.5rem;
    --transition:       0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- BASIS --- */
*, *::before, *::after { box-sizing: border-box;  }
a { color: inherit; text-decoration: none; }

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--sand-bg);
    line-height: 1.6;
}

/* --- LAYOUT --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1rem; }
.section-spacing { padding: 100px 0; }

/* --- TYPOGRAFIE --- */
p, h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1em 0;
	padding: 0;
}
h1 { font-family: 'Forum', serif; font-size: 2.8rem; font-size:clamp(1.9rem, 3vw + 0.5rem, 2.8rem); font-weight: 400; color: var(--eden-salbei); }
h2{ font-family: 'Forum', serif; font-size: 2.4rem; font-size:clamp(1.6rem, 2.5vw + 0.5rem, 2.4rem); font-weight: 400;  }
h3 { font-family: 'Forum', serif; font-size: 1.6rem;font-size:clamp(1.2rem, 1.5vw + 0.5rem, 1.6rem); font-weight: 400; }
h4 { font-family: 'Forum', serif; font-size: 1.6rem;font-size:clamp(1.2rem, 1.5vw + 0.5rem, 1.6rem); font-weight: 400; }

h2.sans  { font-family: 'Inter', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--bellingen-blue); font-weight: 600; }

.intro-block { text-align: center; padding-bottom: 60px; }
.intro-block h1 {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 3rem;
	line-height: 1em;
}
.intro-block h2.sans { margin: 12px auto 25px; }
.intro-block .intro-lead { max-width: 620px; margin: 0 auto 60px; opacity: 0.8; padding:calc(0.75rem + 0.75vw); }

.text-gruen { color: var(--eden-salbei); }

/* --- HEADER --- */
header {
    position: absolute;
    top: 15px; left: 0; right: 0;
    z-index: 1000;
}
header.sticky {
    position: fixed;
    top: 0;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 5px 0;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 15px 30px;
    position: relative;
}
header.sticky .header-flex { border-radius: 0; background: transparent; }

/* Logo */
.logo-area { display: flex; align-items: center; gap: 0.25rem; }
.logo-palme { width: 54px; height: 54px; color: var(--eden-salbei); flex-shrink: 0; margin-top: -15px; }
.logo-text .name {
	font-family: 'Forum', serif;
	font-size: 1.625rem;
	letter-spacing: 1px;
	color: var(--eden-salbei);
	display: block;
	line-height: 1;
}
.logo-text .sub {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--bellingen-blue);
	display: block;
}

/* Nav Desktop */
nav { display: flex; }
nav ul { display: flex; gap: 8px; align-items: center; list-style: none }
nav a {
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--text); padding: 10px 18px; border-radius: 50px;
    border: 1.5px solid transparent; transition: 0.3s;
}
nav a:hover,
nav a.active { border-color: var(--eden-salbei); color: var(--eden-salbei); }
nav a.active:hover { background-color: var(--eden-salbei); color: var(--white);}
nav a.cta-nav { background: var(--eden-salbei); color: var(--white); border-color: var(--eden-salbei); }
nav a.cta-nav:hover { background: var(--bellingen-blue); border-color: var(--bellingen-blue); color: var(--white); }

/* Hamburger */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 10px; z-index: 1100;
}
.hamburger { display: block; width: 25px; height: 2px; background: var(--eden-salbei); position: relative; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; width: 25px; height: 2px;
    background: var(--eden-salbei); left: 0; transition: 0.3s;
}
.hamburger::before { top: -8px; }
.hamburger::after  { top: 8px; }
.nav-toggle.open .hamburger { background: transparent; }
.nav-toggle.open .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* Nav Mobile */
nav.mobile-open {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-radius: 0 0 var(--radius) var(--radius);
    z-index: 999;
}
nav.mobile-open ul { flex-direction: column; align-items: center; gap: 18px; }

/* --- HERO --- */
section.hero {
    max-width: 1240px;
    margin: 140px auto 0;
    padding: 0 25px;
    height: 65vh;
    position: relative;
    margin-bottom: 0;
}
.slider-container {
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    overflow: hidden;
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
    position: absolute; bottom: 10%; left: 6%;
    color: var(--white); font-family: 'Forum', serif; font-size: 3.2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.45);
    max-width: 580px; line-height: 1.2; z-index: 2;
}
.slider-dots {
    position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 12px; z-index: 10;
}
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: 0.4s; }
.dot.active { background: var(--white); width: 35px; border-radius: 10px; }

/* --- ARRANGEMENT --- */
.arrangement-box {
    display: grid; grid-template-columns: 300px 1fr;
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.07);
}
.arr-left {
    background: var(--eden-gold); color: var(--white);
    padding: 50px 30px; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.arr-left h3 {
    font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px; color: var(--white);
}
.arr-days { font-family: 'Forum', serif; font-size: 4rem; line-height: 1; color: var(--white); }
.arr-price { font-family: 'Forum', serif; font-size: 2rem; color: var(--white); }
.arr-price span { font-size: 0.85rem; opacity: 0.8; }
.arr-right { padding: 50px 55px; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.arr-right h4 { color: var(--eden-salbei); font-size:1.6rem !important; }
.arr-right p { font-size: 0.9rem; opacity: 0.8; line-height: 1.7; }
.arr-right a { align-self: flex-start; }

/* --- TEXT-IMG-SPLIT --- */
.text-img-split { display: flex; align-items: center; gap: 80px; }
.text-img-split > div { padding:calc(0.75rem + 0.75vw);}
.text-img-split .content { flex: 1;  }
.text-img-split .content p:not(.sub-heading) { margin: 0 0 30px; max-width: 480px; }
.text-img-split .img-wrap { flex: 1; position: relative; overflow-x: hidden }
.text-img-split .img-wrap img { width: 100%; height: 480px; object-fit: cover; object-position: center; border-radius: var(--radius); position: relative; z-index: 2; display: block; }


/* --- SEITENHEADER (Unterseiten) --- */
.page-header {
    background: var(--bellingen-blue); color: var(--white);
    padding: 200px 0 80px; text-align: center;
}
.page-header h1 { color: var(--white); font-size: 3rem; }
.page-header p { opacity: 0.75; margin-top: 15px; font-size: 1.05rem; }

/* --- GALERIE --- */
.gallery-section { overflow: visible; }
.gallery-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 30px;
}
.gallery-nav { display: flex; gap: 10px; }
.gallery-nav button {
    background: var(--eden-gold); color: var(--white); border: none;
    width: 50px; height: 50px; border-radius: 50%;
    cursor: pointer; font-size: 1.3rem; transition: 0.3s;
}
.gallery-nav button:hover { background: var(--bellingen-blue); transform: scale(1.08); }
.gallery-track-wrap {
	width: auto;

	overflow: hidden;
	padding: 0; margin:0 auto;
	text-align: center;
}
.gallery-track {
    display: flex; gap: 25px; overflow-x: auto; justify-content: flex-start;
    padding: 20px calc(0.75rem + 1vw) 30px;
    scroll-behavior: smooth; cursor: grab;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track:active { cursor: grabbing; }
.gal-item {
    width: 360px; height: 440px; object-fit: cover;
    border-radius: calc(var(--radius) * 0.7);
    flex-shrink: 0; transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}
.gal-item.offset { margin-top: 55px; }
.gal-item:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

/* --- PREISTABELLE --- */
.preise-table { width: 100%; max-width: 700px; margin: 0 auto; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 15px 60px rgba(0,0,0,0.12); }
.preise-table th { background: var(--bellingen-blue); color: var(--white); padding: 18px 25px; text-align: left; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; }
.preise-table td { padding: 18px 25px; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.92rem; }
.preise-table tr:last-child td { border-bottom: none; }
.preise-table tr:nth-child(even) td { background: var(--sand-bg); }
.preise-table .preis { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.preise-hinweis { margin-top: 20px; font-size: 0.82rem; opacity: 0.65; line-height: 1.7; }

/* --- ZIMMER KACHELN --- */
.zimmer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.zimmer-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.zimmer-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(0,0,0,0.1); }
.zimmer-card img { width: 100%; height: 260px; object-fit: cover; }
.zimmer-card .text { padding: 30px; }
.zimmer-card h3 { color: var(--bellingen-blue); margin-bottom: 10px; }
.zimmer-card p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 20px; }
.zimmer-card .preis-ab { font-family: 'Forum', serif; font-size: 1.3rem; color: var(--eden-salbei); }



/* --- KONTAKTFORMULAR --- */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.kontakt-info h2 { color: var(--eden-salbei); margin-bottom: 25px; }
.kontakt-info address { font-style: normal; line-height: 2.2; font-size: 0.95rem; }
.kontakt-info a { color: var(--eden-salbei); }
.kontakt-info a:hover { text-decoration: underline; }

.formular { background: var(--white); padding: 45px; border-radius: var(--radius); box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.formular h3 { color: var(--bellingen-blue); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--eden-salbei); font-weight: 600; }
.form-field input,
.form-field select,
.form-field textarea {
    border: 1.5px solid var(--beige-schatten); border-radius: 0.6rem;
    padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 0.92rem;
    background: var(--sand-bg); color: var(--text); transition: border-color 0.3s;
    width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--eden-salbei); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-check { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 25px; font-size: 0.85rem; opacity: 0.75; }
.form-check input { margin-top: 3px; flex-shrink: 0; }
.form-check a { color: var(--eden-salbei); text-decoration: underline; }

/* --- QUICKLINKS --- */
.quicklinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.quicklink-item {
    display: block; border-radius: var(--radius); overflow: hidden;
    color: var(--white); transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.quicklink-item:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
.quicklink-item .img-box { height: 220px; overflow: hidden; }
.quicklink-item .img-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.quicklink-item:hover .img-box img { transform: scale(1.06); }
.quicklink-item .text { padding: 28px 30px; }
.quicklink-item h4 { color: var(--white); margin-bottom: 8px; }
.quicklink-item p { font-size: 0.88rem; opacity: 0.85; margin: 0; }
.bg-salbei { background: var(--eden-salbei); }
.bg-blue   { background: var(--bellingen-blue); }
.bg-gold   { background: var(--eden-gold); }

/* --- PUNKT-LISTE (Mobile First) --- */
.punkt-liste { list-style: none;padding:0; margin:0 0 0 6px; }

.punkt-liste li {  padding: 6px 0 6px 14px; position: relative; line-height: 1.6; }
.punkt-liste li::before { content: ''; position: absolute; left: 0; top: 1em; transform: translateY(-50%); width: 7px; height: 7px; border-radius: 50%; background: var(--eden-salbei); }

.punkt-liste.mit-linie li { border-bottom: 1px solid rgba(0,0,0,0.06); padding-bottom: 10px; }
/* --- PALME TRENNER --- */
.palm-divider {
    display: flex; justify-content: center; align-items: center;
    padding: 20px 0;  opacity: 0.75;
}
.palm-divider svg { width: 60px; height: 60px; color: var(--eden-salbei); stroke-width: 2.5; }

/* --- CTA --- */
.cta-plain { text-align: center; padding: 80px 25px; }
.cta-plain h2 { color: var(--eden-salbei); margin-bottom: 15px; }
.cta-plain p { opacity: 0.75; max-width: 748px; margin: 0 auto 35px; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* --- EDEN-WOCHE BADGE (Unterseiten) --- */
.eden-badge {
    position: fixed; bottom: 30px; right: 30px; z-index: 500;
    background: var(--eden-gold); color: var(--white);
    border-radius: 1rem; padding: 16px 22px; text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 160px;
}
.eden-badge:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(0,0,0,0.2); }
.eden-badge .badge-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.85; display: block; margin-bottom: 4px; }
.eden-badge .badge-name { font-family: 'Forum', serif; font-size: 1rem; display: block; line-height: 1.2; }
.eden-badge .badge-price { font-size: 0.75rem; opacity: 0.85; display: block; margin-top: 4px; }

/* --- BUTTONS --- */
.btn-primary {
    background: var(--eden-salbei); color: var(--white);
    padding: 16px 40px; border-radius: 50px; font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; display: inline-block;
}
.btn-outline {
    display: inline-block; padding: 14px 35px;
    border: 2px solid var(--eden-salbei); color: var(--eden-salbei);
    border-radius: 50px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.btn-outline-dark {
    display: inline-block; padding: 14px 35px;
    border: 2px solid var(--bellingen-blue); color: var(--bellingen-blue);
    border-radius: 50px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.btn-gold {
    background: var(--eden-gold); color: var(--text);
    padding: 16px 40px; border-radius: 50px; font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; display: inline-block;
}


.btn-primary:hover, .btn-outline:hover, .btn-outline-dark:hover, .btn-gold:hover {border-color: var(--bellingen-blue);background: var(--bellingen-blue); color: var(--white);}

/* --- FOOTER --- */
footer { background: var(--bellingen-blue); color: var(--white); padding: 80px 0 40px; margin-top: 40px; }
.f-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px;
    margin-bottom: 50px; padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.f-logo-name { font-family: 'Forum', serif; font-size: 1.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--white); display: block; line-height: 1; }
.f-logo-sub  { font-family: 'Inter', sans-serif; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.45); display: block; margin-top: 4px; margin-bottom: 20px; }
footer address { font-style: normal; color: var(--white); line-height: 2; font-size: 0.88rem; }
footer .f-col p { color: var(--white); font-size: 0.88rem; margin-top: 8px; }
footer .f-col a { color: var(--white); transition: opacity 0.3s; }
footer .f-col a:hover { opacity: 0.7; }
.f-col-links { display: flex; flex-direction: column; gap: 12px; }
.f-col-links h4 { display: none; }
.f-col-links a { color: var(--white); font-size: 0.88rem; transition: opacity 0.3s; }
.f-col-links a:hover { opacity: 0.7; }
.f-bottom { text-align: center; }
.msbu-link { color: var(--white); font-size: 0.78rem; letter-spacing: 2px; opacity: 0.35; transition: opacity 0.3s; }
.msbu-link:hover { opacity: 0.6; }

/* --- LIGHTBOX --- */
#lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,0.93);
    z-index: 2000; display: none; align-items: center; justify-content: center;
}
#lightbox.active { display: flex; }
#lightbox img { max-width: 88%; max-height: 82vh; border-radius: 8px; }
.lb-close {
    position: absolute; top: 25px; right: 35px; color: var(--white);
    font-size: 2.5rem; cursor: pointer; opacity: 0.7; transition: 0.3s;
    background: none; border: none; line-height: 1;
}
.lb-close:hover { opacity: 1; transform: rotate(90deg); }
.lb-count {
    position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 3px;
}
.lb-prev, .lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px; height: 50px; border-radius: 50%; font-size: 1.3rem; cursor: pointer; transition: 0.3s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* --- REVEAL --- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; will-change: transform, opacity; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==========================================================
   MEDIA QUERIES
   ========================================================== */

@media (min-width: 641px) and (max-width: 1024px) {

    html { font-size: 19px; }

    .nav-toggle { display: block; }
    nav { display: none; }
	main, header { padding:0 1rem;}

    section.hero { margin-top: 110px; height: 55vh; }
    .hero-caption { font-size: 2.4rem; }

    .arrangement-box { grid-template-columns: 220px 1fr; }
    .arr-left { padding: 40px 20px; }
    .arr-right { padding: 40px 30px; }
    .arr-days { font-size: 3rem; }

    .text-img-split { gap: 40px; }
    h1 { font-size: 2.2rem; }

    .quicklinks { grid-template-columns: repeat(2, 1fr); }
    .punkt-liste { display: flex; flex-wrap: wrap; gap: 4px 30px; }
    .punkt-liste li { flex: 0 0 calc(33.333% - 20px); }
    .punkt-liste.zweispaltig li { flex: 0 0 calc(50% - 15px); }
    .zimmer-grid { grid-template-columns: 1fr; }
    .umgebung-sektion .punkt-liste li { flex: 0 0 100%; }

    
    .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }

    .f-grid { grid-template-columns: 1fr 1fr; gap: 30px; }

    .gal-item { width: 280px; height: 360px; }
    .gallery-track-wrap { padding-left: 25px; padding-right: 0; }
    .gallery-track { justify-content: flex-start; }
    .gallery-header { padding: 0 25px; }

    .page-header { padding: 160px 0 60px; }
    .page-header h1 { font-size: 2.4rem; }

    .section-spacing { padding: 70px 0; }
    .eden-badge { bottom: 20px; right: 20px; }
}

@media (max-width: 640px) {

    html { font-size: 18px; }
    header { top: 0; }
    .nav-toggle { display: block; }
    nav { display: none; }
    main { padding: 0 calc(0.75rem + 1vw); }

    .header-flex { border-radius: 0; padding: 12px 20px; }
    .logo-text .name { font-size: 1.3rem; }
	.logo-text .sub { font-size: 0.825rem;}

    section.hero { margin-top: 72px; height: 50vh; padding: 0 calc(0.75rem + 1vw); }
    .slider-container { inset: 0 calc(0.75rem + 1vw); border-radius: 1rem; }
    .hero-caption { font-size: 1.7rem; left: 18px; bottom: 12%; }

    .arrangement-box { grid-template-columns: 1fr; }
    .arr-left { padding: 35px 25px; }
    .arr-days { font-size: 3.2rem; }
    .arr-right { padding: 30px 25px; }
    .arr-right a { align-self: stretch; text-align: center; }

    .text-img-split { flex-direction: column; gap: 25px; }
    .img-deko { display: none; }
    .text-img-split .img-wrap img { height: auto; aspect-ratio: 4/3; }
    h1 { font-size: 1.9rem; }
    .intro-block h1 { font-size: 1.6rem; letter-spacing: 2px; }
    h2 { font-size: 1.7rem; }
    p.sub-heading { font-size: 0.95rem; }

    .quicklinks { grid-template-columns: 1fr; gap: 15px; }
    .quicklink-item .img-box { height: 180px; }

    .zimmer-grid { grid-template-columns: 1fr; }
    .kontakt-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .formular { padding: 30px 20px; }

    .gal-item { width: 250px; height: 300px; }
    .gal-item.offset { margin-top: 25px; }
    .gallery-track-wrap { padding-left: 20px; padding-right: 0; }
    .gallery-track { justify-content: flex-start; }
    .gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; padding: 0 20px; }

    .cta-plain { padding: 50px 20px; }
    .cta-buttons { flex-direction: column; align-items: center; }

    .f-grid { grid-template-columns: 1fr; gap: 30px; }
    .f-logo-name { font-size: 1.3rem; }

    .page-header { padding: 140px 0 50px; }
    .page-header h1 { font-size: 1.9rem; }

    .eden-badge { bottom: 15px; right: 15px; max-width: 140px; padding: 12px 16px; }
    .section-spacing { padding: 55px 0; }
    main > section:not(.container), main > div:not(.container) { padding-left: 20px; padding-right: 20px; }

    .preise-table th, .preise-table td { padding: 14px 15px; font-size: 0.85rem; }
}

/* --- LAENDER GRID --- */
.laender-grid { margin-top: 30px; }
@media (min-width: 641px) {
    .laender-grid { display: flex; gap: 40px; }
    .laender-grid > div { flex: 1; }
	.logo-area { gap: 0.5rem; }
	.logo-palme { width: 64px; height: 64px;  }
}

/* --- INTRO SPLIT MOBILE ---*/
@media (max-width: 640px) {
    .intro-split .img-wrap { order: -1; }
    .intro-split .content { order: 1; }
}

#formular { scroll-margin-top: 80px; }

.form-datenschutz { font-size: 0.78rem; opacity: 0.65; line-height: 1.6; margin-bottom: 20px; }
.form-datenschutz a { color: var(--eden-salbei); text-decoration: underline; }

@media (max-width: 640px) {
    .umgebung-sektion { padding-left: calc(0.75rem + 1vw); padding-right: calc(0.75rem + 1vw); }
}

.kontakt-info-block { margin-top: 35px; }
.kontakt-info-block h3 { color: var(--bellingen-blue); margin-bottom: 12px; }
.kontakt-info-block p { font-size: 0.9rem; line-height: 1.8; }
.kontakt-maps { margin-top: 12px; display: flex; gap: 15px; flex-wrap: wrap; }
.btn-sm { padding: 8px 20px; font-size: 0.75rem; }
