*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg-dark: #000000;
    --bg-section: #070707;
    --bg-card: #0f0f0f;
    --bg-card-hover: #161616;
    --wine: #dc2626;
    --wine-deep: #7f1d1d;
    --wine-light: #f87171;
    --gold: #ef4444;
    --gold-light: #fca5a5;
    --gold-dim: #b91c1c;
    --cream: #fafafa;
    --cream-dim: #d4d4d4;
    --text-primary: #f5f5f5;
    --text-secondary: #a3a3a3;
    --text-muted: #737373;
    --border: #1f1f1f;
    --border-light: #2e2e2e;
    --on-accent: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Libre Franklin', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ====== NAVBAR ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    padding-top: max(18px, env(safe-area-inset-top));
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(239,68,68,0.12);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 16px;
}
.nav-end {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.nav-links a.nav-active {
    color: var(--gold);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-logo svg { width: 38px; height: 38px; }
.nav-brand-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--cream);
}
.nav-brand-text span { color: var(--gold); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--cream-dim);
    transition: color 0.3s var(--ease);
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
    background: var(--gold);
    color: var(--on-accent) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.06em !important;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease) !important;
}
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: rgba(239,68,68,0.12);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
    border-radius: 2px;
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ====== HERO ====== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(220,38,38,0.14) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 30%, rgba(239,68,68,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.75;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--on-accent);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: all 0.3s var(--ease);
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(239,68,68,0.25);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--cream);
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border: 1px solid var(--border-light);
    transition: all 0.3s var(--ease);
}
.btn-secondary:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
    background: rgba(239,68,68,0.06);
}
.hero-image {
    position: relative;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}
.hero-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    border: 1px solid var(--border);
}
.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65) 100%);
}
.hero-float-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.hero-float-badge .hfb-icon {
    width: 40px;
    height: 40px;
    background: rgba(239,68,68,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hfb-mark {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gold);
}
.hero-float-badge .hfb-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.hero-float-badge .hfb-text strong {
    display: block;
    color: var(--cream);
    font-size: 1rem;
}

/* ====== MARQUEE ====== */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.marquee-label {
    text-align: center;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    white-space: nowrap;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}
.marquee-item::after {
    content: '·';
    color: var(--gold-dim);
    font-size: 1.4rem;
}

/* ====== SECTIONS COMMON ====== */
.section { padding: 120px 0; }
.section-alt { background: var(--bg-section); }
.section-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 16px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-desc {
    margin: 0 auto;
}

/* ====== SERVICES / COLLECTION ====== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 30px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
a.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.service-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border-color: var(--border-light);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    text-align: center;
}
.service-icon-text {
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.2;
    padding: 0 6px;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--cream);
}
.service-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ====== PROCESS ====== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.process-card { text-align: center; }
.process-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--border-light);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s var(--ease);
}
.process-card:hover .process-num { color: var(--gold-dim); }
.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}
.process-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ====== FEATURE ROWS ====== */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}
.feature-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
}
.feature-row.reversed .feature-text { order: 2; }
.feature-row.reversed .feature-img { order: 1; }
.feature-text .section-label { margin-bottom: 12px; }
.feature-text .section-title { margin-bottom: 18px; }
.feature-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 28px;
}
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.92rem;
    transition: gap 0.3s var(--ease);
}
.feature-link:hover { gap: 14px; }
.feature-img {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16/12;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border: 1px solid var(--border);
}
.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}
.feature-img:hover img { transform: scale(1.03) translateZ(0); }
/* Full photo visible inside standard frame (zoomed out vs cover crop) */
.feature-img-zoom-out {
    background: var(--bg-card);
}
.feature-img-zoom-out img {
    object-fit: contain;
    object-position: center;
}
.feature-img-zoom-out:hover img {
    transform: scale(1.02) translateZ(0);
}

/* ====== STATS ====== */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

/* ====== TESTIMONIALS ====== */
.testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 4px 0 20px;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.4s var(--ease);
}
.testimonial-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}
.testimonial-stars {
    width: 92px;
    height: 8px;
    margin-bottom: 16px;
    border-radius: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0,
        var(--gold) 14px,
        transparent 14px,
        transparent 18px
    );
}
.testimonial-card blockquote {
    font-family: var(--font-accent);
    font-size: 1.08rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.65;
    margin-bottom: 24px;
}
.testimonial-card blockquote p {
    margin: 0 0 0.85em;
}
.testimonial-card blockquote p:last-child {
    margin-bottom: 0;
}

/* ====== REVIEWS PAGE ====== */
.reviews-page-section {
    padding-top: 160px;
}
.reviews-page-intro .reviews-back-link {
    display: block;
    margin-top: 20px;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
}
.reviews-page-intro .reviews-back-link:hover {
    color: var(--gold-light);
}
.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
    gap: 24px;
}
.reviews-page-grid .testimonial-card {
    flex: none;
    width: auto;
    max-width: none;
    min-height: 100%;
    scroll-snap-align: unset;
}
.reviews-page-grid .testimonial-card-wide {
    grid-column: 1 / -1;
    max-width: 900px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wine-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
}
.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ====== CTA ====== */
.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(220,38,38,0.12) 0%, transparent 70%);
}
.cta-section .container {
    position: relative;
    z-index: 2;
}
.cta-section .section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 18px;
}
.cta-section .section-desc {
    margin: 0 auto 40px;
    text-align: center;
}
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btns .btn-primary,
.cta-btns .btn-secondary {
    font-size: 0.95rem;
}
.cta-hours {
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}
.cta-hours strong {
    color: var(--cream);
    display: block;
    margin-bottom: 12px;
}
.cta-hours .hours-list {
    display: grid;
    grid-template-columns: auto auto;
    gap: 6px 40px;
    justify-content: center;
    margin: 0 auto;
    max-width: 320px;
    text-align: left;
}
.cta-hours .hours-list dt {
    margin: 0;
    color: var(--text-secondary);
    font-weight: 400;
}
.cta-hours .hours-list dd {
    margin: 0;
    color: var(--cream);
    font-weight: 500;
}

/* ====== FOOTER ====== */
footer {
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}
.footer-brand-text span { color: var(--gold); }
.footer-about {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 300px;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 18px;
}
.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 5px 0;
    transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ====== ANIMATIONS ====== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
@keyframes marquee {
    to { transform: translateX(-50%); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== AGE GATE ====== */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.age-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* Skip gate before paint when already verified (see inline script in <head>) */
html.age-verified .age-gate {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.age-gate-box {
    text-align: center;
    max-width: 420px;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.age-gate-box h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 8px;
}
.age-gate-box p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 32px;
}
.age-gate-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.age-gate-btns button {
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease);
    font-family: var(--font-body);
    letter-spacing: 0.04em;
}
.age-yes {
    background: var(--gold);
    color: var(--on-accent);
}
.age-yes:hover { background: var(--gold-light); }
.age-no {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--border-light) !important;
}
.age-no:hover { border-color: var(--wine-light) !important; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
    .navbar {
        background: rgba(0, 0, 0, 0.94);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
    .nav-links {
        display: none;
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
    }
    .mobile-toggle {
        display: flex;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        z-index: 1002;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 12px 20px 24px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);
        max-height: min(70vh, calc(100vh - 80px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.open li {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.open li:last-child {
        border-bottom: none;
    }
    .nav-links.open a {
        display: block;
        padding: 16px 8px;
        font-size: 0.9rem;
        text-align: center;
    }
    .nav-links.open .nav-cta {
        margin-top: 8px;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-brand-text {
        font-size: clamp(0.95rem, 4.2vw, 1.15rem);
    }
    .nav-logo svg {
        width: 34px;
        height: 34px;
    }
}
body.nav-menu-open {
    overflow: hidden;
}
@media (max-width: 768px) {
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { order: -1; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .feature-row.reversed .feature-text { order: 1; }
    .feature-row.reversed .feature-img { order: 2; }
    .stats-bar { flex-direction: column; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .testimonial-card { flex: 0 0 300px; }
    .collection-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    .cart-drawer-panel {
        width: 100%;
        max-width: 100%;
    }
}

/* ====== COLLECTION PAGE & CART ====== */
body.collection-page .collection-main {
    padding: 140px 0 100px;
    min-height: 60vh;
}
.collection-hero {
    text-align: center;
    margin-bottom: 36px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.collection-page-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 16px;
}
.collection-page-title em {
    font-style: italic;
    color: var(--gold);
}
.collection-lead {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}
.collection-lead strong {
    color: var(--cream-dim);
    font-weight: 600;
}
.collection-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: sticky;
    top: 72px;
    z-index: 50;
    padding: 16px 0 28px;
    margin-bottom: 8px;
    background: linear-gradient(180deg, var(--bg-dark) 70%, transparent);
}
.collection-tab {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--cream-dim);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.collection-tab:hover {
    border-color: var(--gold-dim);
    color: var(--cream);
}
.collection-tab.active {
    background: var(--wine-deep);
    border-color: var(--wine-light);
    color: var(--cream);
}
.collection-block {
    padding: 48px 0 64px;
    scroll-margin-top: 120px;
}
.collection-block-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--cream);
    margin-bottom: 10px;
}
.collection-block-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    max-width: 640px;
    margin-bottom: 32px;
    line-height: 1.65;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 22px;
    transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.product-card:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}
.product-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 6px;
    line-height: 1.25;
}
.product-size {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dim);
    margin-bottom: 12px;
}
.product-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 3.2em;
}
.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.product-price {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold);
}
.btn-add-cart {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background: var(--gold);
    color: var(--on-accent);
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-add-cart:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}
.nav-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 8px;
    background: rgba(239,68,68,0.14);
    color: var(--cream);
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.nav-cart-btn:hover {
    background: rgba(239,68,68,0.24);
    color: var(--gold-light);
}
.nav-cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--wine);
    color: var(--cream);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
body.cart-open {
    overflow: hidden;
}
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.35s;
}
.cart-drawer.open {
    pointer-events: auto;
    visibility: visible;
}
.cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
}
.cart-drawer.open .cart-drawer-backdrop {
    opacity: 1;
}
.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100vw);
    background: var(--bg-section);
    border-left: 1px solid var(--border);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.38s var(--ease-out);
    display: flex;
    flex-direction: column;
}
.cart-drawer.open .cart-drawer-panel {
    transform: translateX(0);
}
.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 22px 16px;
    border-bottom: 1px solid var(--border);
}
.cart-drawer-head h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--cream);
    font-weight: 600;
}
.cart-close {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--cream);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
}
.cart-close:hover {
    background: var(--border-light);
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 22px;
}
.cart-empty {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
    padding: 40px 12px;
}
.cart-line {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.cart-line:last-child {
    border-bottom: none;
}
.cart-line-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}
.cart-line-name {
    font-weight: 600;
    color: var(--cream);
    font-size: 0.95rem;
}
.cart-line-each {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.cart-line-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.cart-qty {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--cream);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.cart-qty:hover {
    border-color: var(--gold-dim);
}
.cart-qty-val {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    color: var(--cream-dim);
}
.cart-line-sub {
    margin-left: auto;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--gold);
}
.cart-drawer-foot {
    padding: 20px 22px 28px;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}
.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-secondary);
}
.cart-subtotal-row strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}
.cart-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}
.btn-cart-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    background: var(--gold);
    color: var(--on-accent) !important;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: background 0.25s var(--ease);
}
.btn-cart-cta:hover {
    background: var(--gold-light);
}
.btn-cart-clear {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.82rem;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
.btn-cart-clear:hover {
    border-color: var(--text-muted);
    color: var(--cream-dim);
}
