/* ================================================================
   PRESS.SAILORBOB.ORG — DTF Printing
   Shared stylesheet — industrial dark / Sailor Bob gold
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@300;400;500;600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-2: #121212;
  --panel: #161616;
  --panel-2: #1c1c1c;
  --line: #2a2a2a;
  --line-2: #3a3a3a;
  --gold: #c9a227;
  --gold-bright: #e0b540;
  --gold-dim: #8a7020;
  --text: #e8e8e8;
  --text-dim: #9a9a9a;
  --text-faint: #666;
  --accent: #c9a227;
  --danger: #c54242;
  --success: #3aaa50;
  --radius: 0px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-bright); }

img { max-width: 100%; display: block; }

/* ==================== NAV ==================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex; align-items: baseline; gap: 10px;
}
.nav-brand .logo {
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 22px;
  color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase;
}
.nav-brand .sub {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  color: var(--text-faint); letter-spacing: 0.2em; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 13px; color: var(--text-dim); letter-spacing: 0.04em;
  text-transform: uppercase; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #0a0a0a !important;
  padding: 8px 20px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 2px solid var(--gold); transition: all 0.2s;
}
.nav-cta:hover { background: transparent; color: var(--gold) !important; }

.nav-burger { display: none; background: none; border: none; cursor: pointer; }
.nav-burger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px 0; transition: 0.3s;
}

@media (max-width: 860px) {
  .nav-links, .nav-cta {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 20px 24px; gap: 16px;
  }
  .nav-links.open, .nav-cta.open { display: flex; }
  .nav-links a { padding: 8px 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-burger { display: block; }
}

/* ==================== LAYOUT ==================== */
.section {
  padding: 80px 24px;
}
.section.tight { padding: 56px 24px; }
.container {
  max-width: 1280px; margin: 0 auto;
}
.container-narrow {
  max-width: 860px; margin: 0 auto;
}
.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: clamp(32px, 5vw, 52px); line-height: 1.05;
  color: var(--text); text-transform: uppercase;
  letter-spacing: 0.01em; margin-bottom: 20px;
}
.section-title .gold { color: var(--gold); }
.section-sub {
  font-size: 18px; color: var(--text-dim); max-width: 640px;
  line-height: 1.7; margin-bottom: 48px;
}
.divider {
  height: 1px; background: var(--line); border: none;
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 80px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,162,39,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201,162,39,0.05) 0%, transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 1280px; margin: 0 auto; width: 100%; }
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(44px, 9vw, 96px); line-height: 0.98;
  color: var(--text); text-transform: uppercase;
  letter-spacing: 0.005em; margin-bottom: 28px;
}
.hero-title .gold { color: var(--gold); }
.hero-dek {
  font-size: 20px; color: var(--text-dim); max-width: 620px;
  line-height: 1.7; margin-bottom: 40px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 2px solid var(--gold); transition: all 0.2s;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--gold); color: #0a0a0a; }
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #0a0a0a; }
.btn-outline { background: transparent; color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #0a0a0a; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line); margin-top: 72px;
  border: 1px solid var(--line);
}
.hero-stat { background: var(--bg); padding: 28px 24px; }
.hero-stat .num {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 38px; color: var(--gold); line-height: 1;
}
.hero-stat .lbl {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; color: var(--text-faint);
  text-transform: uppercase; margin-top: 10px;
}

@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ==================== FEATURE GRID ==================== */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.feature-card {
  background: var(--bg); padding: 40px 32px;
}
.feature-card .icon {
  width: 48px; height: 48px;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.feature-card .icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 2; }
.feature-card h3 {
  font-family: 'Oswald', sans-serif; font-weight: 500;
  font-size: 20px; color: var(--text); text-transform: uppercase;
  letter-spacing: 0.03em; margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px; color: var(--text-dim); line-height: 1.7;
}

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

/* ==================== PROCESS STEPS ==================== */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  position: relative;
}
.step-num {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 56px; color: var(--gold-dim);
  line-height: 1; margin-bottom: 20px;
}
.step h3 {
  font-family: 'Oswald', sans-serif; font-weight: 500;
  font-size: 18px; color: var(--text); text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 12px;
}
.step p {
  font-size: 14px; color: var(--text-dim); line-height: 1.7;
}
.step::after {
  content: ""; position: absolute; top: 28px; right: -12px;
  width: 24px; height: 1px; background: var(--line-2);
}
.step:last-child::after { display: none; }

@media (max-width: 860px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
}

/* ==================== PRICING TABLE ==================== */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.price-card {
  border: 2px solid var(--line);
  background: var(--bg-2);
  padding: 40px 32px;
  position: relative;
}
.price-card.featured {
  border-color: var(--gold);
}
.price-card .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0a0a0a;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 4px 16px;
}
.price-card h3 {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 24px; color: var(--text); text-transform: uppercase;
  letter-spacing: 0.03em; margin-bottom: 8px;
}
.price-card .price {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 48px; color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}
.price-card .price-unit {
  font-size: 13px; color: var(--text-faint);
  margin-bottom: 28px;
}
.price-card ul {
  list-style: none; margin-bottom: 28px;
}
.price-card li {
  font-size: 14px; color: var(--text-dim);
  padding: 10px 0; border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 10px;
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "+"; color: var(--gold); font-weight: 600;
  flex-shrink: 0;
}

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

/* ==================== SIZE PRICING TABLE ==================== */
.size-table {
  width: 100%; border-collapse: collapse;
  border: 1px solid var(--line);
}
.size-table th, .size-table td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.size-table th {
  background: var(--panel); font-family: 'Oswald', sans-serif;
  font-weight: 500; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gold);
}
.size-table td {
  font-size: 14px; color: var(--text-dim);
}
.size-table td:first-child {
  font-family: 'IBM Plex Mono', monospace; font-weight: 500;
  color: var(--text); font-size: 13px;
}
.size-table td .price-val {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 18px; color: var(--gold);
}
.size-table tr:hover td { background: var(--bg-2); }
.size-table tr:last-child td { border-bottom: none; }

/* ==================== GALLERY ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex; flex-direction: column;
}
/* Image-based gallery items */
.gallery-img-wrap {
  aspect-ratio: 1; overflow: hidden; background: var(--panel-2);
  border-bottom: 1px solid var(--line);
}
.gallery-img-wrap img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.05);
}
/* Gallery badges */
.gallery-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 5px; z-index: 2;
}
.badge {
  font-family: 'IBM Plex Mono', monospace; font-size: 9px; font-weight: 600;
  padding: 3px 7px; text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid;
}
.badge-cat { background: rgba(10,10,10,0.8); color: var(--text-dim); border-color: var(--line); }
.proc-dtf { background: rgba(201,162,39,0.15); color: var(--gold); border-color: var(--gold); }
.proc-uv { background: rgba(100,180,255,0.15); color: #64b4ff; border-color: #64b4ff; }
/* Gallery tag (replaces .tag in image items) */
.gallery-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.gallery-info {
  padding: 14px 16px 16px;
}
.gallery-title {
  font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 15px;
  color: var(--text); text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.gallery-desc {
  font-size: 12px; color: var(--text-dim); line-height: 1.5;
  margin-top: 8px;
}
.gallery-link {
  display: inline-block; margin-top: 10px; font-size: 12px;
  font-family: 'IBM Plex Mono', monospace; color: var(--gold);
  text-decoration: none; letter-spacing: 0.05em; text-transform: uppercase;
}
.gallery-link:hover { text-decoration: underline; }
/* Legacy placeholder items (if any remain) */
.gallery-item .placeholder {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-weight: 500;
  font-size: 14px; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--panel) 0%, var(--bg) 100%);
}
.gallery-item .tag {
  background: rgba(10,10,10,0.85); padding: 12px 16px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
}

@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ==================== FAQ ==================== */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  font-family: 'Oswald', sans-serif; font-weight: 500;
  font-size: 18px; color: var(--text); text-transform: uppercase;
  letter-spacing: 0.02em; padding: 24px 0;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 24px; color: var(--gold);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item .answer {
  padding: 0 0 24px 0;
  font-size: 15px; color: var(--text-dim); line-height: 1.8;
}

/* ==================== CONTACT FORM ==================== */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block; font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 0.15em; color: var(--text-dim);
  text-transform: uppercase; margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg-2); border: 2px solid var(--line);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 15px;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }

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

/* ==================== SPECS TABLE ==================== */
.specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.spec-item { background: var(--bg); padding: 24px 28px; }
.spec-item .key {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.15em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 8px;
}
.spec-item .val {
  font-size: 15px; color: var(--text-dim); line-height: 1.7;
}

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

/* ==================== CTA BANNER ==================== */
.cta-banner {
  background: var(--panel);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 64px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: clamp(28px, 4vw, 42px); color: var(--text);
  text-transform: uppercase; margin-bottom: 16px;
}
.cta-banner p {
  font-size: 16px; color: var(--text-dim); max-width: 560px;
  margin: 0 auto 32px;
}

/* ==================== FOOTER ==================== */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 24px 40px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: 22px; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-brand .tagline {
  font-size: 14px; color: var(--text-dim); max-width: 280px;
}
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.2em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px; color: var(--text-dim);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.2em; color: var(--text-faint);
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  padding: 120px 24px 60px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.page-header-inner { max-width: 1280px; margin: 0 auto; }
.page-header .section-label { margin-bottom: 16px; }
.page-header h1 {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  font-size: clamp(36px, 6vw, 64px); line-height: 1.02;
  color: var(--text); text-transform: uppercase;
  letter-spacing: 0.01em; margin-bottom: 20px;
}
.page-header h1 .gold { color: var(--gold); }
.page-header .dek {
  font-size: 18px; color: var(--text-dim); max-width: 640px;
}

/* ==================== INFO CALLOUT ==================== */
.callout {
  border-left: 3px solid var(--gold);
  background: var(--panel);
  padding: 24px 28px;
  margin: 32px 0;
}
.callout .callout-tag {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px;
  letter-spacing: 0.25em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 10px;
}
.callout p { margin: 0; color: var(--text-dim); }

/* ==================== PROS/CONS ==================== */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.compare-col { background: var(--bg); padding: 32px 28px; }
.compare-col h3 {
  font-family: 'Oswald', sans-serif; font-weight: 600;
  font-size: 20px; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.compare-col.pro h3 { color: var(--success); }
.compare-col.con h3 { color: var(--danger); }
.compare-col ul { list-style: none; }
.compare-col li {
  padding: 12px 0; font-size: 14px; color: var(--text-dim);
  border-bottom: 1px solid var(--line);
}
.compare-col li:last-child { border-bottom: none; }
.compare-col li b { display: block; color: var(--text); font-weight: 600; margin-bottom: 4px; }

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

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

/* ==================== NEW COMPONENT STYLES (LOOPS 1-25) ==================== */

/* Guarantee Banner */
.guarantee-banner {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.guarantee-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 28px; border: 1px solid var(--line); background: var(--bg);
}
.guarantee-icon { flex-shrink: 0; width: 48px; height: 48px; }
.guarantee-item h3 {
  font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 16px;
  color: var(--text); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px;
}
.guarantee-item p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
@media (max-width: 860px) { .guarantee-banner { grid-template-columns: 1fr; } }

/* Trust Strip */
.trust-strip { padding: 32px 24px; border-bottom: 1px solid var(--line); }
.trust-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: 0.2em; color: var(--text-faint); text-transform: uppercase;
  text-align: center; margin-bottom: 20px;
}
.trust-items {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px;
}
.trust-item {
  font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 400;
  color: var(--text-dim); letter-spacing: 0.05em; text-transform: uppercase;
}

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg); border: 1px solid var(--line); padding: 32px 28px;
}
.testimonial-card .stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--text-dim); line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { border-top: 1px solid var(--line); padding-top: 16px; }
.ta-name { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 14px; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; }
.ta-meta { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--text-faint); margin-top: 4px; }
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* Audience Grid */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.audience-card { background: var(--bg); padding: 32px 28px; }
.audience-card h3 {
  font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 18px;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 12px;
}
.audience-card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
@media (max-width: 860px) { .audience-grid { grid-template-columns: 1fr; } }

/* Durability Grid */
.durability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.durability-card { text-align: center; padding: 32px 20px; border: 1px solid var(--line); background: var(--bg); }
.durability-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 42px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.durability-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--text); text-transform: uppercase; margin-bottom: 12px; }
.durability-card p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
@media (max-width: 720px) { .durability-grid { grid-template-columns: repeat(2, 1fr); } }

/* Comparison Matrix */
.comparison-matrix { border: 2px solid var(--line); overflow-x: auto; }
.cm-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr; gap: 1px; background: var(--line); }
.cm-cell { background: var(--bg); padding: 14px 16px; font-size: 13px; color: var(--text-dim); }
.cm-header .cm-cell { background: var(--panel); font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px; color: var(--text); text-transform: uppercase; letter-spacing: 0.03em; }
.cm-feature { font-weight: 600; color: var(--text) !important; }
.cm-dtf { color: var(--gold) !important; font-weight: 600; }
.cm-header .cm-dtf { background: var(--panel-2); color: var(--gold) !important; border-bottom: 2px solid var(--gold); }

/* Size Reference */
.size-reference { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 16px; }
.size-ref-item { background: var(--bg); padding: 14px 18px; display: flex; gap: 16px; align-items: center; }
.size-ref-dim { font-family: 'IBM Plex Mono', monospace; font-size: 13px; color: var(--gold); font-weight: 600; min-width: 100px; }
.size-ref-use { font-size: 13px; color: var(--text-dim); }
@media (max-width: 720px) { .size-reference { grid-template-columns: 1fr; } }

/* Video Grid */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.video-card { border: 1px solid var(--line); background: var(--bg); }
.video-placeholder {
  position: relative; aspect-ratio: 16/9; background: var(--panel-2);
  display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line);
}
.video-duration {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.8); padding: 4px 8px; border: 1px solid var(--line);
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--gold);
}
.video-card h3 { font-family: 'Oswald', sans-serif; font-weight: 500; font-size: 16px; color: var(--text); text-transform: uppercase; letter-spacing: 0.03em; padding: 20px 20px 8px; }
.video-card p { font-size: 13px; color: var(--text-dim); padding: 0 20px 20px; line-height: 1.6; }
@media (max-width: 860px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .video-grid { grid-template-columns: 1fr; } }

/* Calculator */
.calculator { border: 2px solid var(--line); background: var(--panel); padding: 32px 28px; }
.calc-row { margin-bottom: 20px; }
.calc-row label { display: block; font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.15em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 8px; }
.calc-row select, .calc-row input {
  width: 100%; padding: 12px 16px; background: var(--bg-2); border: 2px solid var(--line);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 15px;
}
.calc-row select:focus, .calc-row input:focus { outline: none; border-color: var(--gold); }
.calc-result { margin-top: 24px; padding: 24px; background: var(--bg); border: 1px solid var(--line); }
.calc-line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.calc-line:last-child { border-bottom: none; }
.calc-line.calc-total { border-top: 2px solid var(--gold); margin-top: 8px; padding-top: 16px; border-bottom: none; }
.calc-label { font-size: 14px; color: var(--text-dim); }
.calc-value { font-size: 14px; color: var(--text); font-weight: 600; }
.calc-total .calc-label { font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 16px; color: var(--text); text-transform: uppercase; }
.calc-total .calc-value { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 22px; color: var(--gold); }
.calc-note { margin-top: 12px; font-size: 12px; font-family: 'IBM Plex Mono', monospace; color: var(--text-dim); }

/* File Checklist */
.file-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; margin-top: 16px; }
.fc-item { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--text-dim); }
.fc-icon { font-size: 16px; width: 20px; text-align: center; }
.fc-item:nth-child(odd) .fc-icon { color: var(--success); }
.fc-item:nth-child(even) .fc-icon { color: var(--danger); }
@media (max-width: 540px) { .file-checklist { grid-template-columns: 1fr; } }

/* Gallery Filter */
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.gf-btn {
  padding: 8px 20px; border: 2px solid var(--line); background: transparent;
  color: var(--text-dim); font-family: 'Oswald', sans-serif; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.04em; cursor: pointer; transition: all 0.2s;
}
.gf-btn:hover { border-color: var(--gold); color: var(--gold); }
.gf-btn.active { border-color: var(--gold); background: var(--gold); color: #0a0a0a; }
.gallery-info { padding: 16px 20px; border-top: 1px solid var(--line); }
.gallery-desc { font-size: 13px; color: var(--text-dim); margin-top: 8px; line-height: 1.6; }

/* Newsletter Form */
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 8px 12px; background: var(--bg-2); border: 2px solid var(--line);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 13px;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button { white-space: nowrap; }

/* Breadcrumb */
.breadcrumb { padding: 16px 0; border-bottom: 1px solid var(--line); }
.breadcrumb a { color: var(--text-dim); font-size: 13px; }
.breadcrumb a:hover { color: var(--gold); }
.bc-sep { color: var(--text-faint); margin: 0 8px; font-size: 13px; }
.bc-current { color: var(--gold); font-size: 13px; }

/* Footer grid fix with 5 cols */
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr !important; }
  .footer-brand { grid-column: 1 / -1; }
}

