:root {
    --black: #080909;
    --ivory: #f4efe6;
    --gold: #c9a66b;
    --gold-light: #e1c58f;
    --muted: #a7a49d;
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
    background: rgba(8,9,9,.88);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    min-width: 205px;
    font-family: Georgia, serif;
}

.brand__main {
    font-family: Georgia, serif;
    font-size: 35px;
    line-height: 1;
    color: var(--ivory);
}

.brand__script {
    color: var(--gold-light);
    font-family: "Brush Script MT", cursive;
    font-size: 28px;
    font-style: italic;
}

.brand small {
    position: absolute;
    left: 2px;
    bottom: -12px;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 6px;
    letter-spacing: .18em;
    color: rgba(244,239,230,.65);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex: 1;
}

.nav-links a {
    position: relative;
    color: rgba(244,239,230,.86);
    font-size: 11px;
    transition: color .25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 1px;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-light);
    color: #111;
    padding: 13px 19px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-mobile-actions {
    display: none;
}

.nav-book-btn {
    display: none;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    color: var(--ivory);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    margin: 5px auto;
    transition: transform .3s ease;
}

.menu-toggle.is-open span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

.site-footer {
    background: #050606;
    padding: 75px 0 25px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr .7fr .9fr 1fr .75fr;
    gap: 45px;
    padding-bottom: 60px;
}

.footer-brand .brand {
    margin-bottom: 30px;
}

.footer-brand p {
    color: var(--muted);
    max-width: 280px;
    font-size: 11px;
    line-height: 1.8;
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.socials a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-size: 8px;
    transition: background .25s ease;
}

.socials a:hover {
    background: rgba(201,166,107,.12);
}

.footer-column h4 {
    color: var(--gold-light);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 20px;
}

.footer-column a,
.footer-column p {
    display: block;
    color: var(--muted);
    font-size: 10px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-column a:hover {
    color: var(--ivory);
}

.footer-tagline {
    border-left: 1px solid var(--line);
    padding-left: 28px;
    display: flex;
    align-items: center;
}

.footer-tagline span {
    color: var(--gold-light);
    font-family: "Brush Script MT", cursive;
    font-size: 27px;
    line-height: 1.15;
}

.footer-tagline em {
    font-weight: 400;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #666762;
    font-size: 9px;
}

.footer-bottom strong {
    color: var(--gold-light);
    font-weight: 500;
}

/* Mobile Nav CTA */
.nav-cta--mobile {
    display: none;
}

/* Forms & Inputs */
.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: #0e0f0f;
    border: 1px solid rgba(201, 166, 107, 0.28);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--ivory);
    font-family: var(--sans);
    font-size: 14px;
    transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold-light);
    background: #141515;
    box-shadow: 0 0 0 3px rgba(225, 197, 143, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(167, 164, 157, 0.55);
}

.form-select option {
    background: #141515;
    color: var(--ivory);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-helper {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 6px;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
    padding: 20px;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox__dialog {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox__media {
    position: relative;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #000;
}

.lightbox__image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    transition: opacity .25s ease;
}

.lightbox__caption {
    width: 100%;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--ivory);
}

.lightbox__meta h3 {
    font-size: 20px;
    font-family: var(--serif);
    font-weight: 500;
    color: var(--ivory);
}

.lightbox__category {
    font-size: 10px;
    color: var(--gold-light);
    letter-spacing: .15em;
    text-transform: uppercase;
}

.lightbox__counter {
    font-size: 11px;
    color: var(--muted);
    font-family: var(--sans);
    letter-spacing: .08em;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(14, 15, 15, 0.85);
    border: 1px solid var(--line);
    color: var(--ivory);
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
    z-index: 5;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--gold-light);
    color: #111;
    border-color: var(--gold-light);
}

.lightbox__close {
    top: -45px;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 1;
}

.lightbox__prev {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 20px;
}

.lightbox__next {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 20px;
}

.lightbox__prev:hover {
    transform: translateY(-50%) scale(1.06);
}

.lightbox__next:hover {
    transform: translateY(-50%) scale(1.06);
}

body.lightbox-open {
    overflow: hidden;
}
