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

:root {
    --burgundy: #8B1A2B;
    --burgundy-dark: #6D1520;
    --burgundy-light: #A52237;
    --blush: #F4D4D0;
    --blush-light: #FDEEEE;
    --blush-dark: #E8B4AE;
    --cream: #FFF8F6;
    --dark: #1A0A0E;
    --text: #2D1518;
    --text-light: #6B4047;
    --white: #FFFFFF;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.15; }

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

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

ul { list-style: none; }

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius);
    z-index: 200;
    font-weight: 500;
}
.skip-link:focus { top: 16px; }

/* ─── Geometric Decorations ─── */
.geo {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}
.geo--1 {
    width: 600px; height: 600px;
    background: var(--burgundy);
    border-radius: 50%;
    top: -200px; right: -200px;
}
.geo--2 {
    width: 400px; height: 400px;
    background: var(--blush);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 20%; left: -100px;
}
.geo--3 {
    width: 200px; height: 200px;
    background: var(--burgundy);
    top: 50%; right: 5%;
    transform: rotate(45deg);
}
.geo--4 {
    width: 120px; height: 120px;
    background: var(--blush-dark);
    border-radius: 50%;
    bottom: 10%; right: 15%;
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255, 248, 246, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(139, 26, 43, 0.08);
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(255, 248, 246, 0.96);
    box-shadow: 0 4px 30px rgba(139, 26, 43, 0.08);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--burgundy);
}
.logo__icon { color: var(--burgundy); }

.logo--light { color: var(--white); }
.logo--light .logo__icon { color: var(--white); }

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav__link {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.nav__link:hover { background: var(--blush); color: var(--burgundy); }
.nav__link--cta {
    background: var(--burgundy);
    color: var(--white);
}
.nav__link--cta:hover { background: var(--burgundy-dark); color: var(--white); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}
.nav-toggle__bar {
    width: 24px; height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}
.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}
.btn--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 26, 43, 0.3);
}
.btn--ghost {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}
.btn--ghost:hover {
    background: var(--burgundy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn--light {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}
.btn--light:hover {
    background: var(--blush-light);
    transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ─── Section Labels & Titles ─── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
}
.section-label--dark { color: var(--white); }
.section-label--dark::before { background: var(--white); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--burgundy); }
.section-title--light { color: var(--white); }
.section-title--dark { color: var(--dark); }

/* ─── Hero ─── */
.hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush) 100%);
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: var(--burgundy);
    opacity: 0.05;
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    background: var(--blush-dark);
    opacity: 0.15;
    border-radius: 50%;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__content { max-width: 520px; }

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--burgundy);
    text-transform: uppercase;
    margin-bottom: 24px;
    background: rgba(139, 26, 43, 0.08);
    padding: 8px 16px;
    border-radius: 100px;
}
.hero__dot {
    width: 8px; height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark);
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero__headline span {
    display: block;
    color: var(--burgundy);
    font-style: italic;
    font-size: 0.65em;
    margin-top: 4px;
}

.hero__sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero__stat {
    display: flex;
    flex-direction: column;
}
.hero__stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--burgundy);
}
.hero__stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}
.hero__stat-divider {
    width: 1px; height: 40px;
    background: var(--blush-dark);
}

.hero__visual { position: relative; }
.hero__image-stack { position: relative; }
.hero__img { border-radius: var(--radius-lg); overflow: hidden; }
.hero__img--main {
    box-shadow: 0 24px 64px rgba(139, 26, 43, 0.15);
}
.hero__img--main img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--accent {
    position: absolute;
    bottom: -30px; left: -40px;
    width: 200px; height: 200px;
    border-radius: var(--radius);
    border: 6px solid var(--cream);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    overflow: hidden;
}
.hero__img--accent img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
    position: absolute;
    top: 24px; right: -20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(139, 26, 43, 0.3);
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about__visual { position: relative; }
.about__shape {
    position: absolute;
    top: -20px; right: -20px;
    width: 200px; height: 200px;
    background: var(--burgundy);
    opacity: 0.08;
    border-radius: var(--radius-lg);
    transform: rotate(15deg);
    z-index: -1;
}
.about__visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 48px rgba(139, 26, 43, 0.12);
}
.about__content { max-width: 480px; }
.about__content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about__features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about__feat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: var(--blush);
    border-radius: 50%;
    color: var(--burgundy);
    flex-shrink: 0;
}
.about__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text);
}

/* ─── Amenities ─── */
.amenities {
    padding: 100px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}
.amenities::before {
    content: '';
    position: absolute;
    top: -150px; left: -150px;
    width: 400px; height: 400px;
    background: var(--blush);
    opacity: 0.06;
    border-radius: 50%;
}
.amenities::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 300px; height: 300px;
    background: var(--white);
    opacity: 0.04;
    border-radius: 50%;
}
.amenities__header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}
.amenities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.amenity-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.amenity-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blush), var(--blush-dark));
    opacity: 0;
    transition: var(--transition);
}
.amenity-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}
.amenity-card:hover::before { opacity: 1; }
.amenity-card__accent {
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    background: var(--blush);
    opacity: 0.06;
    border-radius: 50%;
}
.amenity-card__icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--blush);
    margin-bottom: 20px;
}
.amenity-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 10px;
}
.amenity-card__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── Gallery ─── */
.gallery {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.gallery__header {
    text-align: center;
    margin-bottom: 56px;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}
.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 14, 0.3), transparent 50%);
    opacity: 0;
    transition: var(--transition);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__item:hover img { transform: scale(1.05); }

.gallery__item--wide { grid-column: span 7; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item:not(.gallery__item--wide):not(.gallery__item--tall) {
    aspect-ratio: 1;
}
.gallery__item--wide img { aspect-ratio: 2/1; }
.gallery__item--tall img { aspect-ratio: 2/3; }

/* ─── Location ─── */
.location {
    padding: 100px 0;
    background: var(--blush-light);
    position: relative;
    z-index: 1;
}
.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.location__info p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.location__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.location__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1rem;
    line-height: 1.6;
}
.location__detail-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius);
    color: var(--burgundy);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(139, 26, 43, 0.08);
}
.location__detail a {
    color: var(--burgundy);
    font-weight: 500;
    transition: var(--transition);
}
.location__detail a:hover { color: var(--burgundy-dark); text-decoration: underline; }

.location__map {
    position: relative;
}
.map-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(139, 26, 43, 0.1);
}
.map-placeholder__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.map-placeholder svg { color: var(--burgundy); opacity: 0.6; }
.map-placeholder p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
}

/* ─── Contact ─── */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: var(--burgundy);
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
}
.contact__inner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 350px; height: 350px;
    background: var(--blush);
    opacity: 0.08;
    border-radius: 50%;
}
.contact__text { position: relative; z-index: 1; }
.contact__text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}
.contact__direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact__direct-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    transition: var(--transition);
}
.contact__direct-item:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateX(4px);
}
.contact__direct-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    min-width: 40px;
}
.contact__direct-item span:last-child {
    color: var(--white);
    font-weight: 500;
}

.contact__form {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--blush);
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-input:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 26, 43, 0.08);
}
.form-input::placeholder { color: var(--text-light); opacity: 0.6; }
.form-textarea { resize: vertical; min-height: 120px; }

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: var(--radius);
    color: #2E7D32;
    font-weight: 500;
    margin-top: 16px;
}
.form-success svg { color: #2E7D32; flex-shrink: 0; }

/* ─── Footer ─── */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand p {
    margin-top: 8px;
    font-size: 0.9rem;
}
.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__links a {
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
}
.footer__contact a { transition: var(--transition); }
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ─── Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero__grid { gap: 40px; }
    .hero__img--accent { width: 150px; height: 150px; left: -20px; }
    .amenities__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav {
        position: fixed;
        top: 0; right: 0;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        padding: 100px 32px 32px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
        z-index: 105;
    }
    .nav.open { transform: translateX(0); }
    .nav__list { flex-direction: column; align-items: flex-start; gap: 4px; }
    .nav__link { font-size: 1.1rem; padding: 12px 0; }

    .hero { padding: 100px 0 60px; }
    .hero__grid { grid-template-columns: 1fr; gap: 48px; }
    .hero__visual { order: -1; }
    .hero__img--accent { display: none; }
    .hero__badge { right: 0; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { text-align: center; }

    .about__grid { grid-template-columns: 1fr; }
    .about__visual { order: -1; }
    .about__visual img { height: 300px; }

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

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery__item--wide { grid-column: span 2; }
    .gallery__item--tall { grid-row: span 1; }
    .gallery__item--tall img { aspect-ratio: 1; }

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

    .contact__inner {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .contact__form { padding: 28px; }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero__stat-divider { display: none; }
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--wide { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}
