/* ============================================================
   ads.css — landing-page-only components for ads.beamsstorage.com
   Loaded AFTER main.css; reuses the Winston "Steel & Sunlight"
   design tokens (--brand, --ink, --paper, .btn*, .badge, .section*).
   Single conversion goal per page: scroll to the Storrd booking embed.
   ============================================================ */

/* --- Minimal header: logo + phone only, NO global nav (no exit paths) --- */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(22,36,47,.04);
}
.lp-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; height: 68px;
}
.lp-header__logo { width: auto; height: 44px; }
.lp-header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 1.12rem;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.lp-header__phone svg { width: 20px; height: 20px; color: var(--brand-deep); flex: none; }
.lp-header__phone:hover { color: var(--brand-deep); }

/* --- LP hero --- */
.lp-hero {
  position: relative;
  color: #fff;
  background-size: cover; background-position: center;
  padding: 0;
}
.lp-hero .container { position: relative; z-index: 2; padding-top: 54px; padding-bottom: 58px; }
.lp-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); max-width: 18ch; margin-bottom: 14px; }
.lp-hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 46ch; color: #e8eef3; margin-bottom: 24px; }
.lp-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }

/* trust bar reuses .hero__badges + .badge from main.css */
.trust-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

/* --- Unit / pricing grid --- */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.unit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.unit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.unit-card__size { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.unit-card__best { color: var(--steel); font-size: .95rem; flex: 1 1 auto; }
.unit-card__promo {
  display: inline-block; align-self: flex-start;
  background: var(--brand-soft); color: var(--brand-deep);
  font-family: var(--display); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em;
  padding: 4px 10px; border-radius: 999px;
}
.unit-card .btn { margin-top: 6px; justify-content: center; }

/* --- "Best for" icon grid (climate / rv pages) --- */
.icon-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px; margin-top: 10px;
}
.icon-grid__item {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 16px; text-align: center; box-shadow: var(--shadow);
}
.icon-grid__item svg { width: 30px; height: 30px; color: var(--brand-deep); margin: 0 auto 10px; }
.icon-grid__item b { display: block; font-family: var(--display); font-size: 1.02rem; }

/* --- problem/solution hook band --- */
.hook {
  max-width: 760px; margin: 0 auto; text-align: center;
  font-size: 1.18rem; line-height: 1.65; color: #cdd9e2;
}
.hook strong { color: #fff; }

/* --- photo strip --- */
.photo-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 10px; }
.photo-strip img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

/* --- bullet list --- */
.checks { display: grid; gap: 12px; margin-top: 10px; }
.checks li { list-style: none; display: flex; align-items: flex-start; gap: 10px; }
.checks svg { width: 22px; height: 22px; color: var(--brand-deep); flex: none; margin-top: 2px; }

/* --- Storrd booking section heading spacing --- */
#choose-unit { scroll-margin-top: 76px; }

/* --- Slim footer --- */
.lp-footer { background: var(--ink); color: #aebecb; padding: 40px 0 28px; }
.lp-footer .container { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: center; }
.lp-footer a { color: #fff; text-decoration: none; }
.lp-footer a:hover { color: var(--brand); }
.lp-footer__nap { display: flex; flex-direction: column; gap: 4px; font-size: .95rem; }
.lp-footer__nap b { color: #fff; font-family: var(--display); }
.lp-footer__legal { font-size: .82rem; color: #7c8b98; width: 100%; border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; margin-top: 6px; }

@media (max-width: 560px) {
  .lp-header__phone span { display: none; }
  .lp-hero .container { padding-top: 38px; padding-bottom: 42px; }
}
