/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #2a1f1f;
    background: #fdf6f0;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Custom Properties ──────────────────────────── */
:root {
    --burgundy:    #7B2D3B;
    --burgundy-deep: #5a1f2b;
    --blush:       #F5D5CC;
    --blush-light: #FDF0EC;
    --cream:       #FDF6F0;
    --cream-dark:  #F5EDE6;
    --text:        #2a1f1f;
    --text-light:  #6b5555;
    --white:       #ffffff;
    --radius:      12px;
    --radius-sm:   8px;
    --shadow:      0 4px 24px rgba(123, 45, 59, 0.08);
    --shadow-lg:   0 12px 48px rgba(123, 45, 59, 0.12);
    --font-serif:  'Playfair Display', Georgia, serif;
    --font-sans:   'Inter', system-ui, sans-serif;
    --container:   1200px;
}

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

/* ── Typography ─────────────────────────────────── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}
.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-light);
    line-height: 1.5;
    max-width: 560px;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--burgundy);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--burgundy);
    transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── Header ─────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
    background: rgba(253, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(123, 45, 59, 0.1);
}
.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}
.header.scrolled .logo { color: var(--burgundy); }
.logo-mark { color: var(--white); transition: color 0.3s ease; }
.header.scrolled .logo-mark { color: var(--burgundy); }

/* ── Nav ────────────────────────────────────────── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}
.header.scrolled .nav-menu a { color: var(--text-light); }
.nav-menu a:hover { color: var(--white); }
.header.scrolled .nav-menu a:hover { color: var(--burgundy); }
.nav-cta {
    background: var(--white);
    color: var(--burgundy) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
.nav-cta:hover {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}
.header.scrolled .nav-cta {
    background: var(--burgundy);
    color: var(--white) !important;
}
.header.scrolled .nav-cta:hover {
    background: var(--burgundy-deep) !important;
}

/* ── Mobile Nav Toggle ──────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.header.scrolled .nav-toggle-bar { background: var(--burgundy); }
.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);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: 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(
        to bottom,
        rgba(42, 31, 31, 0.45) 0%,
        rgba(123, 45, 59, 0.55) 50%,
        rgba(90, 31, 43, 0.75) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    padding: 0 24px;
}
.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 24px;
}
.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 40px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(255,255,255,0.6);
    animation: bounce 2s ease infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Intro ──────────────────────────────────────── */
.intro {
    padding: 120px 0;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.intro-text .section-headline { margin-bottom: 20px; }
.intro-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.025rem;
}
.intro-text .lead {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.3;
}
.intro-image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Features ───────────────────────────────────── */
.features {
    padding: 120px 0;
    background: var(--cream-dark);
}
.features .container { text-align: center; }
.features .section-headline { margin-bottom: 64px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}
.feature-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--blush-light);
    color: var(--burgundy);
    margin-bottom: 20px;
}
.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ── Gallery ────────────────────────────────────── */
.gallery {
    padding: 120px 0;
}
.gallery-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.gallery-header .section-headline { margin-bottom: 16px; }
.gallery-lead {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.65;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}
.gallery-item--tall {
    grid-column: 1 / 6;
    aspect-ratio: 2/3;
}
.gallery-item--wide {
    grid-column: 6 / 13;
    aspect-ratio: 2/1;
}
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 6;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── Location Strip ─────────────────────────────── */
.location-strip {
    padding: 120px 0;
    background: var(--cream-dark);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.location-info .section-headline { margin-bottom: 16px; }
.location-info p {
    color: var(--text-light);
    font-size: 1.025rem;
    line-height: 1.7;
}
.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.location-map iframe {
    width: 100%;
    height: 100%;
}

/* ── CTA / Contact ──────────────────────────────── */
.cta {
    padding: 120px 0;
    background: var(--burgundy);
    color: var(--white);
}
.cta .section-eyebrow { color: var(--blush); }
.cta .section-headline { color: var(--white); margin-bottom: 16px; }
.cta .lead { color: rgba(255,255,255,0.75); margin-bottom: 40px; }
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
}
.contact-value {
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.5;
}
.contact-item a {
    color: var(--white);
    transition: color 0.3s ease;
}
.contact-item a:hover { color: var(--blush); }

/* ── Form ───────────────────────────────────────── */
.cta-form-wrap {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}
.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b09898;
}
.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
}
.form-success svg { flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────── */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo-mark { color: var(--white); }
.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 300px;
}
.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav a {
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-nav a:hover { color: var(--blush); }
.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}
.footer-contact a {
    transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--blush); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    font-size: 0.875rem;
}

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

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        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.15);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu a {
        font-size: 1.1rem;
        color: var(--text) !important;
    }
    .nav-menu a:hover { color: var(--burgundy) !important; }
    .nav-cta {
        background: var(--burgundy) !important;
        color: var(--white) !important;
    }

    .hero-headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-image { order: -1; aspect-ratio: 16/9; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--tall,
    .gallery-item--wide,
    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
        grid-column: 1 / -1;
        aspect-ratio: 4/3;
    }
    .location-grid { grid-template-columns: 1fr; }
    .location-map { order: -1; aspect-ratio: 16/9; }
    .cta-grid { grid-template-columns: 1fr; }
    .cta-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hide-mobile { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .header-inner { padding: 16px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
}
