/* =============================================================
   Powder Basin Cabinetry — Main Stylesheet
   assets/css/main.css
   ============================================================= */

/* ── RESET & CSS VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:       #1a2639;
    --navy-light: #243047;
    --gold:       #c9963a;
    --gold-light: #ddb35a;
    --cream:      #f5f0e8;
    --cream-dark: #ede7d6;
    --white:      #ffffff;
    --gray:       #6b7280;
    --gray-light: #f8f7f4;
    --text:       #2c2c2c;
    --border:     #e2ddd4;
    --radius:     8px;
    --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:  0 24px 64px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }

/* ── TOP BAR ── */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 8px 16px;
    text-align: center;
    line-height: 1.5;
}
.topbar a { color: var(--gold-light); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }
.topbar span { margin: 0 12px; display: inline-block; }

/* ── SITE HEADER ── */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

/* ── LOGO ── */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    width: 42px; height: 42px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--gold); }
.logo-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--navy); letter-spacing: -0.01em; line-height: 1.2;
}
.logo-text span {
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); line-height: 1;
}
.logo .custom-logo { height: 44px; width: auto; }

/* ── PRIMARY NAV ── */
.primary-nav #primary-menu {
    list-style: none;
    display: flex; align-items: center;
    gap: 2px; margin: 0; padding: 0;
}
.primary-nav #primary-menu li a {
    font-size: 0.88rem; font-weight: 500;
    color: var(--navy); text-decoration: none;
    padding: 8px 14px; border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    letter-spacing: 0.01em; display: block;
}
.primary-nav #primary-menu li a:hover,
.primary-nav #primary-menu li.current-menu-item a { background: var(--cream); color: var(--gold); }

/* ── HEADER CTAs ── */
.header-ctas { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ── GLOBAL BUTTONS ── */
.btn-outline {
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 9px 18px;
    border: 2px solid var(--navy); border-radius: 6px;
    color: var(--navy); background: transparent;
    text-decoration: none; cursor: pointer;
    transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold {
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    padding: 9px 22px;
    background: var(--gold); border: 2px solid var(--gold); border-radius: 6px;
    color: var(--white); text-decoration: none; cursor: pointer;
    transition: all 0.2s; display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── HAMBURGER ── */
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    padding: 6px; border-radius: 6px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--navy); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 32px 24px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu .mobile-menu-list { list-style: none; padding: 0; margin: 0; }
.mobile-menu .mobile-menu-list li a {
    display: block; padding: 12px 0;
    font-size: 1rem; font-weight: 500;
    color: var(--navy); text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}
.mobile-menu .mobile-menu-list li a:hover { color: var(--gold); }
.mobile-menu-ctas { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 620px;
    display: flex; align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(26,38,57,0.95) 40%, rgba(26,38,57,0.65) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1600&q=80') center/cover no-repeat;
}
.hero-pattern {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(201,150,58,0.12) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    max-width: 1200px; margin: 0 auto;
    padding: 80px 32px;
    display: grid; grid-template-columns: 1fr 400px;
    gap: 60px; align-items: center; width: 100%;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,150,58,0.15);
    border: 1px solid rgba(201,150,58,0.4);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.4); }
}
.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 700;
    color: var(--white); line-height: 1.15;
    margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-text p {
    font-size: 1.05rem; font-weight: 300;
    color: rgba(255,255,255,0.75); line-height: 1.7;
    max-width: 520px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
    font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 14px 30px;
    background: var(--gold); color: var(--white);
    text-decoration: none; border-radius: var(--radius);
    border: 2px solid var(--gold); transition: all 0.2s;
}
.btn-hero-primary:hover {
    background: var(--gold-light); border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,150,58,0.3);
}
.btn-hero-secondary {
    font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    padding: 14px 30px;
    background: transparent; color: var(--white);
    text-decoration: none; border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.4); transition: all 0.2s;
}
.btn-hero-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── HERO CARD (Quote Form) ── */
.hero-card {
    background: var(--white);
    border-radius: 16px; padding: 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.dealer-form-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 700;
    color: var(--navy); margin-bottom: 6px;
}
.dealer-form-wrap > p {
    font-size: 0.85rem; color: var(--gray); margin-bottom: 24px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 6px;
}
.form-group .required { color: #e53e3e; }
.form-group input,
.form-group select {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--border); border-radius: var(--radius);
    font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
    color: var(--text); background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none; appearance: auto;
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,150,58,0.12);
}
.form-group input.error,
.form-group select.error { border-color: #e53e3e; }
.btn-submit {
    width: 100%; padding: 13px;
    background: var(--navy); color: var(--white);
    font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    border: none; border-radius: var(--radius);
    cursor: pointer; transition: all 0.2s; margin-top: 4px;
    font-family: 'DM Sans', sans-serif;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-submit:hover { background: var(--gold); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.fine { font-size: 0.72rem; color: var(--gray); text-align: center; margin-top: 10px; }
.form-message {
    padding: 12px 16px; border-radius: var(--radius);
    font-size: 0.88rem; font-weight: 500; margin-bottom: 16px;
}
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-message.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── STATS BAR ── */
.stats-bar { background: var(--cream); border-bottom: 1px solid var(--border); }
.stats-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 28px 24px; text-align: center;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 700;
    color: var(--navy); line-height: 1;
}
.stat-label {
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--gray); margin-top: 4px;
}

/* ── SHARED SECTION STYLES ── */
section { padding: 80px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-tag {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700;
    color: var(--navy); line-height: 1.2; letter-spacing: -0.02em;
}
.section-sub {
    font-size: 1rem; font-weight: 300;
    color: var(--gray); line-height: 1.7;
    max-width: 580px; margin-top: 12px;
}

/* ── WHY US ── */
.why-us { background: var(--white); }
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.why-img {
    position: relative; border-radius: 16px;
    overflow: hidden; aspect-ratio: 4/3;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--navy); color: var(--white);
    padding: 10px 18px; border-radius: var(--radius);
    font-size: 0.8rem; font-weight: 600; line-height: 1.4;
}
.why-img-badge span {
    display: block; font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    color: var(--gold-light); line-height: 1;
}
.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-feature  { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
    flex-shrink: 0; width: 48px; height: 48px;
    background: var(--cream); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
}
.why-icon svg { width: 22px; height: 22px; }
.why-feature h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.why-feature p  { font-size: 0.88rem; font-weight: 300; color: var(--gray); line-height: 1.6; }

/* ── PRODUCTS / COLLECTIONS ── */
.products { background: var(--gray-light); }
.products-header {
    display: flex; justify-content: space-between;
    align-items: flex-end; margin-bottom: 40px;
}
.products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: 14px; overflow: hidden;
    border: 1px solid var(--border); transition: all 0.25s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img { aspect-ratio: 4/3; overflow: hidden; }
.product-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-info { padding: 22px; }
.product-tag {
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 6px;
}
.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--navy); margin-bottom: 6px;
}
.product-info p {
    font-size: 0.84rem; font-weight: 300;
    color: var(--gray); line-height: 1.6; margin-bottom: 16px;
}
.product-link {
    font-size: 0.82rem; font-weight: 600;
    color: var(--gold); text-decoration: none;
    letter-spacing: 0.04em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
    transition: color 0.2s;
}
.product-link::after { content: '→'; }
.product-link:hover  { color: var(--navy); }

/* ── PORTFOLIO / STYLES GALLERY ── */
.styles { background: var(--gray-light); }
.styles-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px; margin-top: 40px;
}
.style-card {
    position: relative; border-radius: 14px;
    overflow: hidden; cursor: pointer; display: block;
}
.style-card--featured { grid-row: span 2; }
.style-img {
    width: 100%; height: 100%; min-height: 220px;
    object-fit: cover; display: block; transition: transform 0.4s;
}
.style-card--featured .style-img { min-height: 460px; }
.style-card:hover .style-img { transform: scale(1.04); }
.style-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,38,57,0.82) 0%, transparent 55%);
    display: flex; flex-direction: column;
    justify-content: flex-end; padding: 24px;
}
.style-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700; color: var(--white);
}
.style-overlay p { font-size: 0.8rem; color: rgba(255,255,255,0.72); margin-top: 4px; }

/* ── HOW IT WORKS ── */
.how { background: var(--cream); }
.how-header { text-align: center; margin-bottom: 48px; }
.how-header .section-sub { margin: 12px auto 0; }
.how-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.how-step { text-align: center; }
.how-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: var(--gold); opacity: 0.35;
    line-height: 1; margin-bottom: 16px;
}
.how-icon-wrap {
    width: 64px; height: 64px;
    background: var(--white); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    color: var(--navy);
}
.how-icon-wrap svg { width: 28px; height: 28px; }
.how-step h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.how-step p  { font-size: 0.84rem; font-weight: 300; color: var(--gray); line-height: 1.6; }

/* ── CTA BANNER ── */
.dealer-cta { background: var(--navy); position: relative; overflow: hidden; padding: 0; }
.dealer-cta::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,150,58,0.12) 0%, transparent 70%);
    pointer-events: none;
}
.dealer-inner {
    max-width: 1200px; margin: 0 auto; padding: 80px 32px;
    display: grid; grid-template-columns: 1fr auto;
    gap: 48px; align-items: center;
}
.dealer-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
    color: var(--white); margin-bottom: 14px; letter-spacing: -0.02em;
}
.dealer-cta p {
    font-size: 1rem; font-weight: 300;
    color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 580px;
}
.dealer-cta-btns { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.btn-white {
    padding: 14px 28px;
    background: var(--white); color: var(--navy);
    font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    border: 2px solid var(--white); border-radius: var(--radius);
    text-decoration: none; text-align: center;
    cursor: pointer; transition: all 0.2s; display: block;
}
.btn-white:hover { background: var(--cream); }
.btn-outline-white {
    padding: 14px 28px;
    background: transparent; color: var(--white);
    font-size: 0.88rem; font-weight: 600;
    letter-spacing: 0.05em; text-transform: uppercase;
    border: 2px solid rgba(255,255,255,0.35); border-radius: var(--radius);
    text-decoration: none; text-align: center;
    cursor: pointer; transition: all 0.2s; display: block;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testi-header { text-align: center; margin-bottom: 48px; }
.testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: 14px; padding: 28px;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text {
    font-size: 0.9rem; font-weight: 300;
    color: var(--text); line-height: 1.7;
    margin-bottom: 20px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--navy); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.testi-role { font-size: 0.76rem; color: var(--gray); }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-header { text-align: center; margin-bottom: 48px; }
.faq-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden;
}
.faq-q {
    width: 100%; padding: 18px 22px;
    font-size: 0.92rem; font-weight: 600;
    color: var(--navy); cursor: pointer;
    display: flex; justify-content: space-between;
    align-items: center; gap: 12px;
    background: var(--white); border: none; text-align: left;
    font-family: 'DM Sans', sans-serif; transition: background 0.2s;
}
.faq-q:hover { background: var(--gray-light); }
.faq-q .arrow { transition: transform 0.3s; font-size: 0.8rem; color: var(--gold); flex-shrink: 0; }
.faq-q[aria-expanded="true"] .arrow { transform: rotate(180deg); }
.faq-a {
    padding: 14px 22px 18px;
    font-size: 0.86rem; font-weight: 300;
    color: var(--gray); line-height: 1.7;
    border-top: 1px solid var(--border);
}
.faq-a[hidden] { display: none; }

/* ── CONTACT BAR ── */
.contact-bar {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.contact-bar-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 36px 32px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item-icon {
    width: 48px; height: 48px;
    background: var(--navy); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item-label {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray);
}
.contact-item-val { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.contact-item-val a { text-decoration: none; color: inherit; }
.contact-item-val a:hover { color: var(--gold); }

/* ── FOOTER ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.65); }
.footer-top {
    max-width: 1200px; margin: 0 auto;
    padding: 64px 32px 40px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.footer-logo-text strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: var(--white);
}
.footer-logo-text span {
    font-size: 0.62rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
}
.footer-brand > p {
    font-size: 0.84rem; font-weight: 300; line-height: 1.7;
    max-width: 260px; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: background 0.2s;
}
.social-btn:hover { background: var(--gold); }
.footer-col h4 {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--white); margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 0.85rem; font-weight: 300;
    color: rgba(255,255,255,0.55); text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    max-width: 1200px; margin: 0 auto;
    padding: 20px 32px;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.78rem; font-weight: 300; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
    font-size: 0.78rem; font-weight: 300;
    color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── INTERIOR PAGES ── */
.site-main .entry-content { line-height: 1.85; font-size: 1rem; }
.site-main .entry-content h2,
.site-main .entry-content h3 { font-family: 'Playfair Display', serif; color: var(--navy); margin: 1.5em 0 0.6em; }
.site-main .entry-content p  { margin-bottom: 1.2em; }
.site-main .entry-content a  { color: var(--gold); text-decoration: underline; }

/* ── WP ADMIN BAR OFFSET ── */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .hero-content        { grid-template-columns: 1fr; }
    .hero-card           { display: none; }
    .why-grid            { grid-template-columns: 1fr; gap: 40px; }
    .products-grid       { grid-template-columns: 1fr 1fr; }
    .testi-grid          { grid-template-columns: 1fr 1fr; }
    .footer-top          { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-inner         { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .how-grid            { grid-template-columns: 1fr 1fr; gap: 32px; }
    .dealer-inner        { grid-template-columns: 1fr; }
    .dealer-cta-btns     { flex-direction: row; min-width: auto; }
}

@media (max-width: 768px) {
    .primary-nav  { display: none; }
    .header-ctas  { display: none; }
    .hamburger    { display: flex; }

    .hero-content { padding: 60px 24px; }
    .hero-text h1 { font-size: 2rem; }
    section       { padding: 56px 0; }
    .section-inner{ padding: 0 24px; }

    .stats-inner        { grid-template-columns: 1fr 1fr; }
    .products-grid      { grid-template-columns: 1fr; }
    .how-grid           { grid-template-columns: 1fr; }
    .testi-grid         { grid-template-columns: 1fr; }
    .faq-grid           { grid-template-columns: 1fr; }
    .contact-bar-inner  { grid-template-columns: 1fr; padding: 32px 24px; }
    .styles-grid        { grid-template-columns: 1fr; }
    .style-card--featured { grid-row: auto; }
    .style-card--featured .style-img { min-height: 260px; }
    .footer-top         { grid-template-columns: 1fr; padding: 40px 24px 24px; }
    .footer-bottom      { flex-direction: column; gap: 12px; text-align: center; padding: 20px 24px; }
    .footer-bottom-links{ flex-wrap: wrap; justify-content: center; }
    .dealer-inner       { padding: 60px 24px; }
    .dealer-cta-btns    { flex-direction: column; }
    .products-header    { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
    .stats-inner   { grid-template-columns: 1fr; }
    .stat-item     { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .topbar span   { display: block; margin: 2px 0; }
    .hero-actions  { flex-direction: column; }
    .btn-hero-primary,
    .btn-hero-secondary { text-align: center; }
}
