:root {
    --orange: #e05a1e;
    --orange-600: #c94e15;
    --ink: #1e1e1e;
    --ink-soft: #3f3b36;
    --cream: #ece5db;
    --dark: #141210;
    --line-dark: rgba(255, 255, 255, 0.16);
    --glass: rgba(28, 24, 20, 0.55);
    --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0px;
    padding: 0px;
    font-family: var(--font-body);
    color: var(--ink);
    background: rgb(14, 12, 10);
    -webkit-font-smoothing: antialiased;
}

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

.serif {
    font-family: var(--font-display);
}

.wrap {
    width: 100%;
    max-width: 1420px;
    margin-inline: auto; padding-inline: 40px; }

section {
    padding: 90px 0px;
}

.site-header {
    padding-block: 26px; position: relative;
    z-index: 20;
}

.site-header .header-row {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.header-row .brand, .footer-brand .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand .brand__mark {
    color: var(--orange);
    display: grid;
    place-items: center;
}

.brand .brand__text {
    display: inline-flex;
    flex-direction: column;
}

.brand .brand__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #fff;
}

.brand .brand__sub {
    font-size: 0.62rem;
    letter-spacing: 4px;
    font-weight: 600;
    color: #fff;
    margin-top: 3px;
}

.header-row .nav-links {
    display: flex;
    gap: 20px;
    margin: 0px auto;
    list-style: none;
    padding: 0px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #fff;
    padding-bottom: 6px;
    position: relative;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 2px;
    background: var(--orange);
}

.header-row .header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-shrink: 0;
}

.header-actions .btn-book, .mobile-panel .btn-book {
    background: var(--orange);
    color: rgb(255, 255, 255);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    border-radius: 999px;
    padding: 14px 26px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s, transform 0.2s;
}

.header-actions .btn-book:hover, .mobile-panel .btn-book:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
    color: rgb(255, 255, 255);
}

.header-row .menu-btn {
    background: none;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    padding: 4px;
    cursor: pointer;
}

.header-row .nav-toggler {
    display: none;
}

.site-header .mobile-panel {
    display: none;
}

.mobile-panel .mobile-links {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.72);
    padding-top: 70px;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand .brand__name {
    color: rgb(255, 255, 255);
}

.footer-brand .brand__sub {
    color: rgba(255, 255, 255, 0.55);
}

.footer-brand .footer-about {
    margin: 22px 0px 24px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.62);
}

.footer-brand .footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgb(255, 255, 255);
    font-size: 1.05rem;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-socials a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.footer-col h2 {
    color: rgb(255, 255, 255);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin: 4px 0px 22px;
}

.footer-col ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.66);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.66);
}

.footer-contact i {
    color: var(--orange);
    margin-top: 3px;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 26px; display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom .legal {
    display: flex;
    gap: 26px;
}

.footer-bottom .legal a:hover {
    color: var(--orange);
}

@media (max-width: 1200px) {
    .header-row .nav-links {
        gap: 22px;
    }
}

@media (max-width: 992px) {
    .wrap {
        padding-inline: 26px;
    }

    .header-row .nav-toggler {
        display: inline-flex;
        margin-left: auto;
    }

    .header-row .nav-links, .header-row .header-actions {
        display: none;
    }

    .site-header .mobile-panel {
        flex-direction: column;
        gap: 20px;
        background: rgba(20, 16, 12, 0.96);
        border-radius: 16px;
        padding: 24px;
        margin-top: 16px;
    }

    .site-header .mobile-panel.open {
        display: flex;
    }

    .mobile-panel a {
        color: rgb(255, 255, 255);
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .mobile-panel .btn-book {
        justify-content: center;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .wrap {
        padding-inline: 18px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

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

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }
}

:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 3px;
}
