/* ============================================
   WITTINGHOF – stylesheet based on the approved CI draft
   Primary colour: orange #EC822E
   Backgrounds: white / light cream
   Typography: Nunito (rounded, modern) + Lora Italic
   ============================================ */

:root {
    --orange: #EC822E;
    --orange-dark: #d06820;
    --orange-light: #f5a060;
    --orange-bg: #fff5ed;
    --orange-pale: #fef0e3;

    --white: #ffffff;
    --cream: #fdfaf6;
    --off-white: #f9f6f2;
    --border: #ede8e2;

    --text: #2c2018;
    --text-mid: #5a4535;
    --text-light: #8a7060;

    --font-brand: 'FlechaM', 'Lora', Georgia, serif;
    --font-serif: 'Lora', Georgia, serif;
    --font-sans: 'Nunito', system-ui, sans-serif;

    --radius: 14px;
    --radius-lg: 24px;
    --shadow: 0 4px 20px rgba(0,0,0,0.07);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.11);
    --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-brand);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* The brand slogan always uses Lora Italic. */
.slogan {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

p { font-family: var(--font-serif); font-weight: 400; color: var(--text-light); line-height: 1.85; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }
.text-white { color: var(--white) !important; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}
.section-header p { margin-top: 1rem; font-size: 1.05rem; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236,130,46,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.8);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--orange);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}
.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 24px rgba(0,0,0,0.06);
    padding: 0.7rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo-img {
    height: 30px;
    width: auto;
    display: block;
    transition: filter var(--transition);
}
.navbar:not(.scrolled) .nav-logo-img { filter: brightness(0) invert(1); }
.navbar.scrolled .nav-logo-img { filter: none; }

.nav-logo--text {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.55rem;
    letter-spacing: -0.02em;
    color: white;
    text-decoration: none;
    transition: color var(--transition);
}
.navbar.scrolled .nav-logo--text { color: var(--orange); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    transition: color var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width var(--transition);
    border-radius: 2px;
}
.nav-link:hover::after { width: 100%; }
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    border: 2px solid var(--orange);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 16px rgba(236,130,46,0.4);
    transition: all 0.25s ease;
}
.nav-link.nav-cta:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    box-shadow: 0 6px 20px rgba(236,130,46,0.5);
    transform: translateY(-1px);
}
.nav-link.nav-cta::after { display: none; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: rgba(255,255,255,0.9);
    transition: all var(--transition);
    border-radius: 2px;
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ============ HERO ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-media {
    position: absolute;
    inset: 0;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 40% 80%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(27,30,24,0.18) 0%, rgba(27,30,24,0.68) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
    max-width: 820px;
}
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.25rem;
    background: rgba(236,130,46,0.85);
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
}
.hero-wordmark-img {
    height: clamp(3rem, 8vw, 6rem);
    width: auto;
    display: block;
    margin: 0 auto 0.25rem;
    filter: drop-shadow(0 2px 16px rgba(0,0,0,0.35));
}

.hero-wordmark {
    font-family: var(--font-brand);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-slogan {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: rgba(255,255,255,1);
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6), 0 2px 24px rgba(0,0,0,0.5);
    font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.8);
    animation: bounce 2s infinite;
}
.hero-scroll svg { width: 28px; height: 28px; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ WELCOME ============ */
.welcome { background: var(--white); }
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.welcome-text h2 { margin-bottom: 1.2rem; }
.welcome-text p { margin-bottom: 1rem; }
.welcome-text .btn { margin-top: 1.2rem; }
.welcome-images {
    position: relative;
    height: 520px;
}
.welcome-images .img-main {
    position: absolute;
    top: 0; left: 0;
    width: 80%; height: 85%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.welcome-images .img-small {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%; height: 50%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

/* ============ FULLWIDTH IMAGE ============ */
.fullwidth-image {
    position: relative;
    height: clamp(280px, 45vw, 560px);
    overflow: hidden;
}
.fullwidth-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 60%;
}
.fullwidth-caption {
    position: absolute;
    bottom: 1.5rem; right: 2rem;
    background: rgba(236,130,46,0.88);
    color: var(--white);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

/* ============ EXPERIENCE ============ */
.erlebnis { background: var(--off-white); }
.erlebnis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.erlebnis-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.erlebnis-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange-light);
}
.erlebnis-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.erlebnis-card:hover img { transform: scale(1.04); }
.erlebnis-card-body { padding: 1.5rem; }
.erlebnis-card-body h3 { margin-bottom: 0.5rem; font-size: 1.1rem; color: var(--text); }
.erlebnis-card-body p { font-size: 0.9rem; }

/* ============ GALLERY STRIP ============ */
.gallery-strip {
    overflow: hidden;
    padding: 2.5rem 0;
    background: var(--orange-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.gallery-track {
    display: flex;
    gap: 1.25rem;
    animation: galleryScroll 35s linear infinite;
    width: max-content;
}
.gallery-track img {
    width: 300px;
    height: 210px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}
@keyframes galleryScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.gallery-strip:hover .gallery-track { animation-play-state: paused; }

/* ============ ACCOMMODATIONS ============ */
.ferienwohnungen { background: var(--white); }
.wohnung-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.wohnung-card:last-child { margin-bottom: 0; }
.wohnung-card--reverse { direction: rtl; }
.wohnung-card--reverse > * { direction: ltr; }
.wohnung-images { position: relative; }
.wohnung-slider { position: relative; height: 440px; overflow: hidden; }
.wohnung-slider img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.wohnung-slider img.active { opacity: 1; }
.slider-dots {
    position: absolute;
    bottom: 1rem; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    padding: 0;
}
.dot.active { background: var(--white); transform: scale(1.3); }
.wohnung-info { padding: 3rem 3.5rem; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.wohnung-info .btn { align-self: stretch; text-align: center; justify-content: center; }
.wohnung-info h3 { margin: 0.5rem 0 1rem; font-size: 1.7rem; }
.wohnung-info > p { margin-bottom: 1.5rem; font-size: 0.97rem; }
.wohnung-features { margin-bottom: 2rem; }
.wohnung-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}
.wohnung-features li:last-child { border-bottom: none; }
.wohnung-features svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }

/* ============ ANIMALS ============ */
.tiere {
    background: var(--orange-bg);
    padding: clamp(4rem, 8vw, 8rem) 0;
    position: relative;
}
.tiere-content { max-width: 600px; margin-bottom: 3rem; }
.tiere-content h2 { color: var(--text); margin: 0.5rem 0 1rem; }
.tiere-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.tier-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}
.tier-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tier-item:hover img { transform: scale(1.06); }
.tier-item span {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    color: var(--white);
    padding: 2rem 1rem 0.75rem;
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

/* ============ ORANGE STATEMENT ============ */
.orange-statement {
    background: var(--orange);
    padding: 5rem 0;
}
.statement-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.statement-text h2 {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1rem;
}
.statement-text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.statement-wordmark-img {
    height: clamp(2.5rem, 5vw, 4rem);
    width: auto;
    display: block;
    opacity: 1;
}

.statement-wordmark {
    font-family: var(--font-brand);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    letter-spacing: -0.02em;
    text-align: right;
}

/* ============ FOOD ============ */
.schlemmen { background: var(--white); }
.schlemmen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.schlemmen-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.schlemmen-text h2 { margin: 0.5rem 0 1.2rem; }
.schlemmen-text p { margin-bottom: 1rem; }
.schlemmen-features {
    display: grid;
    gap: 0.75rem;
    margin-top: 2rem;
}
.schlemmen-feat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--orange-pale);
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
}
.schlemmen-feat svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.schlemmen-feat span { font-family: var(--font-serif); font-weight: 400; font-size: 0.9rem; color: var(--text-mid); }

/* ============ BOOKING ============ */
.buchen { background: var(--off-white); }
.booking-widget-container {
    max-width: 760px;
    margin: 0 auto;
}
.booking-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}
.booking-placeholder-inner {
    padding: 3rem;
    text-align: center;
}
.uab-logo {
    height: 56px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
}
.booking-placeholder-inner h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.booking-placeholder-inner p {
    max-width: 460px;
    margin: 0 auto 0.75rem;
}
.booking-note { font-family: var(--font-sans); font-weight: 700; color: var(--text); margin-top: 1.5rem !important; }
.booking-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.booking-contact .btn-outline { color: var(--orange); border-color: var(--orange); }
.booking-contact .btn-outline:hover { background: var(--orange); color: var(--white); }

/* ============ DIRECTIONS ============ */
.anfahrt { background: var(--white); }
.anfahrt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.anfahrt-text h2 { margin: 0.5rem 0 2rem; }
.kontakt-info { display: grid; gap: 1.5rem; }
.kontakt-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.kontakt-item svg { width: 22px; height: 22px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.kontakt-item a { color: var(--orange); font-weight: 700; }
.kontakt-item a:hover { text-decoration: underline; }
.map-placeholder {
    background: var(--orange-pale);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    gap: 1rem;
    border: 1px solid var(--border);
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--orange); opacity: 0.5; }
.map-placeholder p { text-align: center; font-size: 0.9rem; }

/* ============ DIRECTIONS ============ */
.hp-anfahrt { background: var(--white); padding: clamp(4rem,8vw,6rem) 0; }
.anfahrt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem,5vw,4rem); align-items: center; }
.anfahrt-map-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.anfahrt-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.anfahrt-text h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 1rem; }
.anfahrt-address { font-family: var(--font-serif); font-size: 1rem; line-height: 1.9; color: var(--text-light); margin-bottom: 1.75rem; font-style: normal; }
.anfahrt-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
@media (max-width: 768px) {
    .anfahrt-inner { grid-template-columns: 1fr; }
    .anfahrt-map-wrap { aspect-ratio: 3/2; }
}

/* ============ INSTAGRAM ============ */
.hp-instagram { background: var(--orange); padding: clamp(5rem,10vw,8rem) 2rem; text-align: center; }
.insta-inner { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.insta-icon { width: 52px; height: 52px; color: rgba(255,255,255,0.95); margin-bottom: 0.5rem; }
.insta-handle { font-family: var(--font-serif); font-size: 0.85rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.75); margin: 0; }
.insta-title { font-family: var(--font-brand); font-size: clamp(2.2rem,5vw,3.6rem); color: white; font-weight: 400; margin: 0.2rem 0 0.4rem; line-height: 1.1; }
.insta-sub { font-family: var(--font-serif); font-size: 1rem; color: rgba(255,255,255,0.8); margin: 0 0 1.25rem; max-width: 480px; line-height: 1.7; }
.insta-btn { background: white; color: var(--orange); font-weight: 800; }
.insta-btn:hover { background: var(--cream); color: var(--orange-dark); }

/* ============ FOOTER ============ */
.footer { background: var(--text); color: rgba(255,255,255,0.82); padding: 4rem 0 1.5rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 2rem;
}
.footer-logo { height: 28px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-family: var(--font-serif); font-size: 0.88rem; margin-bottom: 1rem; font-style: italic; color: rgba(255,255,255,0.72); }
.footer-links li { font-family: var(--font-serif); font-size: 0.88rem; color: rgba(255,255,255,0.72); }
.uab-logo-footer { height: 38px; opacity: 0.65; }
.footer-insta { display: inline-flex; align-items: center; gap: 0.45em; font-family: var(--font-serif); font-size: 0.88rem; color: rgba(255,255,255,0.72); text-decoration: none; margin-bottom: 1.25rem; transition: color var(--transition); }
.footer-insta:hover { color: var(--orange); }
.footer-links h4 {
    font-family: var(--font-serif);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-family: var(--font-serif); font-size: 0.88rem; color: rgba(255,255,255,0.82); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { font-family: var(--font-serif); text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.75); }
.footer-bottom a { color: rgba(255,255,255,0.9); }
.footer-bottom a:hover { color: var(--orange); }

/* ============ REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .welcome-grid, .schlemmen-grid, .anfahrt-grid { gap: 3rem; }
    .erlebnis-grid { grid-template-columns: repeat(2, 1fr); }
    .tiere-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .wohnung-info { padding: 2.5rem; }
    .statement-inner { grid-template-columns: 1fr; gap: 2rem; }
    .statement-wordmark { text-align: left; }
    .akt-layout { gap: 2.5rem; }
}

/* ===== TABLET (768px) ===== */
@media (max-width: 768px) {
    /* Legacy slide-in navigation layout. */
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        height: 100dvh;
        width: min(300px, 85vw);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 0.5rem;
        transition: right 0.35s ease;
        box-shadow: -4px 0 40px rgba(0,0,0,0.14);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu li { width: 100%; }
    .nav-link {
        color: var(--text);
        font-size: 1.05rem;
        padding: 0.75rem 0;
        display: block;
        border-bottom: 1px solid var(--border);
        width: 100%;
    }
    .nav-link.nav-cta {
        margin-top: 1rem;
        text-align: center;
        border-bottom: none;
        padding: 0.85rem 1.5rem;
        width: auto;
        align-self: flex-start;
    }
    .nav-toggle { display: flex; }
    .nav-logo--text { font-size: 1.3rem; }

    /* Sections */
    .section { padding: clamp(2.5rem, 8vw, 4rem) 0; }
    .section-header { margin-bottom: 2.5rem; }

    /* Centre section headings on narrow screens. */
    .welcome-text, .schlemmen-text, .anfahrt-text,
    .wohnung-info, .tiere-content {
        text-align: center;
        align-items: center;
    }
    .welcome-text .btn, .schlemmen-text .btn { align-self: center; }
    .wohnung-info .btn { align-self: stretch; }
    .wohnung-features li { justify-content: flex-start; }
    .kontakt-info { text-align: left; }
    .schlemmen-features { justify-content: center; }
    .eyebrow { display: block; }
    .tiere-content { margin-bottom: 2rem; }

    /* Hero */
    .hero-content { padding-bottom: 3rem; }
    .hero-wordmark { font-size: clamp(2.8rem, 12vw, 4rem) !important; }
    .hero-wordmark-img { height: clamp(2.8rem, 12vw, 4rem) !important; }
    .hero-slogan { font-size: clamp(1.1rem, 4vw, 1.5rem) !important; }
    .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
    .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

    /* Grids */
    .welcome-grid, .schlemmen-grid, .anfahrt-grid { grid-template-columns: 1fr; }
    .welcome-images { height: 260px; }
    .wohnung-card, .wohnung-card--reverse { grid-template-columns: 1fr; direction: ltr; }
    .wohnung-slider { height: 240px; }
    .erlebnis-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .tiere-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .wohnung-info { padding: 1.75rem; }
    .wohnung-features { grid-template-columns: 1fr; }

    /* Activities */
    .akt-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .akt-photos { display: none; }
    .akt-list { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

    /* Instagram */
    .insta-header { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }

    /* Food features */
    .schlemmen-features { gap: 0.75rem; }

    /* Orange Statement */
    .orange-statement { padding: 3rem 0; }
    .statement-text h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .statement-wordmark { display: none; }
    .statement-wordmark-img { display: none; }
}

/* ===== MOBILE (480px) ===== */
@media (max-width: 480px) {
    /* Navbar */
    .nav-container { padding: 0 1.25rem; }

    /* Hero */
    .hero-eyebrow { font-size: 0.68rem; }

    /* Sections */
    .container { padding: 0 1.25rem; }
    .section { padding: 2.5rem 0; }
    .section-header { margin-bottom: 2rem; }

    /* Experience */
    .erlebnis-grid { grid-template-columns: 1fr; }
    .erlebnis-card img { height: 200px; }

    /* Activities */
    .akt-list { grid-template-columns: 1fr; }
    .akt-item { padding: 0.85rem; }

    /* Animals */
    .tiere-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .tier-item img { height: 120px; }

    /* Instagram */
    .insta-grid { grid-template-columns: repeat(2, 1fr); }

    /* Accommodations */
    .wohnung-slider { height: 200px; }
    .wohnung-info { padding: 1.25rem; }

    /* Directions */
    .anfahrt-map { height: 200px; }

    /* Footer */
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-grid > .footer-links:nth-child(2) { display: none; }

    /* Buttons */
    .btn { padding: 0.8rem 1.5rem; font-size: 0.8rem; }

    /* Gallery */
    .gallery-strip { height: 160px; }
    .gallery-track img { height: 160px; width: 200px; }
}

/* ============ ACTIVITIES ============ */
.aktivitaeten { background: var(--cream); }

.akt-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.akt-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.akt-main {
    grid-column: 1 / -1;
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 1rem;
}

.akt-side {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.akt-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.akt-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--border);
    transition: box-shadow var(--transition), transform var(--transition);
}

.akt-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.akt-icon {
    flex-shrink: 0;
    width: 2.2rem;
    height: 2.2rem;
    background: var(--orange-pale);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.akt-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    stroke: var(--orange);
}

.akt-text h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.akt-text p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============ INSTAGRAM / WHAT IS HAPPENING ============ */
.instagram { display: none; }
/* .instagram { background: var(--off-white); } */

.insta-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.insta-follow-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.insta-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px dashed var(--border);
    text-align: center;
    color: var(--text-light);
}
.insta-placeholder svg { stroke: var(--orange); opacity: 0.6; }
.insta-placeholder p { font-size: 1rem; max-width: 340px; }

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0.75rem;
    display: block;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-item:hover img { transform: scale(1.06); }

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(236,130,46,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay { opacity: 1; }

/* Mobile activity and Instagram overrides must follow their base styles. */
@media (max-width: 768px) {
    .akt-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    .akt-photos { display: none !important; }
    .akt-list {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        width: 100%;
    }
    .insta-header { flex-direction: column; align-items: flex-start; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
}

@media (max-width: 480px) {
    .akt-list { grid-template-columns: 1fr !important; }
    .akt-item { padding: 0.85rem; }
    .insta-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ============ SUBPAGE / TEASER STYLES ============ */

/* Keep the main-page experience grid at three columns. */
.erlebnis-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
    .erlebnis-grid--3 { grid-template-columns: 1fr !important; }
}

/* Call to action below sections. */
.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* Accommodation teaser grid. */
.wohnung-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

.wohnung-teaser {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s, transform 0.25s;
}
.wohnung-teaser:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.wohnung-teaser-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.wohnung-teaser-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.wohnung-teaser:hover .wohnung-teaser-img img { transform: scale(1.04); }

.wohnung-teaser-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: white;
    color: var(--text);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.wohnung-teaser-body {
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.wohnung-teaser-body h3 {
    font-size: 1.35rem;
    margin: 0;
}
.wohnung-teaser-body p {
    font-size: 0.92rem;
    flex: 1;
    margin: 0;
}
.wohnung-teaser-body .btn {
    margin-top: 1rem;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .wohnung-teaser-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .wohnung-teaser-img { height: 200px; }
    .wohnung-teaser-body .btn { align-self: stretch; text-align: center; }
}

/* ============ HERO HEADLINE (new design) ============ */
.hero-h1 {
    font-family: var(--font-brand);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 2rem;
    text-shadow: 0 2px 28px rgba(0,0,0,0.22);
}
.hero-h1 em {
    font-style: italic;
    color: rgba(255,255,255,0.9);
}

/* ============ HOMEPAGE INTRO ============ */
.hp-intro {
    padding: 7rem 2rem;
    background: var(--white);
    text-align: center;
}
.hp-intro p {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    max-width: 660px;
    margin: 0 auto;
}
.hp-intro p em { font-style: italic; color: var(--orange); }

/* ============ PHOTO GRID ============ */
.hp-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 340px 340px;
    gap: 3px;
    background: var(--text);
}
.hp-grid .g {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
}
.hp-grid .g img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.hp-grid .g:hover img { transform: scale(1.05); }
.hp-grid .g-cap {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, transparent 55%);
    padding: 1.5rem;
    display: flex; flex-direction: column; justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s;
}
.hp-grid .g:hover .g-cap { opacity: 1; }
.hp-grid .g-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange-light);
    display: block;
    margin-bottom: 0.3rem;
}
.hp-grid .g-cap h3 {
    font-family: var(--font-brand);
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
}
.hp-grid .g1 { grid-column: 1/6; grid-row: 1/3; }
.hp-grid .g2 { grid-column: 6/9; grid-row: 1/2; }
.hp-grid .g3 { grid-column: 9/13; grid-row: 1/2; }
.hp-grid .g4 { grid-column: 6/10; grid-row: 2/3; }
.hp-grid .g5 { grid-column: 10/13; grid-row: 2/3; }

/* ============ SPLIT SECTION ============ */
.hp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.hp-split-l {
    background: var(--text);
    padding: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 6rem);
    display: flex; flex-direction: column; justify-content: center;
}
.eyebrow--split {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 2rem;
}
.hp-split-l p {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 400;
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
}
.hp-split-l p + p { margin-top: 1.2rem; }
.hp-split-r {
    background: var(--orange);
    padding: clamp(4rem, 8vw, 7rem) clamp(3rem, 6vw, 6rem);
    display: flex; flex-direction: column; justify-content: center;
}
.hp-split-r blockquote {
    font-family: var(--font-brand);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.12;
}

/* ============ APARTMENTS (homepage) ============ */
.hp-apts {
    background: var(--cream);
    padding: clamp(5rem, 10vw, 7rem) 0;
}
.hp-apts .section-header { text-align: left; margin: 0 0 3.5rem; }
.apt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
a.apt {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}
a.apt:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.1);
}
.apt-img {
    height: 260px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.apt-persons {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(20,20,20,0.62);
    color: rgba(255,255,255,0.9);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}
.apt-body {
    padding: 1.75rem 2rem 2.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.apt-body h3 {
    font-family: var(--font-brand);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.apt-body > p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}
.apt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}
.chip {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    background: var(--cream);
}
.apt-lnk {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--orange);
    align-self: flex-start;
    border-bottom: 1.5px solid var(--orange);
    padding-bottom: 1px;
    transition: opacity 0.2s;
}
.apt-lnk:hover { opacity: 0.65; }

/* ============ FAMILY SECTION ============ */
.hp-family {
    background: var(--white);
    padding: clamp(5rem, 10vw, 7rem) 0;
}
.family-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.fam-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.fam-img img {
    width: 100%;
    height: auto;
    display: block;
}
.fam-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1.75rem;
    line-height: 1.2;
}
.fam-text h2 em { font-style: italic; color: var(--orange); font-weight: 400; }
.fam-text p { font-size: 1rem; margin-bottom: 1.1rem; line-height: 1.85; }
.fam-sign {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text);
    margin-top: 0.5rem;
    display: block;
}

/* ============ CTA SECTION ============ */
.hp-cta {
    background: var(--text);
    padding: clamp(5rem, 9vw, 7rem) 2rem clamp(4rem, 7vw, 6rem);
    text-align: center;
}
.hp-booking {
    background: var(--cream);
    padding: clamp(3rem, 6vw, 5rem) 2rem clamp(4rem, 8vw, 6rem);
}
.hp-booking .container {
    max-width: 1020px;
}
.hp-cta h2 {
    font-family: var(--font-brand);
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 2.75rem;
}
.hp-cta h2 em { font-style: italic; color: var(--orange-light); }
.btn-cta-white {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 1.1rem 3rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-cta-white:hover {
    background: var(--orange-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(236,130,46,0.38);
}
.cta-note {
    margin-top: 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
}

/* ── Responsive: new homepage sections ── */
@media (max-width: 900px) {
    .hp-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .hp-grid .g1 { grid-column: 1/3; grid-row: 1/2; }
    .hp-grid .g2 { grid-column: 1/2; grid-row: 2/3; }
    .hp-grid .g3 { grid-column: 2/3; grid-row: 2/3; }
    .hp-grid .g4 { grid-column: 1/2; grid-row: 3/4; }
    .hp-grid .g5 { grid-column: 2/3; grid-row: 3/4; }
    .hp-split { grid-template-columns: 1fr; }
    .hp-split-l, .hp-split-r { padding: 4rem 3rem; }
    .apt-grid { grid-template-columns: 1fr; }
    .family-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hp-apts .section-header { text-align: center; }
}
@media (max-width: 768px) {
    .hp-intro { padding: 4rem 1.5rem; }
    /* Preserve the three authored lines instead of leaving “raus?” alone. */
    .hp-intro p { font-size: clamp(1rem, 4.5vw, 1.4rem); }
    .hp-grid { grid-template-rows: 180px 180px 180px; }
    .hp-split-l p { font-size: 1.15rem; }
    .hp-cta h2 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .hp-cta { padding: 5rem 1.5rem; }
    .hp-family { padding: 3.5rem 0; }
    .family-inner { gap: 2rem; }
}
@media (max-width: 480px) {
    .hp-intro { padding: 3rem 1.25rem; }
    .hp-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 240px 180px 180px 180px 180px;
    }
    .hp-grid .g1 { grid-column: 1; grid-row: 1; }
    .hp-grid .g2 { grid-column: 1; grid-row: 2; }
    .hp-grid .g3 { grid-column: 1; grid-row: 3; }
    .hp-grid .g4 { grid-column: 1; grid-row: 4; }
    .hp-grid .g5 { grid-column: 1; grid-row: 5; }
    .hp-split-l, .hp-split-r { padding: 3rem 1.5rem; }
    .hp-split-r blockquote { font-size: 2rem; }
    .fam-img { aspect-ratio: unset; }
    .hp-cta { padding: 4rem 1.25rem; }
    .btn-cta-white { padding: 0.9rem 2rem; }
}

/* ============================================
   SUBPAGES (sp-) – experience and accommodations
   ============================================ */

/* Hero */
.sp-hero {
    position: relative; height: 64vh; min-height: 460px;
    display: flex; align-items: flex-end; overflow: hidden;
}
.sp-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.sp-hero-veil {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(28,20,14,0.15) 0%, rgba(28,20,14,0.74) 100%);
}
.sp-hero-inner {
    position: relative; z-index: 2; width: 100%;
    max-width: 1100px; margin: 0 auto;
    padding: 0 clamp(1.25rem,5vw,2rem) clamp(2.5rem,6vw,4rem);
}
.sp-hero .eyebrow { color: var(--orange-light); }
.sp-hero h1 {
    font-family: var(--font-brand); font-size: clamp(2.5rem,7vw,5rem);
    font-weight: 400; color: #fff; line-height: 1.05; margin: 0;
}
.sp-hero h1 em { font-style: italic; color: var(--orange-light); }

/* Section shell */
.sp-sec { padding: clamp(3.5rem,8vw,6rem) clamp(1.25rem,5vw,2rem); }
.sp-wrap { max-width: 1100px; margin: 0 auto; }
.sp-sec h2 {
    font-family: var(--font-brand); font-size: clamp(1.9rem,3.5vw,2.75rem);
    font-weight: 400; line-height: 1.2; margin: 0;
}
.sp-sec h2 em { font-style: italic; color: var(--orange); }
.sp-lead {
    font-family: var(--font-serif); font-size: 1.02rem; color: var(--text-light);
    line-height: 1.8; max-width: 580px; margin-top: 1rem;
}
.sp-white { background: var(--white); }
.sp-cream { background: var(--cream); }
.sp-dark  { background: var(--text); }
.sp-dark .eyebrow { color: var(--orange-light); }
.sp-dark h2 { color: #fff; }
.sp-dark .sp-lead { color: rgba(255,255,255,0.6); }

/* Intro split and facts. */
.sp-split {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: clamp(2.5rem,5vw,4.5rem); align-items: start;
}
.sp-split p {
    font-family: var(--font-serif); font-size: 1rem; color: var(--text-light);
    line-height: 1.85; margin-top: 1.5rem;
}
.sp-facts {
    background: var(--cream); border: 1px solid var(--border);
    border-radius: var(--radius); padding: clamp(1.75rem,3vw,2.25rem);
}
.sp-facts h3 { font-family: var(--font-brand); font-size: 1.2rem; font-weight: 400; margin: 0 0 1.5rem; }
.sp-facts ul { display: flex; flex-direction: column; gap: 0.85rem; }
.sp-facts li {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-sans); font-size: 0.9rem; color: var(--text);
}
.sp-facts li::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--orange); flex-shrink: 0;
}

/* Gallery. */
.sp-gal { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.85rem; margin-top: 3rem; }
.sp-gal-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in; }
.sp-gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.sp-gal-item:hover img { transform: scale(1.05); }

/* Three-column amenity lists. */
.sp-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(2rem,4vw,2.5rem); margin-top: 3rem; }
.sp-col h3 {
    font-family: var(--font-brand); font-size: 1.15rem; font-weight: 400;
    margin: 0 0 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--orange);
}
.sp-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.sp-col li { font-family: var(--font-sans); font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

/* Animal tiles. */
.sp-tiles { display: grid; grid-template-columns: repeat(5,1fr); gap: 0.85rem; margin-top: 3rem; }
.sp-tile {
    position: relative; border-radius: var(--radius); overflow: hidden;
    aspect-ratio: 4/5; background: var(--text); cursor: zoom-in;
}
.sp-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.sp-tile:hover img { transform: scale(1.05); }
.sp-tile-cap {
    position: absolute; inset: 0; padding: 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 45%);
    display: flex; align-items: flex-end;
}
.sp-tile-cap h3 { font-family: var(--font-brand); font-size: 1.15rem; font-weight: 400; color: #fff; margin: 0; }
.sp-note {
    font-family: var(--font-serif); font-size: 0.95rem; color: var(--text-light);
    line-height: 1.8; max-width: 620px; margin-top: 2rem;
}

/* Feature layout: one large tile plus smaller tiles. */
.sp-feat { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1rem; margin-top: 3rem; }
.sp-feat-big { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 480px; }
.sp-feat-side { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; }
.sp-feat-sm { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.sp-feat img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-fcap {
    position: absolute; inset: 0; padding: clamp(1.25rem,3vw,2rem);
    background: linear-gradient(to top, rgba(0,0,0,0.66) 0%, transparent 48%);
    display: flex; flex-direction: column; justify-content: flex-end;
}
.sp-fcap h3 { font-family: var(--font-brand); font-size: 1.5rem; font-weight: 400; color: #fff; margin: 0 0 0.35rem; }
.sp-fcap p { font-family: var(--font-serif); font-size: 0.9rem; color: rgba(255,255,255,0.75); margin: 0; }
.sp-feat-sm .sp-fcap h3 { font-size: 1.15rem; margin: 0; }

/* Regional destination cards. */
.sp-reg { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3.5rem; }
.sp-reg-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-lg); overflow: hidden;
    display: flex; flex-direction: column;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.sp-reg-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(236,130,46,0.45); transform: translateY(-4px); }
.sp-reg-img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #1d1510; }
.sp-reg-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.sp-reg-card:hover .sp-reg-img img { transform: scale(1.05); }
.sp-reg-dist {
    position: absolute; left: 1rem; top: 1rem; z-index: 1;
    font-family: var(--font-sans); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: #fff;
    background: rgba(20,14,10,0.75); backdrop-filter: blur(6px);
    padding: 0.3rem 0.75rem; border-radius: 20px;
}
.sp-reg-body {
    padding: clamp(1.4rem,2.5vw,1.75rem) clamp(1.25rem,2.5vw,1.6rem);
    display: flex; flex-direction: column; flex: 1;
}
.sp-reg-card h3 {
    font-family: var(--font-brand); font-size: 1.35rem; font-weight: 400;
    color: #fff; margin: 0 0 0.7rem; line-height: 1.25;
}
.sp-reg-card p {
    font-family: var(--font-serif); font-size: 0.88rem; color: rgba(255,255,255,0.62);
    line-height: 1.75; margin: 0; flex: 1;
}
.sp-reg-meta {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 1rem; margin-top: 1.4rem;
}
.sp-reg-season { font-family: var(--font-sans); font-size: 0.72rem; color: rgba(255,255,255,0.38); letter-spacing: 0.05em; }
.sp-reg-link { font-family: var(--font-sans); font-size: 0.75rem; font-weight: 700; color: var(--orange-light); white-space: nowrap; transition: color 0.25s; }
.sp-reg-card:hover .sp-reg-link { color: #fff; }

/* CTA */
.sp-cta { background: var(--orange); padding: clamp(4rem,9vw,7rem) clamp(1.25rem,5vw,2rem); text-align: center; }
.sp-cta h2 {
    font-family: var(--font-brand); font-size: clamp(2.2rem,6vw,4rem);
    font-weight: 400; color: #fff; line-height: 1.1; margin: 0 0 2.25rem;
}
.sp-cta h2 em { font-style: italic; color: rgba(255,255,255,0.72); }
.sp-cta-btn {
    display: inline-block; background: #fff; color: var(--orange);
    padding: 1.1rem 3rem; border-radius: 50px;
    font-family: var(--font-sans); font-size: 0.9rem; font-weight: 800;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.sp-cta-btn:hover { background: var(--cream); color: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.18); }
.sp-cta-alt { display: block; margin-top: 1.75rem; font-family: var(--font-serif); font-size: 0.88rem; color: rgba(255,255,255,0.78); }
.sp-cta-alt a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Lightbox */
.sp-lb {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.9); align-items: center; justify-content: center; cursor: zoom-out;
}
.sp-lb.open { display: flex; }
.sp-lb img {
    max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 4px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.5); cursor: default; display: block;
}
.sp-lb-close {
    position: absolute; top: 1rem; right: 1.5rem;
    background: none; border: none; color: #fff; font-size: 2.8rem; line-height: 1;
    cursor: pointer; opacity: 0.8; transition: opacity 0.15s; padding: 0; z-index: 1;
}
.sp-lb-close:hover { opacity: 1; }

@media (max-width: 900px) {
    .sp-split { grid-template-columns: 1fr; gap: 2.5rem; }
    .sp-gal { grid-template-columns: 1fr 1fr; }
    .sp-cols { grid-template-columns: 1fr; gap: 2rem; }
    .sp-tiles { grid-template-columns: 1fr 1fr; }
    .sp-tiles > :last-child { grid-column: span 2; aspect-ratio: 16/10; }
    .sp-feat { grid-template-columns: 1fr; }
    .sp-feat-big { min-height: 0; aspect-ratio: 3/2; }
    .sp-feat-side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
    .sp-feat-sm { aspect-ratio: 4/5; }
    .sp-reg { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .sp-hero { height: 52vh; min-height: 340px; }
    .sp-gal { gap: 0.5rem; }
    .sp-tiles { gap: 0.5rem; }
}

/* Legal page layout carried over from the static reference. */
/* Legal pages (imprint and privacy). */

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.legal-main {
    padding-top: 100px;
    padding-bottom: 5rem;
    min-height: 80vh;
    background: var(--cream);
}

.legal-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.back-link {
    display: inline-block;
    color: var(--orange);
    text-decoration: none;
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.7; }

.legal-container h1 {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--dark);
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--orange);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: var(--font-brand);
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.legal-section p,
.legal-section ul {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #555;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    padding-left: 1.4rem;
}

.legal-section ul li {
    margin-bottom: 0.3rem;
}

.legal-section a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-section a:hover { opacity: 0.75; }

@media (max-width: 480px) {
    .legal-main { padding-top: 80px; }
}
