:root {
    --stone: #f5f1ea;
    --cream: #fff8ef;
    --white: #ffffff;
    --ink: #23211f;
    --text-primary: #2b2926;
    --text-secondary: #6f675f;
    --text-light: #958b80;
    --terracotta: #b85c38;
    --terracotta-dark: #8e3f26;
    --terracotta-light: #d99a78;
    --olive: #657055;
    --sand: #d7c1a4;
    --gold: #c8a461;
    --line: rgba(43, 41, 38, 0.12);
    --dark-panel: #1f2522;
    --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --font-heading: "Playfair Display", Georgia, serif;
    --font-body: "Montserrat", Arial, sans-serif;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --shadow-sm: 0 8px 24px rgba(36, 30, 24, 0.08);
    --shadow-md: 0 16px 40px rgba(36, 30, 24, 0.12);
    --shadow-lg: 0 24px 70px rgba(36, 30, 24, 0.18);
    --transition-normal: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-primary);
    background: var(--stone);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.center {
    text-align: center;
}

.highlight {
    color: var(--terracotta);
}

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--dark-panel);
    color: var(--cream);
    transition: opacity 450ms ease, visibility 450ms ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-icon {
    font-size: 52px;
    margin-bottom: 12px;
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 34px;
}

.preloader-sub {
    color: var(--sand);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(31, 37, 34, 0.42);
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: background var(--transition-normal), box-shadow var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(31, 37, 34, 0.96);
    box-shadow: var(--shadow-md);
}

.nav-container {
    width: min(1240px, calc(100% - 32px));
    min-height: 78px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 30px;
    line-height: 1;
}

.logo-text {
    display: grid;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
}

.logo-sub {
    color: var(--sand);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    border-bottom-color: var(--terracotta-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-reserve,
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-room,
.btn-cookie,
.cta-phone,
.btn-text,
.exp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-normal), background var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.btn-reserve,
.btn-primary {
    min-height: 46px;
    padding: 0 20px;
    color: var(--white);
    background: var(--terracotta);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.3px;
    box-shadow: 0 14px 34px rgba(184, 92, 56, 0.28);
}

.btn-reserve:hover,
.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}

.btn-secondary,
.btn-outline {
    min-height: 46px;
    padding: 0 20px;
    border-color: currentColor;
    color: var(--white);
    font-weight: 700;
}

.btn-outline {
    color: var(--terracotta);
    background: transparent;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-text,
.exp-link,
.btn-room {
    color: var(--terracotta);
    font-weight: 700;
}

.language-selector {
    position: relative;
}

.lang-btn,
.mobile-toggle,
.slider-btn,
.back-to-top {
    display: inline-grid;
    place-items: center;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.lang-btn {
    grid-auto-flow: column;
    gap: 8px;
}

.lang-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 16px);
    display: grid;
    min-width: 140px;
    padding: 10px;
    background: var(--white);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
}

.lang-dropdown a {
    padding: 8px 10px;
    border-radius: var(--radius-sm);
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: var(--stone);
    color: var(--terracotta);
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: var(--transition-normal);
}

.hero,
.page-header {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: center;
    color: var(--white);
    isolation: isolate;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.page-header {
    min-height: 430px;
    padding-top: 100px;
}

.page-header.small {
    min-height: 320px;
}

.hero-bg,
.hero-bg-layer,
.hero-overlay,
.page-header-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg-hotel {
    background: linear-gradient(100deg, rgba(31, 37, 34, 0.76), rgba(31, 37, 34, 0.22));
}

.hero-overlay,
.page-header-overlay {
    background: linear-gradient(90deg, rgba(20, 22, 20, 0.76), rgba(20, 22, 20, 0.26));
}

.hero-content,
.page-header-content {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    padding-top: 80px;
}

.hero-badge,
.breadcrumb,
.section-tag,
.exp-tag,
.room-subtitle,
.team-role,
.gastro-time,
.price-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--terracotta-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    margin: 22px 0 22px;
    font-family: var(--font-display);
    font-size: clamp(58px, 8vw, 116px);
    font-weight: 600;
    line-height: 0.9;
}

.hero-line {
    display: block;
}

.hero-subtitle {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 2vw, 20px);
}

.hero-cta,
.cta-action,
.exp-detail-actions,
.rooms-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 26px;
    margin-top: 46px;
    padding: 20px 26px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-md);
}

.stat-item {
    display: grid;
    gap: 2px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll,
.hero-weather {
    position: absolute;
    z-index: 2;
    color: var(--white);
}

.hero-scroll {
    left: 40px;
    bottom: 36px;
}

.hero-weather {
    right: 40px;
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: var(--radius-sm);
}

.scroll-indicator {
    display: grid;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 42px;
    background: var(--terracotta-light);
}

section {
    padding: 96px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 52px;
}

.section-tag {
    color: var(--terracotta);
    margin-bottom: 14px;
}

.tag-line {
    width: 46px;
    height: 1px;
    background: currentColor;
}

.section-title,
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 66px);
    line-height: 1.05;
    font-weight: 600;
    color: var(--text-primary);
}

.page-header h1 {
    color: var(--white);
}

.section-desc,
.welcome-text,
.gastro-text,
.room-desc,
.exp-detail-desc,
.footer-desc {
    color: var(--text-secondary);
}

.welcome,
.rooms-preview,
.story-intro,
.room-comparison,
.faq-section,
.reservation-section,
.contact-section,
.policy-content {
    background: var(--stone);
}

.gastro-preview,
.cta-section,
.special-dining,
.location-teaser {
    background: var(--dark-panel);
    color: var(--white);
}

.welcome-grid,
.gastro-grid,
.contact-grid,
.reservation-grid,
.exp-detail-grid,
.story-intro-grid,
.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.welcome-content,
.gastro-content,
.exp-detail-content,
.story-content {
    display: grid;
    gap: 20px;
}

.welcome-features,
.gastro-services,
.contact-items,
.room-features,
.exp-detail-highlights,
.cta-features,
.features-list {
    display: grid;
    gap: 16px;
}

.feature-item,
.gastro-service,
.contact-item,
.value-item,
.meta-item,
.distance-card,
.distance-item,
.transport-card,
.info-card,
.faq-question,
.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon,
.service-icon,
.contact-icon,
.value-icon,
.distance-icon,
.transport-icon,
.more-icon,
.info-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    color: var(--terracotta);
    background: rgba(184, 92, 56, 0.1);
    border-radius: 50%;
}

.welcome-images,
.gastro-images,
.story-gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.welcome-images img,
.gastro-images img,
.room-image img,
.exp-image img,
.special-image img,
.team-image img,
.gallery-item img,
.attraction-card img,
.tapas-card img,
.exp-detail-image img,
.story-gallery-grid img,
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-main,
.gastro-img-main {
    position: relative;
    grid-column: span 4;
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.img-secondary,
.img-tertiary,
.gastro-img-float {
    grid-column: span 2;
    min-height: 260px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.img-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--white);
    background: rgba(31, 37, 34, 0.82);
    border-radius: var(--radius-sm);
}

.rooms-track,
.testimonials-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    gap: 28px;
    transition: transform 350ms ease;
}

.rooms-slider,
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.room-card,
.testimonial-card,
.exp-card,
.special-card,
.more-card,
.value-card,
.team-card,
.tapas-card,
.attraction-card,
.info-card,
.form-card,
.policy-wrapper {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.room-card.featured {
    border-color: rgba(184, 92, 56, 0.35);
    box-shadow: var(--shadow-md);
}

.room-image,
.exp-image,
.special-image,
.team-image,
.attraction-card > img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.room-overlay,
.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.62));
}

.room-price,
.room-badge {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 16px;
    padding: 8px 12px;
    color: var(--white);
    background: var(--terracotta);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.room-badge {
    top: 16px;
    bottom: auto;
}

.room-content,
.testimonial-card,
.special-content,
.more-card,
.value-card,
.team-info,
.tapas-content,
.attraction-content,
.info-card,
.form-card,
.policy-wrapper {
    padding: 28px;
}

.room-content h3,
.exp-content h3,
.special-content h3,
.more-card h3,
.value-card h3,
.team-info h3,
.tapas-content h3,
.info-card h3 {
    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.room-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 18px 0;
}

.room-features span,
.feature,
.meta-item {
    color: var(--text-secondary);
    font-size: 13px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.slider-btn,
.back-to-top {
    width: 44px;
    height: 44px;
    color: var(--terracotta);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.experiences-grid,
.more-grid,
.values-grid,
.team-grid,
.tapas-grid,
.special-grid,
.transport-grid,
.attractions-grid,
.info-grid,
.distance-grid,
.instagram-grid,
.insta-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.exp-card {
    position: relative;
    min-height: 340px;
    color: var(--white);
}

.exp-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.exp-card .exp-image,
.exp-card .exp-image img,
.exp-card .exp-overlay {
    position: absolute;
    inset: 0;
    height: 100%;
}

.exp-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 28px;
}

.exp-content h3 {
    color: var(--white);
}

.gastro-preview .section-title,
.gastro-preview .gastro-text,
.cta-section .section-title,
.location-teaser .section-title,
.special-dining .section-title {
    color: var(--white);
}

.menu-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.menu-category h4 {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-category li {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.page-header-content {
    display: grid;
    gap: 18px;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.78);
}

.room-detail,
.experience-detail,
.gastro-section,
.story-values,
.story-timeline,
.story-team,
.nearby-attractions,
.transport,
.distances,
.location-map,
.testimonials,
.instagram {
    background: var(--cream);
}

.room-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: start;
}

.room-gallery-main,
.gallery-main,
.exp-detail-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.room-gallery-main img,
.gallery-main img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.room-thumbs,
.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.thumb {
    height: 90px;
    border: 0;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.thumb.active {
    outline: 3px solid var(--terracotta);
}

.room-detail-content,
.exp-detail-content,
.contact-info,
.reservation-info {
    display: grid;
    gap: 22px;
}

.room-detail-price .price,
.price-value,
.tapas-price,
.more-price {
    color: var(--terracotta);
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
}

.room-detail-features,
.comparison-table {
    display: grid;
    gap: 10px;
}

.room-detail-features .feature {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.comparison-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

th,
td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

th {
    color: var(--white);
    background: var(--dark-panel);
}

.timeline {
    position: relative;
    display: grid;
    gap: 26px;
    max-width: 860px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--line);
}

.timeline-item {
    position: relative;
    padding-left: 54px;
}

.timeline-dot {
    position: absolute;
    left: 7px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--terracotta);
    border: 4px solid var(--cream);
    border-radius: 50%;
}

.timeline-content {
    padding: 22px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-year {
    color: var(--terracotta);
    font-weight: 800;
}

.gallery-item,
.insta-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.34);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    justify-content: space-between;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-weight: 700;
}

.faq-answer {
    padding: 0 22px 20px;
    color: var(--text-secondary);
}

.form-card {
    display: grid;
    gap: 18px;
}

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

.form-group {
    display: grid;
    gap: 8px;
}

label {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--text-primary);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 4px rgba(184, 92, 56, 0.12);
}

.form-success {
    display: none;
    padding: 18px;
    color: #246343;
    background: #e7f6ed;
    border-radius: var(--radius-sm);
}

.map-container,
.map-placeholder {
    min-height: 420px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(101, 112, 85, 0.18), rgba(184, 92, 56, 0.18));
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-content {
    text-align: center;
    max-width: 520px;
    padding: 32px;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1001;
    width: min(430px, calc(100% - 48px));
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(120%);
    transition: transform 350ms ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: grid;
    gap: 12px;
}

.btn-cookie {
    min-height: 40px;
    padding: 0 16px;
    color: var(--white);
    background: var(--terracotta);
    font-weight: 700;
}

.cta-box {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    padding: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.05;
}

.cta-phone {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}

.footer {
    color: rgba(255, 255, 255, 0.82);
    background: #171b19;
}

.footer-top {
    padding: 70px 0 42px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 36px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 14px;
}

.footer-links ul,
.footer-contact ul {
    display: grid;
    gap: 10px;
}

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

.footer-social,
.footer-bottom-content,
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    justify-content: space-between;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.policy-wrapper {
    max-width: 880px;
    margin-inline: auto;
}

.policy-wrapper h2 {
    margin: 28px 0 10px;
    font-family: var(--font-heading);
    font-size: 28px;
}

.policy-wrapper ul {
    list-style: disc;
    padding-left: 22px;
    color: var(--text-secondary);
}

.policy-date {
    color: var(--text-light);
    font-weight: 700;
}

@media (max-width: 1100px) {
    .nav-menu {
        position: fixed;
        inset: 78px 0 auto 0;
        display: grid;
        padding: 22px;
        background: rgba(31, 37, 34, 0.98);
        transform: translateY(-120%);
        transition: transform var(--transition-normal);
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: inline-grid;
    }

    .btn-reserve span,
    .language-selector {
        display: none;
    }

    .experiences-grid,
    .more-grid,
    .values-grid,
    .team-grid,
    .tapas-grid,
    .special-grid,
    .transport-grid,
    .attractions-grid,
    .info-grid,
    .distance-grid,
    .instagram-grid,
    .insta-grid,
    .gallery-grid,
    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 820px) {
    .container,
    .hero-content,
    .page-header-content,
    .nav-container {
        width: min(100% - 28px, 1180px);
    }

    section {
        padding: 68px 0;
    }

    .hero {
        min-height: 760px;
    }

    .hero-stats,
    .cta-box {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .stat-divider,
    .hero-scroll,
    .hero-weather {
        display: none;
    }

    .welcome-grid,
    .gastro-grid,
    .contact-grid,
    .reservation-grid,
    .exp-detail-grid,
    .story-intro-grid,
    .location-grid,
    .room-detail-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .img-main,
    .gastro-img-main,
    .img-secondary,
    .img-tertiary,
    .gastro-img-float {
        grid-column: 1 / -1;
        min-height: 260px;
    }

    .rooms-track,
    .testimonials-track {
        grid-auto-columns: 88%;
    }

    .room-features,
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .logo-main {
        font-size: 22px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title,
    .page-header h1 {
        font-size: 34px;
    }

    .hero-cta,
    .cta-action,
    .exp-detail-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-reserve {
        width: 100%;
    }

    .experiences-grid,
    .more-grid,
    .values-grid,
    .team-grid,
    .tapas-grid,
    .special-grid,
    .transport-grid,
    .attractions-grid,
    .info-grid,
    .distance-grid,
    .instagram-grid,
    .insta-grid,
    .gallery-grid,
    .menu-categories,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .exp-card.large,
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .room-content,
    .testimonial-card,
    .special-content,
    .more-card,
    .value-card,
    .team-info,
    .tapas-content,
    .attraction-content,
    .info-card,
    .form-card,
    .policy-wrapper,
    .cta-box {
        padding: 22px;
    }
}

@media print {
    .navbar,
    .back-to-top,
    .cookie-banner,
    .mobile-toggle,
    .slider-controls {
        display: none !important;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
