/* ============================================================
   AudioRental.Vegas
   Corporate + approachable + value-focused rental brand
   ============================================================ */

:root {
  --navy: #0b1f33;
  --navy-soft: #16324a;
  --ink: #0b1f33;
  --accent: #005efc;
  --accent-hover: #0048c7;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --muted: rgba(11, 31, 51, 0.62);
  --border: rgba(11, 31, 51, 0.12);
  --shadow: 0 12px 40px rgba(11, 31, 51, 0.08);
  --radius: 12px;
  --header-h: 72px;
  --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);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

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

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

p {
  margin: 0 0 1em;
}

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

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3.25rem 0;
}

.section__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.65rem;
}

.section__lede {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ---------- Brand mark ---------- */

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

.brand img {
  height: 40px;
  width: auto;
  display: block;
}

.brand--lg img {
  height: clamp(72px, 14vw, 110px);
}

.site-footer .brand img {
  height: 48px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 650;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(27, 110, 243, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  background: var(--surface);
  color: var(--navy);
  border-color: rgba(11, 31, 51, 0.25);
  box-shadow: none;
}

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

.btn--light:hover {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.15);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.transparent {
  background: transparent;
}

.site-header.solid {
  background: rgba(244, 246, 248, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__links a {
  display: block;
  padding: 0.5rem 0.7rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 550;
  border-radius: 8px;
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--accent);
  background: rgba(27, 110, 243, 0.08);
}

.nav__cta {
  margin-left: 0.35rem;
}

.nav__cta .btn {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.4rem 0.55rem;
  color: var(--navy);
  cursor: pointer;
}

.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.45rem;
  list-style: none;
  margin: 0.35rem 0 0;
  z-index: 50;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  display: block;
}

.dropdown a {
  font-size: 0.88rem;
  font-weight: 500;
}

@media (max-width: 920px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1.25rem;
    box-shadow: var(--shadow);
    gap: 0.15rem;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__cta {
    margin: 0.5rem 0 0;
  }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0.25rem 0 0.25rem 0.75rem;
    min-width: 0;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }
}

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

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 3rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 15%, rgba(27, 110, 243, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 80%, rgba(11, 31, 51, 0.06), transparent 50%),
    linear-gradient(180deg, #eef2f7 0%, var(--bg) 100%);
}

.hero__inner {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
  max-width: 42rem;
  animation: heroIn 0.7s ease both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  margin: 0.85rem 0 0.75rem;
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--navy-soft);
}

.hero__trust span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.55rem;
  vertical-align: middle;
}

/* ---------- Need tiles ---------- */

.need-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.need-tile {
  display: block;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 9rem;
}

.need-tile:hover {
  border-color: rgba(27, 110, 243, 0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: inherit;
}

.need-tile h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.need-tile p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .need-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Pricing table ---------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-table th,
.price-table td {
  padding: 1.1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(11, 31, 51, 0.03);
  font-weight: 650;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:first-child {
  font-weight: 600;
}

.price-table .price {
  font-family: var(--font-brand);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  white-space: nowrap;
}

.price-table .price small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.2rem;
}

.price-table a.row-link {
  color: inherit;
  text-decoration: none;
}

.price-table a.row-link:hover .price {
  color: var(--accent);
}

@media (max-width: 560px) {
  .price-table th:nth-child(3),
  .price-table td:nth-child(3) {
    display: none;
  }

  .price-table .price {
    font-size: 1.25rem;
  }
}

/* ---------- Packages ---------- */

.pkg-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pkg {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem 2rem;
  align-items: start;
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pkg__name {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.pkg__price {
  font-family: var(--font-brand);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.pkg__price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.pkg__includes {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.pkg__includes li::before {
  content: "–";
  color: var(--accent);
  margin-right: 0.55rem;
  font-weight: 700;
}

.pkg__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

@media (max-width: 720px) {
  .pkg {
    grid-template-columns: 1fr;
  }

  .pkg__actions {
    align-items: stretch;
  }
}

/* ---------- Event type links ---------- */

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.event-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.5rem;
  padding: 1rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  font-family: var(--font-brand);
  font-weight: 650;
  font-size: 1.05rem;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.event-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Why grid ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.75rem;
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA band ---------- */

.cta-band {
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(27, 110, 243, 0.35), transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 4rem 0;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  opacity: 0.82;
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

/* ---------- Page banner (inner) ---------- */

.page-banner {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(27, 110, 243, 0.12), transparent 50%),
    linear-gradient(180deg, #eef2f7 0%, var(--bg) 100%);
}

.page-banner h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- SEO / content pages ---------- */

.prose {
  max-width: 42rem;
}

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

.content-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .content-split {
    grid-template-columns: 1fr;
  }
}

.side-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.side-box h3 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.side-box ul {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.side-box li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
}

.side-box li:last-child {
  border-bottom: none;
}

.side-box .amt {
  font-family: var(--font-brand);
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Contact form ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info .info-item {
  margin-bottom: 1.5rem;
}

.contact-info h3 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-info p {
  margin: 0;
  font-weight: 550;
}

.contact-info a {
  color: var(--navy);
}

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.field .req {
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(27, 110, 243, 0.35);
  border-color: var(--accent);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form__note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.form__status {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.form__status.ok {
  color: #0a7a3e;
}

.form__status.err {
  color: #b42318;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

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

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

.site-footer .brand {
  margin-bottom: 0.65rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Misc ---------- */

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4rem 0;
}

.page-404 h1 {
  font-size: 2.5rem;
}
