:root {
  --blue: #1472d8;
  --blue-dark: #0f57a8;
  --black: #070707;
  --muted: #5b6570;
  --soft: #f5f8fb;
  --line: #e8edf3;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(7, 7, 7, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: #fff;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand img { height: 46px; width: auto; display: block; }
nav { display: flex; align-items: center; gap: clamp(14px, 3vw, 34px); font-weight: 700; }
nav a { color: #20242a; transition: color .2s ease; }
nav a:hover { color: var(--blue); }

.section-pad { padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px); }
.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 78% 22%, rgba(20,114,216,.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.hero-inner { max-width: 970px; text-align: center; }
.hero-logo { width: min(560px, 82vw); height: auto; margin-bottom: 28px; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(2.25rem, 6vw, 5.6rem);
  line-height: .94;
  letter-spacing: -.075em;
}
h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.055em; }
.intro {
  max-width: 770px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}
.actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid var(--black);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(7,7,7,.12); }
.button.primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { background: #fff; color: var(--black); }
.notice { margin-top: 24px; color: var(--muted); font-size: .95rem; }

.brands { background: #fff; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.brand-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.brand-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7,7,7,.045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.brand-card:nth-child(even) { background: #fff; }
.brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(7,7,7,.09);
  border-color: rgba(20,114,216,.35);
}
.brand-card img {
  display: block;
  width: 100%;
  max-width: 220px;
  max-height: 92px;
  object-fit: contain;
}

.find { background: var(--soft); }
.find-card {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}
.find-copy, .map-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.find-copy { padding: clamp(30px, 5vw, 58px); }
address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.15rem;
  margin-bottom: 26px;
}
.contact-list { display: grid; gap: 10px; margin-bottom: 28px; font-weight: 850; }
.contact-list a { color: var(--blue); }
.hours { margin-bottom: 28px; }
.hours h3 { margin-bottom: 10px; font-size: 1.1rem; }
.hours p { margin: 4px 0; color: var(--muted); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 480px; border: 0; display: block; }

footer {
  padding: 42px 20px;
  text-align: center;
  color: #fff;
  background: var(--black);
}
.footer-line { width: 110px; height: 4px; background: var(--blue); border-radius: 999px; margin: 0 auto 28px; }
footer img { width: 220px; height: auto; background: #fff; border-radius: 16px; padding: 10px 18px; margin-bottom: 20px; }
footer p { margin: 6px 0; color: rgba(255,255,255,.78); }
footer a { color: #fff; }
footer small { display: block; margin-top: 18px; color: rgba(255,255,255,.52); }

@media (max-width: 850px) {
  .site-header { height: auto; flex-direction: column; gap: 12px; padding-block: 12px; }
  nav { font-size: .95rem; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .find-card { grid-template-columns: 1fr; }
  .map-wrap iframe { min-height: 360px; }
}

@media (max-width: 520px) {
  .brand img { height: 38px; }
  .hero { min-height: auto; }
  h1 { font-size: 2.35rem; }
  .brand-grid { grid-template-columns: 1fr; }
  .brand-card { min-height: 104px; }
  .brand-card img { max-height: 72px; }
  .button { width: 100%; }
}

/* Brand logo fine tuning */
.brand-card img[src$="bar-juice-5000.png"] { max-height: 104px; max-width: 160px; border-radius: 8px; }
.brand-card img[src$="vampire-vape.png"] { max-height: 118px; max-width: 150px; }
.brand-card img[src$="lost-mary.png"] { max-width: 190px; max-height: 86px; }
.brand-card img[src$="crystal-clear.png"] { max-width: 220px; max-height: 90px; }
.brand-card img[src$="oxva.png"] { max-width: 210px; max-height: 80px; }


/* User-supplied brand logos - final sizing */
.brand-card img[src$="elfliq.png"] { max-width: 230px; max-height: 70px; }
.brand-card img[src$="crystal-clear.png"] { max-width: 145px; max-height: 108px; }
.brand-card img[src$="pod-salt.png"] { max-width: 145px; max-height: 104px; }
.brand-card img[src$="bar-juice-5000.png"] { max-width: 150px; max-height: 106px; }
.brand-card img[src$="vampire-vape.png"] { max-width: 170px; max-height: 118px; }
.brand-card img[src$="oxva.png"] { max-width: 230px; max-height: 72px; }
.brand-card img[src$="vaporesso.png"] { max-width: 200px; max-height: 96px; }
.brand-card img[src$="lost-mary.png"] { max-width: 190px; max-height: 92px; }
