/* ============================================
   StoreMore Warehouses LLC - Main Stylesheet
   Mobile-first, conversion-optimized, SEO-ready
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --primary: #1c1c1c;
    --primary-dark: #111111;
    --primary-light: #333333;
    --accent: #c9a74e;
    --accent-dark: #a8893d;
    --accent-light: #d4b965;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f1c40f;
    --dark: #1a1a2e;
    --gray-900: #2d2d44;
    --gray-700: #4a4a68;
    --gray-500: #6c6c8a;
    --gray-300: #b0b0c8;
    --gray-100: #f0f0f8;
    --white: #ffffff;
    --bg: #f8f9fc;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --transition: 0.2s ease;
    --container: 1200px;
    --header-height: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul { list-style: none; }
address { font-style: normal; }
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201,167,78,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

/* --- Promo Banner --- */
.promo-banner {
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    position: relative;
}
.promo-banner p { margin: 0; }
.promo-banner a { color: var(--white); text-decoration: underline; font-weight: 600; margin-left: 8px; }
.promo-banner a:hover { color: var(--warning); }
.promo-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    padding: 5px;
    line-height: 1;
}
.promo-close:hover { opacity: 1; }

/* --- Top Bar --- */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 6px 0;
    display: none;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left { display: flex; gap: 20px; }
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-bar-item svg { opacity: 0.7; flex-shrink: 0; }
.top-bar-phone { color: var(--warning); }
.top-bar-phone:hover { color: var(--white); }
.top-bar a { color: inherit; }

@media (min-width: 768px) {
    .top-bar { display: block; }
}

/* --- Header --- */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 20px;
}
.logo img { height: 45px; width: auto; }

/* Navigation */
.main-nav { display: none; }
.nav-list {
    display: flex;
    gap: 4px;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--primary);
    background: var(--gray-100);
}
.dropdown-arrow { font-size: 10px; opacity: 0.5; }

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
    z-index: 100;
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    color: var(--gray-700);
}
.dropdown li a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

/* Header CTA */
.header-cta { display: none; gap: 8px; }
.btn-phone-header { padding: 8px 14px; font-size: 13px; }

@media (min-width: 1024px) {
    .main-nav { display: flex; }
    .header-cta { display: flex; }
    .mobile-toggle { display: none !important; }
}

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}
.mobile-nav ul li a:hover { color: var(--accent); }
.mobile-nav-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 1024px) {
    .mobile-nav { display: none !important; }
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="30" fill="rgba(255,255,255,0.03)"/><circle cx="20" cy="80" r="40" fill="rgba(255,255,255,0.02)"/></svg>');
    background-size: cover;
}
.hero-inner {
    display: grid;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 600px; }
.hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 800;
}
.hero h1 .accent { color: var(--accent-light); }
.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.5;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    opacity: 0.85;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-trust-item svg { flex-shrink: 0; }
.hero-video {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-video video {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .hero { padding: 80px 0 70px; }
    .hero-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* --- Section Styles --- */
.section {
    padding: 60px 0;
}
.section-alt {
    background: var(--bg);
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-header p {
    margin-top: 12px;
    font-size: 17px;
    color: var(--gray-500);
}
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 8px;
}

/* --- Unit Cards --- */
.units-grid {
    display: grid;
    gap: 20px;
}
.unit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all var(--transition);
    border: 2px solid transparent;
}
.unit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
    transform: translateY(-2px);
}
.unit-card-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.badge-climate { background: #e8f5e9; color: #2e7d32; }
.badge-drive-up { background: #e3f2fd; color: #1565c0; }
.badge-vehicle { background: #fff3e0; color: #e65100; }
.badge-warehouse { background: #f3e5f5; color: #7b1fa2; }
.badge-promo { background: var(--danger); color: var(--white); }

.unit-card-body { padding: 24px; }
.unit-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.unit-card-size {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
}
.unit-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}
.unit-feature-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 12px;
    border-radius: 20px;
}
.unit-card-fits {
    font-size: 13px;
    color: var(--gray-500);
    padding: 10px 0;
    border-top: 1px solid var(--gray-100);
    margin-bottom: 16px;
}
.unit-card-fits strong { color: var(--dark); }
.unit-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.unit-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}
.unit-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
}
.unit-price-original {
    font-size: 16px;
    color: var(--gray-300);
    text-decoration: line-through;
    display: block;
}
.unit-availability {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
}
.unit-availability.low { color: var(--danger); }

/* Competitor savings badge */
.competitor-savings {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 8px;
    border-left: 3px solid #2e7d32;
}
.savings-amount {
    font-size: 15px;
    font-weight: 800;
    color: #1b5e20;
    white-space: nowrap;
}
.savings-detail {
    font-size: 12px;
    color: #388e3c;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .units-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .units-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Feature Grid --- */
.features-grid {
    display: grid;
    gap: 24px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
}
.feature-card h3 { margin-bottom: 8px; font-size: 18px; }
.feature-card p { font-size: 14px; color: var(--gray-500); }

@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* --- Reviews --- */
.reviews-grid {
    display: grid;
    gap: 20px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}
.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.review-author { font-weight: 600; color: var(--dark); }
.review-source { font-size: 12px; color: var(--gray-500); }
.review-date { font-size: 12px; color: var(--gray-300); }
.stars { display: flex; gap: 2px; margin-bottom: 8px; }
.star { color: var(--gray-300); font-size: 18px; line-height: 1; }
.star.filled { color: var(--warning); }
.review-text { font-size: 15px; line-height: 1.6; color: var(--gray-700); }
.review-stats-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.review-stats-label { font-size: 13px; min-width: 60px; color: var(--gray-500); }
.review-stats-track {
    flex: 1;
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
}
.review-stats-fill {
    height: 100%;
    background: var(--warning);
    border-radius: 4px;
    transition: width 0.5s ease;
}
.review-stats-count { font-size: 13px; color: var(--gray-500); min-width: 24px; text-align: right; }

@media (min-width: 640px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Review Summary Box --- */
.review-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 40px;
}
.review-summary-rating {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.review-summary-text {
    font-size: 15px;
    color: var(--gray-500);
    margin: 8px 0 20px;
}

/* --- Price Table --- */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.price-table thead { background: var(--primary); color: var(--white); }
.price-table th {
    padding: 14px 20px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}
.price-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--gray-100); }
.price-table .price-cell { font-weight: 700; color: var(--primary); font-size: 18px; }
.price-table .promo-cell { color: var(--danger); font-weight: 700; }

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}
.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: 16px 0;
    font-size: 13px;
    color: var(--gray-500);
}
.breadcrumbs a { color: var(--primary); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }

/* --- Page Header (inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: 48px 0;
    text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 18px; opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* --- Content Sections --- */
.content-section { padding: 60px 0; }
.content-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}
.content-grid.reverse .content-text { order: 2; }
.content-grid.reverse .content-media { order: 1; }
@media (min-width: 768px) {
    .content-grid { grid-template-columns: 1fr 1fr; }
}
.content-text h2 { margin-bottom: 16px; }
.content-text p { margin-bottom: 16px; }
.content-text ul { margin: 16px 0; }
.content-text ul li {
    padding: 6px 0 6px 28px;
    position: relative;
}
.content-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}
.content-media img,
.content-media video {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

/* --- Contact Form --- */
.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 15px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--dark);
    transition: border-color var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(201,167,78,0.2);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row {
    display: grid;
    gap: 20px;
}
@media (min-width: 640px) {
    .form-row { grid-template-columns: 1fr 1fr; }
}
.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-weight: 500;
}

/* --- Map --- */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    gap: 24px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.blog-card-img {
    height: 200px;
    background: var(--gray-100);
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 13px; color: var(--gray-500); margin-bottom: 8px; }
.blog-card-title { font-size: 18px; margin-bottom: 8px; }
.blog-card-title a { color: var(--dark); }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: 14px; color: var(--gray-500); margin-bottom: 12px; }

@media (min-width: 640px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Blog Single --- */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
}
.blog-content h2 { margin: 32px 0 16px; }
.blog-content h3 { margin: 24px 0 12px; }
.blog-content p { margin-bottom: 16px; }
.blog-content ul, .blog-content ol { margin: 16px 0; padding-left: 24px; }
.blog-content li { margin-bottom: 8px; }
.blog-content img { border-radius: var(--radius); margin: 24px 0; }

/* --- FAQ --- */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font);
    font-size: 16px;
    transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
    opacity: 0.5;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item.active .faq-arrow { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--gray-700);
    font-size: 15px;
    line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 500px; }

/* --- Size Guide --- */
.size-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.size-card-visual {
    background: var(--gray-100);
    padding: 32px;
    text-align: center;
}
.size-dimensions {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}
.size-sqft {
    font-size: 16px;
    color: var(--gray-500);
    margin-top: 4px;
}
.size-card-body { padding: 24px; }
.size-card-body h3 { margin-bottom: 8px; }
.size-items {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.size-price { font-size: 20px; font-weight: 700; color: var(--accent); }
.size-price span { font-size: 14px; font-weight: 400; color: var(--gray-500); }

/* --- Trust Bar --- */
.trust-bar {
    display: grid;
    gap: 24px;
    text-align: center;
    padding: 40px 0;
}
.trust-item h4 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 4px;
}
.trust-item p {
    font-size: 14px;
    color: var(--gray-500);
}
@media (min-width: 640px) {
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .trust-bar { grid-template-columns: repeat(4, 1fr); }
}

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-col address p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}
.footer-col address svg { flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.footer-col address a { color: rgba(255,255,255,0.7); }
.footer-col address a:hover { color: var(--accent-light); }
.footer-logo { margin-bottom: 16px; height: 40px; width: auto; }
.footer-hours { margin-top: 16px; font-size: 14px; }
.footer-hours p { margin-bottom: 8px; }
.footer-hours strong { color: rgba(255,255,255,0.9); }
.footer-trust { margin-top: 16px; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 13px;
    text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent-light); }
.footer-address-seo {
    margin-top: 8px;
    font-size: 11px;
    opacity: 0.4;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

/* --- Sticky Mobile CTA --- */
.sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}
.sticky-call {
    background: var(--white);
    color: var(--primary);
}
.sticky-rent {
    background: var(--accent);
    color: var(--white);
}
.sticky-rent:hover { background: var(--accent-dark); color: var(--white); }

@media (min-width: 1024px) {
    .sticky-mobile-cta { display: none; }
}

/* Body padding for sticky CTA on mobile */
@media (max-width: 1023px) {
    body { padding-bottom: 56px; }
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* --- Skip to Content (Accessibility) --- */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-to-content:focus {
    top: 0;
}

/* --- Focus Styles (Accessibility WCAG 2.4.7) --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary-light, #c9a74e);
    outline-offset: 2px;
}
/* Remove default outline only when focus-visible is supported */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* --- Reduced Motion (Accessibility) --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in-up { opacity: 1; animation: none; }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}
.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }

/* --- Story & Poll Styles --- */
.unit-cta-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin: 8px 0;
    transition: background 0.3s ease;
}
.unit-cta-link:hover {
    background: var(--accent-dark);
    color: #fff;
}

.poll-widget {
    animation: fadeIn 0.5s ease;
}
.poll-teaser {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: 24px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent);
}

.poll-reveal {
    margin-top: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #1c1c1c 0%, #2d2d44 100%);
    border-radius: var(--radius-lg);
    color: #fff;
    text-align: center;
}
.poll-reveal h2 {
    color: var(--accent);
    margin-bottom: 16px;
}
.poll-answer {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.answer-true strong { color: var(--success); }
.answer-false strong { color: var(--danger); }

.poll-results {
    margin-top: 20px;
}
.poll-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    margin: 8px 0;
    overflow: hidden;
    height: 32px;
}
.poll-bar-fill {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 600;
    min-width: 60px;
    border-radius: 20px;
    transition: width 1s ease;
}
.poll-true { background: var(--success); }
.poll-false { background: var(--danger); }
.poll-total {
    font-size: 13px;
    opacity: 0.7;
    margin-top: 8px;
}

/* Story category badges in blog listing */
.blog-card-category {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cat-fictional { background: #fce4ec; color: #c62828; }
.cat-history { background: #e8eaf6; color: #283593; }
.cat-is-it-true { background: #fff3e0; color: #e65100; }
.cat-business { background: #e8f5e9; color: #2e7d32; }
.cat-unit { background: #e3f2fd; color: #1565c0; }

/* --- Exit Intent Popup --- */
.exit-popup-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7); z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.exit-popup {
    background: #fff; border-radius: 16px; padding: 40px 32px;
    max-width: 440px; width: 100%; text-align: center;
    position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: popIn 0.3s ease;
}
@keyframes popIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.exit-popup-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; font-size: 28px;
    cursor: pointer; color: #999; line-height: 1;
}
.exit-popup-close:hover { color: #333; }

/* --- Category Filter Bar --- */
.category-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; justify-content: center; }
.category-filter a {
    padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
    background: var(--gray-100); color: var(--text-secondary); text-decoration: none;
    transition: all 0.2s;
}
.category-filter a:hover, .category-filter a.active { background: var(--primary); color: #fff; }

/* --- Cost Calculator --- */
.calc-result { background: linear-gradient(135deg, #1c1c1c, #2d2d44); color: #fff; padding: 32px; border-radius: var(--radius-lg); text-align: center; margin-top: 24px; }
.calc-result .price-big { font-size: 48px; font-weight: 800; color: #c9a74e; }
.calc-result .price-label { font-size: 14px; opacity: 0.7; margin-top: 4px; }

/* --- Facility Map ("Pick Your Spot") --- */
.facility-map-section { padding: 60px 0 40px; background: #f8f9fc; }
.facility-map-section .section-header { text-align: center; margin-bottom: 28px; }
.facility-map-section h2 { font-size: 32px; color: #1a1a2e; margin: 0 0 10px; }
.facility-map-section .section-subtitle { color: #6c6c8a; font-size: 16px; max-width: 560px; margin: 0 auto 20px; line-height: 1.5; }
.facility-map-legend { display: flex; justify-content: center; gap: 24px; margin-bottom: 16px; font-size: 14px; color: #6c6c8a; }
.facility-map-legend .legend-dot { display: inline-block; width: 14px; height: 14px; border-radius: 3px; vertical-align: middle; margin-right: 6px; }
.facility-map-legend .legend-dot.available { background: #c8e6c9; }
.facility-map-legend .legend-dot.occupied { background: #ffcdd2; }
.facility-map-container { max-width: 1000px; margin: 0 auto; border-radius: 16px; background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.06); overflow: hidden; padding: 16px; }
.facility-map-hint { text-align: center; color: #a0a0b8; font-size: 13px; margin-top: 14px; }

/* SVG units */
.map-unit { transition: fill 0.15s, stroke 0.15s, filter 0.15s; stroke: #d0d0d8; stroke-width: 0.5; cursor: default; }
.map-unit.available { fill: #c8e6c9; cursor: pointer; }
.map-unit.occupied { fill: #ffcdd2; }
.map-unit.available.hovered { fill: #a5d6a7; stroke: #c9a74e; stroke-width: 2; filter: drop-shadow(0 0 4px rgba(201,167,78,0.45)); }
.map-unit.highlighted { fill: #c9a74e; stroke: #b8933e; stroke-width: 1.5; animation: mapPulse 1.5s ease-in-out infinite; }
.map-unit.mini-default { fill: #e8e8ee; stroke: #d0d0d8; stroke-width: 0.5; }
.map-unit-label { font-family: system-ui, sans-serif; pointer-events: none; }
.map-building-label { font-family: system-ui, sans-serif; }

@keyframes mapPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

/* Tooltip */
.facility-map-tooltip { position: absolute; z-index: 9999; background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.14); pointer-events: none; min-width: 180px; transition: opacity 0.15s; }
.facility-map-tooltip::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid #fff; }
.facility-map-tooltip.fmt-below::after { top: -8px; bottom: auto; border-top: none; border-bottom: 8px solid #fff; }
.fmt-unit { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 2px; }
.fmt-size { font-size: 13px; color: #6c6c8a; margin-bottom: 8px; }
.fmt-price { font-size: 22px; font-weight: 800; color: #c9a74e; margin-bottom: 4px; }
.fmt-cta { font-size: 13px; color: #c9a74e; font-weight: 600; }

/* Mini map (confirmation screen) */
.facility-map-mini { max-width: 420px; margin: 0 auto; }
.facility-map-mini-wrap { background: #f8f9fc; border-radius: 12px; padding: 16px; margin-bottom: 20px; text-align: center; }
.facility-map-mini-wrap h4 { font-size: 14px; color: #1a1a2e; margin: 0 0 10px; }

/* Mobile */
@media (max-width: 768px) {
    .facility-map-section { padding: 40px 0 24px; }
    .facility-map-section h2 { font-size: 24px; }
    .facility-map-container { border-radius: 10px; padding: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; touch-action: pan-x pan-y pinch-zoom; }
    .facility-map-svg { min-width: 700px; }
    .facility-map-hint { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    .map-unit { transition: none; }
    .map-unit.highlighted { animation: none; }
}

/* --- Rental Modal --- */
.rental-overlay {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7); z-index: 10001;
    align-items: center; justify-content: center;
    padding: 20px;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.rental-modal {
    background: var(--white); border-radius: 16px;
    max-width: 560px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: popIn 0.3s ease;
    padding: 32px;
}
.rental-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; font-size: 28px;
    cursor: pointer; color: #999; line-height: 1; z-index: 1;
}
.rental-close:hover { color: #333; }
.rental-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* Progress bar */
.rental-progress { margin-bottom: 24px; }
.rental-progress-bar {
    height: 4px; background: var(--gray-100); border-radius: 4px;
    overflow: hidden; margin-bottom: 12px;
}
.rental-progress-fill {
    height: 100%; background: var(--accent);
    border-radius: 4px; transition: width 0.3s ease;
}
.rental-progress-steps {
    display: flex; justify-content: space-between;
}
.rental-step-dot {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
    background: var(--gray-100); color: var(--gray-500);
    transition: all 0.2s ease;
}
.rental-step-dot.active {
    background: var(--accent); color: #fff;
}
.rental-step-dot.completed {
    background: var(--success); color: #fff;
}

/* Step content */
.rental-step-title {
    font-size: 20px; font-weight: 700; color: var(--dark);
    margin-bottom: 4px;
}
.rental-step-subtitle {
    font-size: 14px; color: var(--gray-500);
    margin-bottom: 20px;
}

/* Unit summary bar */
.rental-unit-summary {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--gray-100); border-radius: var(--radius);
    padding: 14px 16px; margin-bottom: 20px;
}
.rental-unit-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.rental-unit-price { font-weight: 700; font-size: 18px; color: var(--accent-dark); white-space: nowrap; }

/* Form fields */
.rental-field { margin-bottom: 14px; }
.rental-field label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--gray-700); margin-bottom: 4px;
}
.rental-field .form-input { width: 100%; }
.field-error {
    font-size: 12px; color: var(--danger);
    margin-top: 2px; min-height: 16px;
}

/* Insurance options */
.insurance-option {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; border: 2px solid var(--gray-100);
    border-radius: var(--radius); margin-bottom: 10px;
    cursor: pointer; transition: border-color 0.2s ease;
    font-size: 14px;
}
.insurance-option:hover { border-color: var(--accent-light); }
.insurance-option:has(input:checked) { border-color: var(--accent); background: rgba(201,167,78,0.05); }
.insurance-option input[type="radio"] {
    width: 18px; height: 18px; accent-color: var(--accent);
    flex-shrink: 0;
}

/* Cost breakdown */
.cost-breakdown { margin-bottom: 20px; }
.cost-row {
    display: flex; justify-content: space-between;
    padding: 8px 0; font-size: 14px; color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}
.cost-row.total {
    border-bottom: none; border-top: 2px solid var(--dark);
    margin-top: 8px; padding-top: 12px;
    font-size: 18px; font-weight: 700; color: var(--dark);
}

/* Navigation buttons */
.rental-nav {
    display: flex; justify-content: space-between;
    gap: 12px; margin-top: 24px;
}
.rental-nav .btn { flex: 1; }

/* Loading spinner */
.rental-loading { text-align: center; padding: 48px 0; }
.rental-spinner {
    width: 36px; height: 36px;
    border: 3px solid var(--gray-100);
    border-top-color: var(--accent);
    border-radius: 50%; margin: 0 auto 16px;
    animation: rentalSpin 0.7s linear infinite;
}
@keyframes rentalSpin { to { transform: rotate(360deg); } }

/* Success / confirmation */
.rental-success { text-align: center; margin-bottom: 24px; }
.rental-success-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: #e8f5e9; color: var(--success);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}

/* Screen reader only */
.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;
}

/* Rental modal mobile responsive */
@media (max-width: 640px) {
    .rental-overlay { padding: 0; align-items: flex-end; }
    .rental-modal {
        max-width: 100%; max-height: 100vh;
        border-radius: 16px 16px 0 0;
        padding: 24px 20px;
    }
    .rental-unit-summary { flex-direction: column; gap: 4px; text-align: center; }
    .rental-step-title { font-size: 18px; }
    .rental-nav { flex-direction: column-reverse; }
    .rental-nav .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .rental-modal { animation: none; }
    .rental-spinner { animation-duration: 1.5s; }
    .rental-progress-fill { transition: none; }
    .rental-step-dot { transition: none; }
}

/* --- Print --- */
@media print {
    .promo-banner, .top-bar, .site-header, .sticky-mobile-cta, .cta-section, .poll-widget, .exit-popup-overlay, .rental-overlay { display: none; }
    body { color: #000; font-size: 12pt; }
    a { color: #000; text-decoration: underline; }
}
