/* JunkJunkGo shared styles - Fouro Digital */
:root {
  --neon: #a3ff00;
  --neon-dim: #6baa00;
  --silver: #c8cdd6;
  --dark: #111314;
  --darker: #0a0b0c;
  --card: #181a1c;
  --border: #2a2d30;
  --text: #d4d8de;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--darker);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  padding-top: 70px;
}
img { max-width: 100%; display: block; }

/* ---------- nav ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(10, 11, 12, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--neon); }
.nav-links { display: flex; gap: clamp(12px, 2vw, 2.5rem); list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--silver);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--neon); }
.nav-cta {
  background: var(--neon);
  color: var(--darker) !important;
  padding: 8px 20px;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: #c4ff1a !important; transform: scale(1.04); }

/* ---------- buttons ---------- */
.btn-primary {
  display: inline-block;
  background: var(--neon);
  color: var(--darker);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 0 20px rgba(163,255,0,0.4);
}
.btn-primary:hover { background: #c4ff1a; box-shadow: 0 0 35px rgba(163,255,0,0.6); transform: translateY(-2px); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 2px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
}
.btn-secondary:hover { border-color: var(--neon); color: var(--neon); transform: translateY(-2px); }

/* ---------- layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--neon); margin-bottom: 10px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 2px; color: var(--white); line-height: 1.05; margin-bottom: 16px;
}
h2.block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: 1.5px; color: var(--white); margin-bottom: 14px; line-height: 1.1;
}
h3.sub-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--neon); margin-bottom: 8px;
}
p { line-height: 1.75; margin-bottom: 16px; }
.lede { font-size: 1.08rem; max-width: 760px; }
.page-head { padding: 56px 0 34px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, var(--dark), var(--darker)); }
.block { padding: 52px 0; }
.crumbs { font-size: .82rem; color: #6c7278; margin-bottom: 18px; }
.crumbs a { color: #6c7278; text-decoration: none; }
.crumbs a:hover { color: var(--neon); }

/* ---------- cards ---------- */
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 26px;
}

/* ---------- gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gal-item {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; cursor: pointer; padding: 0;
  transition: border-color .2s, transform .2s, box-shadow .2s; display: block; width: 100%;
}
.gal-item:hover, .gal-item:focus-visible {
  border-color: var(--neon); transform: translateY(-3px);
  box-shadow: 0 0 26px rgba(163,255,0,0.18); outline: none;
}
.gal-item img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; }
.gal-cap {
  display: block; padding: 14px 16px 16px; text-align: left;
  font-family: 'Barlow', sans-serif; font-size: .9rem; color: var(--silver); line-height: 1.5;
}
.gal-tag {
  display: block; font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--neon); margin-bottom: 6px;
}
/* lightbox */
.lb { position: fixed; inset: 0; background: rgba(5,6,7,.94); display: none; align-items: center; justify-content: center; z-index: 300; padding: 24px; }
.lb.open { display: flex; }
.lb img { max-width: min(1000px, 94vw); max-height: 82vh; border-radius: 10px; border: 1px solid var(--border); }
.lb-cap { color: var(--silver); font-size: .92rem; text-align: center; margin-top: 14px; max-width: 720px; }
.lb-close {
  position: absolute; top: 18px; right: 22px; background: none; border: none;
  color: var(--white); font-size: 2.2rem; line-height: 1; cursor: pointer;
}
.lb-close:hover { color: var(--neon); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(24,26,28,.9); border: 1px solid var(--border); color: var(--white);
  font-size: 1.8rem; width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
}
.lb-nav:hover { border-color: var(--neon); color: var(--neon); }
.lb-prev { left: 16px; } .lb-next { right: 16px; }

/* ---------- reviews ---------- */
.rating-hero {
  display: flex; flex-wrap: wrap; align-items: center; gap: 28px;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 30px;
}
.rating-num { font-family: 'Bebas Neue', sans-serif; font-size: 4.2rem; line-height: .9; color: var(--neon); }
.stars { color: var(--neon); letter-spacing: 3px; font-size: 1.15rem; }
.rating-meta { font-size: .95rem; color: var(--silver); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }
.review {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 26px; display: flex; flex-direction: column; gap: 12px;
}
.review-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: 1px; text-transform: uppercase; color: var(--white); }
.review-body { font-size: .97rem; line-height: 1.7; color: var(--text); margin: 0; }
.review-src { font-size: .8rem; color: #6c7278; margin-top: auto; }
.review-src a { color: var(--neon-dim); text-decoration: none; }
.review-src a:hover { color: var(--neon); }

/* ---------- cta strip ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--dark), #16181a);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 54px 0; text-align: center;
}
.cta-strip .btnrow { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

/* ---------- footer ---------- */
footer {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px; padding: 40px clamp(16px, 4vw, 48px);
  border-top: 1px solid var(--border);
}
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 2px; color: var(--white); }
.footer-brand span { color: var(--neon); }
.footer-links { display: flex; gap: 24px; list-style: none; flex-wrap: wrap; }
.footer-links a { text-decoration: none; font-size: .85rem; color: #555; transition: color .2s; }
.footer-links a:hover { color: var(--neon); }
.footer-copy { font-size: .82rem; color: #444; width: 100%; text-align: center; margin-top: 8px; }
.footer-credit { font-size: .8rem; color: #3f3f3f; width: 100%; text-align: center; }
.footer-credit a { color: #555; text-decoration: none; }
.footer-credit a:hover { color: var(--neon); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  nav { height: auto; padding: 12px clamp(16px, 4vw, 48px); flex-wrap: wrap; row-gap: 10px; }
  body { padding-top: 118px; }
  .nav-links { width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 14px; }
}
@media (max-width: 640px) {
  .gal-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .rating-hero { justify-content: center; text-align: center; }
}

/* ---------- service page photo strip ---------- */
.gal-grid--service { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.gal-grid--service .gal-item img { border-radius: 14px; }
.two-col .card p a, .lede a { color: var(--neon); }
.two-col--pair { grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); }
@media (max-width: 900px) { .two-col--pair { grid-template-columns: 1fr; } }

/* reviews: masonry columns so short reviews do not stretch to the tallest card */
.review-grid { display: block; columns: 3; column-gap: 22px; }
.review { break-inside: avoid; margin-bottom: 22px; display: block; }
.review .review-src { margin-top: 12px; }
@media (max-width: 1024px) { .review-grid { columns: 2; } }
@media (max-width: 700px)  { .review-grid { columns: 1; } }
.review-body + .review-body { margin-top: 12px; }
