:root {
    --navy: #07172f;
    --navy-2: #0d2748;
    --gold: #c9a44c;
    --gold-light: #f1d78a;
    --ivory: #f7f1e3;
    --charcoal: #1d1d1f;
    --soft-white: #fffdf8;
    --muted: #6c7280;
    --line: rgba(201, 164, 76, 0.25);
    --shadow: 0 18px 45px rgba(7, 23, 47, 0.18);
    --radius: 22px;
    --heading: 'Cinzel', Georgia, serif;
    --body: 'Inter', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    color: var(--charcoal);
    background: var(--soft-white);
    line-height: 1.7;
}

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

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

ul {
    list-style: none;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 23, 47, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(241, 215, 138, 0.2);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ivory);
    font-family: var(--heading);
    font-weight: 700;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    letter-spacing: 0.4px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--gold), var(--gold-light));
    color: var(--navy);
    display: grid;
    place-items: center;
    box-shadow: 0 0 24px rgba(201, 164, 76, 0.35);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 999px;
    transition: 0.25s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--navy);
    background: var(--gold-light);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ivory);
    margin: 5px auto;
    transition: 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
    position: relative;
    min-height: 86vh;
    display: grid;
    place-items: center;
    color: white;
    background: var(--navy);
    overflow: hidden;
}

.page-hero {
    min-height: 56vh;
}

.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 23, 47, 0.88), rgba(7, 23, 47, 0.62), rgba(7, 23, 47, 0.34));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-family: var(--heading);
    font-size: clamp(2.45rem, 5vw, 3.9rem);
    line-height: 1.05;
    margin: 18px 0 22px;
    letter-spacing: 0.5px;
}

.page-hero .hero-content h1 {
    font-size: clamp(2.1rem, 4.2vw, 4rem);
}

.hero-content p {
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    color: rgba(255, 255, 255, 0.86);
    max-width: 100%;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 164, 76, 0.18);
    color: var(--gold-light);
    border: 1px solid rgba(241, 215, 138, 0.45);
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 700;
}

.section {
    padding: 96px 0;
}

.section-dark {
    background: linear-gradient(180deg, var(--navy), #0a1d3b);
    color: var(--ivory);
}

.soft-bg {
    background: #f5efe2;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 44px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
}

h2 {
    font-family: var(--heading);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.15;
    color: var(--navy);
    margin: 10px 0 18px;
}

.section-dark h2,
.section-dark h3 {
    color: var(--ivory);
}

h3 {
    font-family: var(--heading);
    color: var(--navy);
    line-height: 1.2;
}

p {
    color: inherit;
}

.section-heading p,
.split-content p {
    color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .hotel-card p {
    color: rgba(255, 255, 255, 0.75);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 800;
    padding: 13px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    box-shadow: 0 12px 28px rgba(201, 164, 76, 0.25);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(201, 164, 76, 0.36);
}

.btn-outline,
.btn-outline-light {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    box-shadow: none;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.72);
    color: white;
}

.btn-outline:hover,
.btn-outline-light:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-small {
    padding: 10px 14px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.btn-outline-light.btn-small {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.split-grid.reverse .split-content {
    order: 1;
}

.split-grid.reverse .split-media {
    order: 2;
}

.split-media {
    position: relative;
}

.split-media img {
    min-height: 720px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.floating-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: rgba(7, 23, 47, 0.9);
    color: var(--ivory);
    border: 1px solid rgba(241, 215, 138, 0.35);
    padding: 16px 18px;
    border-radius: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.split-content p+p {
    margin-top: 15px;
}

.split-content .btn {
    margin-top: 24px;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hotel-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(241, 215, 138, 0.16);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.28s ease;
}

.hotel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 215, 138, 0.45);
}

.hotel-card img {
    height: 215px;
    object-fit: cover;
}

.hotel-card-body {
    padding: 24px;
}

.card-location {
    color: var(--gold);
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hotel-card h3 {
    color: var(--ivory);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.amenity-icons {
    display: flex;
    gap: 10px;
    margin: 18px 0 20px;
    flex-wrap: wrap;
}

.amenity-icons span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(201, 164, 76, 0.14);
    color: var(--gold-light);
    border: 1px solid rgba(241, 215, 138, 0.22);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    position: relative;
    background: white;
    border: 1px solid rgba(7, 23, 47, 0.08);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: 0.28s ease;
}

.package-card::after {
    content: '';
    position: absolute;
    inset: auto -30% -50% -30%;
    height: 160px;
    background: radial-gradient(circle, rgba(201, 164, 76, 0.18), transparent 70%);
}

.package-card:hover {
    transform: translateY(-9px);
}

.package-card.featured {
    background: linear-gradient(180deg, var(--navy), var(--navy-2));
    color: var(--ivory);
    border-color: rgba(241, 215, 138, 0.4);
}

.package-card.featured h3 {
    color: var(--ivory);
}

.package-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(201, 164, 76, 0.16);
    color: var(--gold);
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.package-label {
    display: inline-block;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.price {
    font-weight: 800;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.package-card li {
    margin: 11px 0;
    color: var(--muted);
}

.package-card.featured li {
    color: rgba(255, 255, 255, 0.78);
}

.package-card li i {
    color: var(--gold);
    margin-right: 8px;
}

.package-card .btn {
    position: relative;
    z-index: 1;
    margin-top: 18px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.experience-card {
    min-height: 280px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-end;
}

.experience-card.large {
    grid-row: span 2;
    min-height: 582px;
}

.experience-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 23, 47, 0.1), rgba(7, 23, 47, 0.84));
}

.experience-card div {
    position: relative;
    padding: 26px;
    color: white;
}

.experience-card i {
    color: var(--gold-light);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.experience-card h3 {
    color: white;
    margin-bottom: 10px;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.82);
}

.benefit-grid,
.value-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card,
.value-card,
.testimonial-card {
    background: white;
    border: 1px solid rgba(7, 23, 47, 0.08);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.benefit-card:hover,
.value-card:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
}

.benefit-card i,
.value-card i {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(201, 164, 76, 0.15);
    color: var(--gold);
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.benefit-card p,
.value-card p,
.testimonial-card p {
    color: var(--muted);
    margin-top: 10px;
}

.cta-section {
    background: linear-gradient(135deg, rgba(7, 23, 47, 0.96), rgba(13, 39, 72, 0.93)), url('../img/hero.jpeg') center/cover;
    color: white;
    padding: 90px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    max-width: 760px;
    margin: 16px auto;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 760px;
    margin: 0 auto 28px;
}

.timeline {
    position: relative;
    max-width: 860px;
}

 

.timeline-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 30px;
    margin-bottom: 28px;
}

.timeline-item span {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
    box-shadow: 0 0 0 8px rgba(201, 164, 76, 0.15);
    z-index: 1;
}

.timeline-item div {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(241, 215, 138, 0.18);
    border-radius: var(--radius);
    padding: 24px;
}

.timeline-item p {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
}

.value-grid {
    grid-template-columns: repeat(5, 1fr);
}

.stars {
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-card h3 {
    margin-top: 20px;
}

.testimonial-card span {
    color: var(--gold);
    font-weight: 700;
}

.hotel-details-stack {
    display: grid;
    gap: 44px;
}

.hotel-detail {
    background: white;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    border: 1px solid rgba(7, 23, 47, 0.08);
}

.hotel-detail.reverse .hotel-detail-image {
    order: 2;
}

.hotel-detail-image img {
    height: 100%;
    min-height: 580px;
    object-fit: cover;
}

.hotel-detail-content {
    padding: 36px;
}

.hotel-detail-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hotel-detail-content p {
    color: var(--muted);
    margin-bottom: 14px;
}

.hotel-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.hotel-info-grid div {
    background: #f8f3e8;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(201, 164, 76, 0.18);
}

.hotel-info-grid i {
    color: var(--gold);
    margin-bottom: 8px;
}

.hotel-info-grid p {
    margin: 8px 0 0;
    font-size: 0.94rem;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.amenities-list span {
    background: rgba(7, 23, 47, 0.06);
    border: 1px solid rgba(7, 23, 47, 0.08);
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
}

.responsible-note {
    background: rgba(201, 164, 76, 0.12);
    border: 1px solid rgba(201, 164, 76, 0.28);
    color: var(--navy);
    border-radius: 16px;
    padding: 16px;
    margin: 20px 0;
}

.mini-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.mini-packages article {
    border: 1px solid rgba(7, 23, 47, 0.08);
    border-radius: 18px;
    padding: 18px;
    background: var(--soft-white);
    transition: 0.25s ease;
}

.mini-packages article:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 164, 76, 0.4);
}

.mini-packages h4 {
    font-family: var(--heading);
    color: var(--navy);
    margin-bottom: 8px;
}

.mini-packages h4 i {
    color: var(--gold);
    margin-right: 6px;
}

.mini-packages p {
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 8px;
}

.mini-packages li {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 5px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: start;
}

.contact-panel,
.contact-form {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px;
    border: 1px solid rgba(7, 23, 47, 0.08);
}

.contact-list {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-list i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(201, 164, 76, 0.15);
    color: var(--gold);
    flex: none;
}

.contact-list strong {
    display: block;
    color: var(--navy);
}

.form-group {
    margin-bottom: 18px;
}

label {
    display: block;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 7px;
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(7, 23, 47, 0.15);
    border-radius: 14px;
    padding: 14px 15px;
    font: inherit;
    background: #fffaf0;
    outline: none;
    transition: 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 164, 76, 0.16);
    background: white;
}

.error-message {
    display: block;
    color: #b42318;
    font-size: 0.86rem;
    min-height: 18px;
    margin-top: 5px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 700;
}

.checkbox-row input {
    width: auto;
    margin-top: 6px;
}

.form-success {
    display: none;
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
    background: #e9f8ef;
    color: #17633a;
    border: 1px solid #a8dec0;
    font-weight: 700;
}

.form-success.show {
    display: block;
}

.map-placeholder {
    min-height: 390px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(7, 23, 47, 0.92), rgba(13, 39, 72, 0.82)), url('https://images.unsplash.com/photo-1526778548025-fa2f459cd5c1?auto=format&fit=crop&w=1600&q=80') center/cover;
    color: white;
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: var(--shadow);
    padding: 28px;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.map-placeholder h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.map-placeholder p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer {
    background: #061226;
    color: rgba(255, 255, 255, 0.78);
    padding: 70px 0 28px;
    border-top: 1px solid rgba(241, 215, 138, 0.16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.3fr;
    gap: 34px;
}

.footer-logo {
    color: var(--ivory);
    font-family: var(--heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-logo i {
    color: var(--gold);
    margin-right: 8px;
}

.site-footer h3 {
    color: var(--gold-light);
    margin-bottom: 16px;
}

.footer-links li {
    margin: 8px 0;
}

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

.age-pill {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--gold-light);
    border: 1px solid rgba(241, 215, 138, 0.35);
    background: rgba(201, 164, 76, 0.12);
}

.legal-note {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.64);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 42px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.92rem;
}

.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    background: rgba(7, 23, 47, 0.96);
    color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(241, 215, 138, 0.22);
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner h3 {
    color: var(--gold-light);
    margin-bottom: 4px;
}

.cookie-banner p {
    color: rgba(255, 255, 255, 0.75);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.62);
}

.modal-backdrop.show {
    display: grid;
}

.cookie-modal {
    position: relative;
    width: min(620px, 100%);
    background: var(--soft-white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.cookie-modal h2 {
    font-size: 2rem;
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 18px;
    border: 0;
    background: var(--navy);
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
}

.cookie-setting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(7, 23, 47, 0.1);
    border-radius: 16px;
    padding: 16px;
    margin: 14px 0;
    background: white;
}

.cookie-setting span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.switch {
    position: relative;
    width: 58px;
    height: 32px;
    margin: 0;
    flex: none;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch span {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #c6cbd3;
    transition: 0.2s ease;
    border-radius: 999px;
}

.switch span::before {
    content: '';
    position: absolute;
    height: 24px;
    width: 24px;
    left: 4px;
    top: 4px;
    background: white;
    border-radius: 50%;
    transition: 0.2s ease;
}

.switch input:checked+span {
    background: var(--gold);
}

.switch input:checked+span::before {
    transform: translateX(26px);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: var(--gold);
    color: var(--navy);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

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

.cookie-banner.show~.back-to-top {
    bottom: 130px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1060px) {

    .hotel-grid,
    .package-grid,
    .experience-grid,
    .benefit-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .hotel-detail,
    .contact-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .hotel-detail.reverse .hotel-detail-image,
    .split-grid.reverse .split-media,
    .split-grid.reverse .split-content {
        order: initial;
    }

    .hotel-detail-image img {
        min-height: 360px;
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: rgba(7, 23, 47, 0.98);
        border-bottom: 1px solid rgba(241, 215, 138, 0.18);
        transform: translateY(-125%);
        transition: 0.28s ease;
    }

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

    .nav-link {
        padding: 14px 18px;
    }

    .hero,
    .page-hero {
        min-height: 72vh;
    }

    .page-hero {
        min-height: 48vh;
    }

    .hero-content {
        padding: 92px 0 62px;
    }

    .section {
        padding: 70px 0;
    }

    .experience-card.large {
        grid-row: auto;
        min-height: 280px;
    }

    .mini-packages {
        grid-template-columns: 1fr;
    }

 

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        justify-content: stretch;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .hotel-grid,
    .package-grid,
    .experience-grid,
    .benefit-grid,
    .value-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.35rem;
    }

    .split-media img {
        min-height: 300px;
    }

    .hotel-detail-content,
    .contact-panel,
    .contact-form {
        padding: 24px;
    }

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

    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}


/* Legal and responsible gaming pages */
.legal-page {
    background: linear-gradient(180deg, #fffdf8 0%, #f5efe2 100%);
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 104px;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(241, 215, 138, 0.18);
}

.legal-toc h2 {
    color: var(--ivory);
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.legal-toc li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-toc li:first-child {
    border-top: 0;
}

.legal-toc a {
    display: block;
    padding: 11px 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    transition: 0.2s ease;
}

.legal-toc a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.legal-card {
    background: white;
    border-radius: calc(var(--radius) + 4px);
    box-shadow: var(--shadow);
    border: 1px solid rgba(7, 23, 47, 0.08);
    padding: 42px;
}

.notice-strip {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(201, 164, 76, 0.12);
    border: 1px solid rgba(201, 164, 76, 0.32);
    border-radius: 20px;
    padding: 18px;
    margin-bottom: 34px;
    color: var(--navy);
}

.notice-strip i {
    width: 44px;
    height: 44px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 1.1rem;
}

.notice-strip p {
    color: var(--navy);
}

.legal-section {
    padding: 32px 0;
    border-top: 1px solid rgba(7, 23, 47, 0.1);
    scroll-margin-top: 110px;
}

.legal-section:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.legal-section h2 {
    font-size: clamp(1.7rem, 3vw, 2.55rem);
    margin-bottom: 18px;
}

.legal-section p {
    color: var(--muted);
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1060px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
    }
}

@media (max-width: 640px) {

    .legal-card,
    .legal-toc {
        padding: 24px;
    }

    .notice-strip {
        flex-direction: column;
    }
}