/* Vasanthamayil — Solid retail design system */

:root {
    --font-display: 'Lora', Georgia, 'Times New Roman', serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --burgundy: #832729;
    --burgundy-dark: #6a1f21;
    --burgundy-light: #9a3336;
    --royal: #832729;
    --royal-dark: #6a1f21;
    --royal-btn: #832729;
    --announcement-blue: #832729;
    --gold: #c9a227;
    --gold-light: #e8d48a;
    --maroon: #832729;
    --peacock-green: #2a6b52;
    --cream: #ffffff;
    --legacy-cream: #f7f7f7;
    --white: #ffffff;
    --border: #e5e5e5;
    --ink: #1a1a1a;
    --ink-muted: #666666;
    --ink-light: #999999;
    --section-gap: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.site-body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--ink);
    background: var(--cream);
}

p, li, label, input, textarea, select, address {
    font-family: var(--font-body);
}

h1, h2, h3, h4, .font-display, .section-title {
    font-family: var(--font-display);
    font-weight: 600;
}

h1, h2, h3, h4, .font-display, .section-title {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Announcement — Tanishq-style burgundy strip */
.announcement-bar {
    background: var(--burgundy);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.02em;
    border-bottom: none;
}

.announcement-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    padding: 9px 20px;
    max-width: 1440px;
    margin: 0 auto;
}

.announcement-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.35);
    flex-shrink: 0;
}

.announcement-sep--hide-sm { display: none; }

@media (min-width: 640px) {
    .announcement-sep--hide-sm { display: block; }
}

.announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s;
}

.announcement-link:hover {
    opacity: 0.85;
    color: #fff;
}

.announcement-link--hide-sm { display: none; }

@media (min-width: 640px) {
    .announcement-link--hide-sm { display: inline-flex; }
}

.site-logo { max-width: 170px; height: auto; }

/* Header bar */
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 72px;
}

@media (min-width: 1024px) {
    .header-bar { height: 84px; }
}

@media (max-width: 1279px) {
    .header-bar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 8px;
    }

    .btn-order--compact { justify-self: start; }
    .site-brand { justify-self: center; }
    .header-actions { justify-self: end; }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Site navigation */
.site-nav {
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

#site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.25s ease;
}

#site-header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.site-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-radius: 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav-link:hover {
    color: var(--burgundy);
    background: transparent;
}

.site-nav-link.active {
    color: var(--burgundy);
    font-weight: 700;
    background: transparent;
    border-bottom-color: var(--burgundy);
}

.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--burgundy);
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--burgundy);
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-order:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    color: #fff;
}

.btn-order--compact {
    padding: 8px 14px;
    font-size: 13px;
}

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

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--cream);
    color: var(--ink);
    font-size: 17px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.menu-toggle:hover {
    background: var(--white);
    border-color: var(--gold);
    color: var(--maroon);
}

/* Brand lockup */
.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.site-brand:hover .site-brand-name { color: var(--burgundy); }

.site-brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .site-brand-logo {
        width: 56px;
        height: 56px;
    }
}

.site-brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.2;
}

.site-brand-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.2s;
}

@media (min-width: 640px) {
    .site-brand-name { font-size: 1.125rem; }
}

@media (min-width: 1280px) {
    .site-brand-name { font-size: 1.25rem; }
}

.site-brand-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: 0.02em;
}

@media (min-width: 640px) {
    .site-brand-sub { font-size: 12px; }
}

.site-brand-tagline {
    display: none;
    font-family: var(--font-display);
    font-size: 11px;
    font-style: italic;
    font-weight: 500;
    color: var(--ink-light);
    margin-top: 2px;
}

@media (min-width: 1280px) {
    .site-brand-tagline { display: block; }
}

@media (max-width: 639px) {
    .header-bar {
        min-height: 72px;
        height: auto;
        padding: 8px 0;
    }

    .header-bar .site-brand-sub {
        display: block;
        font-size: 9px;
        letter-spacing: 0.04em;
        line-height: 1.2;
    }

    .header-bar .site-brand-name {
        font-size: 0.95rem;
        line-height: 1.15;
    }

    .site-brand-logo {
        width: 42px;
        height: 42px;
    }
}

.site-brand--sidebar .site-brand-tagline { display: block; }

/* Mobile sidebar */
.sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sidebar-backdrop.is-open {
    opacity: 1;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 70;
    width: min(320px, 88vw);
    height: 100%;
    background: var(--white);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}

.mobile-sidebar.is-open { transform: translateX(0); }

.mobile-sidebar-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 16px 16px;
    border-bottom: 1px solid var(--border);
}

.sidebar-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--cream);
    color: var(--ink);
    border-radius: 4px;
    cursor: pointer;
}

.sidebar-close:hover { background: var(--border); }

.mobile-sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-sidebar-nav .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-muted);
    text-decoration: none;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.mobile-sidebar-nav .mobile-nav-link::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.mobile-sidebar-nav .mobile-nav-link:hover {
    color: var(--burgundy);
    background: rgba(131, 39, 41, 0.04);
    border-left-color: var(--gold);
}

.mobile-sidebar-nav .mobile-nav-link:hover::before {
    background: var(--gold);
    transform: scale(1.2);
}

.mobile-sidebar-nav .mobile-nav-link.active {
    color: var(--burgundy);
    background: rgba(131, 39, 41, 0.06);
    border-left-color: var(--burgundy);
    font-weight: 700;
}

.mobile-sidebar-nav .mobile-nav-link.active::before {
    background: var(--burgundy);
}

/* Section typography — Tanishq-style */
.section-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--maroon);
    margin-bottom: 12px;
}

.section-eyebrow.line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow.line::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--maroon);
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 16px;
    text-align: inherit;
}

.section-lead {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-muted);
    max-width: 640px;
}

/* Buttons — Tanishq burgundy */
.btn-primary,
.btn-secondary,
.btn-gold,
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-primary {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
}

.btn-primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}

.btn-secondary:hover {
    background: var(--burgundy);
    color: #fff;
}

.btn-gold {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

.btn-icon { font-size: 1.05em; }

/* Images */
.vm-img { width: 100%; height: 100%; object-fit: cover; }

.img-frame {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Hero */
.hero-slider { position: relative; overflow: hidden; }

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}

.hero-slide.active { opacity: 1; z-index: 1; pointer-events: auto; }

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(21, 48, 102, 0.72);
}

.hero-banner .hero-slide::after { display: none; }

.hero-slide-link {
    display: block;
    position: absolute;
    inset: 0;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .section-eyebrow { color: rgba(255,255,255,0.9); }
.hero-slider .section-eyebrow.line::before { background: var(--gold); }

.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
}

.hero-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s;
}

.hero-dots button.active {
    background: var(--burgundy);
    width: 22px;
    border-radius: 0;
}

/* Legacy / trust statistics */
.legacy-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(165deg, #fdf9f4 0%, #f6efe4 42%, #f3e8dc 100%);
    padding: 80px 0 88px;
    border-top: 1px solid rgba(201, 162, 39, 0.22);
    border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.legacy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 15% 20%, rgba(131, 39, 41, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 75%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.legacy-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(131, 39, 41, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.legacy-section-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.legacy-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px;
}

.legacy-head-pattern {
    display: none;
}

.legacy-section-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0 0 16px;
}

.legacy-section-ornament {
    display: block;
    width: 72px;
    height: 1px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--burgundy) 50%, var(--gold) 80%, transparent);
}

.legacy-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--ink);
    margin: 0 0 14px;
}

.legacy-section-subtitle {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    line-height: 1.65;
    color: var(--ink-muted);
    margin: 0;
}

.legacy-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (min-width: 1024px) {
    .legacy-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
}

.legacy-card {
    position: relative;
    text-align: center;
    padding: 36px 24px 30px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 0;
    border: 1px solid rgba(131, 39, 41, 0.1);
    box-shadow: 0 8px 32px rgba(26, 26, 26, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.legacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--burgundy));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.legacy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(131, 39, 41, 0.28);
    box-shadow: 0 18px 44px rgba(131, 39, 41, 0.12);
}

.legacy-card:hover::before {
    transform: scaleX(1);
}

.legacy-card-icon-wrap {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: linear-gradient(145deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 6px 18px rgba(131, 39, 41, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.legacy-card:hover .legacy-card-icon-wrap {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(131, 39, 41, 0.28);
}

.legacy-card-icon {
    font-size: 19px;
    color: #fff;
}

.legacy-card-num {
    font-family: var(--font-display);
    font-size: clamp(2.125rem, 3.8vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    margin: 0 0 12px;
    color: var(--burgundy);
    letter-spacing: -0.02em;
}

.legacy-card-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 10px;
}

.legacy-card-sub {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-light);
    margin: 0 auto;
    max-width: 220px;
}

@media (max-width: 639px) {
    .legacy-section {
        padding: 52px 0 56px;
    }

    .legacy-section-inner {
        padding: 0 16px;
    }

    .legacy-section-head {
        margin-bottom: 32px;
    }

    .legacy-card {
        padding: 20px 12px 18px;
    }

    .legacy-card-icon-wrap {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .legacy-card-icon {
        font-size: 16px;
    }

    .legacy-card-num {
        font-size: 1.65rem;
        margin-bottom: 8px;
    }

    .legacy-card-label {
        font-size: 10px;
        letter-spacing: 0.03em;
        margin-bottom: 6px;
    }

    .legacy-card-sub {
        font-size: 11px;
        line-height: 1.45;
        max-width: none;
    }
}

.legacy-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.legacy-reveal.is-visible {
    opacity: 1;
    transform: none;
}

.no-js .legacy-reveal {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .legacy-card { transition: none; }
    .legacy-card:hover { transform: none; }
    .legacy-card::before { transform: scaleX(1); }
    .legacy-card:hover .legacy-card-icon-wrap { transform: none; }
    .legacy-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Difference — premium quote band */
.difference-band {
    position: relative;
    overflow: hidden;
    padding: 80px 24px 88px;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 48%, var(--burgundy-dark) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.45);
    border-bottom: 1px solid rgba(201, 162, 39, 0.45);
    text-align: center;
}

.difference-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 65%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 52px,
            rgba(255, 255, 255, 0.02) 52px,
            rgba(255, 255, 255, 0.02) 53px
        );
    pointer-events: none;
}

.difference-band::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(520px, 80vw);
    height: min(520px, 80vw);
    transform: translate(-50%, -50%);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.difference-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.difference-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 18px;
}

.difference-ornament {
    display: block;
    width: 88px;
    height: 1px;
    margin: 0 auto 28px;
    background: linear-gradient(90deg, transparent, var(--gold) 15%, rgba(255, 255, 255, 0.6) 50%, var(--gold) 85%, transparent);
}

.difference-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.625rem);
    font-weight: 600;
    line-height: 1.22;
    color: #fff;
    margin: 0 0 22px;
}

.difference-body {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 36px;
}

.difference-quote {
    position: relative;
    margin: 0;
    padding: 28px 32px 28px 40px;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-style: italic;
    line-height: 1.65;
    color: var(--gold-light);
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-left: 3px solid var(--gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.difference-quote-mark {
    position: absolute;
    top: 6px;
    left: 14px;
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: rgba(201, 162, 39, 0.35);
}

@media (max-width: 639px) {
    .difference-band {
        padding: 56px 20px 64px;
    }

    .difference-quote {
        padding: 24px 20px 24px 32px;
        text-align: left;
    }
}

/* Legacy quote band (inner pages) */
.quote-band {
    background: var(--burgundy-dark);
    border-top: none;
    border-bottom: none;
}

.quote-band .section-eyebrow { color: rgba(255, 255, 255, 0.75); }
.quote-band .section-title.light { color: #fff; }

/* Google-style reviews — full-width infinite scroll */
.reviews-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.reviews-head {
    max-width: 720px;
    margin: 0 auto 44px;
    padding: 0 24px;
    text-align: center;
}

.reviews-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0 0 16px;
}

.reviews-ornament {
    display: block;
    width: 72px;
    height: 1px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--burgundy) 50%, var(--gold) 80%, transparent);
}

.reviews-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--ink);
    margin: 0 0 20px;
}

.reviews-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #5f6368;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12);
}

.reviews-google-icon {
    font-size: 18px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 38%, #fbbc04 68%, #ea4335 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.reviews-marquee {
    width: 100%;
}

.reviews-marquee-viewport {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.reviews-marquee-track {
    display: flex;
    width: max-content;
    gap: 20px;
    padding: 6px 0 10px;
    animation: reviews-marquee-scroll 60s linear infinite;
}

.reviews-marquee:hover .reviews-marquee-track {
    animation-play-state: paused;
}

.google-review-card {
    flex: 0 0 auto;
    width: min(360px, 82vw);
    padding: 20px 20px 22px;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08), 0 2px 8px rgba(60, 64, 67, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.google-review-card:hover {
    box-shadow: 0 4px 16px rgba(60, 64, 67, 0.14);
    transform: translateY(-3px);
}

.google-review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.google-review-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.google-review-meta-wrap {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.google-review-name {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #202124;
    line-height: 1.3;
}

.google-review-meta {
    display: block;
    font-size: 12px;
    color: #5f6368;
    line-height: 1.4;
    margin-top: 2px;
}

.google-review-g {
    flex-shrink: 0;
    font-size: 18px;
    color: #4285f4;
    opacity: 0.85;
}

.google-review-stars {
    display: flex;
    gap: 1px;
    margin-bottom: 10px;
}

.google-review-star {
    font-size: 16px;
    line-height: 1;
    color: #fbbc04;
}

.google-review-text {
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    color: #3c4043;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes reviews-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .reviews-marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .reviews-marquee-viewport {
        mask-image: none;
    }

    .google-review-card {
        width: min(360px, 100%);
    }

    .google-review-card:hover {
        transform: none;
    }
}

/* WhatsApp order section */
.wa-order-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 88px;
    background: linear-gradient(165deg, #ffffff 0%, #faf6f1 52%, #f5efe6 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.18);
    border-bottom: 1px solid var(--border);
}

.wa-order-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 45% at 10% 20%, rgba(37, 211, 102, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 90% 80%, rgba(131, 39, 41, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.wa-order-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.wa-order-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start;
}

@media (min-width: 1024px) {
    .wa-order-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 48px;
    }
}

.wa-order-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0 0 16px;
}

.wa-order-ornament {
    display: block;
    width: 72px;
    height: 1px;
    margin: 0 0 20px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--burgundy) 50%, var(--gold) 100%);
}

.wa-order-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 18px;
}

.wa-order-lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-muted);
    margin: 0 0 14px;
}

.wa-order-note {
    font-family: var(--font-display);
    font-size: 15px;
    font-style: italic;
    line-height: 1.65;
    color: var(--ink-light);
    margin: 0 0 28px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-left: 3px solid var(--gold);
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    border-right: 1px solid rgba(201, 162, 39, 0.1);
}

.wa-order-branches {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.wa-branch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(131, 39, 41, 0.12);
    box-shadow: 0 6px 24px rgba(26, 26, 26, 0.04);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.wa-branch-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 211, 102, 0.45);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.12);
    color: var(--burgundy-dark);
}

.wa-branch-btn-icon {
    font-size: 18px;
    color: #25d366;
}

.wa-order-panel {
    padding: 32px 28px 30px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(131, 39, 41, 0.12);
    border-top: 4px solid var(--burgundy);
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.07);
}

.wa-order-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.wa-order-panel-icon {
    font-size: 28px;
    color: #25d366;
}

.wa-order-panel-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    line-height: 1.25;
}

.wa-order-steps {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wa-order-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.wa-order-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 4px 14px rgba(131, 39, 41, 0.2);
}

.wa-order-step-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-muted);
    padding-top: 6px;
}

.wa-order-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-order-btn {
    width: 100%;
    justify-content: center;
}

.wa-order-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--burgundy);
    background: transparent;
    border: 1px solid var(--burgundy);
    transition: background 0.2s ease, color 0.2s ease;
}

.wa-order-btn-outline:hover {
    background: var(--burgundy);
    color: #fff;
}

@media (max-width: 639px) {
    .wa-order-section {
        padding: 56px 0 64px;
    }

    .wa-order-inner {
        padding: 0 16px;
    }

    .wa-order-ornament {
        margin-left: auto;
        margin-right: auto;
    }

    .wa-order-content {
        text-align: center;
    }

    .wa-order-note {
        text-align: left;
    }
}

/* Instagram — full-width infinite scroll */
.insta-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 80px;
    background: linear-gradient(180deg, #faf6f1 0%, #ffffff 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.18);
}

.insta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 45% 40% at 15% 25%, rgba(131, 39, 41, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 85% 75%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.insta-head {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto 44px;
    padding: 0 24px;
    text-align: center;
}

.insta-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0 0 16px;
}

.insta-ornament {
    display: block;
    width: 72px;
    height: 1px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--burgundy) 50%, var(--gold) 80%, transparent);
}

.insta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--ink);
    margin: 0 0 12px;
}

.insta-lead {
    font-family: var(--font-display);
    font-size: 15px;
    font-style: italic;
    line-height: 1.65;
    color: var(--ink-muted);
    margin: 0 0 24px;
}

.insta-cta {
    display: inline-flex;
}

.insta-marquee {
    position: relative;
    z-index: 1;
    width: 100%;
}

.insta-marquee-viewport {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.insta-marquee-track {
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 4px 0 8px;
    animation: insta-marquee-scroll 45s linear infinite;
}

.insta-marquee:hover .insta-marquee-track {
    animation-play-state: paused;
}

.insta-tile {
    position: relative;
    flex: 0 0 auto;
    width: min(240px, 42vw);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(131, 39, 41, 0.12);
    box-shadow: 0 8px 28px rgba(26, 26, 26, 0.08);
    text-decoration: none;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.insta-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 3px solid var(--gold);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.insta-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(131, 39, 41, 0.28);
    box-shadow: 0 18px 44px rgba(131, 39, 41, 0.12);
}

.insta-tile:hover::before {
    opacity: 1;
}

.insta-tile .vm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.insta-tile:hover .vm-img {
    transform: scale(1.08);
}

.insta-tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(106, 31, 33, 0.55);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
}

.insta-tile:hover .insta-tile-overlay {
    opacity: 1;
}

.insta-tile-icon {
    font-size: 2rem;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

@keyframes insta-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .insta-marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        gap: 12px;
    }

    .insta-marquee-viewport {
        mask-image: none;
    }

    .insta-tile {
        width: min(240px, calc(50% - 8px));
    }

    .insta-tile .vm-img,
    .insta-tile-overlay {
        transition: none;
    }

    .insta-tile:hover {
        transform: none;
    }

    .insta-tile:hover .vm-img {
        transform: none;
    }
}

/* Occasions — shop by occasion */
.occasions-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 84px;
    background: linear-gradient(180deg, #ffffff 0%, #faf6f1 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.18);
    border-bottom: 1px solid var(--border);
}

.occasions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 40% 50% at 8% 30%, rgba(163, 48, 74, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 35% 45% at 28% 85%, rgba(196, 92, 38, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 35% 45% at 52% 20%, rgba(42, 107, 82, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 35% 45% at 72% 75%, rgba(107, 58, 110, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 92% 35%, rgba(46, 74, 122, 0.07) 0%, transparent 55%);
    pointer-events: none;
}

.occasions-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.occasions-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
}

.occasions-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0 0 16px;
}

.occasions-ornament {
    display: block;
    width: 72px;
    height: 1px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--burgundy) 50%, var(--gold) 80%, transparent);
}

.occasions-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--ink);
    margin: 0 0 12px;
}

.occasions-lead {
    font-family: var(--font-display);
    font-size: 16px;
    font-style: italic;
    line-height: 1.65;
    color: var(--ink-muted);
    margin: 0;
}

.occasions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 640px) {
    .occasions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .occasions-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .occasions-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 16px;
    }
}

.occasion-card {
    --occ-accent: var(--burgundy);
    --occ-accent-dark: var(--burgundy-dark);
    --occ-highlight: var(--gold);
    --occ-surface: rgba(255, 255, 255, 0.94);
    --occ-tint: rgba(131, 39, 41, 0.05);
    --occ-border: rgba(131, 39, 41, 0.12);
    --occ-glow: rgba(131, 39, 41, 0.14);
    --occ-num: rgba(201, 162, 39, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 34px 22px 30px;
    background: linear-gradient(168deg, var(--occ-surface) 0%, var(--occ-tint) 100%);
    border: 1px solid var(--occ-border);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.05);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.occasion-card[data-theme="wedding"] {
    --occ-accent: #a3304a;
    --occ-accent-dark: #7a2234;
    --occ-highlight: #e8c872;
    --occ-tint: rgba(163, 48, 74, 0.09);
    --occ-border: rgba(163, 48, 74, 0.2);
    --occ-glow: rgba(163, 48, 74, 0.2);
    --occ-num: rgba(163, 48, 74, 0.16);
}

.occasion-card[data-theme="festival"] {
    --occ-accent: #c45c26;
    --occ-accent-dark: #9a4518;
    --occ-highlight: #f0c14a;
    --occ-tint: rgba(196, 92, 38, 0.1);
    --occ-border: rgba(196, 92, 38, 0.22);
    --occ-glow: rgba(196, 92, 38, 0.22);
    --occ-num: rgba(196, 92, 38, 0.17);
}

.occasion-card[data-theme="daily"] {
    --occ-accent: #2a6b52;
    --occ-accent-dark: #1f5240;
    --occ-highlight: #8fd4b4;
    --occ-tint: rgba(42, 107, 82, 0.09);
    --occ-border: rgba(42, 107, 82, 0.2);
    --occ-glow: rgba(42, 107, 82, 0.2);
    --occ-num: rgba(42, 107, 82, 0.16);
}

.occasion-card[data-theme="gifting"] {
    --occ-accent: #6b3a6e;
    --occ-accent-dark: #522c55;
    --occ-highlight: #d4a8d6;
    --occ-tint: rgba(107, 58, 110, 0.09);
    --occ-border: rgba(107, 58, 110, 0.2);
    --occ-glow: rgba(107, 58, 110, 0.2);
    --occ-num: rgba(107, 58, 110, 0.16);
}

.occasion-card[data-theme="new"] {
    --occ-accent: #2e4a7a;
    --occ-accent-dark: #1f3558;
    --occ-highlight: #7eb8e8;
    --occ-tint: rgba(46, 74, 122, 0.09);
    --occ-border: rgba(46, 74, 122, 0.2);
    --occ-glow: rgba(46, 74, 122, 0.2);
    --occ-num: rgba(46, 74, 122, 0.16);
}

.occasion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--occ-accent-dark), var(--occ-highlight), var(--occ-accent));
    transform: scaleX(0.4);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.occasion-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -25%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--occ-glow) 0%, transparent 68%);
    pointer-events: none;
    opacity: 0.55;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.occasion-card:hover {
    transform: translateY(-7px);
    border-color: color-mix(in srgb, var(--occ-accent) 38%, white);
    box-shadow: 0 22px 50px var(--occ-glow);
}

.occasion-card:hover::before {
    transform: scaleX(1);
}

.occasion-card:hover::after {
    opacity: 1;
    transform: scale(1.08);
}

.occasion-card-num {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1;
    color: var(--occ-num);
    pointer-events: none;
}

.occasion-card-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(148deg, var(--occ-accent) 0%, var(--occ-accent-dark) 100%);
    border: 1px solid color-mix(in srgb, var(--occ-highlight) 50%, transparent);
    box-shadow:
        0 10px 26px var(--occ-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.occasion-card:hover .occasion-card-icon-wrap {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 16px 34px var(--occ-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.occasion-card-icon {
    font-size: 23px;
    color: #fff;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.occasion-card-name {
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.occasion-card:hover .occasion-card-name {
    color: var(--occ-accent-dark);
}

.occasion-card-sub {
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-light);
    margin: 0 0 20px;
}

.occasion-card-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.occasion-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--occ-accent);
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid color-mix(in srgb, var(--occ-accent) 12%, var(--border));
    width: 100%;
    justify-content: center;
    transition: gap 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.occasion-card-cta i,
.occasion-card-cta svg {
    font-size: 10px;
    transition: transform 0.25s ease;
}

.occasion-card:hover .occasion-card-cta {
    color: var(--occ-accent-dark);
    gap: 12px;
    border-top-color: color-mix(in srgb, var(--occ-accent) 28%, var(--border));
}

.occasion-card:hover .occasion-card-cta i,
.occasion-card:hover .occasion-card-cta svg {
    transform: translateX(3px);
}

@media (max-width: 639px) {
    .occasion-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 18px 20px 18px 22px;
        gap: 0 16px;
    }

    .occasion-card::before {
        height: 100%;
        width: 4px;
        right: auto;
        bottom: 0;
        transform: scaleY(1);
        background: linear-gradient(180deg, var(--occ-accent-dark), var(--occ-highlight), var(--occ-accent));
    }

    .occasion-card-num {
        display: none;
    }

    .occasion-card-icon-wrap {
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        margin: 0;
    }

    .occasion-card-name,
    .occasion-card-sub {
        margin-bottom: 4px;
    }

    .occasion-card-sub {
        margin-bottom: 0;
    }

    .occasion-card-text {
        flex: 1;
    }

    .occasion-card-cta {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .occasion-card,
    .occasion-card-icon-wrap,
    .occasion-card-cta i,
    .occasion-card-cta svg {
        transition: none;
    }

    .occasion-card:hover {
        transform: none;
    }

    .occasion-card:hover .occasion-card-icon-wrap {
        transform: none;
    }
}

/* Legacy occasion tab styles (categories page) */
.occasion-tab {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    min-width: 140px;
    flex-shrink: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.occasion-tab:hover,
.occasion-tab.active {
    border-color: var(--burgundy);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.occasion-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--legacy-cream);
    color: var(--burgundy);
    border-radius: 0;
    font-size: 18px;
}

.occasion-tab.active .occasion-icon {
    background: rgba(131, 39, 41, 0.08);
}

/* Cards */
.collection-card,
.branch-card,
.testimonial-card,
.pillar-icon {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    overflow: hidden;
}

.collection-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.collection-img-wrap { overflow: hidden; }

.tag-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    background: var(--burgundy);
    color: #fff;
    border: none;
    border-radius: 0;
}

/* Collections — full-width infinite scroll */
.collections-scroll-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 64px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f4ef 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.collections-scroll-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 0% 50%, rgba(131, 39, 41, 0.04) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.collections-scroll-head {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto 44px;
    padding: 0 24px;
    text-align: center;
}

.collections-scroll-ornament {
    display: block;
    width: 72px;
    height: 1px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--burgundy) 50%, var(--gold) 80%, transparent);
}

.collections-marquee {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 40px;
}

.collections-marquee-viewport {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.collections-marquee-track {
    display: flex;
    width: max-content;
    gap: 20px;
    padding: 8px 0 12px;
    animation: collections-marquee-scroll 55s linear infinite;
}

.collections-marquee:hover .collections-marquee-track {
    animation-play-state: paused;
}

.collection-scroll-card {
    flex: 0 0 auto;
    width: min(340px, 78vw);
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(131, 39, 41, 0.1);
    box-shadow: 0 10px 36px rgba(26, 26, 26, 0.06);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.collection-scroll-card:hover {
    transform: translateY(-6px);
    border-color: rgba(131, 39, 41, 0.28);
    box-shadow: 0 22px 50px rgba(131, 39, 41, 0.12);
}

.collection-scroll-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--burgundy-dark);
}

.collection-scroll-media .vm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.collection-scroll-card:hover .collection-scroll-media .vm-img {
    transform: scale(1.06);
}

.collection-scroll-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 11px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(106, 31, 33, 0.92);
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.collection-scroll-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
    border-top: 3px solid transparent;
    transition: border-color 0.35s ease;
}

.collection-scroll-card:hover .collection-scroll-body {
    border-top-color: var(--burgundy);
}

.collection-scroll-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.collection-scroll-card:hover .collection-scroll-name {
    color: var(--burgundy);
}

.collection-scroll-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-muted);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.collection-scroll-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
    transition: gap 0.25s ease;
}

.collection-scroll-link i {
    font-size: 10px;
    transition: transform 0.25s ease;
}

.collection-scroll-card:hover .collection-scroll-link {
    gap: 12px;
}

.collection-scroll-card:hover .collection-scroll-link i {
    transform: translateX(3px);
}

.collections-scroll-foot {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0;
    padding: 0 24px;
}

@keyframes collections-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .collections-marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .collections-marquee-viewport {
        mask-image: none;
    }

    .collection-scroll-card {
        width: min(340px, 100%);
    }

    .collection-scroll-media .vm-img {
        transition: none;
    }

    .collection-scroll-card:hover .collection-scroll-media .vm-img {
        transform: none;
    }
}

/* Heritage — Our Legacy split section */
.heritage-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 88px;
    background: linear-gradient(165deg, #fdf9f4 0%, #f6efe4 48%, #f3e8dc 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.22);
    border-bottom: 1px solid var(--border);
}

.heritage-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 8% 30%, rgba(131, 39, 41, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 92% 70%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.heritage-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(131, 39, 41, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.3;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

.heritage-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

@media (min-width: 1024px) {
    .heritage-grid {
        grid-template-columns: 1fr 1.05fr;
        gap: 56px;
        align-items: start;
    }

    .heritage-media {
        position: sticky;
        top: 96px;
    }
}

.heritage-img-frame {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(131, 39, 41, 0.15);
    border-top: 3px solid var(--gold);
    box-shadow: 0 20px 50px rgba(26, 26, 26, 0.1);
}

.heritage-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(106, 31, 33, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}

.heritage-img-frame .vm-img {
    transition: transform 0.6s ease;
}

.heritage-media:hover .heritage-img-frame .vm-img {
    transform: scale(1.04);
}

.heritage-img-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.4);
    z-index: 3;
}

.heritage-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0 0 16px;
}

.heritage-ornament {
    display: block;
    width: 72px;
    height: 1px;
    margin: 0 0 20px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--burgundy) 50%, var(--gold) 100%);
}

.heritage-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 20px;
}

.heritage-lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-muted);
    margin: 0 0 16px;
}

.heritage-body {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-light);
    margin: 0 0 28px;
}

.heritage-cta {
    margin-bottom: 32px;
}

.heritage-names {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.heritage-content .heritage-names {
    gap: 10px;
    margin-bottom: 20px;
}

@media (min-width: 640px) {
    .heritage-names {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .heritage-content .heritage-names {
        grid-template-columns: 1fr;
    }
}

.heritage-name-card {
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(131, 39, 41, 0.12);
    border-top: 3px solid var(--burgundy);
    box-shadow: 0 6px 24px rgba(26, 26, 26, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.heritage-name-card--brand {
    border-top-color: var(--gold);
    background: linear-gradient(168deg, #fff 0%, #faf6f1 100%);
}

.heritage-name-card--brand .heritage-name-label {
    color: var(--burgundy-dark);
}

.heritage-name-card:hover {
    border-top-color: var(--gold);
    border-color: rgba(131, 39, 41, 0.22);
    box-shadow: 0 12px 32px rgba(131, 39, 41, 0.08);
    transform: translateY(-2px);
}

.heritage-name-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.heritage-name-desc {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-muted);
}

.heritage-quote {
    position: relative;
    margin: 0;
    padding: 18px 20px 18px 28px;
    font-family: var(--font-display);
    font-size: 15px;
    font-style: italic;
    line-height: 1.65;
    color: var(--burgundy-dark);
    background: rgba(255, 255, 255, 0.75);
    border-left: 3px solid var(--gold);
    border-right: 1px solid rgba(201, 162, 39, 0.2);
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.heritage-quote-mark {
    position: absolute;
    top: 8px;
    left: 10px;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    color: rgba(201, 162, 39, 0.45);
}

@media (max-width: 639px) {
    .heritage-section {
        padding: 56px 0 64px;
    }

    .heritage-inner {
        padding: 0 16px;
    }

    .heritage-grid {
        gap: 32px;
    }

    .heritage-ornament {
        margin-left: auto;
        margin-right: auto;
    }

    .heritage-content {
        text-align: center;
    }

    .heritage-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .heritage-img-frame .vm-img,
    .heritage-name-card {
        transition: none;
    }

    .heritage-media:hover .heritage-img-frame .vm-img,
    .heritage-name-card:hover {
        transform: none;
    }
}

/* Legacy name-meaning (inner pages) */
.name-meaning {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.name-meaning dt {
    font-weight: 700;
    color: var(--ink);
    font-family: var(--font-display);
}

.name-meaning dd {
    margin: 0 0 12px;
    color: var(--ink-muted);
    font-size: 15px;
}

/* Page hero — inner pages */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 24px 80px;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--burgundy-dark) 100%);
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201, 162, 39, 0.12) 0%, transparent 65%),
        repeating-linear-gradient(90deg, transparent, transparent 52px, rgba(255, 255, 255, 0.02) 52px, rgba(255, 255, 255, 0.02) 53px);
    pointer-events: none;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.page-hero-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 18px;
}

.page-hero-ornament {
    display: block;
    width: 88px;
    height: 1px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, transparent, var(--gold) 15%, rgba(255, 255, 255, 0.65) 50%, var(--gold) 85%, transparent);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 18px;
}

.page-hero-lead {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto;
    max-width: 640px;
}

/* Inner page layout system */
.page-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.inner-section {
    padding: 72px 0 80px;
}

.inner-section--white { background: #fff; }
.inner-section--warm {
    background: linear-gradient(180deg, #fdf9f4 0%, #f6efe4 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.inner-section--alt { background: var(--legacy-cream); }

.inner-intro {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.inner-intro .section-eyebrow { margin-bottom: 14px; }
.inner-intro .section-title { margin-bottom: 16px; }

.inner-intro-lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-muted);
    margin: 0;
}

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

@media (min-width: 1024px) {
    .split-grid {
        grid-template-columns: 1fr 1fr;
        gap: 56px;
    }

    .split-grid--reverse .split-grid-media { order: 2; }
    .split-grid--reverse .split-grid-content { order: 1; }
}

.vm-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(131, 39, 41, 0.1);
    box-shadow: 0 8px 32px rgba(26, 26, 26, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vm-card:hover {
    border-color: rgba(131, 39, 41, 0.22);
    box-shadow: 0 16px 44px rgba(131, 39, 41, 0.1);
}

.vm-card--pad { padding: 28px 24px; }
.vm-card--pad-lg { padding: 36px 32px; }

.vm-panel {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(131, 39, 41, 0.12);
    border-top: 4px solid var(--burgundy);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.06);
    padding: 28px 24px;
}

.vm-tag {
    display: inline-block;
    padding: 4px 11px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--burgundy);
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.vm-tag--outline {
    color: var(--burgundy);
    background: rgba(131, 39, 41, 0.08);
    border-color: rgba(131, 39, 41, 0.2);
}

.theme-band {
    padding: 72px 0 80px;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 48%, var(--burgundy-dark) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.35);
    border-bottom: 1px solid rgba(201, 162, 39, 0.35);
    color: #fff;
}

.theme-band .section-eyebrow { color: rgba(255, 255, 255, 0.75); }
.theme-band .section-title { color: #fff; }

.theme-band-panel {
    padding: 32px 28px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.22);
}

.theme-band-panel h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-light);
    margin: 0 0 14px;
}

.theme-band-panel p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 14px;
}

.theme-band-panel p:last-child { margin-bottom: 0; }

.vm-img-frame {
    overflow: hidden;
    border: 1px solid rgba(131, 39, 41, 0.12);
    border-top: 3px solid var(--gold);
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.1);
}

.vm-img-frame .vm-img { transition: transform 0.55s ease; }
.vm-img-frame:hover .vm-img { transform: scale(1.04); }

.name-fusion-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.name-fusion {
    padding: 36px 28px 32px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(131, 39, 41, 0.12);
    border-top: 4px solid var(--gold);
    box-shadow: 0 14px 44px rgba(26, 26, 26, 0.07);
}

.name-fusion-sources {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
}

.name-source {
    position: relative;
    padding: 24px 18px 22px;
    text-align: center;
    background: linear-gradient(168deg, #fff 0%, #faf6f1 100%);
    border: 1px solid rgba(131, 39, 41, 0.12);
    overflow: hidden;
}

.name-source--sister {
    border-top: 3px solid var(--gold);
}

.name-source--town {
    border-top: 3px solid var(--burgundy);
}

.name-source-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--burgundy);
    border: 1px solid rgba(201, 162, 39, 0.35);
}

.name-source--sister .name-source-index {
    background: linear-gradient(145deg, var(--gold) 0%, #a8841f 100%);
    color: var(--ink);
}

.name-source-word {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.2;
}

.name-source--sister .name-source-word { color: #8a6d12; }
.name-source--town .name-source-word { color: var(--burgundy-dark); }

.name-source-meaning {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-muted);
}

.name-fusion-join {
    display: flex;
    align-items: center;
    justify-content: center;
}

.name-fusion-plus {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--burgundy);
    background: rgba(131, 39, 41, 0.08);
    border: 1px solid rgba(131, 39, 41, 0.18);
    border-radius: 50%;
}

.name-fusion-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 28px 0 24px;
    padding: 0 12%;
}

.name-fusion-bridge-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.55), transparent);
}

.name-fusion-bridge-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--burgundy);
    background: rgba(131, 39, 41, 0.08);
    border: 1px solid rgba(131, 39, 41, 0.15);
    border-radius: 50%;
}

.name-fusion-result {
    text-align: center;
    padding: 28px 24px 26px;
    background: linear-gradient(165deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: 0 12px 36px rgba(131, 39, 41, 0.2);
}

.name-fusion-result-label {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.name-fusion-result-word {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.15;
}

.name-fusion-result-meaning {
    margin: 0 0 14px;
    font-size: 15px;
    color: var(--gold-light);
}

.name-fusion-result-note {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(201, 162, 39, 0.28);
    font-family: var(--font-display);
    font-size: 14px;
    font-style: italic;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 639px) {
    .name-fusion {
        padding: 28px 18px 24px;
    }

    .name-fusion-sources {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .name-fusion-join {
        padding: 4px 0;
    }

    .name-fusion-plus {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .name-fusion-bridge {
        margin: 20px 0 18px;
        padding: 0;
    }
}

/* About — generations timeline */
.about-future {
    padding: 80px 0 88px;
    background: linear-gradient(180deg, var(--legacy-cream) 0%, #f6efe4 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.18);
}

.about-future-head {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.about-future-ornament {
    display: block;
    width: 88px;
    height: 1px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--burgundy) 50%, var(--gold) 85%, transparent);
}

.gen-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1080px;
    margin: 0 auto;
}

.gen-card {
    position: relative;
    padding: 32px 28px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(131, 39, 41, 0.12);
    border-top: 3px solid rgba(131, 39, 41, 0.25);
    box-shadow: 0 10px 36px rgba(26, 26, 26, 0.05);
}

.gen-card--active {
    border-top-color: var(--gold);
    box-shadow: 0 16px 44px rgba(131, 39, 41, 0.1);
}

.gen-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--burgundy);
    background: rgba(131, 39, 41, 0.08);
    border: 1px solid rgba(131, 39, 41, 0.18);
    border-radius: 50%;
}

.gen-card--active .gen-card-num {
    color: var(--ink);
    background: linear-gradient(145deg, var(--gold) 0%, #a8841f 100%);
    border-color: rgba(201, 162, 39, 0.45);
}

.gen-card-label {
    margin: 0 0 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--burgundy);
}

.gen-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 12px;
    line-height: 1.25;
}

.gen-card-body {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-muted);
}

.gen-timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
}

.gen-timeline-line {
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, rgba(131, 39, 41, 0.15), rgba(201, 162, 39, 0.45), rgba(131, 39, 41, 0.15));
}

.gen-timeline-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid rgba(131, 39, 41, 0.2);
}

@media (min-width: 768px) {
    .gen-timeline {
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 0;
        align-items: stretch;
    }

    .gen-timeline-connector {
        flex-direction: row;
        padding: 0 6px;
        align-self: center;
    }

    .gen-timeline-line {
        width: 28px;
        height: 1px;
        background: linear-gradient(90deg, rgba(131, 39, 41, 0.15), rgba(201, 162, 39, 0.55), rgba(131, 39, 41, 0.15));
    }

    .gen-card {
        text-align: left;
        padding: 36px 28px 34px;
    }
}

@media (max-width: 767px) {
    .about-future {
        padding: 56px 0 64px;
    }

    .about-future-head {
        margin-bottom: 36px;
    }
}

/* About — closing manifesto band */
.about-closing {
    position: relative;
    overflow: hidden;
    padding: 88px 24px 92px;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 48%, var(--burgundy-dark) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.45);
    text-align: center;
}

.about-closing::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 40%, rgba(201, 162, 39, 0.1) 0%, transparent 65%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 52px,
            rgba(255, 255, 255, 0.02) 52px,
            rgba(255, 255, 255, 0.02) 53px
        );
    pointer-events: none;
}

.about-closing::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 42%;
    width: min(560px, 85vw);
    height: min(560px, 85vw);
    transform: translate(-50%, -50%);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.about-closing-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
}

.about-closing-ornament {
    display: block;
    width: 88px;
    height: 1px;
    margin: 0 auto 32px;
    background: linear-gradient(90deg, transparent, var(--gold) 15%, rgba(255, 255, 255, 0.6) 50%, var(--gold) 85%, transparent);
}

.about-closing-manifesto {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.125rem);
    font-weight: 600;
    line-height: 1.28;
    color: #fff;
    margin: 0 0 22px;
}

.about-closing-lead {
    max-width: 560px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.about-closing-quote {
    position: relative;
    margin: 0 auto 36px;
    max-width: 620px;
    padding: 28px 32px 28px 40px;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-style: italic;
    line-height: 1.65;
    color: var(--gold-light);
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.28);
    border-left: 3px solid var(--gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about-closing-quote-mark {
    position: absolute;
    top: 6px;
    left: 14px;
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: rgba(201, 162, 39, 0.35);
}

.about-closing-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

@media (max-width: 639px) {
    .about-closing {
        padding: 64px 20px 72px;
    }

    .about-closing-quote {
        padding: 24px 20px 24px 32px;
        text-align: left;
    }

    .about-closing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-closing-actions .btn-gold,
    .about-closing-actions .btn-outline-light {
        justify-content: center;
    }
}

/* Legacy name panel (unused) */
.name-panel {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 32px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(131, 39, 41, 0.12);
    border-top: 4px solid var(--gold);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.06);
}

.name-panel-lines {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--ink);
}

.name-panel-lines strong { font-weight: 600; }
.name-panel-lines .c-gold { color: var(--gold); }
.name-panel-lines .c-burgundy { color: var(--burgundy); }

.card-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .card-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.card-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .card-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.card-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

@media (min-width: 1024px) {
    .card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.vm-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--burgundy);
    text-decoration: none;
}

.vm-link:hover { text-decoration: underline; }

.inner-cta {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.inner-cta .section-title { margin-bottom: 16px; }

.inner-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.body-copy {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-muted);
}

.body-copy p + p { margin-top: 16px; }

.body-copy--sm {
    font-size: 14px;
    line-height: 1.65;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (min-width: 640px) {
    .category-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (min-width: 1024px) {
    .category-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (min-width: 1280px) {
    .category-gallery {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.category-gallery-item {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    scroll-margin-top: 96px;
    background: var(--burgundy-dark);
    border: 1px solid rgba(131, 39, 41, 0.1);
    box-shadow: 0 6px 24px rgba(26, 26, 26, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.category-gallery-item .vm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.category-gallery-item:hover {
    border-color: rgba(131, 39, 41, 0.28);
    box-shadow: 0 14px 36px rgba(131, 39, 41, 0.12);
    transform: translateY(-2px);
}

.category-gallery-item:hover .vm-img {
    transform: scale(1.06);
}

.category-card {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    scroll-margin-top: 96px;
}

@media (min-width: 640px) {
    .category-card { grid-template-columns: 2fr 3fr; }
}

.category-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--burgundy-dark);
}

.category-card-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-card-meta {
    margin: 16px 0 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-muted);
}

.category-card-meta strong {
    color: var(--burgundy);
    font-weight: 700;
}

.branch-detail-card {
    margin-top: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(131, 39, 41, 0.1);
}

.branch-detail-card dl {
    display: grid;
    gap: 16px;
    margin: 0 0 20px;
}

.branch-detail-card dt {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-light);
}

.branch-detail-card dd {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--ink-muted);
}

.branch-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.loyalty-tier {
    padding: 32px 28px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.2);
    height: 100%;
}

.loyalty-tier.featured {
    border: 2px solid var(--gold);
    background: rgba(0, 0, 0, 0.22);
}

.loyalty-tier h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 6px;
}

.loyalty-tier-points {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.loyalty-tier ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loyalty-tier li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.loyalty-tier li i { color: var(--gold); margin-top: 3px; }

.redeem-table {
    overflow: hidden;
    border: 1px solid rgba(131, 39, 41, 0.12);
    box-shadow: 0 8px 32px rgba(26, 26, 26, 0.06);
}

.redeem-table-head {
    padding: 16px 24px;
    background: var(--burgundy);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.redeem-table ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
}

.redeem-table li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
}

.redeem-table li span:first-child {
    font-weight: 700;
    color: var(--burgundy);
}

.redeem-table li span:last-child {
    color: var(--ink-muted);
    text-align: right;
}

.terms-note {
    padding: 24px 0;
    background: var(--legacy-cream);
    border-top: 1px solid var(--border);
    text-align: center;
}

.terms-note p {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 12px;
    line-height: 1.65;
    color: var(--ink-light);
}

.seasonal-banner { background: var(--maroon); }


/* Carousel system */
.vm-carousel { position: relative; }

.carousel-viewport {
    overflow: hidden;
    margin: 0 44px;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc(100% / var(--carousel-visible, 1));
    max-width: calc(100% / var(--carousel-visible, 1));
    padding: 0 8px;
}

.vm-carousel[data-visible="2"] .carousel-slide { flex-basis: 50%; max-width: 50%; }
.vm-carousel[data-visible="3"] .carousel-slide { flex-basis: 33.333%; max-width: 33.333%; }
.vm-carousel[data-visible="4"] .carousel-slide { flex-basis: 25%; max-width: 25%; }

@media (max-width: 1023px) {
    .vm-carousel[data-visible="3"]:not([data-visible-md]) .carousel-slide,
    .vm-carousel[data-visible="4"]:not([data-visible-md]) .carousel-slide { flex-basis: 50%; max-width: 50%; }
}

@media (max-width: 639px) {
    .vm-carousel[data-visible="2"]:not([data-visible-sm]) .carousel-slide,
    .vm-carousel[data-visible="3"]:not([data-visible-sm]) .carousel-slide,
    .vm-carousel[data-visible="4"]:not([data-visible-sm]) .carousel-slide { flex-basis: 100%; max-width: 100%; }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.carousel-btn:hover { background: var(--royal-dark); color: #fff; border-color: var(--royal-dark); }
.carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    padding: 0;
    cursor: pointer;
}

.carousel-dots button.active { background: var(--burgundy); width: 20px; border-radius: 0; }

.carousel-btn:hover { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }

/* Showrooms — all branches visible */
.showrooms-section {
    background: var(--legacy-cream);
    padding: var(--section-gap) 0;
    border-bottom: 1px solid var(--border);
}

.showrooms-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.showrooms-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.showrooms-lead {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-muted);
    margin: 0;
}

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

@media (min-width: 768px) {
    .showrooms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }
}

.showroom-locator-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin: 0 0 14px;
}

.showroom-locator-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 14px;
}

.showroom-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.showroom-card:hover {
    border-color: rgba(131, 39, 41, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.09);
}

.showroom-card--featured {
    border-top: 3px solid var(--burgundy);
}

.showroom-card-media {
    position: relative;
    flex-shrink: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--burgundy-dark);
}

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

.showroom-card:hover .showroom-card-media .vm-img {
    transform: scale(1.05);
}

.showroom-card-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 8px 14px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--burgundy);
}

.showroom-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 20px 24px;
}

.showroom-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.showroom-card-title-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    min-width: 0;
}

.showroom-card-name {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
}

.showroom-card-badge {
    display: inline-block;
    padding: 3px 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--burgundy);
    background: rgba(131, 39, 41, 0.08);
    border: 1px solid rgba(131, 39, 41, 0.2);
}

.showroom-card-year {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gold);
    white-space: nowrap;
}

.showroom-card-headline {
    font-family: var(--font-display);
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    color: var(--ink-light);
    margin: 0 0 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.showroom-card-details {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}

.showroom-card-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-muted);
}

.showroom-card-details li i {
    flex-shrink: 0;
    width: 15px;
    margin-top: 3px;
    color: var(--burgundy);
    font-size: 13px;
    text-align: center;
}

.showroom-card-details a {
    color: var(--burgundy);
    font-weight: 700;
    text-decoration: none;
}

.showroom-card-details a:hover {
    text-decoration: underline;
}

.showroom-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.showroom-card-actions .btn-showroom {
    flex: 1 1 calc(50% - 5px);
    min-width: 120px;
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .showroom-card {
        flex-direction: row;
        min-height: 300px;
    }

    .showroom-card--featured {
        border-top: none;
        border-left: 4px solid var(--burgundy);
    }

    .showroom-card-media {
        flex: 0 0 44%;
        max-width: 44%;
        aspect-ratio: unset;
        align-self: stretch;
    }

    .showroom-card-body {
        padding: 26px 28px 28px;
    }

    .showroom-card-headline {
        margin-bottom: 20px;
        padding-bottom: 18px;
    }
}

.showrooms-foot {
    text-align: center;
    margin: 40px 0 0;
}

.btn-showroom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 16px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-showroom--primary {
    background: var(--burgundy);
    color: #fff;
    border: 1px solid var(--burgundy);
}

.btn-showroom--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    color: #fff;
}

.btn-showroom--outline {
    background: transparent;
    color: var(--burgundy);
    border: 1px solid var(--burgundy);
}

.btn-showroom--outline:hover {
    background: var(--burgundy);
    color: #fff;
}

@media (max-width: 767px) {
    .showrooms-section {
        padding: 56px 0 64px;
    }

    .showroom-card-header {
        flex-direction: column;
        gap: 6px;
    }

    .showroom-card-actions .btn-showroom {
        flex: 1 1 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .showroom-card-media .vm-img {
        transition: none;
    }

    .showroom-card:hover .showroom-card-media .vm-img {
        transform: none;
    }
}

/* Brand name marquee */
.brand-marquee {
    --marquee-ornament: none;
}

.brand-marquee-frame {
    position: relative;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 45%, var(--burgundy-dark) 100%);
    border-top: 1px solid rgba(201, 162, 39, 0.45);
    border-bottom: 1px solid rgba(201, 162, 39, 0.45);
    padding: 20px 0;
    overflow: hidden;
}

.brand-marquee-frame::before {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 120% at 50% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 70%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 48px,
            rgba(255, 255, 255, 0.02) 48px,
            rgba(255, 255, 255, 0.02) 49px
        );
    pointer-events: none;
}

.brand-marquee-frame::after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.25) 20%, rgba(201, 162, 39, 0.25) 80%, transparent);
    pointer-events: none;
}

.brand-marquee-viewport {
    position: relative;
    z-index: 1;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-marquee-track {
    display: flex;
    width: max-content;
    animation: brand-marquee-scroll 36s linear infinite;
}

.brand-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    white-space: nowrap;
}

.brand-marquee-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(1.15) drop-shadow(0 0 6px rgba(201, 162, 39, 0.35));
}

.brand-marquee-text {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.05rem, 2.4vw, 1.45rem);
    color: rgba(255, 255, 255, 0.94);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand-marquee-sep {
    font-size: 11px;
    color: var(--gold);
    opacity: 0.85;
    line-height: 1;
}

@keyframes brand-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .brand-marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 8px 0;
    }

    .brand-marquee-viewport { mask-image: none; }
}

/* Horizontal scroll strip */
.scroll-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.scroll-strip > * { scroll-snap-align: start; }

/* Testimonial stars */
.star-row { color: var(--gold); font-size: 13px; letter-spacing: 2px; }

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 3rem;
    color: #e8e8e8;
    position: absolute;
    top: 8px;
    left: 16px;
    line-height: 1;
}

/* Forms */
.form-input {
    width: 100%;
    padding: 11px 14px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--burgundy);
    box-shadow: 0 0 0 2px rgba(35, 74, 158, 0.12);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--burgundy-dark);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.filter-pill {
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(131, 39, 41, 0.15);
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink-muted);
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--burgundy-dark);
    color: #fff;
    border-color: var(--royal-dark);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--royal-dark);
    border-radius: 50%;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 999;
    width: 52px;
    height: 52px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.05); }

/* Footer */
.site-footer {
    background: var(--burgundy-dark);
    color: rgba(255, 255, 255, 0.85);
    border-top: none;
}

.site-footer h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}

.site-footer a:hover { color: var(--gold); }

.site-footer .footer-logo {
    height: 68px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 4px;
}

.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.insta-grid a {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.bg-section { background: var(--white); }
.bg-section-alt { background: var(--legacy-cream); }

.section-title.light { color: #fff; }
.section-lead.centered { margin: 0 auto; text-align: center; }

.contact-card {
    border: 1px solid rgba(131, 39, 41, 0.12);
    border-radius: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.94);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.contact-card:hover {
    border-color: rgba(131, 39, 41, 0.28);
    box-shadow: 0 12px 32px rgba(131, 39, 41, 0.08);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 20px;
}

.contact-card-icon.wa { background: #e8f8ed; color: #25d366; }
.contact-card-icon.ig { background: #fceef5; color: #c13584; }
.contact-card-icon.ph { background: #f0f4fa; color: var(--royal); }

.pillar-icon .step-number { font-size: 15px; }

.contact-card.flex-col { flex-direction: column; }
