/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #D4A017;
    color: #1A0A1E;
    padding: 0.5rem 1rem;
    z-index: 1000;
    border-radius: 0 0 0.5rem 0.5rem;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ── Utility ──────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Typography ───────────────────────────────────────── */
.section__eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D4A017;
    margin-bottom: 1rem;
}

.section__eyebrow--dark {
    color: #4A1C4D;
}

.section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #F5F0F7;
    margin-bottom: 1rem;
}

.section__title--dark {
    color: #2A102E;
}

.section__subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #D4BFD8;
    max-width: 600px;
}

.section__subtitle--dark {
    color: #6B3072;
}

.section__header {
    margin-bottom: 3.5rem;
}

.section__header--center {
    text-align: center;
}

.section__header--center .section__subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--amber {
    background: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
    color: #1A0A1E;
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.3);
}

.btn--amber:hover {
    background: linear-gradient(135deg, #E6B830 0%, #D4A017 100%);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.4);
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #F5F0F7;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ── Navigation ───────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(26, 10, 30, 0.95);
    backdrop-filter: blur(16px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #F5F0F7;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav__logo-icon {
    color: #D4A017;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 400;
    color: #E8DDEA;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4A017;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #D4A017;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #D4A017, #B8860B);
    color: #1A0A1E;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav__cta:hover {
    background: linear-gradient(135deg, #E6B830, #D4A017);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 110;
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #F5F0F7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 10, 30, 0.88) 0%,
        rgba(74, 28, 77, 0.75) 50%,
        rgba(42, 16, 46, 0.85) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: #D4A017;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5.5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.1;
    color: #F5F0F7;
    margin-bottom: 0.5rem;
    max-width: 800px;
}

.hero__headline-accent {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.125rem, 2.5vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    color: #D4A017;
    margin-top: 0.5rem;
}

.hero__subheadline {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.75;
    color: #D4BFD8;
    max-width: 580px;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #E8DDEA;
    font-size: 0.875rem;
    font-weight: 400;
}

.hero__trust-item svg {
    color: #D4A017;
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #D4BFD8;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #D4A017, transparent);
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Sections ─────────────────────────────────────────── */
.section {
    padding: 6rem 0;
}

.section--dark {
    background: #1A0A1E;
}

.section--plum {
    background: linear-gradient(180deg, #2A102E 0%, #1A0A1E 100%);
}

.section--light {
    background: #F5F0F7;
}

/* ── Lodging ──────────────────────────────────────────── */
.lodging__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lodging__card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.4s ease;
}

.lodging__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 160, 23, 0.2);
}

.lodging__card-img {
    height: 220px;
    overflow: hidden;
}

.lodging__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lodging__card:hover .lodging__card-img img {
    transform: scale(1.05);
}

.lodging__card-body {
    padding: 1.75rem;
}

.lodging__card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #F5F0F7;
    margin-bottom: 0.75rem;
}

.lodging__card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #D4BFD8;
    margin-bottom: 1.25rem;
}

.lodging__card-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.lodging__card-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #E8DDEA;
}

.lodging__card-list li svg {
    color: #D4A017;
    flex-shrink: 0;
}

/* ── About ────────────────────────────────────────────── */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__media {
    position: relative;
}

.about__img-wrap {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about__img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.about__img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border: 4px solid #2A102E;
    max-width: 280px;
}

.about__img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.about__content {
    padding: 1rem 0;
}

.about__text {
    font-size: 1rem;
    line-height: 1.8;
    color: #D4BFD8;
    margin-bottom: 1.25rem;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about__value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about__value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A017;
}

.about__value-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #F5F0F7;
    margin-bottom: 0.25rem;
}

.about__value-desc {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #B894BC;
}

/* ── Location ─────────────────────────────────────────── */
.location__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.location__detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(74, 28, 77, 0.15);
}

.location__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(74, 28, 77, 0.08);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A1C4D;
}

.location__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6B3072;
    margin-bottom: 0.25rem;
}

.location__detail-value {
    font-size: 1rem;
    color: #2A102E;
    line-height: 1.6;
}

.location__detail-value a {
    color: #4A1C4D;
    transition: color 0.3s ease;
}

.location__detail-value a:hover {
    color: #D4A017;
}

.location__map {
    border-radius: 0.75rem;
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location__highlights {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(74, 28, 77, 0.08);
}

.location__highlights-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2A102E;
    margin-bottom: 1.5rem;
}

.location__highlights-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location__highlights-list li {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(74, 28, 77, 0.08);
}

.location__highlights-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.location__highlight-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2A102E;
}

.location__highlight-desc {
    font-size: 0.8125rem;
    color: #6B3072;
}

.location__cta .btn--amber {
    width: 100%;
    justify-content: center;
}

/* ── Contact ──────────────────────────────────────────── */
.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__text {
    font-size: 1rem;
    line-height: 1.75;
    color: #D4BFD8;
    margin-bottom: 2rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact__info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A017;
}

.contact__info-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #B894BC;
}

.contact__info-value {
    display: block;
    font-size: 0.9375rem;
    color: #E8DDEA;
}

.contact__info-link {
    font-size: 0.9375rem;
    color: #D4A017;
    transition: color 0.3s ease;
}

.contact__info-link:hover {
    color: #E6B830;
    text-decoration: underline;
}

/* ── Contact Form ─────────────────────────────────────── */
.contact__form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 2rem;
}

.contact__form-group {
    margin-bottom: 1.25rem;
}

.contact__form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #D4BFD8;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.contact__form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: #F5F0F7;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.contact__form-input::placeholder {
    color: #9B69A0;
}

.contact__form-input:focus {
    border-color: #D4A017;
    background: rgba(212, 160, 23, 0.06);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.contact__form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23D4BFD8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.contact__form-select option {
    background: #2A102E;
    color: #F5F0F7;
}

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

.contact__form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.contact__form-success-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 160, 23, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #D4A017;
}

.contact__form-success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #F5F0F7;
    margin-bottom: 0.5rem;
}

.contact__form-success-text {
    font-size: 0.9375rem;
    color: #D4BFD8;
}

/* ── Footer ───────────────────────────────────────────── */
.footer {
    background: #0D0610;
    padding: 4rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #F5F0F7;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__logo-icon {
    color: #D4A017;
}

.footer__tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #9B69A0;
    max-width: 300px;
}

.footer__heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    color: #E8DDEA;
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    font-size: 0.875rem;
    color: #9B69A0;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #D4A017;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #9B69A0;
    line-height: 1.5;
}

.footer__contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #D4A017;
}

.footer__contact-list a {
    color: #9B69A0;
    transition: color 0.3s ease;
}

.footer__contact-list a:hover {
    color: #D4A017;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__copyright {
    font-size: 0.8125rem;
    color: #6B3072;
}

.footer__legal {
    font-size: 0.8125rem;
    color: #6B3072;
}

/* ── Animations ───────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .lodging__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__grid {
        gap: 3rem;
    }

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

    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(26, 10, 30, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav__menu.is-open {
        right: 0;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__content {
        padding: 7rem 1.5rem 3rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__trust {
        gap: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

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

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

    .about__img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        max-width: 100%;
        border: none;
    }

    .about__img-wrap img {
        height: 300px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero__headline {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .hero__headline-accent {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }

    .lodging__card-body {
        padding: 1.25rem;
    }

    .contact__form {
        padding: 1.5rem;
    }
}
