/* ===========================================================================
   LOCAL ADS (public/local_ads.css)
   Make it consistent with the rest of Smoovie public pages (venues.css vibe):
   - Space Grotesk
   - Hard edges (no rounding)
   - Same heading weights/sizing + spacing rhythm
   - Same border/shadow/ink/muted palette
   =========================================================================== */

:root{
  /* Match venues.css */
  --accent:#e11d48;
  --ink:#0f0f10;
  --muted:rgba(15,15,16,.72);
  --line:rgba(15,15,16,.12);
  --wash:rgba(15,15,16,.04);

  --radius:0px;                 /* hard edges */
  --shadow:0 18px 40px rgba(0,0,0,.10);

  --maxw: 1360px;
  --pad: 18px;
}

/* Scoped reset (don’t clobber the whole site) */
.ads-page,
.ads-page *{
  box-sizing: border-box;
}
.ads-page h1,
.ads-page h2,
.ads-page h3,
.ads-page p{
  margin: 0;
}
.ads-page ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Page shell (same as venues-page) */
.ads-page{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px var(--pad) 64px;
  color: var(--ink);
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

/* HERO (match venues hero rhythm) */
.ads-hero{
  padding: 10px 0 22px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.ads-hero h1{
  margin: 0 0 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.ads-hero p{
  margin: 10px auto 0;
  max-width: 900px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* Sections (same border/shadow language as venues map/panel) */
.ads-section{
  margin-top: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px;
}

.ads-section h2{
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: -0.01em;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  color: var(--ink);
}

.ads-section p{
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 980px;
}

/* HERO MEDIA */
.ads-hero-media{
  padding: 18px;
}

.ads-hero-image{
  width: 100%;
  border: 1px solid var(--line);
  background: var(--wash);
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
}

.ads-hero-image img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Offer inner box (sub-surface like venues wash) */
.ads-offer-inner{
  background: rgba(15,15,16,.03);
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: var(--radius);
}

/* Steps */
.ads-steps{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.ads-steps p{
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
}
.ads-steps strong{
  color: var(--ink);
  font-weight: 950;
}

/* Showreel block */
.ads-showreel-block{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* Video wrapper */
.ads-video-wrapper{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 12px;
}

.ads-video-wrapper video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder */
.ads-placeholder{
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--wash);
  border: 1px solid var(--line);
}

/* Captions */
.ads-caption{
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
  color: rgba(15,15,16,.62);
  letter-spacing: .02em;
}

/* Pricing grid */
.ads-grid{
  margin-top: 14px;
  display: grid;
  gap: 18px;
}

.ads-pricing-grid{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px){
  .ads-pricing-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .ads-pricing-grid{
    grid-template-columns: 1fr;
  }
}

/* Pricing cards (match venue cards style) */
.ads-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  transition: transform .12s ease;
}

.ads-card:hover{
  transform: translateY(-2px);
}

.ads-card h3{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
  color: var(--ink);
}

.ads-price{
  margin: 0;
  font-size: 32px;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.ads-card p{
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* CTA (keep it simple + consistent) */
.ads-cta{
  margin-top: 18px;
  padding: 26px 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  text-align: center;
}

.ads-cta h2{
  margin: 0 0 8px;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 950;
  letter-spacing: -0.01em;
}

.ads-cta p{
  margin: 0 auto;
  max-width: 860px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

/* Button (match venues.css .btn/.btn-primary feel) */
.ads-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  margin-top: 14px;
  border-radius: var(--radius);
  font-weight: 950;
  text-decoration: none;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: transform .08s ease, background-color .15s ease, border-color .15s ease;
}
.ads-btn:hover{
  background: #d4143f;
  border-color: #d4143f;
}
.ads-btn:active{
  transform: translateY(1px);
}

/* Bottom nav link */
.ads-bottom-nav{
  margin-top: 14px;
}
.ads-bottom-nav a{
  color: var(--ink);
  text-decoration: none;
  font-weight: 950;
}
.ads-bottom-nav a:hover{
  text-decoration: underline;
}

/* Mobile spacing */
@media (max-width: 700px){
  .ads-page{
    padding: 24px var(--pad) 56px;
  }
  .ads-section{
    padding: 16px;
  }
}
