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

:root {
    --burgundy: #800020;
    --burgundy-deep: #5C0018;
    --blush: #F5E6E8;
    --blush-light: #FBF5F6;
    --cream: #FDF8F9;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --line: rgba(128, 0, 32, 0.12);
    --line-strong: rgba(128, 0, 32, 0.25);
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    
    --nav-height: 72px;
    --container-max: 1200px;
    --radius: 4px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
    background: rgba(253, 248, 249, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--line);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav.scrolled .nav__logo {
    color: var(--burgundy);
}

.nav__logo-icon {
    display: flex;
    align-items: center;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav__link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav.scrolled .nav__link {
    color: var(--text-mid);
}

.nav.scrolled .nav__link:hover {
    color: var(--burgundy);
}

.nav__link:hover {
    color: var(--white);
}

.nav__cta {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.nav.scrolled .nav__cta {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.nav__cta:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}

.nav.scrolled .nav__cta:hover {
    background: var(--burgundy);
    color: var(--white);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav.scrolled .nav__toggle span {
    background: var(--burgundy);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: var(--burgundy);
}

.mobile-menu__cta {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    padding: 14px 32px;
    border: 1px solid var(--burgundy);
    border-radius: var(--radius);
}

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

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(92, 0, 24, 0.82) 0%,
        rgba(128, 0, 32, 0.65) 50%,
        rgba(26, 26, 26, 0.55) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero__greeting {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero__line {
    width: 48px;
    height: 1px;
    background: var(--blush);
    flex-shrink: 0;
}

.hero__greeting-text {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 700px;
}

.hero__accent {
    font-style: italic;
    color: var(--blush);
}

.hero__sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 48px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn--primary:hover {
    background: var(--burgundy-deep);
    border-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(128, 0, 32, 0.3);
}

.btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--outline {
    background: transparent;
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn--outline:hover {
    background: var(--burgundy);
    color: var(--white);
}

.btn--full {
    width: 100%;
}

/* Floating Stat Cards */
.hero__stats {
    position: absolute;
    bottom: 60px;
    right: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 20px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    min-width: 160px;
    opacity: 0;
    transform: translateY(20px);
    animation: cardFloat 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.4s; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardFloat {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--burgundy);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card__label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ─── SECTION LABELS ─── */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--burgundy);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.text-accent {
    font-style: italic;
    color: var(--burgundy);
}

.section-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .section-sub {
    margin: 0 auto;
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 0;
    background: var(--cream);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
}

.about__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--burgundy);
    border-radius: var(--radius);
    opacity: 0.3;
    z-index: -1;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
}

/* ─── DIVIDER ─── */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 24px;
}

.divider__line {
    flex: 1;
    height: 1px;
    background: var(--line);
    max-width: 200px;
}

.divider__icon {
    flex-shrink: 0;
    opacity: 0.6;
}

/* ─── AMENITIES ─── */
.amenities {
    padding: 120px 0;
    background: var(--white);
}

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

.amenity-card {
    padding: 40px 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.amenity-card:hover::before {
    transform: scaleX(1);
}

.amenity-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(128, 0, 32, 0.08);
}

.amenity-card__icon {
    margin-bottom: 24px;
}

.amenity-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.amenity-card__desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
}

/* ─── GALLERY ─── */
.gallery {
    padding: 0 0 120px;
    background: var(--cream);
}

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

.gallery__item {
    overflow: hidden;
    border-radius: var(--radius);
}

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

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

/* ─── LOCATION ─── */
.location {
    padding: 120px 0;
    background: var(--white);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.location__content {
    padding: 20px 0;
}

.location__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 48px;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.location__detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.location__detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
}

.location__detail-value {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
}

.location__link {
    color: var(--text-mid);
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.location__link:hover {
    color: var(--burgundy);
    border-bottom-color: var(--burgundy);
}

.location__map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 450px;
    border: 1px solid var(--line);
}

/* ─── CONTACT ─── */
.contact {
    padding: 120px 0;
    background: var(--cream);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 48px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact__info-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.contact__info-value {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
}

.contact__info-value a {
    color: var(--text-mid);
    border-bottom: 1px solid var(--line);
    transition: all 0.3s ease;
}

.contact__info-value a:hover {
    color: var(--burgundy);
    border-bottom-color: var(--burgundy);
}

/* Form */
.contact__form-wrap {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.form__input,
.form__textarea {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    outline: none;
    transition: border-color 0.3s ease;
    resize: none;
    width: 100%;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--text-light);
}

.form__input:focus,
.form__textarea:focus {
    border-bottom-color: var(--burgundy);
}

.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 16px;
}

.form__success.show {
    display: flex;
}

.form__success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form__success p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--text-dark);
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a,
.footer__contact a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--blush);
}

.footer__contact span {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer__bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about__grid,
    .location__grid,
    .contact__inner {
        gap: 48px;
    }
    
    .amenities__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero__stats {
        position: relative;
        bottom: auto;
        right: auto;
        padding: 0 24px 60px;
        justify-content: center;
    }
    
    .hero__content {
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    
    .nav__links {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero__headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 120px;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image-wrap img {
        height: 350px;
    }
    
    .amenities__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__item img {
        height: 200px;
    }
    
    .location__grid {
        grid-template-columns: 1fr;
    }
    
    .location__map {
        min-height: 300px;
    }
    
    .contact__inner {
        grid-template-columns: 1fr;
    }
    
    .contact__form-wrap {
        padding: 32px 24px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .gallery__inner {
        grid-template-columns: 1fr;
    }
}
