/* ── Reset & Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: #1a1a2e;
    background: #faf8f7;
    -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; font-weight: 700; }

/* ── Utility ────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.skip-link {
    position: absolute; left: -9999px; top: auto;
    background: #4A235A; color: #fff; padding: .75rem 1.5rem;
    z-index: 200; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; top: 0; }

/* ── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 600; font-size: .9375rem;
    padding: .8125rem 1.75rem; border-radius: 8px;
    transition: background .2s, transform .15s, box-shadow .2s;
    white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-amber {
    background: #D4A017; color: #1a1a2e;
    box-shadow: 0 4px 14px rgba(212,160,23,.35);
}
.btn-amber:hover { background: #e6b420; box-shadow: 0 6px 20px rgba(212,160,23,.45); }
.btn-outline-light {
    background: transparent; color: #f5f0eb;
    border: 1.5px solid rgba(245,240,235,.45);
}
.btn-outline-light:hover { background: rgba(245,240,235,.1); border-color: rgba(245,240,235,.8); }
.btn-sm { padding: .5625rem 1.25rem; font-size: .875rem; border-radius: 6px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section helpers ────────────────────────────── */
.section { padding: 6rem 0; }
.section-header { max-width: 640px; }
.section-header--centered { text-align: center; margin: 0 auto 3.5rem; }
.section-tag {
    display: inline-block;
    font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
    color: #D4A017; margin-bottom: .875rem;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a2e; margin-bottom: 1rem;
}
.section-desc { color: #5a5a72; font-size: 1.0625rem; }

/* ── Header ─────────────────────────────────────── */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(74,35,90,.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245,240,235,.08);
    transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.header-inner {
    display: flex; align-items: center;
    height: 72px; gap: 2rem;
}
.logo { display: flex; align-items: baseline; gap: .375rem; flex-shrink: 0; }
.logo-mark {
    font-family: 'Playfair Display', serif;
    font-weight: 800; font-size: 1.375rem; color: #D4A017;
}
.logo-wordmark { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; color: #f5f0eb; }
.nav ul { display: flex; align-items: center; gap: .25rem; margin-left: auto; }
.nav a {
    display: block; padding: .5rem .875rem;
    font-size: .9375rem; font-weight: 500; color: rgba(245,240,235,.8);
    border-radius: 6px; transition: color .2s, background .2s;
}
.nav a:hover { color: #f5f0eb; background: rgba(245,240,235,.08); }
.nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 22px; height: 2px; background: #f5f0eb;
    border-radius: 2px; transition: transform .25s, opacity .25s;
}
.hamburger { position: relative; margin: auto; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────── */
.hero {
    padding-top: 72px;
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 75% 40%, rgba(74,35,90,.5) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(212,160,23,.08) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    padding: 5rem 0;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .8125rem; font-weight: 600; letter-spacing: .08em;
    color: #D4A017; text-transform: uppercase; margin-bottom: 1.5rem;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #D4A017; display: inline-block;
    box-shadow: 0 0 0 3px rgba(212,160,23,.25);
}
.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: #f5f0eb; margin-bottom: 1.5rem; line-height: 1.08;
}
.hero-desc {
    font-size: 1.125rem; color: rgba(245,240,235,.7);
    max-width: 520px; margin-bottom: 2.25rem; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.trust-item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .875rem; font-weight: 500; color: rgba(245,240,235,.65);
}
.trust-icon { width: 18px; height: 18px; color: #D4A017; flex-shrink: 0; }
.hero-visual { position: relative; }
.hero-image-wrap {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.45);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-accent {
    position: absolute; inset: 0; border-radius: 16px;
    border: 1px solid rgba(245,240,235,.1);
    pointer-events: none;
}
.hero-stats {
    position: absolute; bottom: -1.5rem; left: -1.5rem;
    z-index: 2;
}
.stat-card {
    background: #4A235A; border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.35);
    display: flex; flex-direction: column; gap: .25rem;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem; font-weight: 800; color: #D4A017; line-height: 1;
}
.stat-label { font-size: .8125rem; color: rgba(245,240,235,.7); line-height: 1.4; }

/* ── Products ───────────────────────────────────── */
.products { background: #f5f0eb; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.product-card {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,26,46,.06);
    transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,26,46,.12); }
.product-card-img { overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body { padding: 1.5rem; }
.product-card-title {
    font-size: 1.25rem; color: #1a1a2e; margin-bottom: .5rem;
}
.product-card-desc { font-size: .9375rem; color: #5a5a72; line-height: 1.65; }

/* ── About ──────────────────────────────────────── */
.about { background: #faf8f7; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-visual { position: relative; min-height: 480px; }
.about-img-main {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(26,26,46,.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-accent {
    position: absolute; bottom: -2rem; right: -2rem;
    width: 220px; height: 220px; border-radius: 12px; overflow: hidden;
    border: 4px solid #faf8f7;
    box-shadow: 0 8px 24px rgba(26,26,46,.15);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content { max-width: 520px; }
.about-text { color: #5a5a72; margin-bottom: 1.25rem; font-size: 1.0625rem; }
.about-features { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.about-feature {
    display: flex; align-items: center; gap: .875rem;
    font-size: .9375rem; color: #1a1a2e; font-weight: 500;
}
.about-feature-icon {
    width: 22px; height: 22px; color: #4A235A; flex-shrink: 0;
}

/* ── Hours ──────────────────────────────────────── */
.hours { background: #1a1a2e; }
.hours .section-title { color: #f5f0eb; }
.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}
.hours-card {
    background: rgba(245,240,235,.06);
    border: 1px solid rgba(245,240,235,.1);
    border-radius: 12px; padding: 2rem;
    transition: background .2s;
}
.hours-card:hover { background: rgba(245,240,235,.1); }
.hours-card--accent {
    background: #4A235A;
    border-color: rgba(212,160,23,.3);
}
.hours-card-header {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: .75rem; flex-wrap: wrap; gap: .5rem;
}
.hours-day { font-family: 'Playfair Display', serif; font-size: 1.375rem; font-weight: 700; color: #f5f0eb; }
.hours-time { font-size: .875rem; font-weight: 600; color: #D4A017; text-transform: uppercase; letter-spacing: .06em; }
.hours-detail { font-size: .9375rem; color: rgba(245,240,235,.65); line-height: 1.65; }
.hours-note {
    text-align: center; font-size: .9375rem; color: rgba(245,240,235,.5);
}
.hours-note a { color: #D4A017; text-decoration: underline; text-underline-offset: 3px; }
.hours-note a:hover { color: #e6b420; }

/* ── CTA ────────────────────────────────────────── */
.cta-section { background: #f5f0eb; padding: 5rem 0; }
.cta-card {
    background: #4A235A;
    border-radius: 20px;
    padding: 4rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    box-shadow: 0 16px 48px rgba(74,35,90,.25);
}
.cta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #f5f0eb; margin-bottom: .75rem;
}
.cta-desc { font-size: 1.0625rem; color: rgba(245,240,235,.7); max-width: 480px; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ── Contact ────────────────────────────────────── */
.contact { background: #faf8f7; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-item {
    display: flex; gap: 1rem; margin-bottom: 1.75rem;
}
.contact-icon {
    width: 24px; height: 24px; color: #4A235A; flex-shrink: 0; margin-top: 2px;
}
.contact-item strong {
    display: block; font-size: .8125rem; text-transform: uppercase;
    letter-spacing: .08em; color: #1a1a2e; margin-bottom: .25rem;
}
.contact-item p, .contact-item a {
    font-size: 1rem; color: #5a5a72; line-height: 1.6;
}
.contact-item a:hover { color: #4A235A; text-decoration: underline; }

/* ── Form ───────────────────────────────────────── */
.contact-form-wrap {
    background: #fff; border-radius: 16px;
    padding: 2.5rem; box-shadow: 0 4px 24px rgba(26,26,46,.07);
}
.contact-form-title {
    font-size: 1.5rem; color: #1a1a2e; margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block; font-size: .8125rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .06em;
    color: #1a1a2e; margin-bottom: .5rem;
}
.form-group input,
.form-group textarea {
    width: 100%; padding: .8125rem 1rem;
    border: 1.5px solid #e0d8d0; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: .9375rem;
    color: #1a1a2e; background: #faf8f7;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #4A235A;
    box-shadow: 0 0 0 3px rgba(74,35,90,.12);
    background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a09890; }
.form-success {
    display: flex; align-items: center; gap: .625rem;
    margin-top: 1rem; padding: 1rem; border-radius: 8px;
    background: #f0f7ee; color: #2d5a27;
    font-size: .9375rem; font-weight: 500;
}
.form-success svg { color: #4a7c2e; flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────── */
.footer { background: #111122; padding: 3rem 0; }
.footer-inner {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 1.5rem;
}
.footer-tagline { font-size: .875rem; color: rgba(245,240,235,.45); margin-top: .5rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
    font-size: .9375rem; color: rgba(245,240,235,.6);
    transition: color .2s;
}
.footer-links a:hover { color: #D4A017; }
.footer-copy { font-size: .8125rem; color: rgba(245,240,235,.3); }

/* ── Scroll reveal (progressive enhancement) ────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
    }
    .reveal.revealed { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
    .hero-grid,
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-visual { order: -1; max-width: 520px; margin: 0 auto; }
    .hero-stats { left: 50%; transform: translateX(-50%); }
    .about-visual { order: -1; min-height: 360px; }
    .about-img-accent { width: 160px; height: 160px; right: -1rem; bottom: -1rem; }
    .products-grid { grid-template-columns: 1fr; max-width: 520px; }
    .hours-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 2rem; }
    .cta-card { flex-direction: column; text-align: center; padding: 3rem 2rem; }
    .cta-desc { max-width: 100%; }
}

@media (max-width: 640px) {
    .section { padding: 4rem 0; }
    .nav { 
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(74,35,90,.98); backdrop-filter: blur(12px);
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid rgba(245,240,235,.08);
        transform: translateY(-110%); opacity: 0;
        transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .3s;
        pointer-events: none;
    }
    .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav ul { flex-direction: column; gap: .25rem; width: 100%; }
    .nav a { width: 100%; padding: .75rem 1rem; }
    .nav-toggle { display: block; }
    .hero { padding-top: 72px; }
    .hero-grid { padding: 3rem 0 4rem; }
    .hero-title { font-size: clamp(1.875rem, 7vw, 2.75rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .contact-form-wrap { padding: 1.75rem; }
}
