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

:root {
    --color-burgundy: #7B2D3B;
    --color-burgundy-dark: #5C1F2B;
    --color-burgundy-light: #9A3D4E;
    --color-blush: #FDE8E8;
    --color-blush-light: #FFF5F5;
    --color-blush-mid: #F9D5D5;
    --color-cream: #FFFAF8;
    --color-charcoal: #1A1A1A;
    --color-text: #2C2C2C;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --color-border: #F0D0D0;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--color-border);
    box-shadow: 0 1px 20px rgba(123, 45, 59, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--color-burgundy);
}

.logo--footer {
    color: var(--color-burgundy);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-burgundy);
    color: var(--color-blush);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    font-style: italic;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-burgundy);
    letter-spacing: -0.01em;
}

/* ─── Navigation ─── */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-burgundy);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--color-burgundy);
    transition: var(--transition);
}

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

.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);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
    transition: color var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-burgundy);
    transition: width var(--transition);
}

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

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

.nav-cta {
    background: var(--color-burgundy);
    color: var(--color-white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase !important;
    letter-spacing: 0.04em;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition);
}

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

.nav-cta:hover {
    background: var(--color-burgundy-dark);
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--color-burgundy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(123, 45, 59, 0.88) 0%,
            rgba(92, 31, 43, 0.92) 50%,
            rgba(76, 31, 43, 0.95) 100%
        ),
        url('https://images.pexels.com/photos/29251136/pexels-photo-29251136.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1200') center/cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-3xl) var(--space-lg);
    max-width: 860px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-blush-mid);
    margin-bottom: var(--space-md);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--color-blush);
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(253, 232, 232, 0.8);
    max-width: 520px;
    margin: 0 auto var(--space-xl);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(253, 232, 232, 0.5);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(253, 232, 232, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(253, 232, 232, 0.5);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-burgundy);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-burgundy);
    padding: 0;
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: none;
    letter-spacing: normal;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-text:hover {
    color: var(--color-burgundy-light);
    gap: 0.5rem;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 0.9375rem;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-sm);
}

/* ─── Section shared ─── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-sm);
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-charcoal);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

/* ─── Intro / Menu ─── */
.intro {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.intro-text p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.intro-text p strong {
    color: var(--color-burgundy);
}

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(123, 45, 59, 0.12);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* ─── Highlights ─── */
.highlights {
    padding: var(--space-3xl) 0;
    background: var(--color-blush-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.highlight-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(123, 45, 59, 0.1);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    color: var(--color-burgundy);
    margin-bottom: var(--space-md);
}

.highlight-icon svg {
    width: 100%;
    height: 100%;
}

.highlight-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

.highlight-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ─── Gallery ─── */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-sm);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.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.04);
}

.gallery-item--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.gallery-item--tall img {
    height: 100%;
    min-height: 420px;
}

.gallery-item--wide {
    grid-column: 5 / 13;
}

.gallery-item--wide img {
    height: 100%;
    min-height: 200px;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) img {
    height: 100%;
    min-height: 200px;
}

/* ─── About ─── */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(123, 45, 59, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.about-signature {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-burgundy);
}

/* ─── Visit ─── */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--color-burgundy);
    text-align: center;
}

.visit .section-eyebrow {
    color: var(--color-blush-mid);
}

.visit .section-headline {
    color: var(--color-white);
    margin-bottom: var(--space-xl);
}

.visit-content {
    max-width: 700px;
    margin: 0 auto;
}

.visit-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.visit-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.visit-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(253, 232, 232, 0.5);
}

.visit-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.4;
}

.visit-link {
    color: var(--color-blush);
    transition: color var(--transition);
}

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

.visit-divider {
    width: 1px;
    height: 48px;
    background: rgba(253, 232, 232, 0.2);
}

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

.visit .btn-primary:hover {
    background: var(--color-blush);
    border-color: var(--color-blush);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.visit .btn-primary svg {
    width: 18px;
    height: 18px;
}

/* ─── CTA / Contact ─── */
.cta {
    padding: var(--space-3xl) 0;
    background: var(--color-blush-light);
    border-top: 1px solid var(--color-border);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content > .section-headline {
    margin-bottom: var(--space-sm);
}

.cta-content > p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.contact-form {
    text-align: left;
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(123, 45, 59, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-cream);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    background: rgba(123, 45, 59, 0.06);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    color: var(--color-burgundy);
    text-align: center;
    font-weight: 500;
}

/* ─── Footer ─── */
.site-footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    background: var(--color-charcoal);
    color: rgba(253, 232, 232, 0.6);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-lg);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(253, 232, 232, 0.1);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.logo--footer .logo-mark {
    background: var(--color-burgundy);
}

.logo--footer .logo-text {
    color: var(--color-blush);
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(253, 232, 232, 0.5);
    max-width: 280px;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: rgba(253, 232, 232, 0.35);
}

.footer-bottom a {
    color: rgba(253, 232, 232, 0.5);
    transition: color var(--transition);
}

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

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .intro-grid,
    .about-grid {
        gap: var(--space-xl);
    }

    .gallery-item--tall {
        grid-column: 1 / 7;
    }

    .gallery-item--wide {
        grid-column: 7 / 13;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1rem;
    }

    .nav-cta {
        margin-top: var(--space-sm);
    }

    .hero-headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .intro-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .intro-image,
    .about-image {
        order: -1;
    }

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

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

    .gallery-item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .gallery-item--tall img {
        min-height: 280px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
    }

    .visit-details {
        flex-direction: column;
        gap: var(--space-md);
    }

    .visit-divider {
        width: 48px;
        height: 1px;
    }

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

    .footer-top {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

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

    .gallery-item--wide {
        grid-column: 1;
    }

    .contact-form {
        padding: var(--space-lg);
    }
}
