/* =========================================================
   Monster Magazine Advertising — design system
   Palette extracted from the brand mockups in /docs.
   No webfonts loaded — bold system-font stack keeps this file
   the only network request needed for full page styling.
   ========================================================= */

:root {
  --black:   #0a0a0a;
  --charcoal:#161616;
  --gold:    #f5c518;
  --gold-dark:#caa20f;
  --green:   #7cb342;
  --green-dark:#588a28;
  --white:   #ffffff;
  --red:     #e2211c;
  --blue:    #4fc3e8;

  --ink:     #1a1a1a;
  --muted:   #6b6b6b;
  --line:    #e7e2d6;
  --paper:   #fffdf7;

  --font-display: 'Arial Black', 'Segoe UI Black', 'Helvetica Neue', Arial, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(0,0,0,.15);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--black);
  padding: 10px 16px; z-index: 1000; font-weight: 700;
}
.skip-link:focus { left: 10px; top: 10px; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: .85em 1.7em;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  font-size: .98rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn:hover, .btn:focus-visible { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,.18); color: var(--black); }
.btn:active { transform: translateY(0); box-shadow: 0 1px 2px rgba(0,0,0,.15); }
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover, .btn--red:focus-visible { background: #b81a16; color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); box-shadow: none; }
.btn--outline:hover, .btn--outline:focus-visible { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); box-shadow: none; }
.btn--small { padding: .55em 1.2em; font-size: .82rem; border-radius: 8px; }
.btn--block { width: 100%; }

/* ---------- Top info bar ---------- */
.topbar {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(245,197,24,.25);
  color: #cfcfcf;
  font-size: .8rem;
}
.topbar__row { display: flex; align-items: center; justify-content: center; gap: 30px; padding: 8px 20px; }
.topbar__msg { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; letter-spacing: .01em; }
.topbar__msg svg { flex-shrink: 0; }
.topbar__email { display: inline-flex; align-items: center; gap: 7px; color: #cfcfcf; text-decoration: none; }
.topbar__email:hover { color: var(--gold); }
@media (max-width: 700px) {
  .topbar__row { gap: 14px; }
  .topbar__email span { display: none; }
}
@media (max-width: 560px) { .topbar__email { display: none; } .topbar__row { justify-content: center; } }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--black);
  border-bottom: 4px solid var(--gold);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 4px 18px rgba(0,0,0,.35);
}
.site-header__row { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px; gap: 16px; }

.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { display: block; height: 64px; width: 64px; }
.brand--footer { margin-bottom: 14px; }
.brand--footer img { height: 80px; width: 80px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle__bar { width: 26px; height: 3px; background: var(--gold); border-radius: 2px; }

.primary-nav > ul { display: flex; align-items: center; gap: 34px; }
.primary-nav > ul > li { position: relative; }
.primary-nav a {
  color: var(--white); text-decoration: none; font-weight: 700; font-size: 1.08rem;
  text-transform: uppercase; letter-spacing: .02em;
  display: inline-flex; align-items: center; gap: 6px;
}
.primary-nav > ul > li:not(.has-sub) > a:not(.btn) { padding: 8px 0; position: relative; }
.primary-nav > ul > li:not(.has-sub) > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--gold);
  transition: right .2s ease;
}
.primary-nav > ul > li:not(.has-sub) > a:not(.btn):hover::after { right: 0; }
.primary-nav a:not(.btn):hover { color: var(--gold); }
.primary-nav .btn:hover { color: var(--black); }
.chev { transition: transform .2s ease; opacity: .7; }
.has-sub:hover .chev { transform: rotate(180deg); }
.has-sub { position: relative; }
.sub-nav {
  display: none; flex-direction: column; position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  background: var(--charcoal);
  border: 1px solid rgba(245,197,24,.35); border-radius: var(--radius); padding: 10px; width: 240px;
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}
.sub-nav::before {
  content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  border: 8px solid transparent; border-bottom-color: var(--charcoal);
}
.has-sub:hover .sub-nav, .has-sub:focus-within .sub-nav { display: flex; }
.sub-nav li { padding: 2px 0; }
.sub-nav a { text-transform: none; font-weight: 500; font-size: .92rem; display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 6px; }
.sub-nav a:hover { background: rgba(255,255,255,.08); }
.sub-nav img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--black);
    border-bottom: 4px solid var(--gold);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; padding: 16px 20px; gap: 4px; }
  .primary-nav li { border-bottom: 1px solid rgba(255,255,255,.08); }
  .primary-nav a { display: block; padding: 12px 4px; }
  .sub-nav { position: static; display: block; border: 0; background: transparent; padding: 0 0 0 12px; box-shadow: none; }
  .has-sub:hover .sub-nav, .has-sub:focus-within .sub-nav { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 80% 20%, #1c1c1c, var(--black) 60%);
  color: var(--white);
  padding: 64px 0 80px;
  overflow: hidden;
  position: relative;
}
.hero__row { display: grid; grid-template-columns: .95fr 1.05fr; gap: 40px; align-items: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(180deg, rgba(226,33,28,.14), rgba(226,33,28,.04));
  border: 1px solid rgba(226,33,28,.45);
  color: #ff8983; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; padding: .55em 1.2em .55em 1em;
  border-radius: 999px; font-size: .72rem; margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 0 3px rgba(226,33,28,.25);
  animation: eyebrowPulse 2s ease-in-out infinite;
}
@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(226,33,28,.25); }
  50% { opacity: .6; box-shadow: 0 0 0 5px rgba(226,33,28,.12); }
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 3px 3px 0 var(--black), -1px -1px 0 rgba(255,255,255,.08);
}
.hero h1 span { color: var(--green); }
.hero__lead { font-size: 1.15rem; color: #d9d9d9; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.hero__art { justify-self: center; background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.hero__art img { max-width: 420px; width: 100%; }

@media (max-width: 860px) {
  .hero__row { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__cta { justify-content: center; }
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--tint { background: #fbf6e8; }
.section__head { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.section__head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); text-transform: uppercase; }
.section__head p { color: var(--muted); font-size: 1.05rem; }
.section--dark .section__head p { color: #cfcfcf; }
.wrap--narrow { max-width: 820px; }

.eyebrow {
  display: inline-block; text-transform: uppercase; font-weight: 800; letter-spacing: .1em;
  font-size: .74rem; padding: .45em 1.1em; border-radius: 999px; margin-bottom: 14px;
  border: 1px solid transparent;
}
.eyebrow--gold { background: linear-gradient(180deg, rgba(245,197,24,.14), rgba(245,197,24,.04)); color: #a9820a; border-color: rgba(169,130,10,.35); }
.eyebrow--green { background: linear-gradient(180deg, rgba(124,179,66,.16), rgba(124,179,66,.05)); color: var(--green-dark); border-color: rgba(88,138,40,.35); }
.eyebrow--red { background: linear-gradient(180deg, rgba(226,33,28,.14), rgba(226,33,28,.04)); color: var(--red); border-color: rgba(226,33,28,.35); }
.section--dark .eyebrow--gold { background: linear-gradient(180deg, rgba(245,197,24,.18), rgba(245,197,24,.05)); color: var(--gold); border-color: rgba(245,197,24,.4); }

/* ---------- Feature cards ("Why Advertise") ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
  border-top: 4px solid var(--gold);
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,.12); }
.feature-card--green { border-top-color: var(--green); }
.feature-card--red { border-top-color: var(--red); }
.feature-card__badge {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; font-size: 1.7rem;
  margin-bottom: 20px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 8px 18px rgba(245,197,24,.35);
}
.feature-card--green .feature-card__badge { background: linear-gradient(135deg, var(--green), var(--green-dark)); box-shadow: 0 8px 18px rgba(124,179,66,.35); }
.feature-card--red .feature-card__badge { background: linear-gradient(135deg, var(--red), #b81a16); box-shadow: 0 8px 18px rgba(226,33,28,.3); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--muted); margin-bottom: 0; font-size: .96rem; }

/* ---------- Category page image ---------- */
.cat-card__thumb--lg { justify-content: center; }
.cat-card__thumb--lg img { width: 96px; height: 96px; margin: 0 auto 16px; }
/* ---------- Category page hero ---------- */
.cat-hero {
  background: radial-gradient(circle at 80% 0%, #1c1c1c, var(--black) 65%);
  color: var(--white);
  padding: 26px 0 56px;
  text-align: center;
}
.cat-hero__inner { display: flex; flex-direction: column; align-items: center; }
.breadcrumb { font-size: .82rem; color: #b8b8b8; margin-bottom: 26px; }
.breadcrumb a { color: #b8b8b8; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }
.cat-hero__badge {
  display: block; margin-bottom: 20px;
}
.cat-hero__badge img {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--gold); box-shadow: 0 10px 24px rgba(0,0,0,.4);
}
.cat-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem); text-transform: uppercase; color: var(--gold);
  text-shadow: 3px 3px 0 rgba(0,0,0,.5); margin-bottom: 14px;
}
.cat-hero__blurb { color: #d9d9d9; font-size: 1.1rem; max-width: 56ch; margin: 0 auto 26px; }
.cat-hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- Category showcase image ---------- */
.category-sheet {
  position: relative;
  margin: 0 0 30px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.category-sheet a { display: block; position: relative; }
.category-sheet img { width: 100%; display: block; }
.category-sheet__ribbon {
  position: absolute; top: 16px; left: -34px; z-index: 2;
  background: var(--red); color: var(--white); font-family: var(--font-display);
  text-transform: uppercase; font-size: .78rem; letter-spacing: .04em;
  padding: 5px 40px; transform: rotate(-45deg); box-shadow: 0 3px 8px rgba(0,0,0,.3);
}
.category-sheet__zoom {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 2;
  background: rgba(0,0,0,.72); color: var(--white); font-weight: 700; font-size: .85rem;
  padding: .6em 1.2em; border-radius: 999px; opacity: 0; transition: opacity .2s ease;
  display: flex; align-items: center; gap: 8px;
}
.category-sheet:hover .category-sheet__zoom { opacity: 1; }

/* ---------- Spots meter ---------- */
.spots-meter { margin: 0 auto 10px; }
.spots-meter__row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .92rem; color: var(--muted); margin-bottom: 8px;
}
.spots-meter__row strong { color: var(--green-dark); font-size: 1.1rem; font-family: var(--font-display); }
.spots-meter__bar { height: 12px; border-radius: 999px; background: var(--line); overflow: hidden; }
.spots-meter__fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 999px; }

/* ---------- Category grid (home + index) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.cat-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--gold);
  transition: transform .15s ease, box-shadow .15s ease;
  display: block;
}
.cat-card:hover, .cat-card:focus-visible { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--gold); }
.cat-card__icon { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.cat-card__thumb { display: block; margin-bottom: 14px; }
.cat-card__thumb img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.cat-card h3 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: 6px; }
.cat-card p { color: var(--muted); font-size: .92rem; margin-bottom: 10px; }
.cat-card__meta { font-weight: 800; color: var(--green-dark); font-size: .85rem; text-transform: uppercase; }

/* ---------- Category page: deal boxes ---------- */
.deal-banner {
  background: var(--black); color: var(--white);
  border-radius: var(--radius);
  padding: 26px; margin-bottom: 26px;
}
.deal-banner__top {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  text-transform: uppercase; font-weight: 800; letter-spacing: .04em; margin-bottom: 20px; font-size: .95rem;
}
.deal-banner__top::before, .deal-banner__top::after { content: ''; height: 2px; background: var(--gold); flex: 1; }
.deal-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch; }
.deal-box {
  border: 2px solid var(--gold); border-radius: var(--radius-sm); padding: 20px;
}
.deal-box p:first-child { text-transform: uppercase; font-weight: 800; font-size: 1.05rem; margin-bottom: 8px; }
.deal-box .free { color: var(--gold); }
.deal-box p:last-child { color: #d6d6d6; margin-bottom: 0; font-size: .95rem; }
.deal-or {
  align-self: center; background: var(--gold); color: var(--black); font-family: var(--font-display);
  border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
}
@media (max-width: 700px) {
  .deal-grid { grid-template-columns: 1fr; }
  .deal-or { justify-self: center; }
}

.member-banner {
  background: var(--red); color: var(--white); text-align: center; font-family: var(--font-display);
  text-transform: uppercase; padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 30px;
  font-size: clamp(.95rem, 2vw, 1.2rem);
}
.member-banner b { color: var(--gold); }

/* ---------- Listing grid ---------- */
.listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.listing-card {
  background: var(--white); border: 2px solid var(--black); border-radius: var(--radius-sm);
  padding: 16px;
}
.listing-card .badge {
  display: inline-block; font-size: .68rem; text-transform: uppercase; font-weight: 800;
  background: var(--green); color: var(--white); padding: 2px 8px; border-radius: 999px; margin-bottom: 8px;
}
.listing-card h3 { font-size: 1rem; margin-bottom: 6px; }
.listing-card p { margin: 0; font-size: .85rem; color: var(--muted); }
.listing-card .website { color: var(--green-dark); font-weight: 700; }

.listing-card--open {
  background: repeating-linear-gradient(135deg, #fffdf2, #fffdf2 10px, #fff6cf 10px, #fff6cf 20px);
  border: 3px dashed var(--gold-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px;
}
.listing-card--open .badge { background: var(--red); }
.listing-card--open h3 { text-transform: uppercase; }
.listing-card--open a { font-size: .82rem; font-weight: 800; color: var(--green-dark); text-decoration: underline; }

.spots-strip {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  background: var(--charcoal); color: var(--white); padding: 18px 22px; border-radius: var(--radius-sm); margin: 30px 0;
}
.spots-strip strong { color: var(--gold); font-size: 1.3rem; font-family: var(--font-display); }

/* ---------- Guarantee strip ---------- */
.guarantee-strip {
  text-align: center; padding: 22px 20px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 50%, var(--gold-dark));
  color: var(--black);
}
.guarantee-strip__row { display: flex; align-items: center; justify-content: center; gap: 18px; }
.guarantee-strip__icon { font-size: 1.3rem; }
.guarantee-strip p { margin: 0; font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1rem, 2.4vw, 1.4rem); }
@media (max-width: 600px) { .guarantee-strip__icon { display: none; } }

/* ---------- Final CTA banner ---------- */
.cta-banner {
  text-align: center; padding: 54px 30px; border-radius: var(--radius);
  background: radial-gradient(circle at 30% 20%, #1c1c1c, var(--black) 70%);
  color: var(--white); border: 2px solid var(--gold);
}
.cta-banner h2 { text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.cta-banner p { max-width: 60ch; margin: 0 auto 26px; color: #d9d9d9; }

/* ---------- Steps (how it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 26px 22px;
  transition: transform .2s ease, background .2s ease;
}
.step:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.step h3 { font-size: 1.08rem; }
.step p { color: #c7c7c7; margin-bottom: 0; font-size: .94rem; }
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: var(--white);
  font-family: var(--font-display); margin-bottom: 16px;
}

/* ---------- Forms ---------- */
.form { max-width: 640px; margin: 0 auto; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.alert { padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 22px; font-weight: 600; }
.alert--success { background: #eaf5df; border: 2px solid var(--green); color: var(--green-dark); }
.alert--error { background: #fbe4e3; border: 2px solid var(--red); color: #8f1712; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #d6d6d6; padding: 50px 0 0; margin-top: 40px; }
.site-footer h2 { color: var(--gold); font-size: 1rem; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: #d6d6d6; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.site-footer__grid li { margin-bottom: 8px; }
.site-footer__blurb { color: #a8a8a8; font-size: .92rem; }
.site-footer__bottom { border-top: 1px solid #2a2a2a; padding: 18px 20px; font-size: .82rem; color: #888; }
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Lightbox ---------- */
.lightbox-trigger { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,6,6,.94);
  opacity: 0; visibility: hidden; transform: scale(1.02);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  padding: 40px;
}
.lightbox.is-open { opacity: 1; visibility: visible; transform: scale(1); }
.lightbox__figure { margin: 0; max-width: min(90vw, 900px); text-align: center; }
.lightbox__img {
  max-width: 100%; max-height: 82vh; width: auto; border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  animation: lightboxPop .3s ease;
}
@keyframes lightboxPop { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox__caption { color: #e8e8e8; margin-top: 16px; font-weight: 600; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.08); color: var(--white); border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%; width: 48px; height: 48px; font-size: 1.3rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s ease, transform .2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: var(--black); transform: scale(1.08); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 700px) {
  .lightbox { padding: 16px; }
  .lightbox__close { top: 10px; right: 10px; width: 40px; height: 40px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ---------- Sample ad gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.gallery-item {
  position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--charcoal); border: 1px solid var(--line); text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 16px 30px rgba(0,0,0,.18); }
.gallery-item picture { display: block; overflow: hidden; background: #111; }
.gallery-item img { display: block; width: 100%; height: auto; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__num {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(0,0,0,.65); color: var(--gold); font-family: var(--font-display);
  font-size: .78rem; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item__zoom {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  background: rgba(0,0,0,.65); color: var(--white); width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s ease;
}
.gallery-item:hover .gallery-item__zoom { opacity: 1; }
.gallery-item__caption {
  display: block; padding: 10px 12px; color: var(--white); font-size: .82rem; font-weight: 600;
  background: var(--charcoal);
}
