/* ============================================================
   RooftopScout — Premium Travel Design System
   Aesthetic: Grand Tour Editorial (Condé Nast × Concierge)
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    /* Typography */
    --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

    /* Core Palette */
    --navy: #0C1B33;
    --navy-light: #1A2D4A;
    --navy-muted: #2A3F5F;
    --gold: #C5A55A;
    --gold-light: #D4BA7A;
    --gold-dark: #A68B3E;
    --gold-subtle: rgba(197, 165, 90, 0.12);

    /* Neutrals — warm undertone */
    --cream: #FDFAF5;
    --sand: #F5F0E8;
    --sand-dark: #E8E0D4;
    --warm-gray: #B5ADA3;
    --stone: #8A8279;
    --charcoal: #3D3833;
    --ink: #1E1B18;
    --white: #FFFFFF;

    /* Semantic */
    --text-primary: var(--ink);
    --text-secondary: var(--stone);
    --text-muted: var(--warm-gray);
    --text-on-dark: var(--cream);
    --text-on-dark-muted: rgba(253, 250, 245, 0.6);
    --bg-primary: var(--cream);
    --bg-secondary: var(--sand);
    --bg-card: var(--white);
    --bg-dark: var(--navy);
    --border-light: rgba(197, 165, 90, 0.15);
    --border-medium: rgba(30, 27, 24, 0.1);

    /* Spacing scale (8px base) */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    --space-6xl: 12rem;

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 800px;
    --container-wide: 1440px;
    --nav-height: 72px;
    --border-radius: 4px;
    --border-radius-lg: 8px;

    /* Shadows — warm, subtle */
    --shadow-sm: 0 1px 3px rgba(30, 27, 24, 0.06);
    --shadow-md: 0 4px 16px rgba(30, 27, 24, 0.08);
    --shadow-lg: 0 12px 40px rgba(30, 27, 24, 0.1);
    --shadow-xl: 0 24px 64px rgba(30, 27, 24, 0.12);
    --shadow-gold: 0 4px 20px rgba(197, 165, 90, 0.2);

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 600ms;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

::selection {
    background: var(--gold-subtle);
    color: var(--navy);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

.display-xl {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.display-italic {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-dark);
}

.subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    line-height: 1.8;
}

.overline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.body-large {
    font-size: 1.1rem;
    line-height: 1.85;
}

.body-small {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.serif-accent {
    font-family: var(--font-display);
    font-style: italic;
}

blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.5;
    color: var(--navy);
    padding-left: var(--space-xl);
    border-left: 2px solid var(--gold);
    margin: var(--space-3xl) 0;
}


/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--wide {
    max-width: var(--container-wide);
}

.section {
    padding: var(--space-5xl) 0;
}

.section--dark {
    background-color: var(--bg-dark);
    color: var(--text-on-dark);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--text-on-dark);
}

.section--sand {
    background-color: var(--bg-secondary);
}

.section--flush {
    padding: 0;
}

.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.grid--asymmetric {
    grid-template-columns: 1fr 1.4fr;
}

@media (max-width: 1024px) {
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--asymmetric { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    .section { padding: var(--space-3xl) 0; }
    .container { padding: 0 var(--space-lg); }
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out),
                backdrop-filter var(--duration-normal) var(--ease-out);
}

.nav--transparent {
    background: transparent;
}

.nav--scrolled {
    background: rgba(253, 250, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border-medium);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--ink);
    transition: color var(--duration-fast);
}

.nav--transparent .nav__logo {
    color: var(--white);
}

.nav__logo span {
    color: var(--gold);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    list-style: none;
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--duration-fast);
    position: relative;
}

.nav--transparent .nav__link {
    color: rgba(255, 255, 255, 0.75);
}

.nav__link:hover,
.nav__link--active {
    color: var(--gold);
}

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

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__lang {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4em 1em;
    border: 1px solid var(--border-medium);
    border-radius: 2px;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
}

.nav--transparent .nav__lang {
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.75);
}

.nav__lang:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile nav toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: all var(--duration-fast);
}

.nav--transparent .nav__toggle span {
    background: var(--white);
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        gap: var(--space-2xl);
        background: var(--navy);
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration-normal) var(--ease-out);
    }

    .nav__links--open {
        opacity: 1;
        visibility: visible;
    }

    .nav__links--open .nav__link {
        color: var(--text-on-dark);
        font-size: 1rem;
    }

    .nav__links--open .nav__lang {
        border-color: rgba(255, 255, 255, 0.25);
        color: var(--text-on-dark);
    }
}


/* ============================================================
   6. HERO SECTIONS
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: var(--space-5xl);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

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

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 27, 51, 0.85) 0%,
        rgba(12, 27, 51, 0.4) 40%,
        rgba(12, 27, 51, 0.15) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero__content .overline {
    margin-bottom: var(--space-lg);
    animation: fadeUp var(--duration-slow) var(--ease-out) both;
}

.hero__content h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    animation: fadeUp var(--duration-slow) var(--ease-out) 100ms both;
}

.hero__content .subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
    animation: fadeUp var(--duration-slow) var(--ease-out) 200ms both;
}

/* Guide hero — shorter */
.hero--guide {
    min-height: 70vh;
}

/* Home hero with wizard CTA */
.hero--home {
    align-items: center;
    text-align: center;
    padding-bottom: 0;
}

.hero--home .hero__content {
    max-width: 800px;
    margin: 0 auto;
}


/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 1em 2.4em;
    border-radius: var(--border-radius);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy);
}

.btn--primary:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

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

.btn--secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--dark {
    background: var(--navy);
    color: var(--cream);
}

.btn--dark:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--border-medium);
    color: var(--text-primary);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--ghost {
    background: transparent;
    color: var(--gold);
    padding: 0.6em 0;
    letter-spacing: 0.1em;
    border-radius: 0;
    border-bottom: 1px solid transparent;
}

.btn--ghost:hover {
    border-bottom-color: var(--gold);
}

.btn--lg {
    font-size: 0.85rem;
    padding: 1.2em 3em;
}

.btn--full {
    width: 100%;
}

.btn__icon {
    width: 16px;
    height: 16px;
    transition: transform var(--duration-fast);
}

.btn:hover .btn__icon {
    transform: translateX(3px);
}


/* ============================================================
   8. CARDS
   ============================================================ */

/* --- Destination Card --- */
.card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    transition: all var(--duration-normal) var(--ease-out);
}

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

.card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

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

.card:hover .card__image img {
    transform: scale(1.04);
}

.card__badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 2;
}

.card__body {
    padding: var(--space-xl);
}

.card__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    line-height: 1.25;
}

.card__subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.card__meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

/* --- Featured Card (large, horizontal) --- */
.card--featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: var(--border-radius-lg);
}

.card--featured .card__image {
    aspect-ratio: auto;
    min-height: 400px;
}

.card--featured .card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl);
}

@media (max-width: 768px) {
    .card--featured {
        grid-template-columns: 1fr;
    }
    .card--featured .card__image {
        min-height: 250px;
    }
}

/* --- Dark overlay card (for grid with image bg) --- */
.card--overlay {
    aspect-ratio: 3 / 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: none;
}

.card--overlay .card__image {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
}

.card--overlay .card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(12, 27, 51, 0.8) 0%,
        transparent 60%
    );
}

.card--overlay .card__body {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.card--overlay .card__title {
    color: var(--white);
}

.card--overlay .card__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* --- Blog Card --- */
.card--blog .card__image {
    aspect-ratio: 16 / 9;
}

.card--blog .card__date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.card--blog .card__excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}


/* ============================================================
   9. WIZARD (4-Step KI-Reiseberater)
   ============================================================ */
.wizard {
    max-width: 880px;
    margin: 0 auto;
    padding: var(--space-3xl) 0;
}

.wizard__progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-3xl);
}

.wizard__dot {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: var(--sand-dark);
    transition: all var(--duration-normal) var(--ease-out);
}

.wizard__dot--active {
    background: var(--gold);
    width: 48px;
}

.wizard__dot--done {
    background: var(--gold-dark);
}

.wizard__step {
    display: none;
    animation: fadeUp var(--duration-normal) var(--ease-out);
}

.wizard__step--active {
    display: block;
}

.wizard__step-title {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.wizard__step-title h2 {
    margin-bottom: var(--space-sm);
}

/* Category selection tiles */
.wizard__options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-lg);
}

.wizard__option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-2xl) var(--space-lg);
    border: 1px solid var(--border-medium);
    border-radius: var(--border-radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    background: var(--white);
}

.wizard__option:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.wizard__option--selected {
    border-color: var(--gold);
    background: var(--gold-subtle);
    box-shadow: var(--shadow-gold);
}

.wizard__option-icon {
    font-size: 2rem;
    line-height: 1;
}

.wizard__option-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.wizard__option-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.wizard__option input[type="radio"],
.wizard__option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Budget slider & month selector */
.wizard__field {
    margin-bottom: var(--space-2xl);
}

.wizard__field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.wizard__select-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.wizard__chip {
    padding: 0.5em 1.2em;
    border: 1px solid var(--border-medium);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast);
    background: var(--white);
}

.wizard__chip:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.wizard__chip--selected {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* Interests multi-select tags */
.wizard__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.wizard__tag {
    padding: 0.6em 1.5em;
    border: 1px solid var(--border-medium);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast);
    background: var(--white);
    user-select: none;
}

.wizard__tag:hover {
    border-color: var(--gold);
}

.wizard__tag--selected {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--cream);
}

/* Wizard navigation */
.wizard__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-3xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
}

.wizard__nav--center {
    justify-content: center;
}

/* Result area */
.wizard__result {
    animation: fadeUp var(--duration-slow) var(--ease-out);
}

.wizard__result-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
    background: var(--sand);
}

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

.wizard__result-content {
    font-size: 1.05rem;
    line-height: 1.85;
}

.wizard__result-content h3 {
    margin: var(--space-2xl) 0 var(--space-md);
}

.wizard__result-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

/* Loading state */
.wizard__loading {
    text-align: center;
    padding: var(--space-4xl) 0;
}

.wizard__loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--sand-dark);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: var(--space-lg);
}

.wizard__loading-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-secondary);
}


/* ============================================================
   10. GUIDE PAGE
   ============================================================ */
.guide-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl);
}

.guide-content h2 {
    margin: var(--space-3xl) 0 var(--space-lg);
    padding-top: var(--space-xl);
}

.guide-content h2:first-child {
    margin-top: 0;
}

.guide-content p {
    margin-bottom: var(--space-lg);
}

.guide-content ul,
.guide-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.guide-content li {
    margin-bottom: var(--space-sm);
}

.guide-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
}

.guide-info-box {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.guide-info-box__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-light);
}

.guide-info-box__item:last-child {
    border-bottom: none;
}

.guide-info-box__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    min-width: 100px;
}

.guide-info-box__value {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hotel recommendation cards */
.hotel-card {
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-light);
    margin-bottom: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-out);
}

.hotel-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.hotel-card__image {
    width: 200px;
    min-height: 140px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.hotel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.hotel-card__location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.hotel-card__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex: 1;
}

.hotel-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.hotel-card__price {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hotel-card__price strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

@media (max-width: 640px) {
    .hotel-card {
        flex-direction: column;
    }
    .hotel-card__image {
        width: 100%;
        min-height: 180px;
    }
}


/* ============================================================
   11. BLOG
   ============================================================ */
.blog-hero {
    max-width: var(--container-narrow);
    margin: calc(var(--nav-height) + var(--space-4xl)) auto var(--space-3xl);
    padding: 0 var(--space-xl);
    text-align: center;
}

.blog-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-xl) var(--space-4xl);
}

.blog-content p {
    margin-bottom: var(--space-lg);
    font-size: 1.05rem;
    line-height: 1.85;
}

.blog-content h2 {
    margin: var(--space-3xl) 0 var(--space-lg);
}

.blog-content h3 {
    margin: var(--space-2xl) 0 var(--space-md);
}

.blog-content img {
    border-radius: var(--border-radius-lg);
    margin: var(--space-2xl) 0;
}

.blog-content a {
    color: var(--gold-dark);
    border-bottom: 1px solid var(--gold-subtle);
    transition: border-color var(--duration-fast);
}

.blog-content a:hover {
    border-color: var(--gold);
}


/* ============================================================
   12. NEWSLETTER / EMAIL SIGNUP
   ============================================================ */
.newsletter {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    background: var(--navy);
    color: var(--text-on-dark);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.newsletter .subtitle {
    color: var(--text-on-dark-muted);
    margin-bottom: var(--space-2xl);
}

.newsletter__form {
    display: flex;
    gap: var(--space-md);
    max-width: 480px;
    margin: 0 auto var(--space-md);
}

.newsletter__input {
    flex: 1;
    padding: 0.9em 1.2em;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--duration-fast);
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter__input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter__privacy {
    font-size: 0.75rem;
    color: var(--text-on-dark-muted);
}

@media (max-width: 480px) {
    .newsletter__form {
        flex-direction: column;
    }
}


/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    color: var(--text-on-dark-muted);
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer__logo span {
    color: var(--gold);
}

.footer__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-lg);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: var(--space-sm);
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    transition: color var(--duration-fast);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
}

.footer__affiliate {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer__brand {
        grid-column: 1 / -1;
    }
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

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


/* ============================================================
   14. UTILITY PAGES (Impressum, Datenschutz, etc.)
   ============================================================ */
.page-content {
    max-width: var(--container-narrow);
    margin: calc(var(--nav-height) + var(--space-4xl)) auto var(--space-4xl);
    padding: 0 var(--space-xl);
}

.page-content h1 {
    margin-bottom: var(--space-2xl);
}

.page-content h2 {
    margin: var(--space-2xl) 0 var(--space-md);
}

.page-content p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

.page-content ul,
.page-content ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
    color: var(--text-secondary);
}

.page-content li {
    margin-bottom: var(--space-xs);
}

.page-content a {
    color: var(--gold-dark);
    border-bottom: 1px solid var(--gold-subtle);
}

.page-content a:hover {
    border-color: var(--gold);
}


/* ============================================================
   15. SHARE / RESULT PAGE
   ============================================================ */
.result-page {
    max-width: var(--container-narrow);
    margin: calc(var(--nav-height) + var(--space-3xl)) auto var(--space-4xl);
    padding: 0 var(--space-xl);
}

.result-page__hero-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-2xl);
}

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

.result-page__badge {
    margin-bottom: var(--space-lg);
}

.result-page__content {
    font-size: 1.05rem;
    line-height: 1.85;
}

.result-page__content h2 {
    margin: var(--space-2xl) 0 var(--space-md);
}


/* ============================================================
   16. FORM ELEMENTS
   ============================================================ */
.input {
    width: 100%;
    padding: 0.85em 1em;
    border: 1px solid var(--border-medium);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color var(--duration-fast);
}

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

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

.input--error {
    border-color: #c53030;
}

.form-message {
    font-size: 0.8rem;
    margin-top: var(--space-sm);
}

.form-message--success {
    color: #276749;
}

.form-message--error {
    color: #c53030;
}


/* ============================================================
   17. DECORATIVE & DIVIDERS
   ============================================================ */
.divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: var(--space-xl) 0;
}

.divider--center {
    margin-left: auto;
    margin-right: auto;
}

.gold-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: var(--space-lg);
}

.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}


/* ============================================================
   18. ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Scroll-triggered animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

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

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, var(--sand) 25%, var(--sand-dark) 50%, var(--sand) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--border-radius);
}

.skeleton--text {
    height: 1em;
    margin-bottom: var(--space-sm);
}

.skeleton--title {
    height: 2em;
    width: 60%;
    margin-bottom: var(--space-md);
}

.skeleton--image {
    aspect-ratio: 16 / 9;
}


/* ============================================================
   19. RESPONSIVE FINE-TUNING
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --nav-height: 64px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --nav-height: 60px;
    }

    .hero {
        min-height: 85vh;
        padding-bottom: var(--space-3xl);
    }

    .hero--guide {
        min-height: 60vh;
    }

    .wizard__options {
        grid-template-columns: repeat(2, 1fr);
    }

    .wizard__nav {
        flex-direction: column;
        gap: var(--space-md);
    }

    .wizard__nav .btn {
        width: 100%;
    }
}

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


/* ============================================================
   20. PRINT
   ============================================================ */
@media print {
    .nav,
    .footer,
    .newsletter,
    .btn,
    .grain-overlay {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}
