/* ============================================
   ЗАМОК БОГАТЫРЬ — styles.css
   Тёмный стиль, акцент #752B41
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #752B41;
    --accent-light: #9B3A52;
    --accent-dark: #5a1f30;
    --bg-deep: #0e0508;
    --bg-dark: #180b0f;
    --bg-mid: #221016;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.75);
    --text-faint: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-hover: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --accent-glow: 0 0 40px rgba(117, 43, 65, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg-dark) 40%, var(--bg-mid) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Glass Card ── */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    padding: 32px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.3s ease;
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-6px);
    background: var(--glass-hover);
    box-shadow: var(--shadow-lg), var(--accent-glow);
    z-index: 2;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(14, 5, 8, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(117, 43, 65, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(14, 5, 8, 0.9);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(117, 43, 65, 0.4);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-decoration: none;
}

.logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.02em;
}

.logo span {
    font-size: 10px;
    font-weight: 500;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: var(--accent);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(117, 43, 65, 0.5);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 130px 24px 70px;
    overflow: hidden;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(117, 43, 65, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(90, 31, 48, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 55% 10%, rgba(155, 58, 82, 0.1) 0%, transparent 45%);
    animation: ambientFloat 18s ease-in-out infinite;
}

@keyframes ambientFloat {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.03); }
}

.hero-content {
    text-align: center;
    max-width: 860px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(117, 43, 65, 0.3);
    border: 1px solid rgba(117, 43, 65, 0.5);
    color: #e8b4c0;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease both;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title span {
    color: var(--accent-light);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 44px;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ── Booking Search Form ── */
.booking-search-wrap {
    animation: fadeInUp 0.8s ease 0.35s both;
    margin-top: 10px;
    position: relative;
    z-index: 100;
}

.booking-search-form {
    background: linear-gradient(135deg, rgba(117, 43, 65, 0.5) 0%, rgba(90, 31, 48, 0.6) 100%);
    border: 1px solid rgba(117, 43, 65, 0.5);
    border-radius: 18px;
    overflow: visible;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(117, 43, 65, 0.15);
}

.tl-search-row {
    display: flex;
    align-items: stretch;
}

.tl-search-field {
    flex: 1;
    padding: 22px 26px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    min-width: 0;
    z-index: 1;
}

.tl-search-field:hover {
    background: rgba(255, 255, 255, 0.04);
    z-index: 2;
}

.tl-field-dates {
    cursor: pointer;
    transition: background 0.3s ease;
}

.tl-field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(232, 180, 192, 0.9);
    margin-bottom: 8px;
}

.tl-dates-display,
.tl-guests-display {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tl-guests-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #1e0c12;
    border: 1px solid rgba(117, 43, 65, 0.4);
    border-radius: 16px;
    padding: 16px;
    z-index: 10001;
    display: none;
    min-width: 280px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.tl-guests-dropdown.active {
    display: block;
    animation: fadeInDown 0.25s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.tl-guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tl-guest-row:last-child { border-bottom: none; }

.tl-guest-type {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
}

.tl-guest-hint {
    font-size: 12px;
    color: var(--text-faint);
    margin-top: 2px;
}

.tl-guest-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tl-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(117, 43, 65, 0.5);
    background: rgba(117, 43, 65, 0.2);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-counter-btn:hover:not(:disabled) {
    background: var(--accent);
    border-color: var(--accent);
}

.tl-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tl-counter-value {
    font-size: 16px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    color: var(--text-white);
}

.tl-children-ages {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: none;
}

.tl-children-ages.active { display: block; }

.tl-ages-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-faint);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tl-age-selectors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tl-age-selector {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tl-age-selector label {
    font-size: 10px;
    color: var(--text-faint);
}

.tl-age-selector select {
    padding: 6px 10px;
    border: 1px solid rgba(117, 43, 65, 0.4);
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    background: rgba(117, 43, 65, 0.2);
    color: var(--text-white);
    cursor: pointer;
    min-width: 70px;
}

.tl-age-selector select:focus {
    outline: none;
    border-color: var(--accent);
}

.tl-field-submit {
    border-right: none;
    padding: 0;
    flex: 0 0 auto;
}

.tl-search-btn {
    height: 100%;
    padding: 22px 36px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border: none;
    border-radius: 0 18px 18px 0;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tl-search-btn:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    box-shadow: 0 0 30px rgba(117, 43, 65, 0.6);
}

/* ── Scroll indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2.5s infinite;
}

.mouse {
    width: 28px;
    height: 46px;
    border: 2px solid rgba(117, 43, 65, 0.6);
    border-radius: 25px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 5px;
    height: 9px;
    background: var(--accent-light);
    border-radius: 3px;
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s infinite;
}

@keyframes scrollDot {
    0% { top: 9px; opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Stats Strip ── */
.stats-strip {
    padding: 60px 24px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    border: 1px solid rgba(117, 43, 65, 0.25);
    border-radius: 20px;
    overflow: hidden;
}

.stat-item {
    background: rgba(117, 43, 65, 0.1);
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(117, 43, 65, 0.2);
    transition: background 0.3s ease;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
    background: rgba(117, 43, 65, 0.2);
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-value span {
    color: var(--accent-light);
    font-size: 28px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Section Base ── */
section {
    padding: 100px 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    background: rgba(117, 43, 65, 0.2);
    border: 1px solid rgba(117, 43, 65, 0.4);
    color: #e8b4c0;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── About ── */
.about-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin-top: 28px;
}

.about-features li {
    color: var(--text-muted);
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(117, 43, 65, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.about-images {
    display: grid;
    gap: 20px;
}

.image-card {
    padding: 0;
    overflow: hidden;
}

.img-placeholder {
    width: 100%;
    height: 220px;
    background: rgba(117, 43, 65, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    border-radius: 16px;
}

/* ── Rooms ── */
.rooms {
    background: linear-gradient(135deg, rgba(117, 43, 65, 0.05) 0%, transparent 100%);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.room-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.room-card.featured {
    border-color: rgba(117, 43, 65, 0.5);
    box-shadow: var(--shadow-md), 0 0 30px rgba(117, 43, 65, 0.15);
}

.room-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.06);
}

.room-img-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(117, 43, 65, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.room-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-price-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(14, 5, 8, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(117, 43, 65, 0.4);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.room-price-tag span {
    color: #e8b4c0;
}

.room-content {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 6px;
}

.room-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.room-meta span {
    font-size: 12px;
    color: var(--text-faint);
    display: flex;
    align-items: center;
    gap: 4px;
}

.room-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.room-amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
}

.room-amenities li {
    background: rgba(117, 43, 65, 0.2);
    border: 1px solid rgba(117, 43, 65, 0.3);
    color: #e8b4c0;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(117, 43, 65, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(117, 43, 65, 0.6);
}

.btn-secondary {
    background: rgba(117, 43, 65, 0.15);
    color: var(--text-white);
    border: 1px solid rgba(117, 43, 65, 0.4);
}

.btn-secondary:hover {
    background: rgba(117, 43, 65, 0.3);
    transform: translateY(-2px);
    border-color: rgba(117, 43, 65, 0.7);
}

/* ── Restaurants ── */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.rest-card {
    text-align: center;
}

.rest-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.rest-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.rest-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.rest-tag {
    display: inline-block;
    background: rgba(117, 43, 65, 0.2);
    border: 1px solid rgba(117, 43, 65, 0.3);
    color: #e8b4c0;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
}

/* ── SPA ── */
.spa {
    background: linear-gradient(135deg, rgba(117, 43, 65, 0.06) 0%, transparent 100%);
}

.spa-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.spa-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-white);
    margin-bottom: 16px;
}

.spa-icon {
    font-size: 52px;
    margin-bottom: 20px;
    display: block;
}

.spa-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.spa-list {
    list-style: none;
}

.spa-list li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(117, 43, 65, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
}

.spa-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-light);
    flex-shrink: 0;
}

.spa-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    text-align: center;
    padding: 28px 20px;
}

.feature-card h4 {
    color: var(--text-white);
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* ── Kids ── */
.kids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.kids-card {
    text-align: center;
}

.kids-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.kids-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.kids-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* ── Offers ── */
.offers {
    background: linear-gradient(135deg, rgba(117, 43, 65, 0.06) 0%, transparent 100%);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.offer-card {
    position: relative;
    padding: 36px;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 12px;
    margin-top: 8px;
    padding-right: 70px;
}

.offer-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.offer-link {
    color: #e8b4c0;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.offer-link:hover {
    color: var(--text-white);
    gap: 10px;
}

/* ── Contact ── */
.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--text-white);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(117, 43, 65, 0.2);
    align-items: flex-start;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 44px;
    text-align: center;
}

.contact-item h4 {
    color: var(--text-white);
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item a {
    color: #e8b4c0;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
    transition: color 0.3s ease;
    display: block;
}

.contact-item a:hover { color: white; }

.contact-item p {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 2px;
}

.map-block {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background: rgba(117, 43, 65, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(117, 43, 65, 0.25);
}

.map-block p {
    color: var(--text-muted);
    font-size: 15px;
    text-align: center;
    padding: 0 30px;
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    padding: 64px 24px 32px;
    border-top: 1px solid rgba(117, 43, 65, 0.2);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--text-white);
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-accent-line {
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 16px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover { color: #e8b4c0; }

.footer-column p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: var(--text-faint);
    font-size: 12px;
}

.footer-bottom a {
    color: rgba(117, 43, 65, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--accent-light); }

/* ── Scroll to Top ── */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(117, 43, 65, 0.5);
}

.scroll-top:hover {
    background: var(--accent-light);
    transform: translateY(-4px);
}

.scroll-top.visible { display: flex; }

/* ── Room Detail Pages ── */
.room-hero {
    padding: 140px 24px 60px;
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.breadcrumbs {
    margin-bottom: 20px;
    color: var(--text-faint);
    font-size: 13px;
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover { color: #e8b4c0; }

.breadcrumbs span { color: var(--text-faint); margin: 0 8px; }

.room-hero-info { max-width: 780px; }

.room-category-tag {
    display: inline-block;
    background: rgba(117, 43, 65, 0.3);
    border: 1px solid rgba(117, 43, 65, 0.5);
    color: #e8b4c0;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.room-hero-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 54px;
    color: var(--text-white);
    margin-bottom: 14px;
    line-height: 1.1;
}

.room-capacity {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 18px;
}

.room-lead {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

.room-gallery { padding: 50px 24px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(117, 43, 65, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border-radius: 14px;
}

.room-details {
    padding: 50px 24px 100px;
    position: relative;
    z-index: 1;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.detail-section { margin-bottom: 32px; }

.detail-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--text-white);
    margin-bottom: 18px;
}

.detail-section p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amenity-tag {
    background: rgba(117, 43, 65, 0.15);
    border: 1px solid rgba(117, 43, 65, 0.25);
    color: var(--text-muted);
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.amenity-tag::before {
    content: '✓';
    color: var(--accent-light);
    font-weight: 700;
}

.booking-card { margin-bottom: 28px; }

.booking-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.price-block {
    text-align: center;
    padding: 28px;
    background: rgba(117, 43, 65, 0.15);
    border: 1px solid rgba(117, 43, 65, 0.3);
    border-radius: 16px;
    margin-bottom: 24px;
}

.price-label {
    color: var(--text-faint);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 4px;
}

.price-note {
    color: var(--text-faint);
    font-size: 12px;
}

.info-card { margin-bottom: 24px; }

.info-card h4 {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.info-list { list-style: none; }

.info-list li {
    color: var(--text-muted);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(117, 43, 65, 0.15);
    display: flex;
    justify-content: space-between;
}

.info-list li strong { color: var(--text-white); }

/* ── Other Rooms ── */
.other-rooms {
    padding: 80px 24px;
    background: linear-gradient(135deg, rgba(117, 43, 65, 0.06) 0%, transparent 100%);
    position: relative;
    z-index: 5;
}

.rooms-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .nav-menu { gap: 18px; }
    .hero-title { font-size: 52px; }
    .section-title { font-size: 38px; }
    .about-content { grid-template-columns: 1fr; }
    .spa-content { grid-template-columns: 1fr; }
    .spa-features { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .contact-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 38px; }
    .hero-subtitle { font-size: 15px; }

    .tl-search-row { flex-direction: column; }
    .tl-search-field {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 16px 20px;
    }
    .tl-field-submit { width: 100%; }
    .tl-search-btn {
        width: 100%;
        border-radius: 0 0 18px 18px;
        padding: 18px;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(14, 5, 8, 0.96);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 16px;
        transform: translateY(-110%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        border-bottom: 1px solid rgba(117, 43, 65, 0.3);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn { display: flex; }
    .cta-button { display: none; }

    .section-title { font-size: 30px; }
    .section-subtitle { font-size: 15px; }
    .rooms-grid, .restaurants-grid, .kids-grid, .offers-grid { grid-template-columns: 1fr; }
    .spa-features { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    .room-hero-info h1 { font-size: 36px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .details-grid { grid-template-columns: 1fr; }
    .rooms-slider { grid-template-columns: 1fr; }
    .amenities-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 30px; }
    .section-title { font-size: 26px; }
    .glass-card { padding: 20px; }
    section { padding: 70px 16px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-value { font-size: 34px; }
}
