/* ============================================================
   AudioRental.org
   The hub that connects people with sound.
   Shares type and colour with AudioRental.Vegas, kept white and quiet.
   ============================================================ */

:root {
  --navy: #0b1f33;
  --ink: #101318;
  --accent: #005cfe;
  --accent-hover: #0042fe;
  --bg: #ffffff;
  --muted: rgba(11, 31, 51, 0.6);
  --border: rgba(11, 31, 51, 0.1);
  --radius: 14px;
  --maxw: 1120px;

  --font-brand: "Outfit", "Helvetica Neue", sans-serif;
  --font-body: "Plus Jakarta Sans", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* height: auto is load-bearing. The width/height attributes on every <img> are
   presentational hints, so sizing an image in CSS by width alone leaves the
   height hint in force and stretches it. */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

h1,
h2 {
  font-family: var(--font-brand);
  font-weight: 650;
  line-height: 1.14;
  margin: 0 0 0.6em;
  color: var(--navy);
  letter-spacing: -0.025em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}

.muted {
  color: var(--muted);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  height: 26px;
  width: auto;
}

/* ---------- Hero ---------- */

.hero {
  padding: clamp(4rem, 10vw, 7.5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.hero__mark {
  width: min(100%, 560px);
  height: auto;
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
}

.hero h1 {
  font-size: clamp(1.85rem, 4.4vw, 2.85rem);
  margin-bottom: 0.45em;
}

.hero__sub {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero__gear {
  margin: 1.35rem auto 0;
  max-width: 42rem;
  font-family: var(--font-brand);
  font-size: clamp(0.72rem, 1.2vw, 0.82rem);
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

/* ---------- Cities ---------- */

.section {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.city {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2.75rem 1.5rem 2.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

/* City lockups are exported at a shared height, so height is what keeps the
   letters identical in size from city to city. Never constrain them by width. */
.city img {
  height: 58px;
  width: auto;
}

.city__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11, 31, 51, 0.42);
}

.city__status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.city--live .city__status {
  color: var(--accent);
}

a.city:hover {
  border-color: rgba(0, 92, 254, 0.4);
  box-shadow: 0 14px 40px rgba(11, 31, 51, 0.08);
  transform: translateY(-2px);
}

/* ---------- Provider CTA ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid var(--accent);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn--light {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
  color: var(--navy);
}

.cta-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--navy);
  text-align: center;
  color: #fff;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--navy);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent);
}

@media (max-width: 640px) {
  .city {
    padding: 2.25rem 1.25rem 1.75rem;
  }

  .city img {
    height: 46px;
  }

  .hero__gear {
    letter-spacing: 0.08em;
  }
}
