/* ============================================================
   decorativestreetlight.in — Unified CSS
   Single source of truth for all styles.
   Variables, base, components, pages, responsive.
   ============================================================ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  /* Gold palette */
  --gold:         #d4a853;
  --gold-light:   #e8c547;
  --gold-dark:    #c4902a;
  --gold-400:     #d4a853;
  --gold-500:     #c4902a;
  /* Background / ink scale */
  --night:        #081524;
  --night-800:    #0d1f2d;
  --night-700:    #0f2236;
  --night-600:    #152a40;
  --ink-1:        #081524;
  --ink-2:        #0d1f2d;
  --ink-3:        #152a40;
  /* Text scale */
  --cream:        #e2e8f0;
  --cream-dark:   #cbd5e0;
  --steel:        #94a3b8;
  --steel-dark:   #64748b;
  --text-primary:   #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;
  /* Borders */
  --border:       rgba(255,255,255,0.08);
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;
  /* Effects */
  --transition:   0.25s ease;
  --shadow-gold:  0 4px 24px rgba(212,168,83,0.2);
  --shadow-dark:  0 8px 40px rgba(0,0,0,0.6);
  --radius:       6px;
  --radius-lg:    12px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--ink-1); color: var(--text-primary); font-family: var(--font-body); line-height: 1.65; min-height: 100vh; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }
.section { padding: 72px 0; }
.bg-dark-alt { background: var(--ink-2); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; color: var(--text-primary); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { color: var(--text-secondary); line-height: 1.75; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(8,21,36,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(212,168,83,0.15); }
.nav-link { color: var(--steel); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.03em; transition: color var(--transition); position: relative; background: none; border: none; cursor: pointer; padding: 0; }
.nav-link:hover { color: var(--gold); }
.nav-dropdown-wrap { position: relative; }
.nav-dropdown { display: none; position: absolute; top: calc(100% + 12px); left: 0; background: var(--ink-3); border: 1px solid rgba(212,168,83,0.2); border-radius: var(--radius-lg); min-width: 220px; padding: 8px 0; box-shadow: var(--shadow-dark); z-index: 200; }
.nav-dropdown-wrap:hover .nav-dropdown { display: block; }
.nav-dropdown a { display: block; padding: 8px 16px; font-size: 0.8125rem; color: var(--steel); transition: all var(--transition); }
.nav-dropdown a:hover { color: var(--gold); background: rgba(212,168,83,0.06); padding-left: 20px; }
.nav-dropdown .see-all { border-top: 1px solid rgba(212,168,83,0.15); margin-top: 4px; padding-top: 8px; color: var(--gold); font-size: 0.75rem; }
.mobile-nav-link { display: block; padding: 10px 0; color: var(--steel); border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.875rem; }
.logo-img { height: 38px; width: auto; }

/* ── Breadcrumbs ─────────────────────────────────────────────── */
.bc-nav { padding: 10px 0; }
.bc-list { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; list-style: none; font-size: 0.75rem; color: var(--text-muted); }
.bc-list a { color: var(--text-secondary); transition: color var(--transition); }
.bc-list a:hover { color: var(--gold); }
.bc-sep { color: rgba(255,255,255,0.3); font-size: 0.7rem; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn, .btn--gold, .btn--outline { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.875rem; padding: 12px 24px; border-radius: var(--radius); letter-spacing: 0.03em; transition: all var(--transition); cursor: pointer; border: none; text-decoration: none; }
.btn--gold, .btn-gold { background: var(--gold); color: var(--ink-1); }
.btn--gold:hover, .btn-gold:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-1px); }
.btn--outline, .btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn--outline:hover, .btn-outline-gold:hover { background: rgba(212,168,83,0.08); }
.btn--sm { padding: 8px 16px; font-size: 0.8125rem; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--full { width: 100%; text-align: center; display: block; justify-content: center; }
.btn--full + .btn--full { margin-top: 10px; }
.btn-cta-sm { display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--ink-1); font-size: 0.8125rem; font-weight: 600; padding: 8px 16px; border-radius: var(--radius); transition: all var(--transition); }
.btn-cta-sm:hover { background: var(--gold-light); }

/* ── Page Hero ──────────────────────────────────────────────── */
.page-hero { padding: 48px 0 56px; background: linear-gradient(135deg, var(--ink-1) 0%, var(--ink-2) 100%); border-bottom: 1px solid var(--border); }
.page-hero--narrow { padding: 40px 0 48px; }
.page-hero__title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; color: var(--text-primary); margin: 8px 0 12px; line-height: 1.15; }
.page-hero__sub { font-size: 1rem; color: var(--text-secondary); max-width: 640px; line-height: 1.7; }
.page-hero__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.page-hero__stat-block { display: flex; flex-direction: column; gap: 24px; }
.stat-item { text-align: right; }
.stat-num  { display: block; font-size: 2rem; font-weight: 800; color: var(--gold); font-family: var(--font-mono); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.page-hero--city { position: relative; }
.page-hero--city::before { content: ''; position: absolute; inset: 0; background: var(--city-bg, none) center/cover no-repeat; opacity: 0.08; }
.page-hero--city > * { position: relative; }
.page-hero--manufacturer { background: linear-gradient(135deg, var(--ink-1) 0%, rgba(10,25,47,0.95) 100%); }
.page-hero--404 { text-align: center; }

/* ── Homepage Hero ──────────────────────────────────────────── */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: var(--ink-1); }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,21,36,0.95) 0%, rgba(13,33,53,0.85) 50%, rgba(8,21,36,0.92) 100%); }
.hero-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-title { color: var(--cream); margin-bottom: 20px; }
.hero-title span { color: var(--gold); }
.hero-desc { color: var(--steel); max-width: 560px; line-height: 1.75; margin-bottom: 32px; font-size: 1rem; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(212,168,83,0.15); }
.hero-stat-num  { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.hero-stat-label { font-size: 0.75rem; color: var(--steel-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.hero-stats-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 32px; }
.hero-stat { text-align: center; }
.stat-big { display: block; font-size: 2.2rem; font-weight: 800; color: var(--gold); font-family: var(--font-mono); }
.stat-lbl { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hero-trust-bar { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.hero-trust-bar span { font-size: 0.8rem; color: var(--text-muted); background: var(--ink-2); border: 1px solid var(--border); padding: 5px 12px; border-radius: 20px; }

/* ── Section Headings ───────────────────────────────────────── */
.section-eyebrow { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; color: var(--text-primary); margin-bottom: 28px; }
.section-desc { color: var(--text-secondary); max-width: 600px; font-size: 0.9375rem; line-height: 1.7; }
.section-divider { width: 48px; height: 2px; background: var(--gold); margin: 16px 0; }
.section-cta { text-align: center; margin-top: 36px; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; gap: 16px; }
.section-title-inline { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin: 4px 0; }
.section-subtitle { font-size: 0.875rem; color: var(--text-muted); }
.cat-label { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }

/* ── Badges & Pills ─────────────────────────────────────────── */
.badge { position: absolute; top: 10px; left: 10px; font-size: 0.68rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.badge--gold  { background: rgba(212,168,83,0.15); color: var(--gold); border: 1px solid rgba(212,168,83,0.3); }
.badge--blue  { background: rgba(59,130,246,0.15);  color: #93c5fd;   border: 1px solid rgba(59,130,246,0.3); }
.badge--green { background: rgba(34,197,94,0.1);    color: #86efac;   border: 1px solid rgba(34,197,94,0.2); }
.highlight-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill { background: rgba(212,168,83,0.1); border: 1px solid rgba(212,168,83,0.3); color: var(--gold); font-size: 0.78rem; padding: 4px 12px; border-radius: 20px; }
.hero-badge { display: inline-block; background: rgba(212,168,83,0.15); border: 1px solid rgba(212,168,83,0.4); color: var(--gold); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 14px; border-radius: 4px; margin-bottom: 12px; }

/* ── Product Grid & Cards ───────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-grid--compact { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.product-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; }
.product-card:hover { border-color: rgba(212,168,83,0.35); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.product-card__img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--ink-3); display: block; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card__img-wrap:hover .product-card__img { transform: scale(1.05); }
.product-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card__cat { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; }
.product-card__name { font-size: 1rem; font-weight: 600; line-height: 1.3; }
.product-card__name a { color: var(--text-primary); }
.product-card__name a:hover { color: var(--gold); }
.product-card__desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.product-card__specs { display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.78rem; color: var(--text-muted); }
.product-card__specs span { background: var(--ink-3); border: 1px solid var(--border); padding: 2px 8px; border-radius: 3px; font-family: var(--font-mono); font-size: 0.72rem; }
.product-card__price { margin-top: auto; }
.price-label { font-size: 0.7rem; color: var(--text-muted); display: block; }
.price-value { font-size: 0.95rem; font-weight: 700; color: var(--gold); }
/* Legacy product card classes (homepage uses these) */
.product-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--ink-3); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 20px; }
.product-card-category { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.product-card-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); margin-bottom: 8px; line-height: 1.3; }
.product-card-desc { font-size: 0.8125rem; color: var(--steel); line-height: 1.6; margin-bottom: 16px; }
.product-card-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.spec-tag { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); font-size: 0.7rem; color: var(--steel); padding: 3px 8px; border-radius: 2px; font-family: var(--font-mono); }
.product-card-cta { display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-display); font-size: 1rem; color: var(--gold); font-weight: 600; }

/* ── Filters & Pagination ───────────────────────────────────── */
.filters-bar { background: var(--ink-2); border-bottom: 1px solid var(--border); padding: 14px 0; position: sticky; top: 72px; z-index: 90; }
.filters-form { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: 4px; }
.filter-group label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.filter-group select { background: var(--ink-3); color: var(--text-primary); border: 1px solid var(--border); padding: 8px 12px; border-radius: 6px; font-size: 0.85rem; cursor: pointer; min-width: 160px; }
.filter-group select:focus { outline: 1px solid var(--gold); }
.filter-clear { color: var(--text-muted); font-size: 0.85rem; text-decoration: underline; cursor: pointer; }
.filter-count { margin-left: auto; color: var(--text-muted); font-size: 0.85rem; }
.pagination { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn { padding: 8px 14px; border: 1px solid var(--border); border-radius: 6px; color: var(--text-secondary); font-size: 0.875rem; transition: all 0.2s; background: var(--ink-2); }
.page-btn:hover, .page-btn--active { background: var(--gold); color: var(--ink-1); border-color: var(--gold); }

/* ── Category Cards ─────────────────────────────────────────── */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 32px; }
.category-card { background: var(--ink-2); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: border-color 0.2s, transform 0.2s; }
.category-card:hover { border-color: rgba(212,168,83,0.3); transform: translateY(-2px); }
.category-card__img-link { display: block; position: relative; aspect-ratio: 16/9; overflow: hidden; }
.category-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.category-card__img-link:hover .category-card__img { transform: scale(1.04); }
.category-card__icon { position: absolute; bottom: 12px; right: 12px; font-size: 2rem; }
.category-card__body { padding: 24px; }
.category-card__name { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.category-card__name a { color: var(--text-primary); }
.category-card__name a:hover { color: var(--gold); }
.category-card__desc { color: var(--text-muted); font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; }
.category-card__highlights { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.category-card__highlights li { background: rgba(212,168,83,0.1); color: var(--gold); font-size: 0.75rem; padding: 3px 10px; border-radius: 4px; }
.category-card__footer { display: flex; align-items: center; justify-content: space-between; }
.category-card__count { color: var(--text-muted); font-size: 0.85rem; }
/* Legacy category card (homepage) */
.category-card-bg { position: absolute; inset: 0; background: var(--ink-3); }
.category-card-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.category-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,21,36,0.92) 0%, rgba(8,21,36,0.3) 60%, transparent 100%); }
.category-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.category-card-icon { font-size: 1.5rem; margin-bottom: 6px; }
.category-card-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); margin-bottom: 4px; }
.category-card-count { font-size: 0.75rem; color: var(--gold); font-family: var(--font-mono); }
/* Category tiles */
.category-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.cat-tile { background: var(--ink-3); border: 1px solid var(--border); border-radius: 10px; padding: 20px 16px; text-align: center; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; gap: 6px; }
.cat-tile:hover { border-color: var(--gold); transform: translateY(-2px); }
.cat-tile__icon { font-size: 1.6rem; }
.cat-tile__name { font-size: 0.85rem; font-weight: 600; color: var(--text-primary); }
.cat-tile__count { font-size: 0.75rem; color: var(--text-muted); }

/* ── City Cards ─────────────────────────────────────────────── */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.cities-grid--compact { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.city-card { background: var(--ink-2); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: border-color 0.2s; }
.city-card:hover { border-color: rgba(212,168,83,0.25); }
.city-card__img-link { display: block; position: relative; aspect-ratio: 16/10; overflow: hidden; }
.city-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.city-card__img-link:hover .city-card__img { transform: scale(1.04); }
.city-card__overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: linear-gradient(transparent,rgba(0,0,0,0.7)); }
.city-card__state { font-size: 0.75rem; color: #e2e8f0; }
.city-card__body { padding: 20px; }
.city-card__name { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.city-card__name a { color: var(--text-primary); }
.city-card__name a:hover { color: var(--gold); }
.city-card__desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin-bottom: 12px; }
.city-card__meta { display: flex; gap: 12px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }
.city-chip { display: flex; flex-direction: column; align-items: center; gap: 8px; background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; padding: 16px; text-align: center; transition: border-color 0.2s; }
.city-chip:hover { border-color: var(--gold); }
.city-chip img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.city-chip span { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); }
.state-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.state-chip { padding: 6px 14px; background: var(--ink-3); border: 1px solid var(--border); border-radius: 20px; font-size: 0.8rem; color: var(--text-secondary); transition: border-color 0.2s; }
.state-chip:hover { border-color: var(--gold); color: var(--gold); }
.layout-city { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.city-sidebar { display: flex; flex-direction: column; gap: 20px; }
.info-card, .cta-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.cta-card { border-color: var(--gold); }
.cta-card h3 { color: var(--gold); margin-bottom: 8px; }
.cta-card p { color: var(--text-muted); font-size: 0.875rem; margin-bottom: 16px; }
/* Legacy city card (homepage) */
.city-card-img { width: 100px; flex-shrink: 0; background: var(--ink-3); }
.city-card-img img { width: 100%; height: 100%; object-fit: cover; }
.city-card-body { padding: 16px; }
.city-card-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--cream); }
.city-card-state { font-size: 0.75rem; color: var(--steel-dark); margin-bottom: 6px; }
.city-card-projects { font-size: 0.7rem; color: var(--gold); font-family: var(--font-mono); }

/* ── Application Cards ──────────────────────────────────────── */
.application-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.application-card { background: var(--ink-2); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.application-card__img-link { display: block; aspect-ratio: 16/9; overflow: hidden; }
.application-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.application-card__img-link:hover .application-card__img { transform: scale(1.04); }
.application-card__body { padding: 20px; }
.application-card__name { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.application-card__name a { color: var(--text-primary); }
.application-card__name a:hover { color: var(--gold); }
.application-card__desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; margin-bottom: 12px; }
.application-card__specs { display: flex; gap: 10px; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px; }

/* ── Blog Cards ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-grid--3 { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.blog-card { background: var(--ink-2); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: border-color 0.2s, transform 0.2s; }
.blog-card:hover { border-color: rgba(212,168,83,0.25); transform: translateY(-2px); }
.blog-card__img-link { display: block; position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card__img-link:hover .blog-card__img { transform: scale(1.04); }
.blog-card__cat { position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--ink-1); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; }
.blog-card__body { padding: 20px; }
.blog-card__date { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 8px; }
.blog-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.blog-card__title a { color: var(--text-primary); }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__excerpt { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.blog-card__author { font-size: 0.75rem; color: var(--text-muted); display: block; margin-bottom: 8px; }
.read-more { font-size: 0.85rem; color: var(--gold); font-weight: 600; }
.read-more:hover { text-decoration: underline; }
/* Legacy blog card */
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--ink-3); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-tag { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--cream); line-height: 1.35; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 0.8125rem; color: var(--steel); line-height: 1.6; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-top: 14px; font-size: 0.75rem; color: var(--steel-dark); }

/* ── Article Layout ─────────────────────────────────────────── */
.layout-article { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.article-body { min-width: 0; }
.article-hero-img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 28px; }
.article-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-muted); flex-wrap: wrap; margin-bottom: 8px; }
.prose { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.8; }
.prose p { margin-bottom: 16px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.tag { background: var(--ink-3); color: var(--text-muted); font-size: 0.75rem; padding: 4px 10px; border-radius: 4px; border: 1px solid var(--border); }
.tag:hover { border-color: var(--gold); color: var(--gold); }
.article-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.sidebar-widget { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.sidebar-widget h3 { font-size: 0.9rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.sidebar-product { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.sidebar-product img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.sidebar-product a { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.8rem; }
.sidebar-product a:hover { color: var(--gold); }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links li a { font-size: 0.85rem; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border); display: block; }
.sidebar-links li a:hover, .sidebar-links li a.active { color: var(--gold); }

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-collections { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.gallery-collections--compact { display: flex; gap: 16px; flex-wrap: wrap; }
.gallery-collection-card { background: var(--ink-2); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.gallery-collection-card__img-link { display: block; position: relative; aspect-ratio: 4/3; overflow: hidden; }
.gallery-collection-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-collection-card__img-link:hover .gallery-collection-card__img { transform: scale(1.04); }
.gallery-collection-card__overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(transparent,rgba(0,0,0,0.8)); }
.gallery-count { font-size: 0.8rem; color: #e2e8f0; }
.gallery-collection-card__body { padding: 20px; }
.gallery-collection-card__name { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.gallery-collection-card__name a { color: var(--text-primary); }
.gallery-collection-card__name a:hover { color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 8px; cursor: zoom-in; }
.gallery-item__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover .gallery-item__img { transform: scale(1.05); }
.gallery-item__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; font-size: 1.5rem; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.photo-mosaic { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.mosaic-item { aspect-ratio: 1; overflow: hidden; border-radius: 8px; cursor: pointer; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.mosaic-item:hover img { transform: scale(1.06); }
.gallery-thumb-link { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.gallery-thumb-link img { width: 80px; height: 60px; object-fit: cover; border-radius: 8px; border: 2px solid var(--border); }
.gallery-thumb-link span { font-size: 0.75rem; color: var(--text-muted); text-align: center; }
.gallery-thumb-link:hover span { color: var(--gold); }
/* Legacy masonry */
.masonry-grid { columns: 2; gap: 12px; }
@media(min-width:768px){ .masonry-grid { columns: 3; } }
@media(min-width:1024px){ .masonry-grid { columns: 4; } }
.masonry-item { break-inside: avoid; margin-bottom: 12px; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,21,36,0.8) 0%, transparent 60%); opacity: 0; transition: opacity var(--transition); display: flex; align-items: flex-end; padding: 12px; }
.masonry-item:hover .masonry-item-overlay { opacity: 1; }

/* ── Guides ─────────────────────────────────────────────────── */
.guides-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.guide-card { background: var(--ink-2); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.guide-card__img-link { display: block; position: relative; aspect-ratio: 16/9; overflow: hidden; }
.guide-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.guide-card__img-link:hover .guide-card__img { transform: scale(1.04); }
.guide-card__cat { position: absolute; top: 12px; left: 12px; background: rgba(8,21,36,0.85); color: var(--gold); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; border: 1px solid var(--gold); }
.guide-card__body { padding: 20px; }
.guide-card__title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.guide-card__title a { color: var(--text-primary); }
.guide-card__title a:hover { color: var(--gold); }
.guide-card__desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }
.guide-card__steps { font-size: 0.8rem; color: var(--gold); margin-bottom: 12px; }
.steps-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.step-item { display: flex; align-items: center; gap: 16px; background: var(--ink-2); border: 1px solid var(--border); border-radius: 8px; padding: 16px; }
.step-num { background: var(--gold); color: var(--ink-1); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; flex-shrink: 0; }
.step-text { color: var(--text-secondary); font-size: 0.9rem; }
.guide-cta-box { background: var(--ink-2); border: 1px solid var(--gold); border-radius: var(--radius-lg); padding: 28px; margin-top: 40px; }
.guide-cta-box h3 { color: var(--gold); margin-bottom: 8px; }
.guide-cta-box p { color: var(--text-muted); margin-bottom: 16px; }

/* ── Comparisons ────────────────────────────────────────────── */
.comparison-index-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.comparison-index-card { background: var(--ink-2); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.comparison-index-card__img-link { display: block; aspect-ratio: 16/9; overflow: hidden; }
.comparison-index-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.comparison-index-card__img-link:hover .comparison-index-card__img { transform: scale(1.04); }
.comparison-index-card__body { padding: 20px; }
.comparison-index-card__title { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.comparison-index-card__title a { color: var(--text-primary); }
.comparison-index-card__title a:hover { color: var(--gold); }
.vs-pills { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.vs-pill { background: var(--ink-3); border: 1px solid var(--border); color: var(--text-secondary); font-size: 0.78rem; padding: 4px 10px; border-radius: 4px; }
.vs-sep { color: var(--gold); font-weight: 700; font-size: 0.8rem; }
.verdict-box { background: var(--ink-2); border-left: 4px solid var(--gold); border-radius: 8px; padding: 24px; margin-top: 32px; }
.verdict-box h2 { color: var(--gold); margin-bottom: 10px; font-size: 1.1rem; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th { background: var(--ink-3); color: var(--gold); font-family: var(--font-mono); font-size: 0.8125rem; padding: 12px 16px; text-align: left; border-bottom: 2px solid rgba(212,168,83,0.3); }
.comparison-table td { padding: 12px 16px; font-size: 0.875rem; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; }
.comparison-table tr:hover td { background: rgba(212,168,83,0.03); }

/* ── Downloads ──────────────────────────────────────────────── */
.download-section { margin-bottom: 48px; }
.download-section__title { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.download-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.download-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; padding: 20px; display: flex; align-items: flex-start; gap: 16px; transition: border-color 0.2s; }
.download-card:hover { border-color: var(--gold); }
.download-card__icon { font-size: 2rem; flex-shrink: 0; }
.download-card__body { flex: 1; min-width: 0; }
.download-card__title { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.download-card__desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.5; }
.download-card__meta { display: flex; gap: 10px; font-size: 0.75rem; color: var(--text-muted); }
.download-card__action { flex-shrink: 0; }
.download-request-box { background: var(--ink-2); border: 1px solid var(--gold); border-radius: var(--radius-lg); padding: 36px; text-align: center; margin-top: 32px; }
/* Legacy download card */
.download-icon { width: 44px; height: 44px; background: rgba(212,168,83,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.download-name { font-size: 0.9375rem; color: var(--cream); font-weight: 500; margin-bottom: 3px; }
.download-meta { font-size: 0.75rem; color: var(--steel-dark); }

/* ── Spec / Price Tables ────────────────────────────────────── */
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.spec-table tr { border-bottom: 1px solid rgba(255,255,255,0.05); }
.spec-table td { padding: 10px 16px; }
.spec-table td:first-child { color: var(--text-muted); font-size: 0.8125rem; width: 40%; font-family: var(--font-mono); }
.spec-table td:last-child { color: var(--text-primary); font-size: 0.875rem; }
.spec-table tr:hover { background: rgba(255,255,255,0.02); }
.spec-dl { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6px 12px; font-size: 0.85rem; }
.spec-dl dt { color: var(--text-muted); }
.spec-dl dd { color: var(--text-secondary); }
.price-table-wrap, .spec-table-wrap { overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; background: var(--ink-2); border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.price-table th { background: var(--ink-3); padding: 14px 16px; text-align: left; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); border-bottom: 2px solid var(--border); }
.price-table td { padding: 14px 16px; font-size: 0.875rem; color: var(--text-secondary); border-bottom: 1px solid rgba(255,255,255,0.04); }
.price-table tr:last-child td { border-bottom: none; }
.price-table .highlight-row td { background: rgba(212,168,83,0.06); }
.table-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 12px; font-style: italic; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.faq-item { background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-item summary { padding: 18px 20px; font-weight: 600; font-size: 0.9rem; color: var(--text-primary); cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 18px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
/* Legacy FAQ (JS controlled) */
.faq-question { width: 100%; text-align: left; padding: 16px 0; font-size: 0.9375rem; color: var(--cream); font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 16px; font-size: 0.875rem; color: var(--steel); line-height: 1.75; }
.faq-item.active .faq-answer { display: block; }

/* ── Special Page Components ────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.benefit-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: border-color 0.2s; }
.benefit-card:hover { border-color: var(--gold); }
.benefit-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 0.875rem; line-height: 1.6; }
.process-steps { display: flex; flex-direction: column; gap: 20px; }
.process-step { display: flex; gap: 24px; background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.process-step__num { background: var(--gold); color: var(--ink-1); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.875rem; flex-shrink: 0; }
.process-step__body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.process-step__body p { font-size: 0.875rem; line-height: 1.6; }
.cert-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.cert-badge { background: rgba(212,168,83,0.1); border: 1px solid rgba(212,168,83,0.3); color: var(--gold); padding: 8px 18px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; }
.smart-features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.smart-feature-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; padding: 24px; transition: border-color 0.2s; }
.smart-feature-card:hover { border-color: var(--gold); }
.smart-feature-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.smart-feature-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.smart-feature-card p { font-size: 0.8rem; line-height: 1.6; }
.factors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.factor-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.factor-icon, .principle-icon, .smart-feature-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.factor-card h3, .principle-card h3, .component-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.factor-card p, .principle-card p, .component-card p { font-size: 0.82rem; line-height: 1.6; }
.principles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.principle-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.components-diagram { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.component-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.component-card h3 { color: var(--gold); }
.design-styles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.design-style-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.era-badge { display: inline-block; background: rgba(212,168,83,0.1); color: var(--gold); font-size: 0.75rem; padding: 3px 10px; border-radius: 4px; margin-bottom: 12px; }
.design-poles { font-size: 0.8rem; }
.projects-showcase-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.project-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.project-card__city { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; font-weight: 700; }
.project-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.project-type-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.project-type-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; gap: 8px; }
.project-type-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.project-type-icon { font-size: 2rem; }
.project-count { font-size: 1.4rem; font-weight: 800; color: var(--gold); font-family: var(--font-mono); }
.zones-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.zone-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.zone-name { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.zone-specs { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4px 12px; font-size: 0.82rem; }
.zone-specs dt { color: var(--text-muted); font-weight: 600; }
.zone-specs dd { color: var(--text-secondary); }

/* ── Contact ─────────────────────────────────────────────────── */
.layout-contact { display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea { background: var(--ink-2); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; color: var(--text-primary); font-size: 0.9rem; transition: border-color 0.2s; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card, .contact-hours-card, .contact-quick { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.contact-info-card h3, .contact-hours-card h3, .contact-quick h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 12px; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.contact-details li { display: flex; gap: 10px; font-size: 0.875rem; color: var(--text-secondary); align-items: center; }

/* ── Prose Sections ─────────────────────────────────────────── */
.prose-section { max-width: 860px; }
.prose-section h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; margin-top: 32px; }
.prose-section h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; margin-top: 24px; }
.prose-section p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 16px; }
.prose-section strong { color: var(--text-primary); }
.prose-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.check-list li { font-size: 0.9rem; padding: 8px 12px; background: var(--ink-2); border-radius: 6px; display: flex; align-items: center; gap: 10px; }
.check-list li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.prose-section .faq-list { margin-top: 16px; }

/* ── 404 / Empty ────────────────────────────────────────────── */
.error-code { font-size: 8rem; font-weight: 900; color: var(--gold); line-height: 1; font-family: var(--font-mono); opacity: 0.3; }
.quick-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.quick-link-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: 10px; padding: 20px; text-align: center; font-size: 0.9rem; font-weight: 600; transition: border-color 0.2s, color 0.2s; }
.quick-link-card:hover { border-color: var(--gold); color: var(--gold); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state a { color: var(--gold); }

/* ── CTA Band ────────────────────────────────────────────────── */
.cta-band { background: linear-gradient(135deg, var(--ink-2) 0%, rgba(37,42,58,0.8) 100%); border-top: 1px solid rgba(212,168,83,0.15); border-bottom: 1px solid rgba(212,168,83,0.15); }

/* ── Utility ────────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-steel  { color: var(--steel); }
.text-cream  { color: var(--cream); }
.text-center { text-align: center; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.animate-in { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.gold-line { display: flex; align-items: center; gap: 12px; margin: 24px 0; }
.gold-line::before, .gold-line::after { content: ''; flex: 1; height: 1px; background: rgba(212,168,83,0.2); }
.gold-line-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.link-strip { display: flex; flex-wrap: wrap; gap: 8px; }
.link-pill { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: var(--steel); font-size: 0.75rem; padding: 6px 12px; border-radius: 20px; transition: all var(--transition); white-space: nowrap; }
.link-pill:hover { background: rgba(212,168,83,0.08); border-color: rgba(212,168,83,0.3); color: var(--gold); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--ink-2); border-top: 1px solid rgba(212,168,83,0.15); }
.footer-cta-band { background: linear-gradient(135deg, rgba(28,32,48,0.9), rgba(21,24,32,0.95)); border-bottom: 1px solid rgba(212,168,83,0.1); }
.footer-heading { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.8125rem; color: var(--steel-dark); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { background: var(--ink-1); border-top: 1px solid rgba(255,255,255,0.05); }
.social-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--steel); transition: all var(--transition); }
.social-icon:hover { background: rgba(212,168,83,0.15); color: var(--gold); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .layout-city    { grid-template-columns: 1fr; }
  .layout-article { grid-template-columns: 1fr; }
  .layout-contact { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 75vh; }
  .page-hero { padding: 36px 0 44px; }
}
@media (max-width: 640px) {
  .filters-form { flex-direction: column; align-items: stretch; }
  .form-row { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .nav-dropdown, #mobile-menu { display: none !important; }
  body { background: white; color: black; }
  a { color: inherit; text-decoration: underline; }
}

/* ── Homepage / Tailwind Fallback Utilities ─────────────────── */
/* These ensure homepage renders correctly even if Tailwind CDN is slow */

/* Backgrounds */
.bg-night     { background-color: #081524; }
.bg-night-800 { background-color: #0d1f2d; }
.bg-night-700 { background-color: #0f2236; }
.bg-night-600 { background-color: #152a40; }

/* Text colors */
.text-gold  { color: #d4a853; }
.text-steel { color: #94a3b8; }
.text-cream { color: #e2e8f0; }
.text-gold-light { color: #e8c547; }

/* Font families */
.font-display { font-family: 'Cormorant Garamond', Georgia, serif; }
.font-mono    { font-family: 'DM Mono', monospace; }
.font-body    { font-family: 'DM Sans', system-ui, sans-serif; }

/* Font sizes */
.text-xs  { font-size: 0.75rem; line-height: 1rem; }
.text-sm  { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg  { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl  { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }

/* Font weights */
.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 900; }

/* Display */
.hidden { display: none; }
.block  { display: block; }
.inline-block { display: inline-block; }
.flex   { display: flex; }
.grid   { display: grid; }

/* Flex utilities */
.flex-wrap    { flex-wrap: wrap; }
.flex-col     { flex-direction: column; }
.flex-1       { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center  { align-items: center; }
.items-end     { align-items: flex-end; }
.items-start   { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.self-start  { align-self: flex-start; }
.self-auto   { align-self: auto; }

/* Grid utilities */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-4   { grid-column: span 4 / span 4; }
  .lg\:col-span-8   { grid-column: span 8 / span 8; }
  .lg\:flex-row     { flex-direction: row; }
  .lg\:items-end    { align-items: flex-end; }
  .lg\:self-auto    { align-self: auto; }
  .lg\:py-32        { padding-top: 8rem; padding-bottom: 8rem; }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-6  { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* Gap */
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-5  { gap: 1.25rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Spacing */
.py-16  { padding-top: 4rem; padding-bottom: 4rem; }
.py-20  { padding-top: 5rem; padding-bottom: 5rem; }
.py-24  { padding-top: 6rem; padding-bottom: 6rem; }
.py-2   { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.px-4   { padding-left: 1rem; padding-right: 1rem; }
.px-8   { padding-left: 2rem; padding-right: 2rem; }
.mb-2   { margin-bottom: 0.5rem; }
.mb-3   { margin-bottom: 0.75rem; }
.mb-4   { margin-bottom: 1rem; }
.mb-5   { margin-bottom: 1.25rem; }
.mb-8   { margin-bottom: 2rem; }
.mb-10  { margin-bottom: 2.5rem; }
.mb-12  { margin-bottom: 3rem; }
.mt-2   { margin-top: 0.5rem; }
.mt-4   { margin-top: 1rem; }
.mt-14  { margin-top: 3.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-left   { text-align: left; }
.uppercase   { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-wider  { letter-spacing: 0.05em; }
.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.underline       { text-decoration: underline; }

/* Width/Height */
.w-full  { width: 100%; }
.h-full  { height: 100%; }
.w-5     { width: 1.25rem; }
.h-5     { height: 1.25rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.min-h-screen { min-height: 100vh; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky   { position: sticky; }
.inset-0  { inset: 0; }
.top-0    { top: 0; }
.z-10     { z-index: 10; }
.z-100    { z-index: 100; }

/* Visual */
.rounded    { border-radius: 4px; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-full { border-radius: 9999px; }
.overflow-hidden { overflow: hidden; }
.aspect-square { aspect-ratio: 1 / 1; }
.object-cover  { object-fit: cover; }

/* Borders */
.border         { border: 1px solid rgba(255,255,255,0.08); }
.border-t       { border-top: 1px solid rgba(255,255,255,0.05); }
.border-b       { border-bottom: 1px solid rgba(255,255,255,0.05); }
.border-night-600 { border-color: #152a40; }
.border-white\/5  { border-color: rgba(255,255,255,0.05); }
.border-gold      { border-color: #d4a853; }

/* Opacity */
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }

/* Hover states */
.hover\:underline:hover     { text-decoration: underline; }
.hover\:text-gold:hover     { color: #d4a853; }
.hover\:text-cream:hover    { color: #e2e8f0; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:text-gold { color: #d4a853; }

/* Transitions */
.transition      { transition: all 0.25s ease; }
.duration-300    { transition-duration: 300ms; }
.duration-500    { transition-duration: 500ms; }
.scale-105       { transform: scale(1.05); }

/* ── Button overrides — ensure correct display on homepage ── */
.btn-gold,
a.btn-gold {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: #d4a853 !important;
  color: #081524 !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 12px 24px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none !important;
  cursor: pointer;
}
.btn-gold:hover,
a.btn-gold:hover {
  background: #e8c547 !important;
  color: #081524 !important;
  box-shadow: 0 4px 24px rgba(212,168,83,0.3);
  transform: translateY(-1px);
}

.btn-outline-gold,
a.btn-outline-gold {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: #d4a853 !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 11px 23px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  text-decoration: none;
  border: 1px solid #d4a853 !important;
  cursor: pointer;
}
.btn-outline-gold:hover,
a.btn-outline-gold:hover {
  background: rgba(212,168,83,0.1) !important;
  color: #d4a853 !important;
  box-shadow: 0 4px 24px rgba(212,168,83,0.2);
}

/* Small button variant */
a.btn-outline-gold.text-xs,
a.btn-outline-gold.py-2 {
  padding: 8px 16px;
  font-size: 0.8rem;
}
