:root {
  --black: #050505;
  --ink: #111318;
  --panel: #15171d;
  --soft: #f4f5f7;
  --white: #ffffff;
  --muted: #69707d;
  --line: #e2e5ea;
  --red: #ee1f28;
  --red-dark: #b8141b;
  --shadow: 0 22px 64px rgba(5, 5, 5, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(5, 5, 5, 0.48);
  transition: background 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 5, 0.94);
  box-shadow: 0 10px 34px rgba(5, 5, 5, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 44px;
  color: var(--white);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--white);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.header-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
}

.header-cta:hover,
.btn.primary:hover {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  justify-self: end;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: clamp(92px, 11vw, 132px) clamp(18px, 5vw, 70px) 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(238, 31, 40, 0.22), transparent 28%),
    linear-gradient(135deg, #050505 0%, #101116 54%, #050505 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(255, 255, 255, 0.035) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.035) 87.5%, rgba(255, 255, 255, 0.035)),
    linear-gradient(150deg, rgba(255, 255, 255, 0.035) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.035) 87.5%, rgba(255, 255, 255, 0.035));
  background-size: 72px 124px;
  opacity: 0.35;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy {
  width: min(860px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tagline {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 900;
  text-transform: uppercase;
}

.intro {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  padding: 0 22px;
  font-size: 0.98rem;
}

.btn.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(238, 31, 40, 0.34);
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -32px auto 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.contact-strip a,
.contact-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  padding: 16px 20px;
  background: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 246px;
  padding: 26px;
  color: var(--white);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 31, 40, 0.48);
  box-shadow: 0 20px 42px rgba(5, 5, 5, 0.18);
}

.service-card svg {
  width: 38px;
  height: 38px;
  color: var(--red);
}

.service-card h3 {
  margin: 36px 0 12px;
  font-size: 1.2rem;
}

.service-card p,
.booking-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card p {
  color: rgba(255, 255, 255, 0.68);
}

.why-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 70px);
  color: var(--white);
  background: var(--black);
}

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 18px;
  background: #1c1f27;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  font-weight: 900;
}

.why-list svg {
  color: var(--red);
  flex: 0 0 auto;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 5vw, 60px);
  width: min(1180px, calc(100% - 36px));
  margin: 92px auto;
  padding: clamp(28px, 5vw, 50px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(238, 31, 40, 0.16);
  border-color: var(--red);
}

.form-submit {
  grid-column: 1 / -1;
  min-height: 54px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 60px);
  color: var(--white);
  background: #050505;
}

.site-footer strong {
  font-size: 1.05rem;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer div:nth-child(2) {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.site-footer > a,
.footer-links > a {
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.employee-login {
  width: max-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.employee-login:hover {
  color: var(--white);
  text-decoration: underline;
}

svg {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 2.2;
}

@media (max-width: 1040px) {
  .why-band,
  .booking,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-strip a,
  .contact-strip span {
    white-space: normal;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-header.is-open .site-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 98px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .contact-strip {
    width: 100%;
  }

  .contact-strip,
  .service-grid,
  .why-list,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 210px;
  }

  .section {
    padding: 72px 0;
  }

  .booking {
    margin: 72px auto;
  }

  .footer-links {
    justify-items: start;
  }
}
