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

:root {
    --burgundy: #6B1D2A;
    --burgundy-deep: #4A1520;
    --burgundy-light: #8C2D3E;
    --blush: #E8C4C4;
    --blush-light: #F5E6E6;
    --blush-pale: #FAF3F3;
    --cream: #FDF8F8;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #3D3D3D;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --line: rgba(107, 29, 42, 0.12);
    --line-strong: rgba(107, 29, 42, 0.25);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── Typography ─────────────────────────────────── */
.section-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.25rem;
}

.section-heading h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
    margin-top: 1.25rem;
}

/* ── Header / Nav ───────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: background 0.4s var(--ease-out);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--burgundy);
    letter-spacing: 0.01em;
}

.logo-mark {
    color: var(--burgundy);
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.3s var(--ease-out);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width 0.3s var(--ease-out);
}

.nav-menu a:hover {
    color: var(--burgundy);
}

.nav-menu a::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
    color: var(--burgundy) !important;
    border: 1px solid var(--line-strong) !important;
    padding: 0.55rem 1.4rem;
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--burgundy);
    color: var(--white) !important;
    border-color: var(--burgundy);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--burgundy);
    position: relative;
    transition: all 0.3s var(--ease-out);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--burgundy);
    left: 0;
    transition: all 0.3s var(--ease-out);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(253, 248, 248, 0.7) 0%,
        rgba(253, 248, 248, 0.5) 40%,
        rgba(253, 248, 248, 0.6) 70%,
        rgba(253, 248, 248, 0.95) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 780px;
    padding: 8rem 2rem 4rem;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.015em;
    margin-bottom: 2rem;
}

.hero-headline br {
    display: none;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 0;
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--line-strong);
}

.btn-ghost:hover {
    border-color: var(--burgundy);
    background: rgba(107, 29, 42, 0.04);
}

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

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 4rem;
}

.hero-divider .line {
    width: 60px;
    height: 1px;
    background: var(--line-strong);
}

.hero-divider .diamond {
    width: 6px;
    height: 6px;
    background: var(--burgundy);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--burgundy);
    opacity: 0.5;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

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

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

.about-text p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-text p:first-child {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--line);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--burgundy);
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--line);
    flex-shrink: 0;
}

/* ── Stay ───────────────────────────────────────── */
.stay {
    background: var(--white);
}

.stay .section-heading {
    margin-top: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.feature-card {
    padding: 2rem 1.5rem;
    border: 1px solid var(--line);
    transition: all 0.35s var(--ease-out);
}

.feature-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(107, 29, 42, 0.06);
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
}

.stay-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.stay-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.stay-image:hover img {
    transform: scale(1.02);
}

/* ── Heritage ───────────────────────────────────── */
.heritage {
    background: var(--burgundy);
    color: var(--white);
}

.heritage .section-label {
    color: var(--blush);
}

.heritage-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.heritage-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    opacity: 0.9;
}

.heritage-content h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.heritage-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.heritage-quote {
    display: flex;
    gap: 1.25rem;
    margin: 2.5rem 0;
    padding: 1.75rem;
    border-left: 1px solid rgba(232, 196, 196, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.heritage-quote svg {
    flex-shrink: 0;
    color: var(--blush);
    opacity: 0.6;
    margin-top: 0.2rem;
}

.heritage-quote blockquote p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

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

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

.value-line {
    width: 24px;
    height: 1px;
    background: var(--blush);
    opacity: 0.4;
    flex-shrink: 0;
}

.value-item span {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Visit ──────────────────────────────────────── */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.visit-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 20px;
    height: 20px;
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.visit-detail h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.visit-detail p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

.visit-detail a {
    color: var(--burgundy);
    transition: color 0.3s var(--ease-out);
}

.visit-detail a:hover {
    color: var(--burgundy-deep);
}

.visit-map {
    position: relative;
}

.visit-map img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.map-link {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--burgundy);
    padding: 0.6rem 1rem;
    transition: all 0.3s var(--ease-out);
}

.map-link:hover {
    background: var(--burgundy-deep);
}

/* ── Contact ────────────────────────────────────── */
.contact {
    background: var(--blush-pale);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-content h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.contact-content > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 2.5rem;
    max-width: 440px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--burgundy);
    transition: all 0.3s var(--ease-out);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--line);
}

.contact-direct-link:hover {
    color: var(--burgundy-deep);
    border-color: var(--burgundy);
    padding-left: 0.5rem;
}

.contact-direct-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* ── Form ───────────────────────────────────────── */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--line);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 0.85rem 1rem;
    outline: none;
    transition: all 0.3s var(--ease-out);
    resize: vertical;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.form-success svg {
    color: var(--burgundy);
    margin: 0 auto 1.25rem;
    opacity: 0.7;
}

.form-success h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── Footer ─────────────────────────────────────── */
.site-footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 3.5rem 0 2.5rem;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo-mark {
    color: var(--blush);
    opacity: 0.6;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s var(--ease-out);
}

.footer-nav a:hover {
    color: var(--blush);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
}

/* ── Animations ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .heritage-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .heritage-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 248, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--line);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s var(--ease-out);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: block;
    }

    .hero-headline br {
        display: block;
    }

    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }

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

    .about-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

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

    .stay-image-row {
        grid-template-columns: 1fr;
    }

    .stay-image img,
    .heritage-image img {
        height: 280px;
    }

    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 5rem 1.25rem;
    }
}

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}
