/*
Theme Name: Coin-Outlet Theme
Text Domain: coinoutlet
Version: 4.0
Description: A bold, traditional coin-dealer theme inspired by Liberty Coin — navy, gold, and white with dense, authentic layouts.
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
    /* Color Palette — Navy / Gold / White */
    --navy: #1b2a4a;
    --navy-dark: #121e36;
    --navy-light: #243660;
    --gold: #c5952a;
    --gold-light: #d4a83a;
    --gold-dark: #a67c1e;
    --gold-faded: rgba(197, 149, 42, 0.10);
    --accent-red: #b33a3a;
    --white: #ffffff;
    --off-white: #f5f6f8;
    --light-gray: #ebedf1;
    --border-light: #d6dae0;
    --border-dark: #b0b6c0;
    --text-dark: #1a1d24;
    --text-body: #4a4e57;
    --text-muted: #7d8290;

    /* Legacy aliases for compatibility */
    --primary-dark: var(--navy);
    --primary-darker: var(--navy-dark);
    --social-bar-bg: var(--navy);
    --cream: var(--off-white);
    --pure-white: var(--white);
    --dark-green: var(--navy);

    /* Typography */
    --font-heading: Georgia, 'Times New Roman', serif;
    --font-body: 'Open Sans', 'Segoe UI', Tahoma, sans-serif;
    --font-accent: Georgia, serif;

    /* Layout */
    --header-height: 0px;
    --container-width: 1280px;
    --container-narrow: 900px;

    /* Borders & Shadows */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --shadow-card: 0 1px 4px rgba(27, 42, 74, 0.07);
    --shadow-hover: 0 4px 16px rgba(27, 42, 74, 0.12);
    --transition: 0.15s ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.25;
    margin-top: 0;
    font-weight: 700;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-padding-tight {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-padding-wide {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.text-white {
    color: var(--white) !important;
}

/* ============================================
   HEADER — 3-Layer Design (Liberty Style)
   ============================================ */

/* Layer 1: Top Utility Bar — navy with gold text */
.top-bar {
    background-color: var(--navy);
    padding: 7px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid var(--gold);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-social a:hover {
    color: var(--gold-light);
}

.top-bar-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold-light);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.top-bar-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.trust-divider {
    opacity: 0.3;
    color: var(--gold);
}

/* Layer 2: Branding Row — white with logo + search + contact */
.branding-bar {
    background-color: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.branding-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.site-logo img {
    height: 55px;
    width: auto;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
}

.site-logo-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.site-logo-tagline {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.branding-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.branding-contact a.branding-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color var(--transition);
}

.branding-contact a.branding-phone:hover {
    color: var(--gold);
}

.branding-contact a.branding-ebay-btn {
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.8rem;
    gap: 0;
}

.branding-contact a.branding-ebay-btn:hover {
    color: var(--white);
}

.branding-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    flex-shrink: 0;
}

.contact-divider {
    width: 1px;
    height: 30px;
    background: var(--border-light);
}

/* Layer 3: Navigation Bar — navy background */
.nav-bar {
    background-color: var(--navy);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 13px 20px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all var(--transition);
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
    transform: scaleX(1);
}

.main-navigation a:hover {
    color: var(--gold-light);
}

/* Nav Right: Search */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-input {
    width: 200px;
    padding: 7px 36px 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: all var(--transition);
    outline: none;
}

.nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.nav-search-input:focus {
    border-color: var(--gold);
    width: 260px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 2px rgba(197, 149, 42, 0.15);
}

.nav-search-btn {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

.nav-search-btn svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.5);
    transition: fill var(--transition);
}

.nav-search-btn:hover svg {
    fill: var(--gold);
}

/* Hamburger */
.hamburger-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    border-radius: 0;
}

.hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
}

/* ============================================
   HERO SECTION — Liberty Style
   ============================================ */
.hero-section {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 42, 74, 0.93) 0%, rgba(27, 42, 74, 0.75) 60%, rgba(27, 42, 74, 0.50) 100%);
}

/* Decorative hero effects removed */
.hero-overlay::after {
    display: none;
}

.hero-section::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

/* Decorative gold rule */
.hero-rule {
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 20px;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
    line-height: 1.7;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

/* Stats Strip */
.stats-strip {
    display: flex;
    gap: 36px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(197, 149, 42, 0.3);
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

/* ============================================
   BUTTONS — Square, bold, dealer-style
   ============================================ */
.button {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 0;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.button-gold {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.button-gold:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    box-shadow: 0 3px 12px rgba(197, 149, 42, 0.3);
}

.button-navy {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.button-navy:hover {
    background-color: var(--navy-light);
    border-color: var(--navy-light);
    color: var(--white);
}

.button-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
}

.button-outline:hover {
    background-color: var(--navy);
    color: var(--white);
}

.button-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: transparent;
}

.button-outline-white:hover {
    background-color: var(--white);
    color: var(--navy);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================
   CREDENTIALS / TRUST BANNER
   ============================================ */
.credentials-banner {
    background-color: var(--navy-dark);
    padding: 14px 0;
    position: relative;
    border-top: 2px solid var(--gold);
    border-bottom: none;
}

.credentials-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.credential-divider {
    opacity: 0.3;
    color: var(--gold);
}

/* ============================================
   SECTION TITLES — with gold flanking lines
   ============================================ */
.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Decorative gold rule under section titles */
.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-top: 12px;
}

.text-center .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

/* Section header — simplified */
.section-header-decorated {
    text-align: center;
    margin-bottom: 20px;
}

.section-header-decorated .section-title {
    margin-bottom: 0;
}

.section-header-decorated .section-title::after {
    display: none;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-body);
    display: block;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ============================================
   CATEGORY GRID — Large tiles with coin images
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.category-tile {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 2px solid var(--border-light);
    background: var(--off-white);
    display: flex;
    align-items: flex-end;
    transition: box-shadow var(--transition);
}

.category-tile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.category-tile-label {
    position: relative;
    z-index: 2;
    display: block;
    width: 70%;
    margin-left: auto;
    padding: 10px 20px;
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
    transition: background var(--transition);
}

.category-tile:hover .category-tile-label {
    background: var(--gold);
}

.category-tile a {
    position: absolute;
    inset: 0;
    z-index: 3;
}

/* ============================================
   SERVICES / CATEGORY GRID (cards)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 0;
    border: 1px solid var(--border-light);
    border-top: 3px solid var(--navy);
    text-align: center;
    transition: box-shadow var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--gold);
    line-height: 1;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 10px;
    text-transform: none;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   PRODUCT GRID (Archive & Homepage)
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

/* Show 4 products on desktop, 3 on mobile */
@media (max-width: 768px) {
    .product-grid .product-card:nth-child(4) {
        display: none;
    }
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-thumbnail {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--off-white);
    border-bottom: 1px solid var(--border-light);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
    color: var(--text-dark);
}

.product-price {
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0 0 6px;
    font-variant-numeric: tabular-nums;
}

.product-card .excerpt {
    font-size: 0.82rem;
    color: var(--text-body);
    margin: 0 0 10px;
    line-height: 1.5;
}

.view-details {
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-top: 6px;
    transition: color var(--transition);
}

.view-details:hover {
    color: var(--gold-dark);
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */
.breadcrumbs {
    font-size: 0.82rem;
    color: var(--text-body);
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--text-body);
    text-decoration: none;
    transition: color var(--transition);
}

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

.breadcrumb-sep {
    margin: 0 8px;
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 600;
}

.product-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}

.product-page-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    flex: 1;
    color: var(--navy);
}

.product-nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.82rem;
    white-space: nowrap;
    margin-top: 8px;
}

.product-nav-links a {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.product-nav-links a:hover {
    color: var(--gold);
}

.product-nav-divider {
    color: var(--border-light);
}

.single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-details h1 {
    display: none;
    /* title shown in header instead */
}

.product-description-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: var(--navy);
    border-bottom: 2px solid var(--navy);
    padding-bottom: 8px;
    display: inline-block;
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 28px;
}

.product-description p {
    margin-bottom: 14px;
}

.single-product-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--gold-faded);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-status-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.product-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.product-cta-group .button {
    text-align: center;
    width: 100%;
}

.product-footer-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

/* Legacy meta box — restyle */
.product-meta-box {
    background: var(--off-white);
    color: var(--text-dark);
    padding: 28px;
    border-radius: 0;
    margin-top: 20px;
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--navy);
}

.product-meta-box p {
    margin-bottom: 14px;
    color: var(--text-body);
}

.product-meta-box strong {
    color: var(--text-dark);
}

/* ============================================
   WHY CHOOSE US / DUAL LAYOUT
   ============================================ */
.dual-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.layout-text h2 {
    font-family: var(--font-heading);
    color: var(--navy);
}

.layout-text p {
    color: var(--text-body);
    line-height: 1.8;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.check-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.check-list li strong {
    color: var(--text-dark);
}

.layout-visual {
    position: relative;
    height: 380px;
    background: var(--navy);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Editorial-style "Est." display */
.experience-display {
    text-align: center;
    color: var(--white);
}

.experience-display .est-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -2px;
}

.experience-display .est-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    letter-spacing: 1px;
}

/* Legacy badge support */
.experience-badge {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* ============================================
   CTA SECTION — Navy background
   ============================================ */
.cta-section {
    background-color: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

/* ============================================
   PAGE HEADERS — navy blue
   ============================================ */
.page-header {
    padding: 50px 0;
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.page-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.page-header .breadcrumbs,
.page-header .breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumbs a:hover {
    color: var(--gold-light);
}

.page-header .breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   ARCHIVE HEADER — navy blue
   ============================================ */
.archive-header {
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
}

.archive-header h1 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--white);
}

.archive-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FOOTER — Navy with gold accents
   ============================================ */

/* Utility action bar above footer */
.footer-utility-bar {
    background: var(--off-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
}

.footer-utility-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.footer-utility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-utility-item svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.footer-utility-item .utility-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.footer-utility-item .utility-value {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
}

.footer-utility-item .utility-value a {
    color: var(--navy);
    text-decoration: none;
}

.footer-utility-item .utility-value a:hover {
    color: var(--gold);
}

/* Main footer */
.site-footer {
    background-color: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 50px 0 0;
    margin-top: 0;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    margin: 0 0 14px;
    line-height: 1.7;
}

.footer-contact-info {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.footer-contact-info a {
    color: var(--gold-light);
    font-weight: 600;
    text-decoration: none;
}

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

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    transition: all var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-item {
    margin-bottom: 18px;
}

.contact-item strong {
    color: var(--gold);
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--text-body);
    margin: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 40px;
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--navy);
    border-radius: 0;
}

.map-placeholder h3 {
    color: var(--navy);
    font-family: var(--font-heading);
}

.map-placeholder p {
    color: var(--text-body);
}

.contact-form-container {
    padding: 50px 40px;
    border: 2px dashed var(--border-light);
    border-radius: 0;
    background: var(--white);
    text-align: center;
}

/* ============================================
   SHOW CARDS — navy left accent
   ============================================ */
.show-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-left: 3px solid var(--navy);
    padding: 28px;
    transition: box-shadow var(--transition);
}

.show-card:hover {
    box-shadow: var(--shadow-hover);
}

.show-card h3 {
    font-family: var(--font-heading);
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: var(--navy);
}

.show-date {
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.show-location {
    font-size: 0.92rem;
    color: var(--text-body);
    margin-bottom: 12px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.margin-0 {
    margin: 0;
}

.bg-light {
    background-color: var(--off-white);
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    background-opacity: 0.05;
}

.bg-navy {
    background-color: var(--navy);
    color: var(--white);
}

.bg-dark {
    background-color: var(--navy);
}

.bg-parchment {
    background-color: var(--light-gray);
}

.opacity-70 {
    opacity: 0.7;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-link {
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition);
}

.text-link:hover {
    color: var(--gold-dark);
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.no-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 0;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dual-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .layout-visual {
        height: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .hero-section h1 {
        font-size: 2.4rem;
    }

    .stats-strip {
        gap: 20px;
    }

    .branding-contact {
        display: none;
    }

    .top-bar-trust {
        display: none;
    }

    .top-bar-tagline {
        display: none;
    }

    .credentials-flex {
        flex-direction: column;
        gap: 6px;
    }

    .credential-divider {
        display: none;
    }

    .footer-utility-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .section-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hamburger-toggle {
        display: flex;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        z-index: 1000;
        transition: right var(--transition);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        padding-top: 60px;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation a {
        padding: 14px 24px;
        border-bottom: 1px solid var(--border-light);
        font-size: 0.88rem;
        color: var(--text-dark);
    }

    .main-navigation a::after {
        display: none;
    }

    .mobile-nav-overlay.active {
        display: block;
    }

    .nav-search-form {
        display: none;
    }

    .single-product-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-page-header {
        flex-direction: column;
    }

    .product-nav-links {
        margin-top: 10px;
    }

    .hero-section {
        min-height: 420px;
    }

    .hero-section h1 {
        font-size: 1.9rem;
    }

    .stats-strip {
        flex-wrap: wrap;
        gap: 18px;
    }

    .stat-item {
        flex: 1 1 40%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .product-info h3 {
        font-size: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        text-align: left;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .top-bar {
        display: none;
    }

    .badge-number {
        font-size: 3.5rem;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        text-align: center;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BLOG / POST GRID
   ============================================ */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 30px 0;
}

@media (max-width: 900px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

.post-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    box-shadow: var(--shadow-hover);
}

.post-thumbnail {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--light-gray);
    display: block;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.post-card:hover .post-thumbnail img {
    opacity: 0.9;
}

.post-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-meta {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-title {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.post-title a {
    color: var(--text-dark);
}

.post-title a:hover {
    color: var(--gold);
}

.post-excerpt {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

/* ============================================
   SINGLE ARTICLE (GUTENBERG / PROSE)
   ============================================ */
.single-article .article-header {
    margin-bottom: 36px;
}

.article-meta {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    color: var(--text-muted);
}

.article-category {
    color: var(--gold);
}

.article-category:hover {
    color: var(--gold-dark);
}

.article-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy);
    margin: 0 0 20px;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 2.2rem;
    }
}

.article-author {
    font-size: 0.92rem;
    color: var(--text-body);
}

.article-featured-image {
    margin-bottom: 50px;
}

.featured-img-full {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 0;
}

/* Content container */
.article-content-container {
    padding-bottom: 50px;
}

/* Gutenberg prose styling */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
}

.article-content p {
    margin-bottom: 24px;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-top: 42px;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.article-content h2 {
    font-size: 1.8rem;
}

.article-content h3 {
    font-size: 1.4rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-content blockquote {
    margin: 36px 0;
    padding: 28px 36px;
    border-left: 3px solid var(--gold);
    background: var(--off-white);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--navy);
    border-radius: 0;
}

.article-content blockquote p {
    margin: 0;
}

.article-content img {
    margin: 28px 0;
    border-radius: 0;
    box-shadow: var(--shadow-card);
}

.article-content a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--gold-dark);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    padding: 36px 0;
    gap: 28px;
}

.border-top-divider {
    border-top: 1px solid var(--border-light);
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 6px;
}

.nav-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

/* Pagination */
.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    gap: 10px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border-light);
    border-radius: 0;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.screen-reader-text {
    display: none;
}

/* ============================================
   SELL PAGE — Process Layout
   ============================================ */
.sell-page-header {
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.sell-page-header h1 {
    color: var(--white);
}

.sell-page-header .breadcrumbs,
.sell-page-header .breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
}

.sell-page-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.sell-value-grid .service-icon svg {
    fill: var(--gold);
    stroke: none;
}

/* Process two-column layout */
.sell-process-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    align-items: start;
}

.sell-process-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 32px;
}

.sell-process-detail {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.sell-process-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sell-process-detail h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.sell-process-detail p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 10px;
}

.sell-note {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    padding-left: 14px;
    border-left: 2px solid var(--gold);
    margin-top: 10px;
}

/* Sidebar commitment box */
.sell-commitment-box {
    background: var(--navy);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
}

.sell-commitment-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.sell-commitment-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.sell-commitment-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.sell-commitment-rule {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.sell-commitment-box .check-list {
    position: relative;
    z-index: 1;
}

.sell-commitment-box .check-list li {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.sell-commitment-box .check-list li strong {
    color: var(--white);
}

/* ============================================
   SELL PAGE — CTA Band
   ============================================ */
.sell-cta-band {
    background: var(--navy-dark);
    padding: 44px 0;
    position: relative;
    border-top: 2px solid var(--gold);
    border-bottom: none;
}

.sell-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    position: relative;
    z-index: 1;
}

.sell-cta-text h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.sell-cta-text h2::after {
    display: none;
}

.sell-cta-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 0;
}

.sell-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.sell-phone-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem !important;
    padding: 14px 32px !important;
    letter-spacing: 0.5px !important;
}

.sell-cta-walkin {
    font-family: var(--font-heading);
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.92rem;
}

/* ============================================
   SELL PAGE — FAQ Accordion
   ============================================ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.4;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 0 0 20px;
    color: var(--text-body);
    line-height: 1.8;
    font-size: 0.92rem;
    margin: 0;
}

/* ============================================
   SELL PAGE — Responsive
   ============================================ */
@media (max-width: 992px) {
    .sell-process-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sell-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .sell-cta-text p {
        max-width: none;
    }

    .sell-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .sell-cta-actions .button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .sell-page-header h1 {
        font-size: 1.8rem;
    }

    .sell-cta-text h2 {
        font-size: 1.4rem;
    }
}

/* ============================================
   SHOWS & CAROUSEL STYLES
   ============================================ */

/* Generic Show Card improvements */
.show-card {
    transition: all var(--transition);
    background: var(--white);
    border: 1px solid var(--border-light);
    position: relative;
}

.show-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.show-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
}

/* Past Shows Carousel */
.shows-carousel-outer {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.shows-carousel-container {
    position: relative;
    width: 100%;
    height: 480px;
    /* Large height for desktop */
    background: var(--navy-dark);
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s, z-index 1s;
    display: flex;
    flex-wrap: wrap;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.carousel-collage {
    width: 60%;
    height: 100%;
    display: flex;
    gap: 2px;
    background: var(--navy-dark);
}

.carousel-info {
    width: 40%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
}

@media (max-width: 991px) {
    .shows-carousel-container {
        height: auto;
        min-height: 0;
    }

    .carousel-slide {
        position: relative;
        inset: auto;
        flex-direction: column;
        display: none;
        transition: none;
    }

    .carousel-slide.active {
        display: flex;
    }

    .carousel-collage {
        width: 100%;
        height: 240px;
    }

    .carousel-info {
        width: 100%;
        height: auto;
        padding: 28px 24px;
    }

    .carousel-info h3 {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .carousel-info .show-date {
        font-size: 1rem;
    }

    .carousel-info .show-loc {
        font-size: 0.95rem;
    }

    .carousel-info .mt-20 {
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .carousel-collage {
        height: 180px;
    }

    .collage-side {
        width: 40%;
    }

    .carousel-info {
        padding: 22px 18px;
    }

    .carousel-info h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
}

.carousel-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.carousel-info .show-meta {
    margin-bottom: 30px;
}

.carousel-info .show-date {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.carousel-info .show-loc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.collage-main {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.collage-side {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.collage-side-item {
    flex: 1;
    background-size: cover;
    background-position: center;
}

/* Single Show Styles */
.single-show .show-header {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-light);
}

.show-details-banner {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.show-detail-item {
    text-align: left;
}

.show-detail-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 5px;
}

.show-detail-item .value {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Upcoming Empty State */
.upcoming-empty-card {
    grid-column: 1 / -1;
    background: var(--off-white);
    border: 2px dashed var(--border-dark);
    padding: 60px !important;
    text-align: center;
}

.upcoming-empty-card h3 {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* ============================================
   COMPACT HERO — text-only banner
   ============================================ */
.hero-compact {
    background: var(--navy);
    padding: 36px 0;
    border-bottom: 3px solid var(--gold);
}

.hero-compact h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 8px;
    line-height: 1.2;
}

.hero-compact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0 0 18px;
    max-width: 600px;
}

.hero-compact .hero-actions {
    gap: 10px;
}

/* ============================================
   TRUST STRIP — single-line credentials
   ============================================ */
.trust-strip {
    background: var(--navy-dark);
    padding: 14px 0;
    border-top: 2px solid var(--gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}

.trust-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-strip-ebay {
    color: var(--gold-light) !important;
    text-decoration: none;
}

.trust-strip-ebay:hover {
    color: var(--gold) !important;
    text-decoration: underline;
}

.trust-strip-sep {
    color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   SHOW LIST — utilitarian rows (homepage)
   ============================================ */
.show-list {
    border-top: 1px solid var(--border-light);
}

.show-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    color: inherit;
}

.show-list-item:hover {
    background: var(--off-white);
    padding-left: 10px;
    padding-right: 10px;
    margin-left: -10px;
    margin-right: -10px;
}

.show-list-date {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    min-width: 100px;
}

.show-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.show-list-info strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
}

.show-list-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.show-list-arrow {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.show-empty-inline {
    padding: 20px 0;
    color: var(--text-muted);
    font-size: 0.92rem;
    border-top: 1px solid var(--border-light);
}

.show-empty-inline a {
    color: var(--gold);
}

@media (max-width: 768px) {
    .hero-compact h1 {
        font-size: 1.6rem;
    }

    .hero-compact p {
        font-size: 0.88rem;
    }

    .trust-strip {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .show-list-date {
        min-width: 80px;
        font-size: 0.82rem;
    }
}

/* ============================================
   ARCHIVE & CARD STANDARDIZATION
   ============================================ */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.archive-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.archive-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.archive-card-link {
    display: flex;
    flex-direction: column;
    padding: 24px;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.archive-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.archive-card-title {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
}

.archive-card-loc {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.archive-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Status Badges */
.status-badge {
    background: var(--off-white);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 0.7rem;
    border: 1px solid var(--border-light);
}

.status-badge.sold {
    background: #fffafa;
    color: var(--accent-red);
    border-color: #ffdce0;
}

.is-past {
    opacity: 0.8;
}

.is-past:hover {
    opacity: 1;
}

/* Utility Info Density */
.margin-0 {
    margin: 0 !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.text-link {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color var(--transition);
}

.text-link:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* Dots for Carousel */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }
}