:root {
    --primary: #218dcf;
    --primary-light: #1473B5;
    --primary-lighter: #115CD3;
    --primary-lightest: #1473B5;
    --primary-dark: #115CD3;
    --heading-font: 'Rubik', sans-serif;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: white;
    line-height: 1.6;
}

html {
    scroll-padding-top: 110px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding-inline: 1.25rem;
}

.desktop-only {
    display: none;
}

@media (min-width: 640px) {
    .container {
        padding-inline: 2rem;
    }

    .desktop-only {
        display: inline;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled .nav-link {
    color: var(--text-dark);
}

.logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    pointer-events: auto;
}

.logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.logo-img--light {
    display: none;
}

.logo-img--dark {
    display: block;
}

.logo-text {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

header.scrolled .logo-text {
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

header.scrolled .nav-link:hover {
    color: var(--primary);
}

.nav-item {
    position: relative;
}

.nav-item--dropdown > .nav-link::after {
    content: '▾';
    display: inline-block;
    margin-left: 4px;
    font-size: 0.7em;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 0.5rem;
    min-width: 210px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 60;
}

.nav-item--dropdown:hover .dropdown-menu,
.nav-item--dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-link:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: #218dcf;
    color: white;
    box-shadow: 0 4px 15px rgba(33, 141, 207, 0.3);
}

.btn-primary:hover {
    background: #0b6298;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.btn-secondary {
    background: white;
    color: #4bb2f1;
    border: 2px solid #4bb2f1;
    box-shadow: 0 4px 15px rgba(33, 141, 207, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #4bb2f1;
    color: white;
}

.hero .btn-secondary:hover {
    border-color: #ffffff;
}

/* Hero */
.hero {
    position: relative;
    height: 90vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
                linear-gradient(90deg, rgba(8, 25, 47, 0.48) 0%, rgba(8, 25, 47, 0.34) 28%, rgba(8, 25, 47, 0.16) 54%, rgba(8, 25, 47, 0.05) 74%, rgba(8, 25, 47, 0) 100%),
                linear-gradient(rgba(78, 154, 205, 0.2), rgba(138, 207, 244, 0.1)),
                url('../img/melia_hero.webp') center/cover;
    border-radius: 0 0 48px 48px;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero > .container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a6fa8 0%, #218dcf 50%, #4bb2f1 100%);
}

.hero-img-placeholder svg {
    opacity: 0.08;
    width: 240px;
    height: 240px;
    color: white;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    color: white;
    max-width: 820px;
    margin-top: 80px;
    position: relative;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    max-width: 780px;
}

.hero h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-family: 'Poppins', sans-serif;
    max-width: 720px;
}

/* Trust badges */
.trust-strip {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.trust-strip-hero {
    align-self: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
    transform: translateX(-20px) rotate(-4deg) scale(0.8);
    transform-origin: left center;
    justify-content: flex-start;
}

.badge-highlight {
    background: rgba(255, 255, 255, 0.95);
    color: #f9a21f;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.trust-strip-hero .badge-highlight {
    color: #218dcf;
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 96px;
    }

    .trust-strip-hero {
        transform: rotate(-3deg) scale(0.85);
    }
}

/* Section spacing */
section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Fit section */
.fit-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.fit-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.fit-row.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.fit-illustration-img {
    width: min(468px, 100%);
    height: auto;
    display: block;
    margin: 0 auto;
}

.fit-illustration-placeholder {
    width: min(468px, 100%);
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 24px;
    border: 2px dashed var(--border);
    color: #93afc5;
}

.fit-illustration-placeholder svg {
    width: 64px;
    height: 64px;
}

.fit-content {
    padding: 0.5rem 0;
}

.fit-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.35;
}

.fit-lead {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

@media (max-width: 900px) {
    .fit-row,
    .fit-row.reverse {
        grid-template-columns: 1fr;
    }

    .fit-illustration-placeholder {
        margin: 0 auto;
    }
}

/* Info cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(33, 141, 207, 0.12);
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(33, 141, 207, 0.15);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(33, 141, 207, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #218dcf;
}

.info-card-icon svg {
    width: 28px;
    height: 28px;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.info-card-link {
    display: inline-block;
    margin-top: auto;
    padding-top: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #218dcf;
    text-decoration: none;
}

.info-card:hover .info-card-link {
    text-decoration: underline;
}

/* Resort carousel */
.resort-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.resort-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

@media (max-width: 640px) {
    .deco-icon-hide-mobile {
        display: none;
    }
}

.stravovani-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .stravovani-cols {
        grid-template-columns: 1fr;
    }
}

.level-intro-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 640px) {
    .level-intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .level-logo {
        order: -1;
        justify-self: center;
    }
}

.resort-carousel {
    position: relative;
    padding-bottom: 1.5rem;
    padding-left: 96px;
    padding-right: 96px;
}

.resort-carousel::before,
.resort-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.resort-carousel::before { left: 0; }
.resort-carousel::after {
    right: 0;
    transform: scaleX(-1);
}

.resort-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 0 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.resort-track::-webkit-scrollbar { display: none; }

.resort-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid var(--bg-light);
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: default;
    height: 100%;
}

.resort-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(33, 141, 207, 0.15);
    border-color: var(--primary-light);
}

.resort-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.resort-card:hover .resort-image {
    transform: scale(1.02);
}

.resort-image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
}

.resort-image-placeholder svg {
    width: 56px;
    height: 56px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #218dcf;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.carousel-arrow:hover { background: #0b6298; }
.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

@media (max-width: 1024px) {
    .resort-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .resort-track { padding: 0.5rem 0; }
    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }
}

.resort-content { padding: 2rem; }

.resort-content h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.35;
}

.resort-content p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.resort-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--bg-light);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border: 1px solid #c8d8e4;
}

.tag svg {
    width: 16px;
    height: 16px;
}

/* How it works */
.how-section { padding: 4rem 0; }

.how-section .section-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.how-section .section-header h2 { margin-bottom: 0.5rem; }

.how-price {
    background: #218dcf;
    color: white;
    border-radius: 24px;
    padding: 1.75rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    box-shadow: 0 6px 12px rgba(33, 141, 207, 0.25);
}

.how-price-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.how-price-icon svg {
    width: 26px;
    height: 26px;
}

.how-price h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: white;
}

.how-price p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

.how-question {
    background: #218dcf;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #218dcf;
}

.how-question h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: white;
}

.how-question p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.why-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.why-highlight-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(33, 141, 207, 0.12);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    display: grid;
    gap: 0.75rem;
}

.why-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(33, 141, 207, 0.12);
    color: #218dcf;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-highlight-icon svg {
    width: 22px;
    height: 22px;
}

.why-highlight-card p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.why-highlight-card h3 {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.3;
    min-height: 2.6em;
}

.why-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.why-panel {
    background: #218dcf;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #218dcf;
    box-shadow: 0 6px 12px rgba(33, 141, 207, 0.25);
}

.why-panel .how-question {
    background: transparent;
    border: none;
    padding: 0;
}

.why-panel .why-closing {
    text-align: center;
}

.why-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text-dark);
    line-height: 1.35;
}

.why-title-highlight {
    position: relative;
    display: inline-block;
    padding-top: 1.5rem;
}

.why-title-highlight .badge {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -60%) rotate(3deg) scale(0.85);
    white-space: nowrap;
}

.why-side {
    display: flex;
    align-items: center;
}

.how-timeline {
    display: grid;
    gap: 1.5rem;
    position: relative;
    padding-left: 1.75rem;
}

.how-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: rgba(33, 141, 207, 0.25);
}

.how-timeline-item {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(33, 141, 207, 0.12);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    color: var(--text-light);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.how-timeline-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(33, 141, 207, 0.15);
}

.how-timeline-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.how-timeline-item::before {
    content: attr(data-step);
    position: absolute;
    left: -2.25rem;
    top: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #218dcf;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.how-timeline-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.how-timeline-illustration {
    width: min(420px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.how-timeline-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .how-timeline-layout { grid-template-columns: 1fr; }
    .why-highlights { grid-template-columns: 1fr; }
    .why-layout { grid-template-columns: 1fr; }
}

/* Reviews */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.review {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(33, 141, 207, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.review::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 6rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.12;
    font-family: Georgia, serif;
    pointer-events: none;
}

.review-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}

.review-stack .review {
    margin-top: auto;
    text-align: left;
    width: 100%;
}

.review:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); }

.google-rating-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    padding: 1.5rem;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(33, 141, 207, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-decoration: none;
    cursor: default;
}

.google-rating span { font-weight: 700; }

.google-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.stars {
    color: #f9a21f;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.google-badge svg {
    width: 22px;
    height: 22px;
    opacity: 0.9;
    display: block;
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
}

.reviewer-location {
    font-size: 0.875rem;
    color: var(--text-light);
}

.inline-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.jirka-card-tag {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--bg-light);
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #c8d8e4;
}

.jirka-card-tag--premium {
    color: #b07d2e;
    background: rgba(176, 125, 46, 0.1);
    border-color: rgba(176, 125, 46, 0.3);
}

@media (max-width: 900px) {
    .review-stack {
        align-items: stretch;
    }
}

/* Footer */
footer {
    background-image: linear-gradient(to right bottom, #218dcf, #1c82c1, #1777b3, #126ca5, #0b6298);
    color: white;
    padding: 4rem 0 2rem;
    border-radius: 48px 48px 0 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 0.8rem; }

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.95;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.form-control::placeholder { color: rgba(255, 255, 255, 0.6); }

.form-control:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
    border-radius: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    opacity: 0.85;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Utilities */
.bg-light { background: var(--bg-light); }

[id] { scroll-margin-top: 110px; }

.subpage-hero {
    padding: 10rem 0 4rem;
    background:
        linear-gradient(90deg, rgba(8, 28, 54, 0.46) 0%, rgba(10, 41, 79, 0.3) 28%, rgba(12, 62, 112, 0.12) 54%, rgba(12, 62, 112, 0.04) 74%, rgba(12, 62, 112, 0) 100%),
        url('../img/podstranky-hero.webp') center/cover;
    color: white;
    border-radius: 0 0 40px 40px;
    margin-bottom: 3rem;
}

.subpage-hero-content {
    max-width: 760px;
}

.subpage-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

.subpage-hero p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    opacity: 0.94;
    max-width: 680px;
}

.placeholder-section {
    padding: 1rem 0 4rem;
}

.subpage-empty {
    padding: 2rem 2.25rem;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: white;
    color: var(--text-light);
    font-size: 1.05rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.subpage-switcher {
    padding: 0 0 5rem;
}

.subpage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.subpage-card {
    display: block;
    padding: 1.5rem;
    border-radius: 22px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.subpage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(33, 141, 207, 0.35);
}

.subpage-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.subpage-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Jirka / personal section */
.jirka-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.jirka-grid--full {
    grid-template-columns: 1fr;
}

.hotel-overview-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 1.75rem;
}

.hotel-overview-copy {
    max-width: 760px;
}

.hotel-preview-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.jirka-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.jirka-title span { color: #218dcf; }

.jirka-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.75;
}

.jirka-text + .jirka-text { margin-top: 1.25rem; }

.jirka-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.jirka-cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jirka-card {
    background: white;
    border-radius: 20px;
    padding: 1.25rem;
    border: 1px solid rgba(33, 141, 207, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.jirka-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 25px rgba(33, 141, 207, 0.15);
}

.jirka-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(33, 141, 207, 0.12);
    color: #218dcf;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}

.jirka-card-icon svg {
    width: 28px;
    height: 28px;
}

.jirka-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.jirka-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .jirka-cards--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hotel-overview-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .jirka-cards { grid-template-columns: 1fr; }
    .jirka-grid { grid-template-columns: 1fr; }
}

.jirka-photo {
    width: 100%;
    max-width: 450px;
    max-height: 560px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    justify-self: center;
    align-self: start;
    margin-top: 0.25rem;
}

.jirka-photo-placeholder {
    width: 100%;
    max-width: 500px;
    height: 460px;
    border-radius: 28px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    justify-self: center;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
}

.jirka-photo-placeholder svg {
    width: 72px;
    height: 72px;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Mobile menu */
.home-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 10px;
    background: #f3f4f6;
    padding: 10px 9px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.home-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1f2937;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.home-menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.home-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.home-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.home-mobile-menu {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 1.5rem 1rem;
}

.home-mobile-menu-link {
    display: block;
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    cursor: default;
}

.home-mobile-menu-link:last-child { border-bottom: 0; }

.mobile-submenu {
    border-bottom: 1px solid #f3f4f6;
}

.mobile-submenu:last-child {
    border-bottom: 0;
}

.mobile-submenu > summary.home-mobile-menu-link {
    border-bottom: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.mobile-submenu > summary.home-mobile-menu-link::-webkit-details-marker {
    display: none;
}

.mobile-submenu > summary.home-mobile-menu-link::after {
    content: '▾';
    font-size: 0.75rem;
    color: var(--text-light);
    transition: transform 0.2s ease;
}

.mobile-submenu[open] > summary.home-mobile-menu-link::after {
    transform: rotate(180deg);
}

.mobile-submenu-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 0 0.75rem 1rem;
}

.mobile-submenu-link {
    display: block;
    padding: 0.4rem 0;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.mobile-submenu-link:hover {
    color: var(--primary);
}

/* Header contact block */
.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.header-contact-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #218dcf;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.header-contact-row:hover {
    opacity: 0.75;
}

header.scrolled .header-contact-row {
    color: #218dcf;
}

@media (max-width: 1024px) {
    #header .desktop-nav,
    #header .home-header-phone,
    #header .header-contact { display: none !important; }
    #header .home-menu-toggle { display: inline-flex; }
}

@media (min-width: 1025px) {
    #header .home-menu-toggle,
    #header .home-mobile-menu { display: none !important; }
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 28, 54, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.25s;
}

.modal-overlay.is-visible {
    display: flex;
}

.modal-overlay.is-open {
    opacity: 1;
}

.modal {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.25s;
}

.modal-overlay.is-open .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    padding: 0.375rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-dark);
    background: var(--bg-light);
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    padding-right: 2rem;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.form-label-light {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control-light {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    border: 1.5px solid #d1dde8;
    background: #f8fafc;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-size: 0.9rem;
}

.form-control-light::placeholder {
    color: #9ab0c4;
}

.form-control-light:focus {
    outline: none;
    border-color: #218dcf;
    background: white;
    box-shadow: 0 0 0 3px rgba(33, 141, 207, 0.1);
}

select.form-control-light {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23718fa8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
    cursor: pointer;
}

textarea.form-control-light {
    border-radius: 16px;
    resize: vertical;
    min-height: 80px;
}

.modal-form-group {
    margin-bottom: 1rem;
}

/* Villa cards */
.villa-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    align-items: stretch;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--bg-light);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.villa-card:hover {
    box-shadow: 0 8px 25px rgba(33, 141, 207, 0.15);
    border-color: var(--primary-light);
}

.villa-card-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.villa-card-image-placeholder {
    width: 100%;
    min-height: 280px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93afc5;
}

.villa-card-image-placeholder svg {
    width: 56px;
    height: 56px;
}

.villa-card-content {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.villa-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.villa-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.villa-card-desc {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.villa-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.villa-card-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.villa-card-features li svg {
    flex-shrink: 0;
    color: #218dcf;
}

@media (max-width: 768px) {
    .villa-card {
        grid-template-columns: 1fr;
    }
    .villa-card-image, .villa-card-image-placeholder {
        min-height: 220px;
    }
}

/* Blog cards */
.blog-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--bg-light);
    display: flex;
    flex-direction: column;
    height: 520px;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(33, 141, 207, 0.15);
    border-color: var(--primary-light);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
}

.blog-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    flex-shrink: 0;
}

.blog-card-content {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-perex {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-content .btn {
    margin-top: auto;
    padding-top: 1.25rem;
    align-self: flex-start;
}

.blog-featured-content .btn {
    margin-top: 1.25rem;
    align-self: flex-start;
}

/* Featured blog card */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--bg-light);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.blog-featured:hover {
    box-shadow: 0 8px 25px rgba(33, 141, 207, 0.15);
    border-color: var(--primary-light);
}

.blog-featured-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
}

.blog-featured-image-placeholder {
    width: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
}

.blog-featured-content {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-content .blog-card-date {
    margin-bottom: 0.75rem;
}

.blog-featured-content h3 {
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.35;
}

.blog-featured-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

@media (max-width: 768px) {
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-image, .blog-featured-image-placeholder { min-height: 220px; }
}

/* Article */
.article-header {
    max-width: 720px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.article-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--text-dark);
    line-height: 1.25;
    margin: 1rem 0 1.25rem;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.article-cover {
    max-width: 720px;
    margin: 0 auto 3rem;
    border-radius: 20px;
    overflow: hidden;
}

.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.article-cover-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
}

.article-body .lead {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1rem;
}

.article-body h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 2rem 0 0.75rem;
}

.article-body .article-tip {
    background: rgba(33,141,207,0.10);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: #218dcf;
    line-height: 1.75;
}

/* Ostrov – fact cards */
.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}

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

/* Ostrov – season calendar */
.season-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.375rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
    .season-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.5rem;
    }
}

.areal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 0 0 3.5rem;
}

@media (max-width: 640px) {
    .areal-grid {
        grid-template-columns: 1fr;
    }
    .areal-grid-hide-mobile {
        display: none;
    }
}

/* =============================================================
   Cookie Consent Bar
   ============================================================= */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: white;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    border-top: 1px solid var(--border);
    padding: 1.25rem 0;
    animation: cookieSlideUp 0.35s ease;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}

.cookie-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-bar-text {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    min-width: 240px;
    margin: 0;
}

.cookie-bar-link {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.cookie-bar-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-bar-actions .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .cookie-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .cookie-bar-actions {
        width: 100%;
    }
    .cookie-bar-actions .btn {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}

/* Settings panel */
.cookie-panel {
    border-top: 1px solid var(--border);
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-category-info strong {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 0.2rem;
}

.cookie-category-info p {
    font-size: 0.825rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}

.cookie-always-on {
    font-size: 0.8rem;
    color: #218dcf;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-track {
    width: 44px;
    height: 24px;
    border-radius: 12px;
    background: #d1d5db;
    transition: background 0.25s ease;
    position: relative;
}

.cookie-toggle-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    transition: transform 0.25s ease;
}

.cookie-toggle input:checked + .cookie-toggle-track {
    background: #218dcf;
}

.cookie-toggle input:checked + .cookie-toggle-track::after {
    transform: translateX(20px);
}

.cookie-toggle input:focus-visible + .cookie-toggle-track {
    outline: 2px solid #218dcf;
    outline-offset: 2px;
}

.cookie-panel-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.5rem;
}

.cookie-panel-footer .btn {
    padding: 0.625rem 1.75rem;
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .cookie-category {
        align-items: flex-start;
    }
    .cookie-panel-footer {
        justify-content: stretch;
    }
    .cookie-panel-footer .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Contact banner grid */
.contact-banner-grid {
    padding: 1.75rem 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-banner-grid--border {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-logo-img {
    height: 26px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .contact-banner-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem 2rem;
        gap: 1.5rem;
    }

    .contact-banner-grid--border {
        padding-top: 1.5rem;
    }

    .contact-logos {
        gap: 1.25rem;
    }

    .contact-logo-img {
        height: 22px;
        max-width: 90px;
    }
}
