/* ===========================================================
   RÖVHATTENS ÅKERI — Highway 66 hi-fi
   Americana / truckin' / sun-bleached billboards
   =========================================================== */

:root {
  /* default theme: Klassisk Western */
  --ink: #1a1410;
  --paper: #fbf3df;
  --paper-2: #f4e6c1;
  --accent: #d83a2a;
  --accent-dk: #a32419;
  --gold: #f0c419;
  --asphalt: #1a1a1a;
  --asphalt-2: #2a2a2a;
  --chrome: #d6d2c4;
  --muted: #6a5a48;

  --f-display: 'Rye', 'Bowlby One SC', serif;
  --f-body: 'Patrick Hand', 'Comic Sans MS', cursive;
  --f-mono: 'Special Elite', monospace;
  --f-num: 'Bebas Neue', sans-serif;

  --r-card: 14px 18px 14px 22px / 18px 14px 22px 14px;
}

/* theme variants */
[data-theme="varsel"] {
  --ink: #161616;
  --paper: #fff8e6;
  --paper-2: #ffe7a6;
  --accent: #ee6c2c;
  --accent-dk: #b9461a;
  --gold: #e9ee2f;
  --asphalt: #0d0d0d;
  --chrome: #c8c5b8;
  --muted: #4a4030;
}
[data-theme="noir"] {
  --ink: #f7eecd;
  --paper: #181410;
  --paper-2: #221a14;
  --accent: #e84630;
  --accent-dk: #962614;
  --gold: #efb73a;
  --asphalt: #050505;
  --asphalt-2: #121212;
  --chrome: #8c8474;
  --muted: #aa9b80;
}

/* font sets */
[data-fonts="modern"] {
  --f-display: 'Bowlby One SC', 'Rye', serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-num: 'Bebas Neue', sans-serif;
}
[data-fonts="retro"] {
  --f-display: 'Bowlby One SC', serif;
  --f-body: 'Special Elite', monospace;
  --f-num: 'Bebas Neue', sans-serif;
}

html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
img { display: block; }

/* ============== TOP NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--accent);
  display: flex; align-items: center; gap: 18px;
  padding: 10px 22px;
}
.nav .lockup {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 1px;
  line-height: 1;
}
.nav .lockup .mini {
  width: 42px; height: 42px;
  background: url('assets/logo-rovhatten.webp') center/contain no-repeat;
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.35));
  cursor: pointer;
}
.nav .lockup .star { color: var(--gold); }
.nav .links {
  display: flex; gap: 18px;
  font-family: var(--f-num);
  letter-spacing: 3px;
  font-size: 14px;
  margin-left: auto;
}
.nav .links a {
  color: var(--paper);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  cursor: pointer;
}
.nav .links a:hover { border-color: var(--gold); color: var(--gold); }
.nav .honk-btn {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--gold);
  font-family: var(--f-num);
  font-size: 16px;
  letter-spacing: 2px;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 0 #000;
  transition: transform .1s;
}
.nav .honk-btn:active { transform: translateY(2px); box-shadow: 0 0 0 #000; }

/* Hamburger toggle — hidden on desktop */
.nav .nav-hamburger {
  display: none;
  margin-left: auto;
  width: 46px; height: 40px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: transform .1s;
}
.nav .nav-hamburger:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.nav .nav-hamburger span {
  display: block;
  width: 24px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
}
.nav .nav-hamburger span:nth-child(2) { background: var(--accent); }

/* Drawer overlay */
.nav .nav-drawer {
  position: fixed; inset: 0;
  z-index: 60;
  display: flex;
  animation: nav-drawer-fade .2s ease-out;
}
.nav .nav-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.nav .nav-drawer-sheet {
  position: relative;
  margin-left: auto;
  width: min(86vw, 360px);
  background: var(--ink);
  color: var(--paper);
  border-left: 4px solid var(--accent);
  box-shadow: -6px 0 0 var(--gold);
  padding: 64px 28px 28px;
  display: flex;
  flex-direction: column;
  animation: nav-drawer-slide .22s cubic-bezier(.3,.7,.3,1);
}
.nav .nav-drawer-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--gold);
  border-radius: 6px;
  box-shadow: 2px 2px 0 var(--accent);
  font-family: var(--f-num);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.nav .nav-drawer-close:active { transform: translate(2px,2px); box-shadow: 0 0 0 var(--accent); }
.nav .nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav .nav-drawer-links a {
  display: block;
  font-family: var(--f-num);
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--paper);
  text-decoration: none;
  padding: 14px 12px;
  min-height: 44px;
  border-bottom: 2px solid rgba(244,232,196,.18);
}
.nav .nav-drawer-links a:hover,
.nav .nav-drawer-links a:active { color: var(--gold); border-bottom-color: var(--gold); }

@keyframes nav-drawer-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes nav-drawer-slide {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@media (max-width: 720px) {
  .nav .links { display: none; }
  .nav { padding: 8px 14px; gap: 10px; }
  .nav .lockup { font-size: 18px; }
  .nav .nav-hamburger { display: flex; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
  isolation: isolate;
}
.hero-sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 75%, var(--gold) 0%, transparent 45%),
    linear-gradient(to bottom, #f6d68a 0%, #f1b06a 40%, #e08855 65%, #c45a3a 80%, #6e3522 95%);
  z-index: -2;
}
[data-theme="noir"] .hero-sky {
  background:
    radial-gradient(ellipse at 50% 75%, #b88a30 0%, transparent 45%),
    linear-gradient(to bottom, #1a1410 0%, #2a1810 40%, #4a2010 65%, #6e2818 80%, #150805 95%);
}
.hero-sun {
  position: absolute;
  left: 50%; top: 56%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff7c4 0%, var(--gold) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: sun-pulse 4s ease-in-out infinite;
}
@keyframes sun-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .95; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}
.hero-mountains {
  position: absolute; left: 0; right: 0; bottom: 32%;
  height: 90px;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 0, transparent 50%, var(--accent-dk) 50%);
  clip-path: polygon(
    0 100%, 0 60%,
    8% 38%, 14% 55%, 22% 32%, 30% 50%, 36% 28%, 44% 48%,
    52% 25%, 60% 45%, 68% 30%, 76% 50%, 84% 33%, 92% 48%,
    100% 35%, 100% 100%
  );
  opacity: .9;
}
.hero-ground {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 32%;
  background:
    linear-gradient(180deg,
      #c8862a 0%, #b46b1e 35%, #8a4f18 70%, #5e2f0a 100%);
  z-index: -1;
}
[data-theme="noir"] .hero-ground {
  background: linear-gradient(180deg, #1d140c 0%, #0a0604 100%);
}
.hero-road {
  position: absolute; left: 50%; bottom: 0;
  width: 80%; height: 32%;
  z-index: -1;
  transform: translateX(-50%);
  background:
    linear-gradient(to bottom, #2a2826 0%, #1a1817 100%);
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
}
.hero-road::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 3%;
  background: repeating-linear-gradient(
    to bottom,
    var(--gold) 0 5%,
    transparent 5% 12%
  );
  transform: translateX(-50%) perspective(400px) rotateX(0deg);
  clip-path: polygon(48% 0, 52% 0, 100% 100%, 0 100%);
}

.hero-inner {
  position: relative;
  padding: 28px 22px 36px;
  text-align: center;
  color: var(--ink);
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-num);
  letter-spacing: 6px;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 4px 14px;
  border-radius: 20px;
  transform: rotate(-1.5deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.hero-kicker .star { color: var(--accent); }
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(46px, 11vw, 132px);
  line-height: .85;
  margin: 16px 0 6px;
  color: var(--paper);
  -webkit-text-stroke: 2.5px var(--ink);
  text-shadow:
    4px 4px 0 var(--ink),
    8px 8px 0 var(--accent),
    8px 8px 0 var(--ink);
  letter-spacing: 2px;
}
.hero-title .row2 {
  display: block;
  color: var(--accent);
  font-size: .8em;
}
.hero-sub {
  font-family: var(--f-mono);
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: 2px;
  color: var(--ink);
  max-width: 600px;
  margin: 6px auto 0;
  line-height: 1.4;
}
.hero-mascot {
  position: relative;
  margin: 18px auto 0;
  width: min(380px, 70%);
  aspect-ratio: 864/1184;
  background: url('assets/logo-truck.webp') center/contain no-repeat;
  filter: drop-shadow(0 8px 0 rgba(0,0,0,.25));
  cursor: pointer;
  user-select: none;
}
.hero-mascot:hover { animation: wiggle .4s ease-in-out; }
.hero-mascot.dance { animation: dance .5s ease-in-out infinite; }
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}
@keyframes dance {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
.hero-cta-row {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  font-family: var(--f-display);
  font-size: 22px;
  padding: 12px 26px;
  background: var(--accent);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  letter-spacing: 1px;
  transition: transform .12s, box-shadow .12s;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn.alt {
  background: var(--paper);
  color: var(--ink);
}
.btn.gold {
  background: var(--gold);
  color: var(--ink);
}
.btn.dark {
  background: var(--ink);
  color: var(--paper);
}

@media (max-width: 480px) {
  .hero-inner { padding: 20px 14px 28px; }
  .hero-kicker { letter-spacing: 3px; font-size: 12px; padding: 4px 12px; gap: 8px; }
  .hero-sun { width: 160px; height: 160px; }
  .hero-mountains { height: 60px; }
  .hero-road { width: 95%; }
  .hero-cta-row { gap: 10px; margin-top: 14px; }
  .hero-title {
    font-size: clamp(38px, 10.5vw, 60px);
    letter-spacing: 1px;
    text-shadow:
      3px 3px 0 var(--ink),
      5px 5px 0 var(--accent),
      5px 5px 0 var(--ink);
  }
}
@media (max-width: 380px) {
  .hero-title {
    font-size: clamp(34px, 10vw, 50px);
    text-shadow:
      2px 2px 0 var(--ink),
      4px 4px 0 var(--accent),
      4px 4px 0 var(--ink);
    -webkit-text-stroke: 2px var(--ink);
  }
  .hero-kicker { letter-spacing: 2.5px; }
  .btn { font-size: 18px; padding: 10px 18px; box-shadow: 3px 3px 0 var(--ink); }
  .btn:hover { box-shadow: 5px 5px 0 var(--ink); }
  .btn:active { box-shadow: 1px 1px 0 var(--ink); }
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--accent);
  color: #fff;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  font-family: var(--f-display);
  letter-spacing: 5px;
  font-size: 22px;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: scroll 25s linear infinite;
  padding-right: 40px;
}
.marquee.dark { background: var(--ink); color: var(--gold); }
.marquee.dark .star { color: var(--accent); }
.marquee .star { color: var(--gold); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============== STATS ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper-2);
  border-bottom: 3px solid var(--ink);
}
@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  padding: 24px 16px;
  border-right: 2px dashed var(--ink);
  text-align: center;
}
.stat:last-child { border-right: 0; }
@media (max-width: 720px) {
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 2px dashed var(--ink); }
}
.stat-num {
  font-family: var(--f-num);
  font-size: clamp(38px, 6vw, 64px);
  color: var(--accent);
  line-height: .9;
  -webkit-text-stroke: 1px var(--ink);
}
.stat-label {
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--ink);
  margin-top: 4px;
}

/* ============== LIVE TRACKER ============== */
.live {
  padding: 30px 22px;
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.live-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.live-pulse {
  width: 14px; height: 14px;
  background: #d22;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(220, 34, 34, 0.7);
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(220, 34, 34, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(220, 34, 34, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 34, 34, 0); }
}
.live h2 {
  font-family: var(--f-display);
  font-size: clamp(24px, 3.4vw, 34px);
  margin: 0;
  letter-spacing: 1px;
}
.live-status {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
}
.live-map {
  background: #d8e9d2;
  border: 3px solid var(--ink);
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 700 / 200;
  max-height: 220px;
  position: relative;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
}
[data-theme="noir"] .live-map { background: #1a3a28; }
.live-map svg { width: 100%; height: 100%; display: block; }
@media (max-width: 640px) {
  .live-map { max-height: 180px; border-width: 2px; box-shadow: 4px 4px 0 var(--ink); }
  .live-status { margin-left: 0; width: 100%; font-size: 12px; }
}
.live-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
@media (max-width: 640px) { .live-info { grid-template-columns: 1fr; } }
.live-info .cell {
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--f-mono);
  font-size: 13px;
  line-height: 1.4;
}
.live-info .cell b {
  font-family: var(--f-num);
  font-size: 22px;
  color: var(--accent);
  display: block;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 2px;
}
@media (max-width: 640px) { .live-info .cell b { font-size: 18px; } }

/* ============== SECTION HEADERS ============== */
.sect {
  padding: 40px 22px;
  border-bottom: 3px solid var(--ink);
  position: relative;
}
.sect-head {
  text-align: center;
  margin-bottom: 26px;
}
.sect-kicker {
  font-family: var(--f-num);
  letter-spacing: 5px;
  color: var(--accent);
  font-size: 14px;
}
.sect-h {
  font-family: var(--f-display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  margin: 6px 0 8px;
  letter-spacing: 1px;
}
.sect-sub {
  font-family: var(--f-body);
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .sect { padding: 28px 14px; }
  .sect-kicker { letter-spacing: 2px; }
  .sect-sub { max-width: 100%; font-size: 16px; }
}

/* ============== TJÄNSTER / BILLBOARDS ============== */
.billboards {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px 22px;
}
.billboard {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 4px;
  padding: 18px 16px 22px;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  transform: rotate(-1deg);
}
.billboard:nth-child(2n) { transform: rotate(1.5deg); }
.billboard:nth-child(3n) { transform: rotate(-.5deg); }
.billboard:hover { transform: rotate(0deg) translateY(-4px); }
.billboard .pole {
  position: absolute;
  bottom: -28px; left: 50%;
  width: 8px; height: 28px;
  background: var(--ink);
  transform: translateX(-50%);
}
.billboard .pole::after {
  content: '';
  position: absolute;
  bottom: -6px; left: -8px;
  width: 24px; height: 8px;
  background: var(--ink);
  border-radius: 4px;
}
.billboard h3 {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--accent);
  margin: 0 0 6px;
  line-height: 1;
}
.billboard p {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.35;
}
.billboard .price-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 4px 12px;
  font-family: var(--f-num);
  font-size: 20px;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 2px 2px 0 var(--ink);
  transform: rotate(-3deg);
}
.billboard .badge {
  position: absolute;
  top: -14px; right: -10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--f-display);
  font-size: 14px;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  transform: rotate(8deg);
  box-shadow: 2px 2px 0 var(--ink);
}
@media (max-width: 480px) {
  .billboards { gap: 22px 14px; }
  .billboard { transform: rotate(-0.5deg); }
  .billboard:nth-child(2n) { transform: rotate(0.5deg); }
  .billboard:nth-child(3n) { transform: rotate(-0.3deg); }
}

/* ============== FLOTTA ============== */
.fleet-bg {
  background: var(--paper-2);
}
.fleet-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 720px) { .fleet-grid { grid-template-columns: 1fr; } }
.fleet-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 5px 5px 0 var(--ink);
  text-align: center;
}
.fleet-img {
  height: 160px;
  background: url('assets/logo-truck.webp') center/contain no-repeat;
  margin-bottom: 8px;
}
.fleet-card:nth-child(2) .fleet-img { transform: scaleX(-1); }
.fleet-card:nth-child(3) .fleet-img { transform: rotate(-2deg) scale(.94); }
.fleet-card h4 {
  font-family: var(--f-display);
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--accent);
}
.fleet-card .reg {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 2px;
}
.fleet-card .desc {
  font-size: 16px;
  line-height: 1.35;
}
@media (max-width: 480px) {
  .fleet-grid { gap: 16px; }
  .fleet-card { padding: 12px; }
  .fleet-img { height: 140px; }
}

/* ============== PRISLISTA ============== */
.pricing-bg { background: var(--ink); color: var(--paper); }
.pricing-bg .sect-h { color: var(--gold); }
.pricing-bg .sect-sub { color: var(--chrome); }
.pricing-bg .sect-kicker { color: var(--accent); }
.price-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--gold);
  border-radius: 12px;
  padding: 22px 18px 18px;
  box-shadow: 6px 6px 0 var(--accent);
  position: relative;
  text-align: center;
}
.price-card.featured {
  background: var(--gold);
  border-color: var(--accent);
  box-shadow: 6px 6px 0 var(--paper);
  transform: scale(1.04);
}
.price-card .ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--accent);
  color: #fff;
  font-family: var(--f-display);
  font-size: 14px;
  padding: 4px 14px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 2px 2px 0 var(--ink);
  white-space: nowrap;
}
.price-card h3 {
  font-family: var(--f-display);
  font-size: 24px;
  margin: 8px 0 4px;
  color: var(--accent);
  letter-spacing: 1px;
}
.price-card .price {
  font-family: var(--f-num);
  font-size: 54px;
  line-height: 1;
  color: var(--ink);
  margin: 8px 0;
}
.price-card .price small {
  font-size: 18px;
  color: var(--muted);
  font-family: var(--f-mono);
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  text-align: left;
  font-size: 16px;
}
.price-card ul li {
  padding: 4px 0 4px 24px;
  position: relative;
  line-height: 1.3;
}
.price-card ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 4px;
  color: var(--accent);
  font-weight: bold;
}
.price-card ul li.no::before { content: '✗'; color: var(--muted); }
.price-card .btn { font-size: 18px; padding: 8px 18px; }
@media (max-width: 720px) {
  .price-card.featured { transform: none; }
}
@media (max-width: 480px) {
  .price-grid { gap: 16px; }
  .price-card { padding: 18px 14px 14px; }
  .price-card .price { font-size: 44px; }
  .price-card .price small { font-size: 16px; }
}

/* ============== KUNDOMDÖMEN ============== */
.tm-bg { background: var(--paper); }
.tm-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 720px) { .tm-grid { grid-template-columns: 1fr; } }
.tm {
  background: var(--paper-2);
  border: 3px solid var(--ink);
  border-radius: var(--r-card);
  padding: 18px 18px 14px;
  position: relative;
  box-shadow: 5px 5px 0 var(--ink);
}
.tm:nth-child(2) { transform: rotate(1.2deg); }
.tm:nth-child(3) { transform: rotate(-1.4deg); }
.tm .stars-row {
  font-size: 22px;
  color: var(--gold);
  -webkit-text-stroke: 1px var(--ink);
  margin-bottom: 4px;
  cursor: pointer;
  user-select: none;
}
.tm .quote {
  font-family: var(--f-body);
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 10px;
}
.tm .who {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
  border-top: 2px dashed var(--ink);
  padding-top: 8px;
}
.tm .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 16px;
  border: 2px solid var(--ink);
}
@media (max-width: 480px) {
  .tm-grid { gap: 16px; }
  .tm { padding: 14px 14px 12px; }
  .tm:nth-child(2) { transform: rotate(0.5deg); }
  .tm:nth-child(3) { transform: rotate(-0.5deg); }
}

/* ============== BOKA / DISPATCH ============== */
.dispatch-bg {
  background: var(--paper-2);
}
.dispatch {
  max-width: 760px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 8px 8px 0 var(--accent);
  position: relative;
}
.dispatch::before {
  content: '★ DISPATCH ★';
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--f-display);
  padding: 2px 14px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  font-size: 14px;
  letter-spacing: 2px;
}
.dispatch-screen {
  background: #0a1c0a;
  color: #84e84a;
  font-family: 'Special Elite', monospace;
  font-size: 13px;
  padding: 12px;
  border: 2px solid #2a4a2a;
  border-radius: 6px;
  margin-bottom: 14px;
  min-height: 60px;
  line-height: 1.45;
  text-shadow: 0 0 5px #84e84a88;
}
.dispatch-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dispatch-form .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .dispatch-form { grid-template-columns: 1fr; } }
.dispatch-form label {
  display: block;
  font-family: var(--f-num);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}
.dispatch-form input,
.dispatch-form textarea,
.dispatch-form select {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--gold);
  font-family: var(--f-body);
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 4px;
}
.dispatch-form textarea { min-height: 70px; resize: vertical; }
.dispatch-submit {
  font-family: var(--f-display);
  font-size: 22px;
  background: var(--accent);
  color: #fff;
  border: 3px solid var(--gold);
  padding: 12px;
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  letter-spacing: 2px;
  margin-top: 6px;
  box-shadow: 0 4px 0 var(--accent-dk);
}
.dispatch-submit:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--accent-dk); }
@media (max-width: 480px) {
  .dispatch { padding: 14px; box-shadow: 4px 4px 0 var(--accent); }
  .dispatch::before { letter-spacing: 1px; font-size: 12px; padding: 2px 10px; }
  .dispatch-submit { font-size: 18px; padding: 10px; letter-spacing: 1px; }
}

/* ============== HYLLNING ============== */
.hyll {
  background: var(--accent);
  color: #fff;
  padding: 60px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}
.hyll::before, .hyll::after {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  position: absolute;
  left: 0; right: 0;
  font-family: var(--f-display);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 8px;
  -webkit-text-stroke: 1px var(--ink);
}
.hyll::before { top: 14px; }
.hyll::after { bottom: 14px; }
.hyll-cap {
  font-family: var(--f-num);
  font-size: 14px;
  letter-spacing: 5px;
  color: var(--gold);
}
.hyll h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 76px);
  margin: 8px 0 16px;
  line-height: 1;
  color: var(--gold);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 4px 4px 0 var(--ink);
  letter-spacing: 2px;
}
.hyll p {
  font-family: var(--f-body);
  font-size: clamp(18px, 2.2vw, 24px);
  max-width: 700px;
  margin: 12px auto;
  line-height: 1.4;
}
.hyll .sig {
  font-family: var(--f-mono);
  font-size: 14px;
  opacity: .8;
  letter-spacing: 2px;
  margin-top: 20px;
}

@media (max-width: 480px) {
  .hyll { padding: 42px 16px; }
  .hyll::before, .hyll::after { font-size: 12px; letter-spacing: 5px; }
  .hyll-cap { font-size: 12px; letter-spacing: 3px; }
  .hyll h2 { text-shadow: 2px 2px 0 var(--ink); -webkit-text-stroke: 1.5px var(--ink); }
  .hyll p { font-size: 16px; margin: 10px auto; }
  .hyll .sig { font-size: 12px; letter-spacing: 1.5px; margin-top: 16px; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 30px 22px 50px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 26px;
  font-family: var(--f-body);
}
@media (max-width: 720px) { .footer { grid-template-columns: 1fr; } }
.footer h5 {
  font-family: var(--f-num);
  letter-spacing: 3px;
  font-size: 14px;
  color: var(--gold);
  margin: 0 0 8px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { padding: 3px 0; font-size: 15px; }
.footer .ftr-brand {
  display: flex; gap: 12px; align-items: flex-start;
}
.footer .ftr-mini {
  width: 64px; height: 64px;
  background: url('assets/logo-rovhatten.webp') center/contain no-repeat;
  flex: 0 0 auto;
}
.footer .ftr-brand .name {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--gold);
}
.footer .ftr-brand .blurb {
  font-size: 14px;
  color: var(--chrome);
  line-height: 1.4;
}
.footer .secret-pin {
  cursor: pointer;
  color: var(--accent);
  border-bottom: 1px dashed var(--accent);
}
@media (max-width: 480px) {
  .footer { padding: 24px 14px 36px; gap: 20px; }
}

/* ============== SONG MUTE BUTTON ============== */
.song-mute-btn {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 250;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--paper);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--accent);
  cursor: pointer;
  opacity: .92;
  transition: transform .12s, opacity .12s, box-shadow .12s;
}
.song-mute-btn:hover {
  transform: translate(-1px, -1px);
  opacity: 1;
  box-shadow: 4px 4px 0 var(--accent);
}
.song-mute-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--accent);
}
@media (max-width: 480px) {
  .song-mute-btn { font-size: 12px; padding: 6px 12px; bottom: 12px; left: 12px; }
}

/* ============== TOASTS / EASTER EGG OVERLAYS ============== */
.honk-bubble {
  position: fixed;
  font-family: var(--f-display);
  background: var(--gold);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 28px;
  letter-spacing: 2px;
  box-shadow: 5px 5px 0 var(--ink);
  pointer-events: none;
  z-index: 200;
  animation: pop .9s ease-out forwards;
  white-space: nowrap;
}
@keyframes pop {
  0% { opacity: 0; transform: translate(-50%, 10px) scale(.7); }
  20% { opacity: 1; transform: translate(-50%, 0) scale(1.05); }
  100% { opacity: 0; transform: translate(-50%, -50px) scale(1); }
}

.confetti {
  position: fixed;
  width: 10px; height: 14px;
  z-index: 199;
  pointer-events: none;
  border-radius: 2px;
  animation: confetti-fall 2.5s linear forwards;
}
@keyframes confetti-fall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

.tumbleweed {
  position: fixed;
  bottom: 14px;
  left: -120px;
  width: 70px;
  height: 70px;
  z-index: 150;
  pointer-events: none;
  animation: tumble 8s linear forwards;
}
.tumbleweed svg { width: 100%; height: 100%; }
@keyframes tumble {
  to { left: calc(100vw + 60px); transform: rotate(1440deg); }
}

.bowling {
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
  display: grid;
  place-items: center;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.4) 0%, transparent 70%);
  animation: bowl-fade 1.6s ease-out forwards;
}
.bowling .pin {
  font-size: 80px;
  animation: bowl-strike 1.4s ease-out forwards;
}
.bowling .ball {
  position: absolute;
  font-size: 60px;
  animation: ball-roll 1.4s ease-out forwards;
}
.bowling .strike-text {
  position: absolute;
  font-family: var(--f-display);
  color: var(--gold);
  -webkit-text-stroke: 3px var(--ink);
  font-size: 100px;
  text-shadow: 5px 5px 0 var(--ink);
  opacity: 0;
  animation: strike-appear .4s ease-out .9s forwards;
  letter-spacing: 5px;
}
@keyframes bowl-fade {
  0%, 80% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes ball-roll {
  0% { left: -10vw; transform: rotate(0); }
  60% { left: 45vw; transform: rotate(900deg); }
  100% { left: 55vw; opacity: 0; }
}
@keyframes bowl-strike {
  0%, 55% { transform: translateY(0) rotate(0); }
  65% { transform: translateY(-20px) rotate(15deg); }
  100% { transform: translateY(40px) rotate(80deg); opacity: 0; }
}
@keyframes strike-appear {
  to { opacity: 1; transform: scale(1.1); }
}

.secret-modal {
  position: fixed; inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.65);
  display: grid; place-items: center;
  font-family: var(--f-body);
}
.secret-modal .panel {
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 28px 32px;
  max-width: 480px;
  width: 90%;
  border-radius: 14px;
  box-shadow: 8px 8px 0 var(--accent);
  text-align: center;
  position: relative;
}
.secret-modal h3 {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--accent);
  margin: 0 0 10px;
  line-height: 1;
}
.secret-modal p {
  font-size: 17px;
  line-height: 1.4;
  margin: 0 0 14px;
}
.secret-modal .close {
  position: absolute;
  top: 10px; right: 14px;
  font-family: var(--f-display);
  font-size: 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink);
}

/* truck driving across asphalt strip on hero bottom */
.asphalt-strip {
  position: relative;
  background: var(--asphalt);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  height: 80px;
  overflow: hidden;
}
.asphalt-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to right,
    var(--gold) 0 40px,
    transparent 40px 90px
  );
  top: 50%; height: 6px; transform: translateY(-50%);
}
.driving-truck {
  position: absolute;
  bottom: 6px;
  width: 100px; height: 70px;
  background: url('assets/logo-truck.webp') center/contain no-repeat;
  transform: scaleX(-1);
  animation: drive 16s linear infinite;
}
@keyframes drive {
  0%   { left: -120px; }
  100% { left: 100vw; }
}
.driving-truck.fast { animation-duration: 5s; }
@media (max-width: 480px) {
  .driving-truck { animation-duration: 18s; }
  .driving-truck.fast { animation-duration: 8s; }
}

/* visit counter (90s flavor) */
.visit-counter {
  display: inline-flex; align-items: center; gap: 6px;
  background: #000; color: #1aff5a;
  font-family: 'Special Elite', monospace;
  border: 2px solid var(--gold);
  padding: 3px 10px;
  font-size: 16px;
  letter-spacing: 3px;
  border-radius: 4px;
}

/* sketchy CB chatter list */
.cb-feed {
  list-style: none;
  margin: 0; padding: 0;
  font-family: var(--f-mono);
  font-size: 13px;
}
.cb-feed li {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(132, 232, 74, 0.3);
  color: #c8f7a0;
}
.cb-feed li:last-child { border: 0; }
.cb-feed li .ts { color: #84e84a; margin-right: 8px; }

/* utility */
.scrim { color: var(--muted); }
.shake { animation: shake .4s; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}
