/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #7B2D3B;
    --burgundy-dark: #5C1F2C;
    --burgundy-deep: #3D1420;
    --blush: #F5E6D3;
    --blush-light: #FAF3EB;
    --blush-mid: #E8D5C4;
    --cream: #FDF9F5;
    --text-dark: #1A0A0E;
    --text-mid: #4A3038;
    --text-light: #7A5E66;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.nav.scrolled {
    background-color: rgba(253, 249, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
}

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

.nav.scrolled .nav__logo-sub {
    color: var(--text-light);
}

.nav.scrolled .nav__links a {
    color: var(--text-dark);
}

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

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
    transition: color 0.4s var(--ease-out);
}

.nav__logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--blush);
    transition: color 0.4s var(--ease-out);
}

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

.nav__links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: color 0.3s var(--ease-out);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--burgundy);
    transition: width 0.3s var(--ease-out);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 10px 22px !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 100px;
    transition: background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out) !important;
}

.nav__cta::after {
    display: none !important;
}

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

.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.2s;
    color: var(--white);
}

.nav__toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav__toggle svg {
    transition: transform 0.3s var(--ease-out);
}

.nav__toggle[aria-expanded="true"] svg {
    transform: rotate(90deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    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(26, 10, 14, 0.45) 0%,
        rgba(26, 10, 14, 0.35) 40%,
        rgba(26, 10, 14, 0.65) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 80px;
    width: 100%;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--blush);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

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

.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(245, 230, 211, 0.8);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--blush);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease-out) 1.2s forwards;
}

.hero__scroll svg {
    animation: bounce 2s var(--ease-in-out) infinite 1.2s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 16px 32px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

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

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

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

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

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

/* ===== SECTION LABELS ===== */
.section-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

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

/* ===== FEATURES ===== */
.features {
    padding: 120px 0;
    background-color: var(--cream);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(26, 10, 14, 0.04);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26, 10, 14, 0.1);
}

.feature-card__img {
    height: 240px;
    overflow: hidden;
}

.feature-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.feature-card:hover .feature-card__img img {
    transform: scale(1.05);
}

.feature-card__body {
    padding: 32px;
}

.feature-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--blush);
    color: var(--burgundy);
    margin-bottom: 20px;
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-card__desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 48px 0;
    background-color: var(--burgundy);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
}

.marquee__track:hover {
    animation-play-state: paused;
}

.marquee span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blush);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.marquee__dot {
    font-size: 0.5rem !important;
    color: var(--blush-mid) !important;
    opacity: 0.5;
}

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

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

.about__image-col {
    position: relative;
}

.about__image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 10, 14, 0.12);
}

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

.about__image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 12px;
    overflow: hidden;
    border: 6px solid var(--cream);
    box-shadow: 0 16px 48px rgba(26, 10, 14, 0.1);
    max-width: 280px;
}

.about__image-accent img {
    width: 100%;
    height: auto;
    display: block;
}

.about__text-col {
    padding-top: 40px;
}

.about__body {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--blush-mid);
}

.stat__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--burgundy);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.8125rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ===== EDITORIAL QUOTE ===== */
.editorial {
    padding: 120px 0;
    background-color: var(--blush);
}

.editorial__quote {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.editorial__quote-mark {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--burgundy);
    opacity: 0.12;
}

.editorial__quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.editorial__attribution {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ===== VISIT ===== */
.visit {
    padding: 120px 0;
    background-color: var(--cream);
}

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

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.visit__detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visit__detail-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--blush);
    color: var(--burgundy);
}

.visit__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.visit__detail-value {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.visit__detail a.visit__detail-value {
    color: var(--burgundy);
    font-weight: 600;
    transition: color 0.2s;
}

.visit__detail a.visit__detail-value:hover {
    color: var(--burgundy-dark);
    text-decoration: underline;
}

.visit__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 10, 14, 0.1);
    min-height: 480px;
}

.visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background-color: var(--burgundy);
}

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

.contact__text .section-title {
    color: var(--white);
}

.contact__text .section-label {
    color: var(--blush);
}

.contact__body {
    font-size: 1.0625rem;
    color: rgba(245, 230, 211, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact__direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__email,
.contact__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--blush);
    transition: color 0.2s, transform 0.2s var(--ease-out);
}

.contact__email:hover,
.contact__phone:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Form */
.contact__form-col {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 24px;
}

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

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background-color: var(--blush-light);
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-input::placeholder {
    color: var(--text-light);
}

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

.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'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

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

.contact__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 40px 20px;
}

.contact__success svg {
    color: var(--burgundy);
}

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

.contact__success p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    padding: 64px 0 40px;
    background-color: var(--burgundy-deep);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
    margin-bottom: 40px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer__tagline {
    font-size: 0.8125rem;
    color: rgba(245, 230, 211, 0.5);
    letter-spacing: 0.05em;
}

.footer__links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(245, 230, 211, 0.6);
    transition: color 0.2s;
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 230, 211, 0.4);
}

.footer__bottom a {
    color: rgba(245, 230, 211, 0.4);
    transition: color 0.2s;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ===== MOBILE MENU ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(26, 10, 14, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about__layout {
        gap: 48px;
    }

    .about__image-accent {
        right: -20px;
        bottom: -20px;
    }

    .contact__inner {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .features__grid {
        grid-template-columns: 1fr;
    }

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

    .about__image-col {
        max-width: 500px;
    }

    .about__image-accent {
        right: 0;
    }

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

    .visit__map {
        min-height: 320px;
    }

    .visit__map iframe {
        min-height: 320px;
    }

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

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background-color: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        z-index: 999;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    }

    .nav__links.open {
        transform: translateX(0);
    }

    .nav__links a {
        color: var(--text-dark) !important;
        font-size: 1.125rem;
    }

    .nav__cta {
        background-color: var(--burgundy) !important;
        color: var(--white) !important;
        border-color: var(--burgundy) !important;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__scroll {
        display: none;
    }

    .features {
        padding: 80px 0;
    }

    .about {
        padding: 80px 0;
    }

    .about__stats {
        gap: 32px;
        flex-wrap: wrap;
    }

    .editorial {
        padding: 80px 0;
    }

    .visit {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

    .contact__form-col {
        padding: 24px;
    }

    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer__links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .hero__content {
        padding-top: 100px;
    }

    .feature-card__img {
        height: 200px;
    }

    .feature-card__body {
        padding: 24px;
    }

    .about__image-main {
        border-radius: 12px;
    }

    .about__image-accent {
        position: relative;
        bottom: 0;
        right: 0;
        max-width: 100%;
        margin-top: 16px;
        border-width: 4px;
    }
}
