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

:root {
    --burgundy:    #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --blush:       #F5E6E0;
    --blush-light: #FAF3F0;
    --cream:       #FDF8F6;
    --gold:        #C8A87C;
    --text-dark:   #1A1214;
    --text-mid:    #4A3538;
    --text-light:  #7A6064;
    --white:       #FFFFFF;
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Inter', system-ui, sans-serif;
    --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

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

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 6px;
    transition: all 0.3s var(--ease);
}

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

.btn--ghost {
    background: transparent;
    color: var(--burgundy);
    border: 1.5px solid var(--burgundy);
}
.btn--ghost:hover {
    background: var(--burgundy);
    color: var(--white);
}

.btn--full { width: 100%; }

/* ── Navigation ─────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(253, 248, 246, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
    padding: 0.75rem 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s;
}

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

.nav__logo-icon {
    color: var(--white);
    transition: color 0.3s;
}
.nav.scrolled .nav__logo-icon { color: var(--burgundy); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}

.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--white); }

.nav.scrolled .nav__link { color: var(--text-mid); }
.nav.scrolled .nav__link:hover { color: var(--burgundy); }

.nav__link--cta {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    transition: all 0.3s;
}
.nav__link--cta:hover {
    background: var(--white);
    color: var(--burgundy) !important;
    border-color: var(--white);
}
.nav.scrolled .nav__link--cta {
    border-color: var(--burgundy);
    color: var(--burgundy);
}
.nav.scrolled .nav__link--cta:hover {
    background: var(--burgundy);
    color: var(--white) !important;
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav__toggle-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
.nav.scrolled .nav__toggle-line { background: var(--burgundy); }
.nav__toggle.active .nav__toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle.active .nav__toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 50%, #8B3A4A 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 25% 25%, var(--white) 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, var(--white) 1px, transparent 1px);
    background-size: 48px 48px, 32px 32px;
}

.hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.hero__card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--blush), var(--gold));
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.25rem;
}

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

.hero__sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__actions .btn--ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}
.hero__actions .btn--ghost:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

/* Stats */
.hero__stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    animation: float 4s ease-in-out infinite;
}

.stat-card:nth-child(2) { animation-delay: -1.3s; }
.stat-card:nth-child(3) { animation-delay: -2.6s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.stat-card__number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-card__number .stat-card__unit {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--gold);
}

.stat-card__label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bob 2s ease-in-out infinite;
}

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

/* ── About ──────────────────────────────────────────── */
.about {
    padding: 7rem 0;
    background: var(--cream);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__media {
    position: relative;
}

.about__image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(123, 45, 59, 0.12);
}

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

.about__image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 160px;
    height: 160px;
    background: var(--burgundy);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.1;
}

.about__content { padding: 1rem 0; }

.about__lead {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.about__content > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--blush);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.feature__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Products ───────────────────────────────────────── */
.products {
    padding: 7rem 0;
    background: var(--blush-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-sub { margin: 0 auto; }

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(123, 45, 59, 0.06);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(123, 45, 59, 0.12);
}

.product-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.product-card__overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.product-card__tag {
    display: inline-block;
    padding: 0.35rem 0.875rem;
    background: var(--burgundy);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
}

.product-card__body {
    padding: 1.75rem;
}

.product-card__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

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

/* ── Gallery ────────────────────────────────────────── */
.gallery {
    padding: 7rem 0;
    background: var(--cream);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

.gallery__item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

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

.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    aspect-ratio: 4/3;
}

.gallery__item:not(.gallery__item--large) {
    aspect-ratio: 5/4;
}

/* ── Visit ──────────────────────────────────────────── */
.visit {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
}

.visit__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.visit__detail { display: contents; }

.visit__detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.visit__detail dd {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Form */
.visit__form-wrap {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.visit__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    letter-spacing: 0.04em;
}

.form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s;
    outline: none;
}

.form__input::placeholder { color: rgba(255, 255, 255, 0.3); }
.form__input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.12);
}

.form__textarea { resize: vertical; min-height: 100px; }

.form__success {
    text-align: center;
    padding: 2rem;
    color: var(--white);
}
.form__success p {
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
    background: var(--text-dark);
    padding: 4rem 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer__logo-icon { color: var(--gold); }

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__nav a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}
.footer__nav a:hover { color: var(--white); }

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__contact a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Animations ─────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        padding-top: 7rem;
    }
    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .stat-card { flex: 1; min-width: 140px; }
    .about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .visit__card { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav__toggle { display: flex; }
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        transition: right 0.4s var(--ease);
        box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    }
    .nav__links.open { right: 0; }
    .nav__link { color: var(--text-mid) !important; font-size: 1rem; }
    .nav__link--cta {
        border-color: var(--burgundy) !important;
        color: var(--burgundy) !important;
    }
    .hero__headline { font-size: clamp(2rem, 8vw, 3rem); }
    .hero__card { padding: 2rem; }
    .products__grid { grid-template-columns: 1fr; }
    .gallery__item--large { grid-column: 1 / -1; grid-row: auto; }
    .gallery__item:not(.gallery__item--large) { aspect-ratio: 16/9; }
    .visit__details { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .stat-card { min-width: 100%; }
}
