@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --black: #080808;
    --dark: #111111;
    --dark-soft: #171717;
    --white: #ffffff;
    --muted: #b6b6b6;
    --gold: #c7913d;
    --gold-soft: rgba(199, 145, 61, 0.14);
    --border: rgba(255, 255, 255, 0.11);
    --card: rgba(255, 255, 255, 0.055);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

button {
    font-family: inherit;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 8, 8, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(199, 145, 61, 0.45);
}

.brand strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.1;
}

.brand span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
}

nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

nav a {
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 500;
    transition: 0.25s ease;
}

nav a:hover {
    color: var(--gold);
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    padding: 150px 6% 90px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(199, 145, 61, 0.18), transparent 35%),
        linear-gradient(135deg, #080808 0%, #151515 55%, #080808 100%);
}

.hero-text {
    position: relative;
    z-index: 10;
}

.tag {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: clamp(3.2rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 22px;
}

.subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.description {
    color: var(--muted);
    max-width: 640px;
    font-size: 1.05rem;
    margin-bottom: 34px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    position: relative;
    z-index: 20;
}

.main-btn,
.second-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: 0.25s ease;
    cursor: pointer;
    position: relative;
    z-index: 30;
    pointer-events: auto;
}

.main-btn {
    background: var(--gold);
    color: #111;
}

.main-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(199, 145, 61, 0.22);
}

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

.second-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-side {
    position: relative;
    z-index: 1;
}

.hero-image-box {
    border-radius: 34px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.45);
}

.hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.hero-image-box p {
    padding: 18px 22px;
    color: var(--gold);
    font-weight: 800;
}

.section {
    padding: 95px 6%;
}

.section-heading {
    margin-bottom: 38px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -1px;
}

.section-subtitle {
    margin-top: 12px;
    color: var(--muted);
    max-width: 650px;
}

.info-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 30px;
}

.about-section {
    background: #0c0c0c;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.about-box p {
    color: var(--muted);
    font-size: 1.05rem;
}

.mini-cta-card {
    padding: 30px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(199, 145, 61, 0.16), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(199, 145, 61, 0.22);
}

.mini-cta-card p {
    color: var(--muted);
    margin-bottom: 10px;
}

.mini-cta-card h3 {
    font-size: 1.6rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

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

.gallery-card {
    overflow: hidden;
    border-radius: 28px;
    background: var(--card);
    border: 1px solid var(--border);
    transition: 0.25s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 145, 61, 0.35);
}

.gallery-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.gallery-card div {
    padding: 18px 20px;
}

.gallery-card p {
    color: var(--gold);
    font-weight: 800;
}

.services-section {
    background: #0c0c0c;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    padding: 26px;
    border-radius: 26px;
    background: var(--card);
    border: 1px solid var(--border);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(199, 145, 61, 0.35);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.price-list {
    max-width: 820px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
}

.price-list div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    border-bottom: 1px solid var(--border);
}

.price-list div:last-child {
    border-bottom: none;
}

.price-list span {
    color: var(--muted);
}

.price-list strong {
    color: var(--gold);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.review-card {
    padding: 24px;
    border-radius: 26px;
    background: var(--card);
    border: 1px solid var(--border);
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 8px;
}

.review-top h3 {
    font-size: 1.05rem;
}

.review-top span,
.review-source {
    color: var(--muted);
    font-size: 0.82rem;
}

.stars {
    color: var(--gold);
    margin: 12px 0;
    letter-spacing: 2px;
}

.review-card p:last-child {
    color: var(--muted);
    font-size: 0.95rem;
}

.hours-section {
    background: #0c0c0c;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 24px;
}

.hours-card {
    padding: 30px;
    border-radius: 30px;
    background: var(--card);
    border: 1px solid var(--border);
}

.hours-card p {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.hours-card p:last-child {
    border-bottom: none;
}

.hours-card span {
    color: var(--gold);
    font-weight: 800;
}

.booking-card {
    padding: 30px;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(199, 145, 61, 0.16), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(199, 145, 61, 0.22);
}

.booking-card h3 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 14px;
}

.booking-card p {
    color: var(--muted);
    margin-bottom: 22px;
}

.faq-section {
    background: #080808;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.faq-card {
    padding: 24px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--border);
}

.faq-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.faq-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: stretch;
    background: #0c0c0c;
}

.contact-box p {
    color: var(--muted);
    margin-bottom: 10px;
}

.contact-box strong {
    color: var(--white);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.map-box {
    min-height: 460px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 460px;
    border: none;
}

footer {
    padding: 36px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    background: #060606;
    border-top: 1px solid var(--border);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(199, 145, 61, 0.45);
}

.footer-brand p {
    color: var(--muted);
    font-size: 0.92rem;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--gold);
    font-weight: 900;
    font-size: 0.8rem;
    transition: 0.25s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted);
    font-size: 0.92rem;
    transition: 0.25s ease;
}

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

.booking-back-link {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 700;
    transition: 0.25s ease;
}

.booking-back-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.booking-page {
    min-height: 100vh;
    padding: 140px 6% 80px;
    background:
        radial-gradient(circle at top left, rgba(199, 145, 61, 0.2), transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 30%),
        linear-gradient(135deg, #070707 0%, #121212 55%, #080808 100%);
}

.booking-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.booking-header {
    max-width: 760px;
    margin-bottom: 40px;
}

.booking-header h1 {
    font-size: clamp(2.8rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.booking-header p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 620px;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.booking-option-card {
    min-height: 230px;
    padding: 28px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.25s ease;
}

.booking-option-card:hover {
    transform: translateY(-6px);
    border-color: rgba(199, 145, 61, 0.45);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.booking-option-card h2 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.booking-option-card p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.booking-option-card strong {
    color: var(--gold);
    font-size: 0.95rem;
    word-break: break-word;
}

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

    .hero-side {
        max-width: 680px;
    }

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

    .contact-section {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 800px) {
    header {
        padding: 16px 5%;
    }

    .menu-btn {
        display: block;
    }

    nav {
        position: absolute;
        top: 82px;
        left: 5%;
        right: 5%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 22px;
        border-radius: 22px;
        background: rgba(10, 10, 10, 0.96);
        border: 1px solid var(--border);
    }

    nav.show {
        display: flex;
    }

    .hero {
        padding: 130px 5% 70px;
        gap: 38px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-image {
        height: 390px;
    }

    .section {
        padding: 75px 5%;
    }

    .about-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card img {
        height: 420px;
    }

    .services-grid,
    .reviews-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .price-list div {
        padding: 18px 20px;
    }

    footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .booking-page {
        padding: 125px 5% 60px;
    }

    .booking-options {
        grid-template-columns: 1fr;
    }

    .booking-option-card {
        min-height: auto;
    }

    .booking-back-link {
        padding: 9px 14px;
        font-size: 0.86rem;
    }
}

@media (max-width: 500px) {
    .brand div {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .buttons,
    .contact-actions {
        flex-direction: column;
    }

    .main-btn,
    .second-btn {
        width: 100%;
    }

    .hero-image {
        height: 330px;
    }

    .gallery-card img {
        height: 330px;
    }

    .review-top {
        flex-direction: column;
        gap: 4px;
    }

    .hours-card p,
    .price-list div {
        flex-direction: column;
        gap: 4px;
    }

    .map-box,
    .map-box iframe {
        min-height: 360px;
    }
}