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

:root {
    --plum-50: #fdf2f8;
    --plum-100: #fce7f3;
    --plum-200: #f9dfe6;
    --plum-300: #f0b8c8;
    --plum-400: #e08aad;
    --plum-500: #c45a7e;
    --plum-600: #a83d60;
    --plum-700: #8a2e4a;
    --plum-800: #4A1942;
    --plum-900: #2d0f29;
    --plum-950: #1a0818;

    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;

    --cream: #FFFBF5;
    --warm-white: #FFF8EE;
    --text-dark: #1A0A14;
    --text-mid: #4A3040;
    --text-light: #7A5A6A;

    --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: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--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-md);
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--amber-700);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--plum-800);
    margin-bottom: var(--space-lg);
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 242, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74, 25, 66, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(74, 25, 66, 0.1);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.25rem;
    color: var(--plum-800);
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--plum-800);
    color: var(--amber-400);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--plum-800);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--plum-800);
    padding: 0.5rem;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) var(--space-md);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 40%, rgba(168, 61, 96, 0.7) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 60%, rgba(245, 158, 11, 0.5) 0%, transparent 55%),
        radial-gradient(ellipse 90% 50% at 50% 100%, rgba(74, 25, 66, 0.9) 0%, transparent 60%),
        linear-gradient(160deg, #2d0f29 0%, #4A1942 30%, #8a2e4a 55%, #d97706 80%, #fbbf24 100%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
    color: #fff;
}

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

.hero-headline {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

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

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto var(--space-lg);
}

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

.hero-divider {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
    color: rgba(255,255,255,0.5);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--amber-500);
    color: var(--plum-950);
}

.btn-primary:hover {
    background: var(--amber-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}

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

/* ========== MARQUEE ========== */
.marquee {
    overflow: hidden;
    background: var(--plum-800);
    padding: var(--space-sm) 0;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: var(--space-md);
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--amber-300);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-dot {
    color: var(--plum-600);
    flex-shrink: 0;
    font-size: 0.6rem;
}

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

/* ========== ABOUT ========== */
.about {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

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

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(74, 25, 66, 0.15);
}

.about-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--amber-400);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.6;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(74, 25, 66, 0.12);
}

.stat dt {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum-600);
    margin-bottom: 0.25rem;
}

.stat dd {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plum-800);
}

/* ========== PRODUCTS ========== */
.products {
    padding: var(--space-3xl) 0;
    background: var(--plum-800);
    color: #fff;
}

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

.products .section-eyebrow {
    color: var(--amber-400);
}

.products .section-title {
    color: #fff;
    margin-bottom: var(--space-sm);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.product-card {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.product-card--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.product-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card--large .product-card-image {
    aspect-ratio: 3/4;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-body {
    padding: var(--space-lg);
}

.product-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber-400);
    background: rgba(251, 191, 36, 0.12);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    margin-bottom: var(--space-sm);
}

.product-card-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.product-card-body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.product-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-list li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    padding-left: 1.25rem;
    position: relative;
}

.product-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    background: var(--amber-500);
    border-radius: 50%;
}

/* ========== VISIT ========== */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.visit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(74, 25, 66, 0.08);
    box-shadow: 0 20px 60px rgba(74, 25, 66, 0.08);
}

.visit-content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-content .section-title {
    margin-bottom: var(--space-lg);
}

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

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.visit-icon {
    flex-shrink: 0;
    color: var(--plum-600);
    margin-top: 0.15rem;
}

.visit-detail strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum-600);
    margin-bottom: 0.2rem;
}

.visit-detail span,
.visit-detail a {
    font-size: 1rem;
    color: var(--text-dark);
}

.visit-detail a:hover {
    color: var(--amber-700);
    text-decoration: underline;
}

.visit-map {
    position: relative;
    min-height: 400px;
}

.map-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--plum-800);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.map-overlay:hover {
    background: var(--plum-700);
}

/* ========== CONTACT ========== */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

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

.contact-info p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-quick-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--plum-800);
    font-weight: 500;
    padding: 0.75rem 1rem;
    background: rgba(74, 25, 66, 0.05);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}

.contact-quick-item:hover {
    background: var(--plum-800);
    color: #fff;
}

.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 10px 40px rgba(74, 25, 66, 0.08);
    border: 1px solid rgba(74, 25, 66, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-mid);
}

.form-group .optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-light);
    font-size: 0.75rem;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1.5px solid rgba(74, 25, 66, 0.12);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(168, 61, 96, 0.1);
}

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

.btn-submit {
    align-self: flex-start;
    margin-top: var(--space-xs);
}

.form-success {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
}

.form-success svg {
    color: var(--amber-600);
    margin-bottom: var(--space-sm);
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--plum-800);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-mid);
    font-size: 0.95rem;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--plum-950);
    color: rgba(255,255,255,0.6);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: var(--space-md);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

.footer-nav {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    font-size: 0.8rem;
}

.footer-bottom a {
    color: var(--amber-400);
    transition: color 0.2s ease;
}

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

/* ========== SCROLL REVEAL (progressive enhancement) ========== */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .product-card--large {
        grid-column: auto;
        grid-row: auto;
    }

    .product-card--large .product-card-image {
        aspect-ratio: 4/3;
    }

    .visit-card {
        grid-template-columns: 1fr;
    }

    .visit-map {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 242, 248, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        border-bottom: 1px solid rgba(74, 25, 66, 0.08);
    }

    .nav-list.open {
        max-height: 300px;
        padding: var(--space-md) 0;
    }

    .nav-link {
        padding: var(--space-sm) var(--space-md);
        font-size: 1rem;
    }

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

    .hero {
        min-height: 90vh;
        padding: var(--space-2xl) var(--space-md);
    }

    .hero-headline {
        font-size: clamp(1.75rem, 8vw, 2.75rem);
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav {
        gap: var(--space-sm);
    }

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

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

    .visit-content {
        padding: var(--space-lg);
    }

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