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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --burgundy-light: #9A3D4E;
    --blush: #F2D9D4;
    --blush-light: #FAF0ED;
    --blush-mid: #E8C4BE;
    --cream: #FDF8F6;
    --white: #FFFFFF;
    --text-dark: #1A1214;
    --text-mid: #4A3538;
    --text-light: #7A6064;
    --text-muted: #A89094;
    --line: #E8D8D4;
    --line-light: #F0E4E0;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;

    --container: 1200px;
    --header-h: 72px;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    font-size: 15px;
}

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

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(253, 248, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-light);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 1px 0 var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--burgundy);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--burgundy);
    border-radius: 50%;
}

.logo-wordmark {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

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

.nav-list a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-line {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--text-dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
    transform: rotate(45deg) translate(3px, 4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child {
    transform: rotate(-45deg) translate(3px, -4px);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn--primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--line);
}

.btn--outline:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
}

.btn--ghost {
    background: transparent;
    color: var(--burgundy);
    padding: 10px 20px;
}

.btn--ghost:hover {
    background: var(--burgundy);
    color: var(--white);
}

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

/* ─── HERO ─── */
.hero {
    padding-top: var(--header-h);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-inner {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: calc(100vh - var(--header-h));
}

.hero-content {
    padding-right: 20px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

.hero-sub {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.hero-img-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--blush);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

.hero-line {
    height: 1px;
    background: linear-gradient(to right, var(--burgundy), transparent);
    opacity: 0.2;
}

/* ─── SECTION UTILITIES ─── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* ─── INTRO ─── */
.intro {
    padding: 120px 0;
}

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

.intro-text p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-image {
    border-radius: 2px;
    overflow: hidden;
}

.intro-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ─── DIVIDER ─── */
.divider-section {
    padding: 0;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line), transparent);
}

/* ─── PRODUCTS ─── */
.products {
    padding: 100px 0 120px;
}

.products .section-title {
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-img {
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 20px;
}

.product-card-img img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-card-body h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-card-body p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-light);
}

/* ─── VALUES ─── */
.values {
    padding: 100px 0 120px;
    background: var(--blush-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-item {
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.value-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 400;
    color: var(--burgundy);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.value-item h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-light);
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 100px 0;
}

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

.cta-title {
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-mid);
}

.cta-image {
    border-radius: 2px;
    overflow: hidden;
}

.cta-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ─── VISIT ─── */
.visit {
    padding: 100px 0 120px;
    background: var(--blush-light);
}

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

.visit .section-title {
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.visit-detail-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.visit-detail-value {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.visit-detail-value a {
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    transition: color 0.2s, border-color 0.2s;
}

.visit-detail-value a:hover {
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.visit-map {
    border-radius: 2px;
    overflow: hidden;
    min-height: 400px;
}

/* ─── CONTACT ─── */
.contact {
    padding: 100px 0 120px;
}

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

.contact-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-top: 16px;
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-dark);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    outline: none;
    transition: border-color 0.2s ease;
    resize: none;
}

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

.form-input:focus {
    border-bottom-color: var(--burgundy);
}

.form-textarea {
    min-height: 100px;
}

.form-success {
    margin-top: 16px;
    font-size: 14px;
    color: var(--burgundy);
    text-align: center;
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--text-dark);
    color: var(--blush);
    padding: 80px 0 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(242, 217, 212, 0.12);
}

.footer-brand .logo-mark {
    border-color: var(--blush);
    color: var(--blush);
    margin-bottom: 12px;
}

.footer-brand .logo-wordmark {
    color: var(--white);
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 240px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 13px;
    color: var(--blush);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }

    .intro-grid,
    .cta-inner,
    .visit-grid,
    .contact-inner {
        gap: 48px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-h: 64px;
    }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 248, 246, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 28px;
    }

    .nav-list a {
        font-size: 15px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-img-wrapper {
        max-height: 400px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .intro-grid,
    .cta-inner,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro {
        padding: 80px 0;
    }

    .products {
        padding: 80px 0 100px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .values {
        padding: 80px 0 100px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .visit {
        padding: 80px 0 100px;
    }

    .contact {
        padding: 80px 0 100px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        padding-top: 24px;
    }
}

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

    .hero-headline {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

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

@media not all and (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
