/* ─────────────────────────────────────────────
   Self-hosted Fonts
──────────────────────────────────────────────── */
@font-face {
    font-family: 'Reaktif';
    src: url('../fonts/reaktif-bold.woff2') format('woff2'),
         url('../fonts/reaktif-bold.woff')  format('woff'),
         url('../fonts/reaktif-bold.eot')   format('embedded-opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ─────────────────────────────────────────────
   CSS Custom Properties
──────────────────────────────────────────────── */
:root {
    --color-bg:          #ffffff;
    --color-bg-alt:      #f8f8f8;
    --color-text:        #1a1a1a;
    --color-text-muted:  #666666;
    --color-border:      #e5e5e5;
    --color-accent:      #8B1A1A;
    --color-accent-dark: #6B1212;
    --color-gold:        #9B7A28;
    --color-white:       #ffffff;

    --font-heading:   'Reaktif', 'Arial Narrow', sans-serif;
    --font-body:      'Inter', system-ui, sans-serif;
    --font-display:   'Reaktif', 'Arial Narrow', sans-serif;

    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,.10);

    --header-height: 72px;
    --container-max: 1280px;
    --container-pad: 1.5rem;
}

/* ─────────────────────────────────────────────
   Reset & Base
──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─────────────────────────────────────────────
   Container
──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-pad);
}

/* ─────────────────────────────────────────────
   Typography
──────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* ─────────────────────────────────────────────
   Buttons
──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-decoration: none;
}
.btn-primary { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }
.btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: var(--color-white); text-decoration: none; }
.btn-outline { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline:hover { background: var(--color-accent); color: var(--color-white); text-decoration: none; }
.btn-outline-white { background: transparent; color: var(--color-white); border-color: var(--color-white); }
.btn-outline-white:hover { background: var(--color-white); color: var(--color-accent); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--color-text-muted); border-color: transparent; }
.btn-ghost:hover { color: var(--color-text); text-decoration: none; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ─────────────────────────────────────────────
   Header
──────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    height: 100%;
}

.site-branding { flex-shrink: 0; }
.site-branding a { display: flex; align-items: center; text-decoration: none; }
.site-branding img, .site-branding .custom-logo { max-height: 56px; width: auto; display: block; }
.site-name-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--color-accent); }

.primary-nav { flex: 1; }
.nav-menu { display: flex; gap: 0.25rem; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-sm);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a { background: var(--color-bg-alt); color: var(--color-accent); text-decoration: none; }

/* Dropdown */
.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 200px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    z-index: 200;
}
.nav-menu > li:hover .sub-menu,
.nav-menu > li:focus-within .sub-menu { display: block; }
.nav-menu .sub-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--color-text);
    transition: background 0.15s;
}
.nav-menu .sub-menu li a:hover { background: var(--color-bg-alt); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger-line { width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }

/* ─────────────────────────────────────────────
   Header Topbar
──────────────────────────────────────────────── */
.header-topbar {
    background: #1a1a1a;
    color: #ccc;
    padding: 0.5rem 0;
    font-size: 0.8rem;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-contacts { display: flex; gap: 1.5rem; }
.topbar-contacts a { color: #ccc; text-decoration: none; display: flex; align-items: center; gap: 0.4rem; }
.topbar-contacts a:hover { color: #fff; }
.topbar-links a { color: #ccc; font-weight: 500; text-decoration: none; font-size: 0.8rem; }
.topbar-links a:hover { color: #fff; }

/* ─────────────────────────────────────────────
   Hero Split (text left, image mosaic right)
──────────────────────────────────────────────── */
.hero-split {
    background: #fff;
    padding: 5rem 0 4rem;
}
.hero-split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 520px;
}
.hero-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-split-title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #1a1a1a;
    line-height: 1.05;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}
.hero-split-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #666;
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero-split-actions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.btn-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.4rem;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    border: 2px solid #1a1a1a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn-pill:hover { background: #333; border-color: #333; color: #fff; text-decoration: none; }
.btn-pill-outline { background: transparent; color: #1a1a1a; }
.btn-pill-outline:hover { background: #1a1a1a; color: #fff; }

/* Hero image */
.hero-split-images { width: 100%; }
.hero-split-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Responsive hero */
@media (max-width: 1024px) {
    .hero-split-inner { grid-template-columns: 1fr; gap: 2.5rem; min-height: auto; }
    .hero-split-img { height: 380px; }
    .hero-split-title { font-size: clamp(2rem, 5vw, 2.5rem); }
}
@media (max-width: 640px) {
    .hero-split { padding: 3rem 0; }
    .hero-split-img { height: 260px; border-radius: 8px; }
    .hero-split-actions { flex-direction: column; align-items: flex-start; }
}

/* Feature strip */
.feature-strip {
    background: var(--color-accent);
    color: var(--color-white);
    padding: var(--space-lg) 0;
}
.feature-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    align-items: center;
}
.feature-strip-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.5rem;
}
.feature-strip-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.feature-strip-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}
.feature-strip-text span {
    font-size: 0.78rem;
    opacity: 0.8;
}

/* ─────────────────────────────────────────────
   Category Grid
──────────────────────────────────────────────── */
.category-grid-section {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--color-bg);
}
.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: var(--space-sm);
}
.section-header h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}
.section-header a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    white-space: nowrap;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}
.category-tile {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: var(--radius-sm);
    display: block;
    text-decoration: none;
    background: #c8b89a;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}
.category-tile:hover { text-decoration: none; box-shadow: var(--shadow-md); }
.category-tile:hover .category-tile-image { transform: scale(1.05); }
.category-tile-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.category-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
}
.category-tile-name {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* ─────────────────────────────────────────────
   Company USP strip
──────────────────────────────────────────────── */
.company-intro {
    background: var(--color-bg-alt);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.intro-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.intro-item {
    text-align: center;
    padding: var(--space-md);
}
.intro-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto var(--space-sm);
}
.intro-item h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 0.4rem; }
.intro-item p { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; line-height: 1.5; }

/* ─────────────────────────────────────────────
   Footer
──────────────────────────────────────────────── */
.footer-contact-strip { background: var(--color-accent); color: var(--color-white); padding: var(--space-md) 0; }
.contact-strip-grid { display: flex; gap: var(--space-lg); align-items: center; flex-wrap: wrap; }
.contact-strip-item { font-size: 0.875rem; }
.contact-strip-item a { color: var(--color-white); }
.contact-strip-item a:hover { text-decoration: underline; }
.contact-strip-item strong { opacity: 0.75; margin-right: 0.4rem; }

.footer-main { background: #111; color: #ccc; padding: var(--space-xl) 0 var(--space-md); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer-brand img { max-height: 48px; filter: brightness(0) invert(1); margin-bottom: var(--space-sm); }
.footer-site-name { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); display: block; margin-bottom: var(--space-sm); }
.footer-brand p { font-size: 0.875rem; opacity: 0.7; line-height: 1.6; }
.footer-nav h4, .footer-info h4 { color: var(--color-white); margin-bottom: var(--space-sm); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-menu { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-menu a { color: #aaa; font-size: 0.875rem; }
.footer-menu a:hover { color: var(--color-white); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: var(--space-md); font-size: 0.8rem; opacity: 0.5; }

/* ─────────────────────────────────────────────
   Page Banner (shared: category, about, contact)
──────────────────────────────────────────────── */
.page-banner {
    position: relative;
    background-color: #2a1010;
    background-size: cover;
    background-position: center;
    padding: var(--space-xl) 0;
    overflow: hidden;
}
.page-banner--slim { padding: var(--space-lg) 0; }
.page-banner--has-image { min-height: 260px; display: flex; align-items: flex-end; }
.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20,4,4,0.88) 0%,
        rgba(20,4,4,0.65) 100%
    );
}
.page-banner-inner { position: relative; z-index: 1; }
.page-banner-title {
    color: var(--color-white);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: var(--space-sm) 0 0;
    line-height: 1.15;
}
.page-banner-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin: 0.5rem 0 0;
}

/* Breadcrumb (in page banner and elsewhere) */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb-sep { opacity: 0.5; }
.breadcrumb span[aria-current] { color: rgba(255,255,255,0.9); }

/* ─────────────────────────────────────────────
   Page content (generic)
──────────────────────────────────────────────── */
.page-content { padding: var(--space-xl) 0; }
.page-header { margin-bottom: var(--space-lg); border-bottom: 1px solid var(--color-border); padding-bottom: var(--space-md); }
.page-body { max-width: 800px; }

/* ─────────────────────────────────────────────
   Mobile Navigation
──────────────────────────────────────────────── */
@media (max-width: 900px) {
    .primary-nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        padding: var(--space-sm) 0;
        z-index: 99;
    }
    .primary-nav.nav-open { display: block; }
    .nav-menu { flex-direction: column; gap: 0; padding: 0 var(--container-pad); }
    .nav-menu > li > a { padding: 0.75rem 0; border-radius: 0; border-bottom: 1px solid var(--color-border); }
    .nav-menu > li:last-child > a { border-bottom: none; }
    .nav-menu .sub-menu { position: static; box-shadow: none; border: none; padding-left: var(--space-md); }
    .nav-menu > li:hover .sub-menu,
    .nav-menu > li:focus-within .sub-menu { display: block; }
    .menu-toggle { display: flex; }
    .header-actions .btn-ghost { display: none; }
}

/* ─────────────────────────────────────────────
   Site-wide notice (email verification)
──────────────────────────────────────────────── */
.mpd-site-notice {
    position: fixed;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    z-index: 9999;
    box-shadow: var(--shadow-md);
    max-width: 90vw;
    text-align: center;
}
.mpd-notice-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.mpd-notice-error   { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

/* ─────────────────────────────────────────────
   Auth screen (Login / Register)
──────────────────────────────────────────────── */

@keyframes auth-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Override site-main constraints */
.auth-page { max-width: none; padding: 0; margin: 0; }

/* Split-screen wrapper */
.auth-screen {
    display: flex;
    min-height: calc(100vh - var(--header-height, 70px));
}

/* ── Brand panel (left, dark) ── */
.auth-brand {
    width: 400px;
    flex-shrink: 0;
    background: #1a0808;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
}
.auth-brand::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,8,8,0.95) 0%, rgba(26,8,8,0.6) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.auth-brand-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}
.auth-brand-logo {
    position: relative;
    z-index: 2;
}
.auth-brand-logo img {
    filter: brightness(0) invert(1);
}
.auth-brand-content {
    margin-top: auto;
    position: relative;
    z-index: 2;
}
.auth-brand-heading {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}
.auth-brand-sub {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0 0 1.5rem;
}
.auth-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
    padding: 0.4rem 1rem 0.4rem 0.6rem;
}
.auth-badge-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.auth-badge-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

/* Mobile logo (hidden on desktop) */
.auth-mobile-logo {
    display: none;
    margin-bottom: 1.5rem;
}

/* ── Form panel (right, white) ── */
.auth-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.5rem;
    background: #fff;
    animation: auth-fade-up 0.45s ease both;
}
.auth-panel-inner {
    width: 100%;
    max-width: 400px;
}

/* Form header */
.auth-form-header {
    margin-bottom: 1.5rem;
}
.auth-form-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 1.75rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 0.4rem;
    color: var(--color-text);
}
.auth-form-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Notice */
.auth-notice {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}
.auth-notice--info {
    background: #e8f4fd;
    border-left: 3px solid #2196f3;
    color: #1565c0;
}

/* Tabs */
.auth-tabs {
    display: flex;
    position: relative;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 1.75rem;
    gap: 0;
}
.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.15s;
    text-align: center;
}
.auth-tab:hover { color: var(--color-text); }
.auth-tab.active { color: var(--color-accent); }
.auth-tab-indicator {
    position: absolute;
    bottom: -2px;
    height: 2px;
    background: var(--color-accent);
    transition: left 0.25s cubic-bezier(.4,0,.2,1), width 0.25s cubic-bezier(.4,0,.2,1);
}

/* Forms */
.auth-form {
    display: none;
    animation: auth-fade-up 0.3s ease both;
}
.auth-form--active { display: block; }

/* Register note */
.auth-register-note {
    font-size: 0.825rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0 0 1rem;
}

/* Pending state */
.auth-pending {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
}
.auth-pending-icon {
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}
.auth-pending .auth-form-header {
    margin-bottom: 0;
    text-align: center;
}
.auth-pending-contact {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
}
.auth-pending-contact a {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}
.auth-pending-contact a:hover { text-decoration: underline; }

/* WooCommerce input overrides */
.auth-page .woocommerce-form__label,
.auth-page .woocommerce-form label {
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-text);
}
.auth-page .woocommerce-Input,
.auth-page .input-text,
.auth-page .woocommerce-form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    display: block;
    transition: border-color 0.15s, box-shadow 0.15s;
    background: #fff;
    color: var(--color-text);
    box-sizing: border-box;
}
.auth-page .woocommerce-Input:focus,
.auth-page .input-text:focus,
.auth-page .woocommerce-form__input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}
.auth-page .woocommerce-form-login__submit,
.auth-page .woocommerce-form-register__submit,
.auth-page .woocommerce-Button {
    width: 100%;
    padding: 0.875rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: var(--space-sm);
    transition: background 0.2s, transform 0.1s;
}
.auth-page .woocommerce-form-login__submit:hover,
.auth-page .woocommerce-form-register__submit:hover,
.auth-page .woocommerce-Button:hover { background: var(--color-accent-dark); }
.auth-page .woocommerce-form-login__submit:active,
.auth-page .woocommerce-form-register__submit:active,
.auth-page .woocommerce-Button:active { transform: scale(0.99); }

.auth-page .woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}
.auth-page .woocommerce-LostPassword a,
.auth-page .lost_password a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: none;
}
.auth-page .woocommerce-LostPassword a:hover,
.auth-page .lost_password a:hover { color: var(--color-accent); }

/* Responsive */
@media (max-width: 1024px) {
    .auth-brand { width: 320px; }
}

@media (max-width: 768px) {
    .auth-brand { display: none; }
    .auth-mobile-logo { display: block; }
    .auth-panel {
        align-items: flex-start;
        padding: 2rem 1.5rem;
        min-height: calc(100vh - var(--header-height, 70px));
    }
    .auth-panel-inner { max-width: 100%; }
}

/* ─────────────────────────────────────────────
   About page — story layout
──────────────────────────────────────────────── */

/* ── Button variants for dark backgrounds ── */
.btn-pill--light { background: #fff; color: #1a1a1a; border-color: #fff; }
.btn-pill--light:hover { background: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.88); color: #1a1a1a; }
.btn-pill--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-pill--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* ── Eyebrow light variant ── */
.about-eyebrow--light { color: rgba(255,255,255,0.6); }

/* ── 1. Hero ─────────────────────────────────────── */
.about-page { padding: 0; max-width: none; }

.about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.about-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.about-hero:hover .about-hero-img { transform: scale(1); }
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(0,0,0,0.18) 100%
    );
}
.about-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 6rem;
    padding-top: 2rem;
}
.about-hero-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}
.about-hero-heading {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: bold;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.75rem;
}
.about-hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
}

/* Scroll line indicator */
.about-hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: var(--container-pad);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: var(--font-body);
}
.about-hero-scroll span {
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    position: relative;
    overflow: hidden;
}
.about-hero-scroll span::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.8);
    animation: scrollSlide 1.8s ease-in-out infinite;
}
@keyframes scrollSlide {
    0%   { left: -100%; }
    100% { left: 100%; }
}

/* ── 2. Origin Story ─────────────────────────────── */
.about-origin {
    padding: 9rem 0;
    background: #fff;
}
.about-origin-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: center;
}
.about-origin-ghost {
    font-family: var(--font-display);
    font-weight: bold;
    font-size: clamp(6rem, 11vw, 10rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: rgba(139,26,26,0.07);
    user-select: none;
}
.about-origin-body h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
.about-origin-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.about-origin-body p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}
.about-origin-body p:last-child { margin-bottom: 0; }

/* ── 3. Timeline ─────────────────────────────────── */
.about-tl-section {
    padding: 8rem 0;
    background: #f5f5f3;
}
.about-tl-header {
    text-align: center;
    margin-bottom: 5rem;
}
.about-tl-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: bold;
    letter-spacing: -0.02em;
    margin: 0;
}

.about-tl {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}
/* Connecting track line */
.about-tl::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right, var(--color-accent), rgba(139,26,26,0.25));
}

.about-tl-item {
    padding: 0 2rem;
    text-align: center;
}
.about-tl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--color-accent);
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(139,26,26,0.12);
}
.about-tl-era {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-accent);
    margin-bottom: 0.6rem;
    font-family: var(--font-body);
}
.about-tl-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}
.about-tl-item p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── 4. Stats Bar ────────────────────────────────── */
.about-stats-bar {
    background: #1a1a1a;
    padding: 6rem 0;
    color: #fff;
}
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.about-stat-item {
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.about-stat-item:last-child { border-right: none; }
.about-stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: bold;
    font-size: clamp(4rem, 7vw, 6.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 0.75rem;
}
.about-stat-num sup {
    font-size: 0.5em;
    vertical-align: super;
    color: var(--color-accent);
}
.about-stat-lbl {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body);
}

/* ── 5. Values ───────────────────────────────────── */
.about-values-section {
    padding: 8rem 0;
    background: #fff;
}
.about-values-header {
    margin-bottom: 5rem;
}
.about-values-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: bold;
    letter-spacing: -0.02em;
    margin: 0;
}
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 7rem;
}
.about-value-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.about-value-num {
    font-family: var(--font-display);
    font-weight: bold;
    font-size: clamp(3.5rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(139,26,26,0.12);
    flex-shrink: 0;
    transition: color 0.3s;
}
.about-value-item:hover .about-value-num { color: rgba(139,26,26,0.28); }
.about-value-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.about-value-body p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── 6. How We Work ──────────────────────────────── */
.about-how-section {
    padding: 8rem 0;
    background: #f5f5f3;
}
.about-how-header {
    text-align: center;
    margin-bottom: 5rem;
}
.about-how-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: bold;
    letter-spacing: -0.02em;
    margin: 0;
}
.about-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
/* Connector line through the step numbers */
.about-how-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 1px;
    background: var(--color-border);
}
.about-how-step {
    text-align: center;
    padding: 0 3rem;
    position: relative;
}
.about-how-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}
.about-how-step:hover .about-how-num {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(139,26,26,0.3);
}
.about-how-step h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}
.about-how-step p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── 7. Image Break ──────────────────────────────── */
.about-img-break {
    position: relative;
    height: 520px;
    overflow: hidden;
}
.about-img-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}
.about-img-break:hover img { transform: scale(1.04); }
.about-img-break-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.about-pull-quote {
    font-family: var(--font-display);
    font-weight: bold;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    line-height: 1.25;
    color: #fff;
    text-align: center;
    max-width: 820px;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ── 8. Final CTA ────────────────────────────────── */
.about-final-cta {
    background: #1a1a1a;
    padding: 9rem 0;
    text-align: center;
    color: #fff;
}
.about-final-inner {
    max-width: 680px;
    margin: 0 auto;
}
.about-final-heading {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: bold;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.5rem;
}
.about-final-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 3rem;
}
.about-final-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   Contact page
──────────────────────────────────────────────── */
.contact-section { padding: var(--space-2xl) 0; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-2xl); align-items: start; }

.contact-block { margin-bottom: var(--space-xl); }
.contact-block:last-child { margin-bottom: 0; }
.contact-block h2 { margin-bottom: var(--space-sm); font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
.contact-block h3 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin-bottom: var(--space-sm); font-family: var(--font-body); }
.contact-block p { font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.7; }

.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-accent);
}
.contact-info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-info-list li div { display: flex; flex-direction: column; gap: 0.2rem; }
.contact-info-list li strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-muted); }
.contact-info-list li a { color: var(--color-text); font-weight: 500; font-size: 0.95rem; text-decoration: none; }
.contact-info-list li a:hover { color: var(--color-accent); }

.contact-hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.contact-hours-table tr { border-bottom: 1px solid var(--color-border); }
.contact-hours-table tr:last-child { border-bottom: none; }
.contact-hours-table td { padding: 0.6rem 0; color: var(--color-text-muted); }
.contact-hours-table td:first-child { font-weight: 500; color: var(--color-text); padding-right: var(--space-md); }

.contact-trade-cta {
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    border-left: 3px solid var(--color-gold);
}
.contact-trade-cta p { font-size: 0.875rem; color: var(--color-text-muted); margin: 0; }
.contact-trade-cta a { color: var(--color-accent); font-weight: 500; }

.contact-map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-bg-alt);
    position: sticky;
    top: calc(var(--header-height) + var(--space-md));
}
.contact-map-wrapper iframe { display: block; }

/* ─────────────────────────────────────────────
   Scroll Reveal Animations
──────────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* ─────────────────────────────────────────────
   Stats Bar
──────────────────────────────────────────────── */
/* ─────────────────────────────────────────────
   Product Showcase
──────────────────────────────────────────────── */
.home-product-showcase {
    padding: 6rem 0;
    background: #fafafa;
}
.showcase-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
}
.showcase-heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--color-text);
    margin: 0.25rem 0 0;
    line-height: 1.15;
}
.showcase-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    text-decoration: none;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}
.showcase-view-all:hover { text-decoration: underline; }
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.showcase-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}
.showcase-card:hover,
.showcase-card:focus-visible {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.showcase-card:focus-visible { box-shadow: 0 0 0 3px var(--color-accent), 0 16px 48px rgba(0,0,0,0.13); }
.showcase-card-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}
.showcase-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}
.showcase-card:hover .showcase-card-img img { transform: scale(1.06); }
.showcase-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.showcase-card:hover .showcase-card-overlay,
.showcase-card:focus-visible .showcase-card-overlay { opacity: 1; }
.showcase-view-btn {
    padding: 0.6rem 1.6rem;
    background: #fff;
    color: var(--color-text);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: translateY(6px);
    transition: transform 0.3s ease, background 0.2s, color 0.2s;
}
.showcase-card:hover .showcase-view-btn { transform: translateY(0); }
.showcase-card-meta { padding: 1rem 1.25rem 1.25rem; }
.showcase-card-cat {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 0.3rem;
}
.showcase-card-name {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

/* ─────────────────────────────────────────────
   About Split Section
──────────────────────────────────────────────── */
.about-split-section {
    padding: 6rem 0;
    background: #fff;
}
.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}
.about-split-heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
.about-split-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}
.about-split-btn {
    margin-top: 0.5rem;
}
.about-split-img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}
.about-split-img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.about-split-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--color-accent);
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(139,26,26,0.35);
}
.badge-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
}
.badge-text {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.8);
    margin-top: 0.25rem;
}

/* ─────────────────────────────────────────────
   Home — Who We Are
──────────────────────────────────────────────── */
.home-about {
    padding: 5rem 0;
    background: var(--color-bg-alt);
}
.home-about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

/* Image grid */
.about-img-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 0.75rem;
    height: 460px;
}
.about-img-main,
.about-img-sm {
    overflow: hidden;
    border-radius: 12px;
}
/* Images are 120% tall so translateY has ~10% margin each side before clipping */
.about-parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    display: block;
    will-change: transform;
    margin-top: -10%;
    /* No CSS transition — JS drives the transform each frame */
}
.about-img-side {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.about-img-sm { flex: 1; }

/* Text side */
.home-about-heading {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.15;
    color: var(--color-text);
    margin: 0.5rem 0 1.25rem;
}
.home-about-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 460px;
}

@media (max-width: 960px) {
    .home-about-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .home-about-images { order: -1; }
    .about-img-grid { height: 340px; }
}
@media (max-width: 640px) {
    .home-about { padding: 3rem 0; }
    .about-img-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .about-img-side { flex-direction: row; }
    .about-img-main { height: 240px; }
    .about-img-sm   { height: 150px; }
}

/* ─────────────────────────────────────────────
   Product Detail Panel
──────────────────────────────────────────────── */
.product-panel-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.product-panel-backdrop.open {
    opacity: 1;
    pointer-events: all;
}
.product-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 58%;
    max-width: 920px;
    background: #fff;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: -8px 0 60px rgba(0,0,0,0.18);
}
.product-panel.open { transform: translateX(0); }

.panel-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
    color: var(--color-text);
}
.panel-close:hover { background: var(--color-bg-alt); border-color: #999; transform: scale(1.1); }

.panel-inner {
    display: grid;
    grid-template-columns: 52% 48%;
    height: 100%;
    overflow: hidden;
}
.panel-gallery {
    background: #f2f2f0;
    overflow: hidden;
    position: relative;
}
.panel-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.25s ease;
}
.panel-info {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem 2rem;
    overflow-y: auto;
    gap: 0;
}
.panel-brand {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}
.panel-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    object-position: left;
}
.panel-meta { margin-bottom: 1rem; }
.panel-category {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}
.panel-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    color: var(--color-text);
    letter-spacing: -0.01em;
    margin: 0;
}
.panel-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin: 1.25rem 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}
/* Price display for verified users */
.panel-price-wrap {
    background: #f9f7f5;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-accent);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.panel-price-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
}
.panel-price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--color-accent);
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.panel-price-note {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
    font-family: var(--font-body);
}

/* Price gate (guest / unverified) */
.panel-price-gate {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
}
.panel-price-gate > p:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}
.panel-gate-register {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}
.panel-gate-register a { color: var(--color-accent); font-weight: 600; text-decoration: none; }
.panel-gate-register a:hover { text-decoration: underline; }

/* Price badge on showcase cards */
.showcase-card-price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: bold;
    color: var(--color-accent);
    letter-spacing: -0.01em;
    margin-top: 0.35rem;
}
.showcase-card-price--poa {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    font-style: italic;
    letter-spacing: 0;
}
.panel-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}
.panel-quote-btn { text-align: center; }
.panel-view-full {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    justify-content: center;
}
.panel-view-full:hover { color: var(--color-accent); }
.panel-divider { height: 1px; background: var(--color-border); margin: 1.25rem 0 1rem; }
.panel-footer-note { font-size: 0.78rem; color: var(--color-text-muted); margin: 0; text-align: center; }
.panel-footer-note a { color: var(--color-accent); }

body.panel-open { overflow: hidden; }

/* ─────────────────────────────────────────────
   Why Choose MPD
──────────────────────────────────────────────── */
.home-why {
    padding: 7rem 0;
    background: #f5f5f3;
    color: #1a1a1a;
}
.why-header { margin-bottom: 5rem; }
.why-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
}
.why-heading {
    font-family: var(--font-display);
    font-weight: bold;
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin: 0;
}

/* Grid — shared borders via nth-child so there are no doubled lines */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.why-card {
    padding: 3rem 2.5rem 3rem 0;
    border-top: 1px solid rgba(0,0,0,0.10);
    border-right: 1px solid rgba(0,0,0,0.10);
    position: relative;
    overflow: hidden;
}
/* Last card in each row: no right border */
.why-card:nth-child(3n) {
    border-right: none;
    padding-right: 0;
}
/* First 3 cards: add left padding so cols align inside the grid */
.why-card:nth-child(3n+2),
.why-card:nth-child(3n+3) {
    padding-left: 2.5rem;
}
/* Bottom row: no top border, just the shared one */
.why-card:nth-child(n+4) {
    border-top-color: rgba(0,0,0,0.10);
}

/* Accent line — draws in horizontally after the card fades visible */
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 2px;
    width: 0;
    background: var(--color-accent);
    transition: width 0.7s ease 0.25s;
}
.why-card.visible::before { width: 2.5rem; }

/* Ghost number */
.why-card-num {
    display: block;
    font-family: var(--font-display);
    font-weight: bold;
    font-size: clamp(4rem, 6vw, 6rem);
    line-height: 1;
    letter-spacing: -0.03em;
    color: rgba(139,26,26,0.15);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}
.why-card:hover .why-card-num { color: rgba(139,26,26,0.35); }

/* Card title */
.why-card h3 {
    font-family: var(--font-display);
    font-weight: bold;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    color: #1a1a1a;
    margin: 0 0 0.85rem;
}

/* Card description */
.why-card p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* ─────────────────────────────────────────────
   Collections Grid
──────────────────────────────────────────────── */
.home-collections { padding: 5rem 0; background: #f8f8f8; }
.home-collections > .container > h2 { text-align: center; margin-bottom: 3rem; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.collections-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.collection-tile { position: relative; aspect-ratio: 4/3; overflow: hidden; display: block; text-decoration: none; background: #2a1010; }
.collection-tile:hover { text-decoration: none; }
.collection-tile-image { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.collection-tile:hover .collection-tile-image { transform: scale(1.05); }
.collection-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.collection-tile-name { color: #fff; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 600; margin-bottom: 0.35rem; }
.collection-tile-link { color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; display: flex; align-items: center; gap: 0.3rem; }
.collection-tile:hover .collection-tile-link { color: #fff; }
.collection-tile-image--placeholder { background: var(--color-accent); opacity: 0.6; }

/* ─────────────────────────────────────────────
   Contact CTA
──────────────────────────────────────────────── */
.home-contact { padding: 5rem 0; background: #1a1a1a; color: #fff; }
.home-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-left h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.contact-left p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }
.contact-detail { margin-bottom: 1.25rem; }
.contact-detail strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.contact-detail a { color: #fff; font-size: 1.3rem; font-weight: 600; text-decoration: none; font-family: var(--font-heading); }
.contact-detail a:hover { color: var(--color-gold); }
.contact-visit-btn { display: inline-block; margin-top: 1.5rem; padding: 0.75rem 1.75rem; border: 2px solid rgba(255,255,255,0.4); color: #fff; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, border-color 0.2s; border-radius: 3px; }
.contact-visit-btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; text-decoration: none; }

.contact-form-wrap .form-group { margin-bottom: 0.875rem; }
.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%; padding: 0.7rem 0.9rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.15s;
}
.contact-form-wrap input::placeholder,
.contact-form-wrap textarea::placeholder { color: rgba(255,255,255,0.4); }
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus { outline: none; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.12); }
.contact-form-wrap textarea { min-height: 120px; resize: vertical; }
.contact-form-submit { width: 100%; padding: 0.875rem; background: var(--color-accent); color: #fff; border: none; border-radius: 3px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; cursor: pointer; margin-top: 0.5rem; transition: background 0.2s; letter-spacing: 0.04em; }
.contact-form-submit:hover { background: var(--color-accent-dark); }
.contact-form-submit:disabled { opacity: 0.7; cursor: default; }
#contact-form-response { margin-top: 1rem; font-size: 0.875rem; }
.form-success { color: #a5d6a7; }

/* Light-background form variant — used by [mpd_contact_form] shortcode on light Elementor sections */
.mpd-form-light input,
.mpd-form-light textarea {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}
.mpd-form-light input::placeholder,
.mpd-form-light textarea::placeholder { color: var(--color-text-muted); }
.mpd-form-light input:focus,
.mpd-form-light textarea:focus { border-color: var(--color-accent); background: #fff; outline: none; }
.mpd-form-light .form-success { color: #2e7d32; }
.mpd-form-light .form-error  { color: var(--color-accent); }
.form-error { color: #ef9a9a; }

/* ─────────────────────────────────────────────
   Standard page.php / non-Elementor pages
──────────────────────────────────────────────── */

/* Give standard WP pages basic container + prose styling */
body:not(.elementor-page):not(.home) .site-main {
    max-width: var(--container-max);
    margin-inline: auto;
    padding: var(--space-2xl) var(--container-pad);
}

body:not(.elementor-page):not(.home) .site-main h1,
body:not(.elementor-page):not(.home) .site-main h2,
body:not(.elementor-page):not(.home) .site-main h3 { margin-bottom: 0.75rem; }

body:not(.elementor-page):not(.home) .site-main p { margin-bottom: 1rem; color: var(--color-text-muted); line-height: 1.75; }

/* Elementor full-width template — no max-width constraint */
.elementor-page .site-main,
.site-main.elementor-full-width,
.site-main.home-page {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* ─────────────────────────────────────────────
   Elementor compatibility
──────────────────────────────────────────────── */

/* Let Elementor's per-widget typography controls take full effect */
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
}

/* Allow Elementor sections to go full-width */
.elementor-section.elementor-section-stretched {
    left: 0 !important;
    width: 100% !important;
}

/* ─────────────────────────────────────────────
   Account Dashboard
──────────────────────────────────────────────── */

/* Allow the account page to break out of site-main constraints */
.woocommerce-account body:not(.elementor-page) .site-main,
.woocommerce-account .site-main {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* ── Hero ── */
.acct-hero {
    background: #1a1a1a;
    padding: 4rem 0 3.5rem;
    color: #fff;
}
.acct-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.acct-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.45);
    font-family: var(--font-body);
    margin-bottom: 1rem;
    display: block;
}
.acct-welcome {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0;
}
.acct-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-body);
    white-space: nowrap;
    flex-shrink: 0;
}
.acct-badge--verified { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.acct-badge--pending  { background: rgba(234,179,8,0.12);  color: #ca8a04;  border: 1px solid rgba(234,179,8,0.3);  }

/* ── Verification Banner ── */
.acct-verify-banner {
    background: #fffbeb;
    border-bottom: 1px solid #fde68a;
    padding: 1.25rem 0;
}
.acct-verify-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9rem;
    color: #92400e;
    line-height: 1.6;
}
.acct-verify-inner svg { color: #d97706; flex-shrink: 0; margin-top: 2px; }

/* ── Stats Strip ── */
.acct-stats-strip {
    background: #f5f5f3;
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
}
.acct-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.acct-stat {
    padding: 0 1.5rem;
    border-right: 1px solid var(--color-border);
}
.acct-stat:last-child { border-right: none; }
.acct-stat-val {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 0.2rem;
    word-break: break-all;
}
.acct-stat-lbl {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-family: var(--font-body);
}
.acct-stat--active  { color: #22c55e; }
.acct-stat--pending { color: #ca8a04; }

/* ── Section title ── */
.acct-section-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 1.75rem;
}

/* ── Quick Actions ── */
.acct-actions-section {
    padding: 4rem 0;
    background: #fff;
}
.acct-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.acct-action-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    text-decoration: none;
    color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.acct-action-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 24px rgba(139,26,26,0.08);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--color-text);
}
.acct-action-icon {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}
.acct-action-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: bold;
    margin: 0;
    color: var(--color-text);
    letter-spacing: -0.01em;
}
.acct-action-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}
.acct-action-arrow {
    display: flex;
    align-items: center;
    color: var(--color-accent);
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity 0.2s, transform 0.2s;
}
.acct-action-card:hover .acct-action-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── Account Info ── */
.acct-info-section {
    padding: 4rem 0;
    background: #f5f5f3;
}
.acct-info-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    align-items: start;
}
.acct-info-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--color-border);
}
.acct-details-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
}
.acct-detail-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}
.acct-detail-row:last-child { border-bottom: none; }
.acct-detail-row dt {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    font-family: var(--font-body);
}
.acct-detail-row dd {
    font-size: 0.9rem;
    color: var(--color-text);
    word-break: break-word;
}
.acct-verified-text { color: #22c55e; font-weight: 600; }
.acct-pending-text  { color: #ca8a04; font-weight: 600; }

.acct-edit-link {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-accent);
    text-decoration: none;
}
.acct-edit-link:hover { text-decoration: underline; }

.acct-contact-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.acct-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.acct-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.acct-contact-list svg { color: var(--color-accent); flex-shrink: 0; }
.acct-contact-list a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
}
.acct-contact-list a:hover { color: var(--color-accent); }
.acct-hours {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ── Logout ── */
.acct-logout-section {
    padding: 2rem 0 3rem;
    background: #f5f5f3;
    border-top: 1px solid var(--color-border);
}
.acct-logout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.acct-logout-btn:hover { color: var(--color-accent); }

/* ── Sub-page wrapper (edit account, etc.) ── */
.acct-sub-page {
    padding: 3rem 0 5rem;
}
.acct-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    text-decoration: none;
    margin-bottom: 2rem;
    display: inline-flex;
}
.acct-back-link:hover { color: var(--color-accent); }
.woocommerce-MyAccount-content { max-width: 560px; }

/* ─────────────────────────────────────────────
   Responsive Breakpoints
──────────────────────────────────────────────── */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
    .category-grid          { grid-template-columns: repeat(2, 1fr); }
    .intro-grid             { grid-template-columns: repeat(2, 1fr); }
    .feature-strip-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer-grid            { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
    .footer-brand           { grid-column: 1 / -1; }

    /* About page */
    .about-origin-grid      { grid-template-columns: 1fr; gap: 3rem; }
    .about-origin-ghost     { font-size: clamp(5rem, 18vw, 8rem); }
    .about-tl               { grid-template-columns: repeat(2, 1fr); gap: 3rem 0; }
    .about-tl::before       { display: none; }
    .about-tl-item          { text-align: left; padding: 0 2rem 0 0; }
    .about-tl-dot           { margin: 0 0 1.5rem; }
    .about-stats-row        { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .about-stat-item        { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 2rem; }
    .about-stat-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .about-stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .about-values-grid      { grid-template-columns: 1fr; gap: 3rem; }
    .about-how-steps        { grid-template-columns: 1fr; gap: 3rem; }
    .about-how-steps::before { display: none; }
    .about-how-step         { padding: 0; text-align: left; display: flex; align-items: flex-start; gap: 2rem; }
    .about-how-num          { margin: 0; flex-shrink: 0; }
    .about-img-break        { height: 380px; }

    /* Account dashboard */
    .acct-hero-inner        { gap: 1.5rem; }
    .acct-actions-grid      { grid-template-columns: repeat(2, 1fr); }
    .acct-stats-row         { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .acct-stat:nth-child(2) { border-right: none; }
    .acct-stat:nth-child(3) { border-top: 1px solid var(--color-border); padding-top: 1.25rem; margin-top: 0.5rem; }
    .acct-stat:nth-child(4) { border-right: none; border-top: 1px solid var(--color-border); padding-top: 1.25rem; margin-top: 0.5rem; }
    .acct-info-grid         { grid-template-columns: 1fr; }

    /* Contact */
    .contact-layout         { grid-template-columns: 1fr; }
    .contact-map-wrapper    { position: static; }

    /* Homepage new sections */
    .why-grid                           { grid-template-columns: repeat(2, 1fr); }
    .why-card:nth-child(3n)             { border-right: 1px solid rgba(255,255,255,0.08); padding-right: 2.5rem; }
    .why-card:nth-child(2n)             { border-right: none; padding-right: 0; }
    .why-card:nth-child(3n+2),
    .why-card:nth-child(3n+3)           { padding-left: 0; }
    .collections-grid                   { grid-template-columns: repeat(2, 1fr); }
    .home-contact-grid                  { grid-template-columns: 1fr; gap: 3rem; }
    .showcase-grid                      { grid-template-columns: repeat(2, 1fr); }
    .product-panel          { width: 80%; }
    .about-split-grid       { gap: 3rem; }
}

/* Mobile: ≤ 640px */
@media (max-width: 640px) {
    :root { --container-pad: 1rem; }

    .feature-strip-grid     { grid-template-columns: 1fr 1fr; }
    .category-grid          { grid-template-columns: 1fr; }
    .intro-grid             { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
    .footer-grid            { grid-template-columns: 1fr; gap: var(--space-lg); }

    .section-header         { flex-direction: column; gap: 0.5rem; }
    .contact-strip-grid     { flex-direction: column; gap: var(--space-sm); }

    /* About page mobile */
    .about-hero             { min-height: 75vh; }
    .about-hero-heading     { font-size: clamp(2.75rem, 10vw, 4rem); }
    .about-origin           { padding: 5rem 0; }
    .about-tl-section,
    .about-how-section,
    .about-values-section   { padding: 5rem 0; }
    .about-stats-bar        { padding: 4rem 0; }
    .about-final-cta        { padding: 5rem 0; }
    .about-tl               { grid-template-columns: 1fr; }
    .about-stats-row        { grid-template-columns: 1fr 1fr; }
    .about-stat-item        { padding: 0 0.5rem 1.5rem; }
    .about-values-grid      { gap: 2.5rem; }
    .about-value-item       { flex-direction: column; gap: 0.75rem; }
    .about-value-num        { font-size: 3rem; }
    .about-how-step         { gap: 1.5rem; }
    .about-img-break        { height: 280px; }
    .about-pull-quote       { font-size: clamp(1.25rem, 5vw, 1.75rem); }
    .about-final-actions    { flex-direction: column; align-items: center; }

    /* Account dashboard mobile */
    .acct-hero              { padding: 3.5rem 0 3rem; }
    .acct-hero-inner        { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    .acct-welcome           { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .acct-actions-grid      { grid-template-columns: 1fr; }
    .acct-actions-section   { padding: 3rem 0; }
    .acct-info-section      { padding: 3rem 0; }
    .acct-info-card         { padding: 1.75rem; }
    .acct-stats-strip       { padding: 1.5rem 0; }
    .acct-stats-row         { grid-template-columns: 1fr 1fr; }
    .acct-stat              { padding: 0.75rem 1rem; border-right: none; border-bottom: 1px solid var(--color-border); }
    .acct-stat:nth-child(1),
    .acct-stat:nth-child(2) { border-top: none; }
    .acct-stat:nth-child(3),
    .acct-stat:nth-child(4) { border-top: none; padding-top: 0.75rem; margin-top: 0; }
    .acct-stat:nth-child(odd)  { border-right: 1px solid var(--color-border); }
    .acct-stat:last-child   { border-bottom: none; }
    .acct-stat:nth-last-child(2) { border-bottom: none; }
    .acct-detail-row        { grid-template-columns: 110px 1fr; }

    .login-box { margin-inline: 0; border-radius: 0; box-shadow: none; }
    .login-page { padding: 0; }

    .header-actions .btn-outline { display: none; }

    /* Homepage new sections */
    .hero-carousel          { height: 480px; }
    .carousel-prev,
    .carousel-next          { display: none; }
    .why-grid               { grid-template-columns: 1fr; }
    .why-card               { padding: 2rem 0; border-right: none !important; }
    .why-card:nth-child(3n) { padding-right: 0; }
    .why-card:nth-child(3n+2),
    .why-card:nth-child(3n+3) { padding-left: 0; }
    .home-why               { padding: 4rem 0; }
    .why-heading            { font-size: clamp(2.25rem, 8vw, 3rem); }
    .collections-grid       { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .topbar-contacts        { gap: 0.75rem; font-size: 0.75rem; }
    .home-why,
    .home-collections,
    .home-contact           { padding: 3rem 0; }
    .about-split-section,
    .home-product-showcase  { padding: 3.5rem 0; }
    .about-split-grid       { grid-template-columns: 1fr; gap: 3rem; }
    .about-split-img-wrap img { height: 300px; }
    .about-split-badge      { bottom: -1rem; left: 1rem; }
    .showcase-grid          { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .showcase-header        { flex-direction: column; align-items: flex-start; }
    .product-panel          { width: 100%; }
    .panel-inner            { grid-template-columns: 1fr; grid-template-rows: 40vh 1fr; }
    .panel-info             { padding: 1.5rem; }
}
