/* ═══════════════════════════════════════════
   ALPINE EDITORIAL — Chalet Grächen
   ═══════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ─── Base ─── */
body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-normal);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background: var(--warm-white);
    overflow-x: hidden;
}

/* Film grain overlay for warmth */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: var(--weight-normal);
    line-height: var(--leading-tight);
}

.label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--gold);
}

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

/* ─── Layout ─── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--sp-lg) var(--gutter);
    transition: all var(--duration-slow) var(--ease-out);
}

.site-header.scrolled {
    background: var(--charcoal);
    backdrop-filter: blur(20px);
    padding: var(--sp-md) var(--gutter);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--pure-white);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    transition: opacity var(--duration-fast);
}

.logo:hover { opacity: 0.8; }

.main-nav {
    display: flex;
    gap: var(--sp-2xl);
    align-items: center;
}

.main-nav a {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    padding: var(--sp-xs) 0;
    position: relative;
    transition: color var(--duration-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--duration-normal) var(--ease-out);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--pure-white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--sp-sm);
    z-index: 102;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--pure-white);
    transition: all var(--duration-normal) var(--ease-out);
    transform-origin: center;
}

.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: var(--charcoal);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.1s linear;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(26,26,26,0.2) 0%,
            rgba(26,26,26,0.0) 30%,
            rgba(26,26,26,0.0) 50%,
            rgba(26,26,26,0.6) 75%,
            rgba(26,26,26,0.92) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--gutter) var(--sp-5xl);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    display: inline-block;
    margin-bottom: var(--sp-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-hero);
    font-weight: var(--weight-bold);
    color: var(--pure-white);
    letter-spacing: var(--tracking-wide);
    line-height: 0.95;
    margin-bottom: var(--sp-xl);
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp 1s var(--ease-out) forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.5s; }
.hero-title span:nth-child(2) { animation-delay: 0.65s; }

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(var(--text-lg), 2.2vw, var(--text-2xl));
    font-style: italic;
    font-weight: var(--weight-light);
    color: var(--gold-light);
    max-width: 600px;
    line-height: var(--leading-snug);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 1s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: var(--sp-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50%      { opacity: 1;   transform: scaleY(1); }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-reveal) var(--ease-out),
                transform var(--duration-reveal) var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--duration-reveal) var(--ease-out),
                transform var(--duration-reveal) var(--ease-out);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ═══════════════════════════════════════════
   EDITORIAL INTRO
   ═══════════════════════════════════════════ */
.editorial-intro {
    padding: var(--sp-6xl) 0;
    background: var(--warm-white);
}

.editorial-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4xl);
    align-items: start;
}

.editorial-intro .col-text {
    padding-top: var(--sp-xl);
}

.editorial-intro h2 {
    font-size: var(--text-5xl);
    color: var(--charcoal);
    margin-bottom: var(--sp-xl);
    line-height: var(--leading-tight);
}

.editorial-intro h2 em {
    font-style: italic;
    color: var(--gold-dark);
}

.editorial-intro p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-loose);
    margin-bottom: var(--sp-lg);
    max-width: 520px;
}

.editorial-intro .highlight-stat {
    display: flex;
    gap: var(--sp-3xl);
    margin-top: var(--sp-3xl);
    padding-top: var(--sp-2xl);
    border-top: 1px solid var(--cream-dark);
}

.highlight-stat .stat {
    text-align: left;
}

.highlight-stat .stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--sp-xs);
}

.highlight-stat .stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.editorial-image {
    position: relative;
}

.editorial-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.editorial-image::after {
    content: '';
    position: absolute;
    top: var(--sp-xl);
    left: var(--sp-xl);
    right: calc(var(--sp-xl) * -1);
    bottom: calc(var(--sp-xl) * -1);
    border: 1px solid var(--gold-muted);
    z-index: -1;
}

/* ═══════════════════════════════════════════
   SPLIT-SCREEN APARTMENTS
   ═══════════════════════════════════════════ */
.apartments-showcase {
    background: var(--charcoal);
    color: var(--text-on-dark);
    padding: var(--sp-6xl) 0;
    overflow: hidden;
}

.apartments-showcase .section-header {
    text-align: center;
    margin-bottom: var(--sp-5xl);
}

.apartments-showcase h2 {
    font-size: var(--text-5xl);
    color: var(--pure-white);
    margin-bottom: var(--sp-md);
}

.apartment-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    position: relative;
}

.apartment-split + .apartment-split {
    margin-top: var(--sp-4xl);
}

.apartment-split.reverse .apartment-image { order: 2; }
.apartment-split.reverse .apartment-info  { order: 1; }

.apartment-image {
    position: relative;
    overflow: hidden;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.apartment-split:hover .apartment-image img {
    transform: scale(1.03);
}

.apartment-image .image-count {
    position: absolute;
    bottom: var(--sp-xl);
    right: var(--sp-xl);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: var(--pure-white);
    padding: var(--sp-sm) var(--sp-lg);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wide);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    border: 1px solid rgba(255,255,255,0.2);
}

.apartment-image:hover .image-count {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.apartment-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-4xl);
}

.apartment-info .label {
    margin-bottom: var(--sp-lg);
}

.apartment-info h3 {
    font-size: var(--text-4xl);
    color: var(--pure-white);
    margin-bottom: var(--sp-sm);
}

.apartment-info .tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--text-xl);
    color: var(--gold-light);
    margin-bottom: var(--sp-2xl);
}

.apartment-info p {
    color: var(--text-on-dark-muted);
    line-height: var(--leading-loose);
    margin-bottom: var(--sp-xl);
    max-width: 420px;
}

.apartment-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-2xl);
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    padding: var(--sp-xs) var(--sp-md);
    border: 1px solid rgba(200, 169, 81, 0.3);
    font-size: var(--text-xs);
    color: var(--gold-light);
    letter-spacing: var(--tracking-wide);
}

/* ═══════════════════════════════════════════
   SEASONAL SECTION
   ═══════════════════════════════════════════ */
.seasons {
    padding: var(--sp-6xl) 0;
    background: var(--cream);
    position: relative;
}

.seasons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
}

.seasons .section-header {
    text-align: center;
    margin-bottom: var(--sp-4xl);
}

.seasons h2 {
    font-size: var(--text-5xl);
    margin-bottom: var(--sp-md);
}

.season-toggle {
    display: inline-flex;
    background: var(--cream-dark);
    padding: 4px;
    gap: 2px;
    margin-bottom: var(--sp-3xl);
}

.season-toggle button {
    padding: var(--sp-sm) var(--sp-2xl);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all var(--duration-normal) var(--ease-out);
}

.season-toggle button.active {
    background: var(--pure-white);
    color: var(--charcoal);
    box-shadow: var(--shadow-md);
}

.season-content {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--sp-xl);
}

.season-content.active {
    display: grid;
    animation: fadeIn 0.5s var(--ease-out);
}

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

.season-card {
    background: var(--pure-white);
    padding: var(--sp-2xl);
    position: relative;
    transition: transform var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

.season-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.season-card .icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--sp-lg);
    display: block;
}

.season-card h4 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin-bottom: var(--sp-md);
}

.season-card p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: var(--leading-loose);
}

/* ═══════════════════════════════════════════
   CINEMATIC IMAGE BREAK
   ═══════════════════════════════════════════ */
.image-break {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-break .overlay-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.4);
}

.image-break .overlay-text blockquote {
    text-align: center;
    max-width: 700px;
    padding: 0 var(--gutter);
}

.image-break .overlay-text blockquote p {
    font-family: var(--font-display);
    font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
    font-style: italic;
    color: var(--pure-white);
    line-height: var(--leading-snug);
    margin-bottom: var(--sp-md);
}

.image-break .overlay-text blockquote cite {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--gold-light);
    font-style: normal;
}

/* ═══════════════════════════════════════════
   LOCATION / ADDRESS
   ═══════════════════════════════════════════ */
.location {
    padding: var(--sp-6xl) 0;
    background: var(--warm-white);
}

.location .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4xl);
    align-items: center;
}

.location h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--sp-2xl);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xl);
}

.location-detail {
    display: flex;
    gap: var(--sp-lg);
    align-items: flex-start;
}

.location-detail .detail-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-muted);
    color: var(--gold-dark);
    font-size: var(--text-lg);
}

.location-detail strong {
    display: block;
    font-weight: var(--weight-semibold);
    margin-bottom: var(--sp-2xs);
}

.location-detail p,
.location-detail a {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
}

.location-detail a:hover {
    color: var(--gold-dark);
}

.location-map {
    position: relative;
}

.location-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(20%) contrast(1.05);
}

.location-map::before {
    content: '';
    position: absolute;
    inset: calc(var(--sp-lg) * -1);
    border: 1px solid var(--gold-muted);
    z-index: -1;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials {
    background: var(--cream);
    padding: var(--sp-4xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-xl);
    margin-top: var(--sp-2xl);
}

.testimonial-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: var(--sp-2xl);
    display: flex;
    flex-direction: column;
    box-shadow:
        0 2px 4px rgba(0,0,0,0.04),
        0 8px 16px rgba(0,0,0,0.06),
        0 20px 40px rgba(0,0,0,0.04);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 4px 8px rgba(0,0,0,0.06),
        0 12px 24px rgba(0,0,0,0.08),
        0 28px 50px rgba(0,0,0,0.06);
}

.testimonial-stars {
    color: var(--gold);
    font-size: var(--text-lg);
    letter-spacing: 0.15em;
    margin-bottom: var(--sp-lg);
}

.testimonial-card p {
    font-family: var(--font-serif);
    font-size: var(--text-lg);
    font-style: italic;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: var(--sp-lg);
    flex: 1;
}

.testimonial-card cite {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: var(--text-sm);
    color: var(--gold-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   CTA BAND
   ═══════════════════════════════════════════ */
.cta-band {
    background: var(--charcoal);
    padding: var(--sp-4xl) 0;
    text-align: center;
}

.cta-band h2 {
    font-size: var(--text-4xl);
    color: var(--pure-white);
    margin-bottom: var(--sp-md);
}

.cta-band p {
    color: var(--text-on-dark-muted);
    margin-bottom: var(--sp-2xl);
    font-size: var(--text-lg);
}

.cta-group {
    display: flex;
    gap: var(--sp-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-sm);
    padding: var(--sp-md) var(--sp-2xl);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-normal) var(--ease-out);
    z-index: -1;
}

.btn:hover {
    color: var(--charcoal);
}

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn--filled {
    background: var(--gold);
    color: var(--charcoal);
}

.btn--filled::before {
    background: var(--gold-light);
}

.btn--filled:hover {
    color: var(--charcoal);
}

.btn--white {
    border-color: var(--pure-white);
    color: var(--pure-white);
}

.btn--white::before {
    background: var(--pure-white);
}

.btn--white:hover {
    color: var(--charcoal);
}

.btn--lg {
    padding: var(--sp-lg) var(--sp-3xl);
    font-size: var(--text-sm);
}

/* ═══════════════════════════════════════════
   PAGE LAYOUTS (Appartement, Buchung, etc.)
   ═══════════════════════════════════════════ */
.page-wrapper {
    padding-top: 0;
}

/* Subpages: header always dark since the hero is shorter */
body.has-page-hero .site-header {
    background: var(--charcoal);
}

.page-hero {
    position: relative;
    height: 40vh;
    min-height: 280px;
    overflow: hidden;
}

.page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.3), rgba(26,26,26,0.7));
}

.page-hero-title {
    position: absolute;
    bottom: var(--sp-3xl);
    left: var(--gutter);
    z-index: 2;
}

.page-hero-title h1 {
    font-size: var(--text-5xl);
    color: var(--pure-white);
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    min-height: 60vh;
}

.page-content {
    padding: var(--sp-4xl);
}

.page-sidebar {
    background: var(--cream);
    padding: var(--sp-4xl) var(--sp-2xl);
    border-left: 1px solid var(--cream-dark);
}

.sidebar-section {
    margin-bottom: var(--sp-3xl);
}

.sidebar-section h3 {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-dark);
    font-size: var(--text-2xl);
    margin-bottom: var(--sp-md);
}

.sidebar-section p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-loose);
    margin-bottom: var(--sp-xs);
}

.sidebar-map {
    width: 100%;
    border: 0;
    margin-top: var(--sp-md);
    filter: grayscale(20%);
}

/* ═══════════════════════════════════════════
   APARTMENT PAGE — EDITORIAL LAYOUT
   ═══════════════════════════════════════════ */

/* ─── Intro Section ─── */
.apt-intro {
    padding: var(--sp-6xl) 0;
    background: var(--warm-white);
}

.apt-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4xl);
    align-items: center;
}

.apt-intro--reverse .apt-intro-grid {
    direction: rtl;
}

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

.apt-intro-text h2 {
    font-size: var(--text-5xl);
    margin-bottom: var(--sp-xs);
    letter-spacing: var(--tracking-wide);
}

.apt-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--text-xl);
    color: var(--gold-dark);
    margin-bottom: var(--sp-2xl);
}

.apt-intro-text p {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    line-height: var(--leading-loose);
    max-width: 480px;
}

.apt-quick-facts {
    display: flex;
    gap: var(--sp-3xl);
    margin-top: var(--sp-2xl);
    padding-top: var(--sp-2xl);
    border-top: 1px solid var(--cream-dark);
}

.apt-fact {
    text-align: left;
}

.apt-fact-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--sp-2xs);
}

.apt-fact-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    letter-spacing: var(--tracking-wide);
}

.apt-intro-image {
    position: relative;
    overflow: hidden;
}

.apt-intro-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    cursor: pointer;
    transition: transform var(--duration-slow) var(--ease-out);
}

.apt-intro-image:hover img {
    transform: scale(1.03);
}

.apt-intro-image::after {
    content: 'Fotos ansehen';
    position: absolute;
    bottom: var(--sp-xl);
    right: var(--sp-xl);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: var(--pure-white);
    padding: var(--sp-sm) var(--sp-lg);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wide);
    border: 1px solid rgba(255,255,255,0.2);
    pointer-events: none;
    transition: all var(--duration-normal) var(--ease-out);
}

.apt-intro-image:hover::after {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

/* ─── Cinematic Photo Scroll ─── */
.apt-cinema {
    background: var(--charcoal);
    padding: var(--sp-3xl) 0;
    overflow: hidden;
}

.apt-cinema-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.apt-cinema-scroll:active { cursor: grabbing; }
.apt-cinema-scroll::-webkit-scrollbar { display: none; }

.apt-cinema-track {
    display: flex;
    gap: var(--sp-md);
    padding: 0 var(--gutter);
    width: max-content;
}

.apt-cinema-slide {
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}

.apt-cinema-slide img {
    width: 420px;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: transform var(--duration-slow) var(--ease-out),
                filter var(--duration-normal);
    filter: brightness(0.85);
}

.apt-cinema-slide:hover img {
    transform: scale(1.04);
    filter: brightness(1);
}

.apt-cinema-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-lg) var(--sp-md) var(--sp-md);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: rgba(255,255,255,0.8);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    pointer-events: none;
}

.apt-cinema--compact .apt-cinema-slide img {
    width: 520px;
    height: 360px;
}

/* ─── Details Grid ─── */
.apt-details {
    padding: var(--sp-5xl) 0;
    background: var(--cream);
}

.apt-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3xl);
}

.apt-details-grid--compact {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.apt-detail-col h3 {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--text-2xl);
    color: var(--gold-dark);
    margin-bottom: var(--sp-lg);
    padding-bottom: var(--sp-md);
    border-bottom: 1px solid var(--gold-muted);
}

.apt-detail-col ul {
    list-style: none;
}

.apt-detail-col ul li {
    padding: var(--sp-sm) 0;
    padding-left: var(--sp-lg);
    position: relative;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-normal);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.apt-detail-col ul li:last-child {
    border-bottom: none;
}

.apt-detail-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

/* ─── Divider ─── */
.apt-divider {
    background: var(--warm-white);
    padding: var(--sp-xl) 0;
}

.apt-divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-form {
    padding: var(--sp-3xl);
    background: var(--pure-white);
}

.contact-form h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--sp-xs);
}

.contact-form .subtitle {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-dark);
    font-size: var(--text-xl);
    margin-bottom: var(--sp-2xl);
}

.form-group {
    margin-bottom: var(--sp-lg);
}

.form-group label {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--sp-xs);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--sp-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    border: none;
    border-bottom: 1px solid var(--cream-dark);
    background: transparent;
    color: var(--text-primary);
    transition: border-color var(--duration-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

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

.form-note {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--sp-md);
}

.form-note a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.form-message {
    padding: var(--sp-md) var(--sp-lg);
    margin-bottom: var(--sp-lg);
    font-size: var(--text-sm);
}

.form-message--success {
    background: #DEF7EC;
    color: #03543F;
    border-left: 3px solid #03543F;
}

.form-message--error {
    background: #FDE8E8;
    color: #9B1C1C;
    border-left: 3px solid #9B1C1C;
}

.ohnohoney {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
}

/* ═══════════════════════════════════════════
   BOOKING PAGE
   ═══════════════════════════════════════════ */
.booking-iframe-wrapper {
    min-height: 1400px;
}

.booking-iframe-wrapper iframe {
    width: 100%;
    border: none;
}

.gallery-strip {
    display: flex;
    gap: var(--sp-sm);
    padding: var(--sp-xl) 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-strip img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    flex-shrink: 0;
    cursor: pointer;
    filter: brightness(0.9);
    transition: all var(--duration-normal) var(--ease-out);
}

.gallery-strip img:hover {
    filter: brightness(1);
}

/* ═══════════════════════════════════════════
   GUESTBOOK
   ═══════════════════════════════════════════ */
.guestbook-entries {
    max-width: var(--max-w-text);
}

.guestbook-entry {
    padding: var(--sp-2xl) 0;
    border-bottom: 1px solid var(--cream-dark);
}

.guestbook-entry:last-child { border-bottom: none; }

.guestbook-meta {
    font-size: var(--text-xs);
    color: var(--text-muted);
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--sp-md);
}

.guestbook-author {
    font-weight: var(--weight-semibold);
    color: var(--gold-dark);
}

.guestbook-entry > p {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--text-secondary);
    line-height: var(--leading-loose);
}

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    animation: lightboxIn 0.3s var(--ease-out);
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: var(--sp-xl);
    right: var(--sp-xl);
    color: rgba(255,255,255,0.7);
    font-size: var(--text-3xl);
    transition: color var(--duration-fast);
    line-height: 1;
    padding: var(--sp-md);
}

.lightbox-close:hover { color: var(--pure-white); }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.5);
    font-size: var(--text-4xl);
    padding: var(--sp-2xl);
    transition: color var(--duration-fast);
}

.lightbox-nav:hover { color: var(--pure-white); }
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }

.lightbox-counter {
    position: absolute;
    bottom: var(--sp-xl);
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wider);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
    background: var(--charcoal);
    color: var(--text-on-dark);
    padding: var(--sp-4xl) 0 var(--sp-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--sp-4xl);
    margin-bottom: var(--sp-3xl);
    padding-bottom: var(--sp-3xl);
    border-bottom: 1px solid var(--charcoal-80);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--pure-white);
    margin-bottom: var(--sp-lg);
}

.footer-brand-tagline {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-light);
    font-size: var(--text-lg);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
    margin-bottom: var(--sp-lg);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: var(--text-sm);
    padding: var(--sp-xs) 0;
    transition: color var(--duration-fast);
}

.footer-col a:hover { color: var(--gold-light); }

.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: var(--text-sm);
    line-height: var(--leading-loose);
    margin-bottom: var(--sp-xs);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color var(--duration-fast);
}

.footer-bottom a:hover { color: var(--gold-light); }
