/* ============================================
   JEANS·INK — Editorial / Swiss Brutalist
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ── Base palette ── */
:root {
  --accent:       #ffcc00;            /* JEANS YELLOW  */
  --accent-dim:   rgba(255,204,0,0.16);
  --accent-dark:  #e6b800;
  --accent-2:     #ff018f;            /* HOT PINK      */
  --accent-2-dim: rgba(255,1,143,0.14);
  --lime-soft:    rgba(255,204,0,0.20); /* soft yellow surface */
  --purple-deep:  #2a0c62;            /* DEEP PURPLE   */
  --char:         #2a0c62;
  --ink:          #11012e;            /* DARK NAVY     */
  --white:        #FEF9F5;
  --red:          #F0401E;
  --nav-h:        66px;

  /* default = DARK theme */
  --bg:          #11012e;
  --bg-2:        #1a0840;
  --bg-3:        #2a0c62;
  --border:      rgba(255,204,0,0.14);
  --border-2:    rgba(255,204,0,0.28);
  --text:        #FEF9F5;
  --text-muted:  rgba(254,249,245,0.52);
  --text-dim:    rgba(254,249,245,0.26);
}

/* ── THEME: light ── */
body.theme-light {
  --bg:          #FEF9F5;
  --bg-2:        #FFFFFF;
  --bg-3:        #f3eeff;
  --border:      #E6DFD8;
  --border-2:    #D2CBC2;
  --text:        #11012e;
  --text-muted:  #6E6A66;
  --text-dim:    #B3ABA3;
  background: #FEF9F5; color: #11012e;
}

/* ── THEME: dark ── */
body.theme-dark {
  --bg:          #11012e;
  --bg-2:        #1a0840;
  --bg-3:        #2a0c62;
  --border:      rgba(255,204,0,0.14);
  --border-2:    rgba(255,204,0,0.30);
  --text:        #FEF9F5;
  --text-muted:  rgba(254,249,245,0.52);
  --text-dim:    rgba(254,249,245,0.26);
  background: #11012e; color: #FEF9F5;
}

/* ── THEME: orange ── */
body.theme-orange {
  --bg:          #F0401E;
  --bg-2:        #E5391A;
  --bg-3:        #D63414;
  --border:      rgba(0,0,0,0.16);
  --border-2:    rgba(0,0,0,0.30);
  --text:        #0E0E0E;
  --text-muted:  rgba(14,14,14,0.62);
  --text-dim:    rgba(14,14,14,0.38);
  --accent:      #0E0E0E;
  --accent-dim:  rgba(0,0,0,0.10);
  --accent-dark: #000000;
  background: #F0401E; color: #0E0E0E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY — tight neo-grotesque
   ============================================ */
.mono { font-family: 'Montserrat', monospace; }
.accent-text { color: var(--accent); }
.muted { color: var(--text-muted); }

h1 {
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 800; line-height: 0.92;
  letter-spacing: -0.04em; text-transform: uppercase;
}
h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.035em; text-transform: uppercase;
}
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 700; letter-spacing: -0.02em; }
h4 { font-weight: 700; letter-spacing: -0.01em; }

/* Display oversize number */
.big-num {
  font-weight: 900;
  font-size: clamp(6rem, 22vw, 20rem);
  line-height: 0.8; letter-spacing: -0.05em;
  color: var(--accent);
}

/* ============================================
   LAYOUT
   ============================================ */
.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-sm { padding: 72px 0; }
.divider { width: 100%; height: 1px; background: var(--border); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 1000; display: flex; align-items: center;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--text);
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-family: 'Montserrat', monospace;
  font-size: 0.74rem; font-weight: 400;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-muted); transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active:not(.nav-cta) {
  color: #11012e; background: #ffcc00;
  padding: 7px 16px; border-radius: 999px; font-weight: 700;
}
.nav-cta {
  background: linear-gradient(135deg, #ffcc00, #e6b800);
  color: #11012e !important;
  padding: 10px 22px; border-radius: 999px;
  font-weight: 700 !important; transition: all 0.2s !important;
  box-shadow: 0 4px 14px rgba(255,204,0,0.38);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 7px 20px rgba(255,204,0,0.55); }
.nav-mobile a.active { color: var(--accent); }

.nav-burger { display: none; flex-direction: column; gap: 5px; width: 30px; padding: 4px 0; }
.nav-burger span { display: block; height: 2px; background: var(--text); transition: 0.3s; }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  padding: 24px 32px; flex-direction: column; gap: 4px; z-index: 999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Montserrat', monospace;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text-muted); padding: 14px 0;
  border-bottom: 1px solid var(--border); transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--accent); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================
   BUTTONS — square, bold
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  font-family: 'Montserrat', monospace;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 999px; transition: all 0.25s cubic-bezier(.22,1,.36,1); cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #ffcc00, #e6b800);
  color: #11012e; border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 20px rgba(255,204,0,0.38), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,204,0,0.55), inset 0 1px 0 rgba(255,255,255,0.4); }
/* HOT PINK — secondary CTA */
.btn-secondary {
  background: linear-gradient(135deg, #ff018f, #cc006f);
  color: #FEF9F5; border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 6px 20px rgba(255,1,143,0.36), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,1,143,0.52); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-2); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--border-2); }

/* ============================================
   BADGES / TAGS
   ============================================ */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; font-family: 'Montserrat', monospace;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 0;
}
.badge-gold { background: var(--accent); color: #11012e; }
.badge-dark { background: var(--bg-3); color: var(--text-muted); border: 1px solid var(--border); }
.badge-sold { background: transparent; color: var(--text-muted); border: 1px solid var(--border-2); }
.badge-live { background: var(--accent-2); color: #FEF9F5; }
.badge-live::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: currentColor; border-radius: 50%; animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

.tag {
  font-family: 'Montserrat', monospace;
  font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
}

/* ============================================
   CARDS
   ============================================ */
.card { background: var(--bg-2); border: 1px solid var(--border); border-radius: 0; overflow: hidden; transition: border-color 0.3s, transform 0.3s; }
.card:hover { border-color: var(--border-2); }

/* ── PATCH CARDS ── */
.patch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.patch-card { background: var(--bg); overflow: hidden; transition: background 0.25s; cursor: pointer; position: relative; }
.patch-card:hover { background: var(--bg-2); }
.patch-preview { position: relative; background: var(--bg-3); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.patch-preview img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.patch-card:hover .patch-preview img { transform: scale(1.05); }
.patch-preview svg { width: 55%; height: 55%; opacity: 0.9; }
.patch-preview-label { position: absolute; top: 14px; left: 14px; }
.patch-preview-stock { position: absolute; top: 14px; right: 14px; }
.patch-info { padding: 22px; border-top: 1px solid var(--border); }
.patch-code { font-family: 'Montserrat', monospace; font-size: 0.7rem; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 8px; }
.patch-name { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 4px; }
.patch-category { font-family: 'Montserrat', monospace; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.patch-footer { display: flex; align-items: center; justify-content: space-between; }
.patch-price { font-family: 'Montserrat', monospace; font-size: 0.95rem; font-weight: 700; }
.patch-price span { font-size: 0.66rem; color: var(--text-muted); display: block; font-weight: 400; margin-top: 2px; }
.stock-bar { height: 2px; background: var(--border); margin-top: 14px; overflow: hidden; }
.stock-fill { height: 100%; background: var(--accent); transition: width 0.8s ease; }

/* ============================================
   HERO
   ============================================ */
.hero { min-height: 100vh; padding-top: var(--nav-h); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.5;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 1000px; }
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.hero-eyebrow-line { width: 48px; height: 2px; background: var(--accent); }
.hero-title { margin-bottom: 32px; }
.hero-title em { font-style: normal; color: var(--accent); }
.hero-sub { font-family: 'Montserrat', monospace; font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); max-width: 520px; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 56px; margin-top: 80px; padding-top: 44px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.stat-num { font-weight: 900; font-size: 2.4rem; letter-spacing: -0.04em; color: var(--accent); display: block; }
.stat-label { font-family: 'Montserrat', monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-muted); font-family: 'Montserrat', monospace; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; animation: float 2s ease-in-out infinite; }
.hero-scroll svg { width: 16px; opacity: 0.5; }
@keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ============================================
   SECTION HEADER (editorial w/ number)
   ============================================ */
.section-header { margin-bottom: 64px; }
.section-header .tag { display: block; margin-bottom: 16px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { font-family: 'Montserrat', monospace; font-size: 0.9rem; color: var(--text-muted); max-width: 560px; line-height: 1.8; }

/* ============================================
   STEPS (How it works grid)
   ============================================ */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.step-item { padding: 44px 34px; background: var(--bg); transition: background 0.3s; position: relative; }
.step-item:hover { background: var(--bg-2); }
.step-num { font-weight: 900; font-size: 3.5rem; line-height: 1; letter-spacing: -0.04em; color: var(--accent); margin-bottom: 24px; }
.step-icon { width: 46px; height: 46px; background: var(--lime-soft); border: 1px solid rgba(255,204,0,0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--accent); }
.step-title { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.step-desc { font-family: 'Montserrat', monospace; font-size: 0.78rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================
   ORDER / PROCESS shared bits
   ============================================ */
.process-list { display: flex; flex-direction: column; gap: 16px; }
.process-step { display: flex; gap: 16px; align-items: flex-start; }
.process-dot { width: 30px; height: 30px; min-width: 30px; background: var(--accent-2-dim); border: 1px solid var(--accent-2); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', monospace; font-size: 0.72rem; color: var(--accent-2); font-weight: 700; }
.process-text { font-family: 'Montserrat', monospace; font-size: 0.82rem; color: var(--text-muted); padding-top: 5px; line-height: 1.65; }

/* ============================================
   TRACK
   ============================================ */
.track-form { max-width: 480px; margin: 0 auto; }
.track-input-group { display: flex; gap: 12px; }
@media (max-width: 600px) {
  .track-input-group { flex-direction: column; }
  .track-input-group .btn { width: 100%; justify-content: center; }
}
.track-input { flex: 1; background: var(--bg-2); border: 1px solid var(--border-2); border-radius: 0; padding: 16px 18px; color: var(--text); font-family: 'Montserrat', monospace; font-size: 0.85rem; letter-spacing: 0.04em; transition: border-color 0.2s; }
.track-input:focus { outline: none; border-color: var(--accent); }
.track-input::placeholder { color: var(--text-dim); }

/* ============================================
   FOOTER
   ============================================ */
.footer { border-top: 1px solid var(--border); padding: 64px 0 48px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-brand p { font-family: 'Montserrat', monospace; font-size: 0.78rem; color: var(--text-muted); max-width: 280px; margin-top: 14px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-family: 'Montserrat', monospace; font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: 'Montserrat', monospace; font-size: 0.72rem; color: var(--text-muted); }

/* ============================================
   PAGE HEADER (inner)
   ============================================ */
.page-header { padding-top: calc(var(--nav-h) + 80px); padding-bottom: 72px; border-bottom: 1px solid var(--border); }
.page-header .tag { display: block; margin-bottom: 16px; }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.82); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--bg-2); border: 1px solid var(--border-2); border-radius: 14px; padding: 44px; max-width: 540px; width: 100%;
  max-height: 90vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
  transform: scale(0.8) translateY(30px); opacity: 0;
  transition: transform 0.42s cubic-bezier(.34,1.56,.64,1), opacity 0.26s ease; }
.modal-overlay.open .modal { transform: scale(1) translateY(0); opacity: 1; }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
.modal-close { width: 34px; height: 34px; min-width: 34px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; }
.modal-close:hover { border-color: var(--text); color: var(--text); }
.modal-actions { display: flex; gap: 10px; }
.modal-actions .btn { white-space: nowrap; }

/* ── Modal on phones: scrollable, padded, stacked buttons ── */
@media (max-width: 600px) {
  .modal-overlay { padding: 14px; align-items: flex-start; }
  .modal { padding: 26px 20px; border-radius: 12px; max-height: 94vh; }
  .modal-header { margin-bottom: 20px; }
  .modal-actions { flex-direction: column; gap: 12px; }
  .modal-actions .btn { width: 100%; flex: none; justify-content: center; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Button shine sweep (hover) ── */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn:hover::after { left: 140%; transition: left 0.6s ease; }

/* ── Page transition (fade in on arrive, fade out on leave) ── */
body { transition: opacity 0.24s ease; animation: pgFadeIn 0.4s ease; }
body.leaving { opacity: 0; }
@keyframes pgFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Reduced motion guard ── */
@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; }
  body.leaving { opacity: 1; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-24{margin-top:24px} .mt-32{margin-top:32px} .mt-48{margin-top:48px}
.mb-8{margin-bottom:8px} .mb-16{margin-bottom:16px} .mb-24{margin-bottom:24px}
.flex{display:flex} .flex-center{display:flex;align-items:center;justify-content:center} .items-center{align-items:center} .gap-12{gap:12px}
.gold-line { display: block; width: 56px; height: 3px; background: var(--accent); margin-bottom: 28px; }

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .hero-stats { gap: 32px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .patch-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .patch-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FONTS: Anton (English display) + Montserrat (rest)
   ============================================ */
h1, h2, h3, .nav-logo, .big-num, .stat-num, .step-num, .hero-title {
  font-family: 'Anton', 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}
/* Montserrat needs a touch more tracking on small uppercase labels */
.mono, .tag, .badge, .nav-links a, .btn { letter-spacing: 0.04em; }

/* Logo mark in nav */
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 22px; width: auto; }
body.theme-dark .nav-logo img { filter: invert(1); }   /* black mark -> white on dark nav */
/* light-lime accent on outline hover (light pages) */
body.theme-light .btn-outline:hover { background: var(--accent-dim); border-color: var(--accent); color: var(--ink); }


/* ============================================
   IMAGE BANDS (full-bleed parallax breaks)
   ============================================ */
.imgband {
  position: relative; min-height: 72vh;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  background-attachment: fixed; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.imgband::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,1,46,0.60), rgba(42,12,98,0.78));
}
.imgband-inner { position: relative; z-index: 1; max-width: 760px; padding: 0 24px; }
.imgband h2 { color: #FEF9F5; }
.imgband h2 em { font-style: normal; color: var(--accent); }
.imgband p {
  color: rgba(255,255,255,0.82); font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem; margin-top: 16px; letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .imgband { background-attachment: scroll; min-height: 56vh; }
}
