/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    background: #fefdfb;
    color: #3d131a;
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ── Typography ─────────────────────────────────────────── */
.font-serif { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-sans  { font-family: 'Raleway', Helvetica, Arial, sans-serif; }

/* ── Navigation ─────────────────────────────────────────── */
.nav-scrolled {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: box-shadow 0.3s ease;
}
.nav-scrolled.scrolled {
    box-shadow: 0 1px 20px rgba(123, 45, 59, 0.08);
}
.nav-link {
    position: relative;
    padding: 0.25rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7B2D3B;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.mobile-link {
    position: relative;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: color 0.2s ease;
}
.mobile-link:hover { color: #7B2D3B; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: #7B2D3B;
    color: #fefdfb;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
    background: #5c1f2a;
    transform: translateY(-1px);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #7B2D3B;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1.5px solid #7B2D3B;
    border-radius: 2px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.btn-secondary:hover {
    background: #7B2D3B;
    color: #fefdfb;
    transform: translateY(-1px);
}
.btn-secondary-light {
    display: inline-flex;
    align-items: center;
    background: rgba(254, 253, 251, 0.12);
    color: #fefdfb;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1.5px solid rgba(254, 253, 251, 0.4);
    border-radius: 2px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.btn-secondary-light:hover {
    background: rgba(254, 253, 251, 0.2);
    border-color: rgba(254, 253, 251, 0.7);
    transform: translateY(-1px);
}

/* ── Split Hero ─────────────────────────────────────────── */
.hero-split {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    background: #fefdfb;
}
.hero-split__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-split__inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
}
.hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: #7B2D3B;
}
.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.15;
    color: #3d131a;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}
.hero-headline em {
    font-style: italic;
    color: #7B2D3B;
}
.hero-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5c1f2a;
    max-width: 520px;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #5c1f2a;
    opacity: 0.7;
}
.hero-meta-item svg {
    width: 1rem;
    height: 1rem;
    color: #7B2D3B;
}
.hero-split__image {
    position: relative;
}
.hero-image-frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(61, 19, 26, 0.12);
}
.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(61, 19, 26, 0.08) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 1024px) {
    .hero-image-frame {
        position: relative;
        top: 3rem;
    }
    .hero-image-frame::after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: -2rem;
        right: 2rem;
        height: 40%;
        background: rgba(123, 45, 59, 0.04);
        border-radius: 4px;
        z-index: -1;
    }
}

/* ── Divider ────────────────────────────────────────────── */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(123, 45, 59, 0.15), transparent);
    margin: 0;
}

/* ── Sections ───────────────────────────────────────────── */
.section {
    padding: 6rem 0;
}
.section--alt {
    background: #fdf0f3;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 1rem;
}
.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: #3d131a;
    margin: 0 0 1.5rem;
    letter-spacing: -0.01em;
}
.section-title em {
    font-style: italic;
    color: #7B2D3B;
}
.section-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #5c1f2a;
    opacity: 0.85;
    margin-bottom: 1rem;
}

/* ── About Image Grid ───────────────────────────────────── */
.about-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .about-image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px;
    }
}
.about-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(61, 19, 26, 0.08);
}
.about-image-grid img:first-child {
    grid-row: 1 / 3;
}

/* ── Retreat Cards ──────────────────────────────────────── */
.retreat-card {
    background: #fefdfb;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 19, 26, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.retreat-card:hover {
    box-shadow: 0 12px 40px rgba(61, 19, 26, 0.12);
    transform: translateY(-4px);
}
.retreat-card__image {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.retreat-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.retreat-card:hover .retreat-card__image img {
    transform: scale(1.04);
}
.retreat-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #7B2D3B;
    color: #fefdfb;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 2px;
}
.retreat-badge--blush {
    background: #c94666;
}
.retreat-card__content {
    padding: 2rem;
}
.retreat-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #3d131a;
    margin: 0 0 0.75rem;
}
.retreat-card__desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #5c1f2a;
    opacity: 0.8;
    margin-bottom: 1.25rem;
}
.retreat-card__amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}
.retreat-card__amenities li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #5c1f2a;
}
.retreat-card__amenities svg {
    color: #7B2D3B;
    flex-shrink: 0;
}
.retreat-card__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7B2D3B;
    transition: color 0.2s ease;
}
.retreat-card__link:hover { color: #5c1f2a; }
.retreat-card__link svg {
    transition: transform 0.2s ease;
}
.retreat-card__link:hover svg { transform: translateX(3px); }

/* ── Location ───────────────────────────────────────────── */
.location-map {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(61, 19, 26, 0.1);
}
.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.location-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

/* ── Gallery ────────────────────────────────────────────── */
.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.gallery-item:hover img {
    transform: scale(1.05);
}

/* ── CTA Section ────────────────────────────────────────── */
.cta-section {
    background: #7B2D3B;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(254, 253, 251, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.cta-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(254, 253, 251, 0.6);
    margin-bottom: 1rem;
}
.cta-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    color: #fefdfb;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
}
.cta-title em {
    font-style: italic;
    color: #f9cfd9;
}
.cta-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(254, 253, 251, 0.75);
    max-width: 560px;
    margin: 0 auto;
}

/* ── Contact Form ───────────────────────────────────────── */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-info-item__icon {
    width: 44px;
    height: 44px;
    background: #fce7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7B2D3B;
    flex-shrink: 0;
}
.contact-form {
    background: #fdf0f3;
    padding: 2.5rem;
    border-radius: 6px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 0.5rem;
}
.form-input {
    background: #fefdfb;
    border: 1px solid rgba(123, 45, 59, 0.15);
    border-radius: 3px;
    padding: 0.85rem 1rem;
    font-family: 'Raleway', Helvetica, sans-serif;
    font-size: 0.92rem;
    color: #3d131a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
}
.form-input:focus {
    border-color: #7B2D3B;
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}
.form-input::placeholder { color: #c9a8b0; }
.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='%237B2D3B' 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;
}
.form-textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    background: #7B2D3B;
    color: #fefdfb;
    padding: 1rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    margin-top: 0.5rem;
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn-submit:hover {
    background: #5c1f2a;
    transform: translateY(-1px);
}
.form-success {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(123, 45, 59, 0.06);
    border-radius: 3px;
    font-size: 0.9rem;
    color: #7B2D3B;
}
.form-success.hidden { display: none; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
    background: #2a0c11;
    color: #fefdfb;
    padding: 5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 2rem;
    }
}
.footer-logo {
    display: inline-flex;
    align-items: center;
}
.footer-tagline {
    max-width: 280px;
}
.footer-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fefdfb;
    margin: 0 0 1.25rem;
    letter-spacing: 0.02em;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-link {
    font-size: 0.88rem;
    color: rgba(254, 253, 251, 0.6);
    transition: color 0.2s ease;
}
.footer-link:hover { color: #f9cfd9; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    color: rgba(254, 253, 251, 0.6);
    line-height: 1.5;
}
.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(254, 253, 251, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.footer-copyright {
    font-size: 0.8rem;
    color: rgba(254, 253, 251, 0.4);
}

/* ── Scroll Reveal (progressive enhancement) ───────────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal-left { transform: translateX(-24px); }
    .reveal-right { transform: translateX(24px); }
    .reveal.visible,
    .reveal-left.visible,
    .reveal-right.visible {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Reduced motion: ensure everything is visible */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html { scroll-behavior: auto; }
}
