/* ============================================================
   DJ JOHNNY — Custom Styles
   djjohnnydenver.com
   Fonts: Bebas Neue (display) · Barlow Condensed (body) · Orbitron (accent)
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  --black:         #060609;
  --dark:          #0c0c15;
  --surface:       #101019;
  --card:          #14141f;
  --border:        rgba(0, 210, 210, 0.1);
  --border-hover:  rgba(0, 210, 210, 0.3);

  --teal:          #00d2d2;
  --teal-bright:   #00ffff;
  --teal-glow:     rgba(0, 210, 210, 0.22);
  --teal-dim:      rgba(0, 210, 210, 0.55);

  --purple:        #7c2ef0;
  --purple-glow:   rgba(124, 46, 240, 0.3);

  --white:         #f0f4ff;
  --muted:         #6e6e8e;
  --danger:        #ff3f5e;

  --font-display:  'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
  --font-body:     'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-accent:   'Orbitron', 'Courier New', monospace;

  --section-gap:   7rem;
  --nav-h:         70px;

  --shadow-teal:   0 0 18px rgba(0, 210, 210, 0.45), 0 0 60px rgba(0, 210, 210, 0.12);
  --shadow-card:   0 20px 50px rgba(0, 0, 0, 0.5);
}

/* ── BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: var(--dark); }
::-webkit-scrollbar-thumb        { background: var(--teal); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--teal-bright); }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.section__label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section__label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

.section__label--center {
  justify-content: center;
}

.section__label--center::before {
  display: none;
}

.section__title {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 1.1rem;
  line-height: 0.95;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.text-accent { color: var(--teal); }

.title-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--purple));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

/* ── SECTIONS ── */
.section {
  padding: var(--section-gap) 0;
}

.section--dark {
  background-color: var(--dark);
}

.section--gallery {
  padding-top: var(--section-gap);
  padding-bottom: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.3s, transform 0.25s;
  line-height: 1;
}

.btn--primary {
  background: var(--teal);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--teal-bright);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
  color: var(--black);
}

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

.btn--ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
}

.btn--submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  width: 17px;
  height: 17px;
}

/* ── NAVIGATION ── */
#main-nav {
  height: var(--nav-h);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}

#main-nav.scrolled {
  background: rgba(6, 6, 9, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.8; }

.navbar-nav { gap: 0.25rem; }

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 0.5rem 0.8rem !important;
  transition: color 0.25s;
}

.nav-link:hover,
.nav-link:focus { color: var(--teal) !important; }

.nav-cta {
  background: var(--teal) !important;
  color: var(--black) !important;
  border-radius: 2px;
  padding: 0.5rem 1.2rem !important;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--teal-bright) !important;
  box-shadow: var(--shadow-teal);
  color: var(--black) !important;
}

.navbar-toggler {
  border: 1px solid var(--teal);
  padding: 4px 8px;
  border-radius: 2px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,210,210,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/johnny.jpeg');
  background-size: cover;
  background-position: center 18%;
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.11); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(6, 6, 9, 0.88) 38%, rgba(6, 6, 9, 0.2) 100%),
    linear-gradient(to top,    rgba(6, 6, 9, 0.96) 0%,  transparent 55%);
}

.hero__scanlines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 210, 210, 0.018) 3px,
    rgba(0, 210, 210, 0.018) 4px
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 1.5rem;
  padding-left: max(1.5rem, calc((100vw - 1320px) / 2 + 1.5rem));
  animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__logo-wrap {
  margin-bottom: 2rem;
  animation: fadeUp 1.1s 0.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__logo {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: 0.63rem;
  letter-spacing: 0.38em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  animation: fadeUp 1.1s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 1.1rem;
  animation: fadeUp 1.1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__accent {
  color: var(--teal);
  text-shadow: var(--shadow-teal);
}

.hero__sub {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 2.25rem;
  animation: fadeUp 1.1s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  animation: fadeUp 1.1s 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Equalizer bars */
.hero__equalizer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 0 2px;
  z-index: 2;
  opacity: 0.45;
}

.eq-bar {
  flex: 1;
  max-width: 6px;
  min-width: 3px;
  border-radius: 2px 2px 0 0;
  background: var(--teal);
  animation: eqBounce var(--dur, 0.7s) ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
  transform-origin: bottom;
}

@keyframes eqBounce {
  from { height: var(--lo, 4px); opacity: 0.35; }
  to   { height: var(--hi, 36px); opacity: 0.9; }
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

.hero__scroll-cue span {
  font-family: var(--font-accent);
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 1;    transform: scaleY(1.15); }
}

/* ── ABOUT ── */
.about__photo-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 440px;
}

.about__photo {
  width: 100%;
  border-radius: 3px;
  position: relative;
  z-index: 1;
}

.about__photo-frame {
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  border: 2px solid var(--teal);
  border-radius: 3px;
  opacity: 0.35;
  z-index: 0;
}

.about__badge {
  position: absolute;
  bottom: -0.75rem;
  right: -0.75rem;
  z-index: 2;
  background: var(--teal);
  color: var(--black);
  padding: 0.9rem 1.1rem;
  border-radius: 3px;
  text-align: center;
  box-shadow: var(--shadow-teal);
}

.badge__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--black);
}

.badge__label {
  font-family: var(--font-accent);
  font-size: 0.48rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black);
  display: block;
  margin-top: 0.1rem;
}

.about__bio {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0.85rem;
  line-height: 1.72;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--teal);
  line-height: 1;
  text-shadow: var(--shadow-teal);
}

.stat__label {
  font-family: var(--font-accent);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* ── SERVICES ── */
.section__header { margin-bottom: 1rem; }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2rem 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s, box-shadow 0.35s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-7px);
  box-shadow: var(--shadow-card), var(--shadow-teal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

.service-card__list {
  list-style: none;
  padding: 0;
}

.service-card__list li {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
}

.service-card__list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.95rem;
  line-height: 1;
  top: 0.25rem;
}

/* Equipment bar */
.equipment-bar {
  background: linear-gradient(135deg, var(--surface), var(--card));
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.equipment-bar__label {
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--teal);
  white-space: nowrap;
  font-weight: 700;
}

.equipment-bar__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0;
}

.equipment-bar__items span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.equipment-bar__items .dot {
  margin: 0 0.75rem;
  color: var(--teal);
  opacity: 0.45;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
  padding: 0 5px 5px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 210, 210, 0.12),
    rgba(124, 46, 240, 0.12)
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

/* Grid placement */
.gallery-item--featured {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
  min-height: 430px;
}

.gallery-item:nth-child(2) { grid-column: 7  / 10; grid-row: 1; min-height: 212px; }
.gallery-item:nth-child(3) { grid-column: 10 / 13; grid-row: 1; min-height: 212px; }
.gallery-item:nth-child(4) { grid-column: 7  / 10; grid-row: 2; min-height: 212px; }
.gallery-item:nth-child(5) { grid-column: 10 / 13; grid-row: 2; min-height: 212px; }

.gallery-item--wide {
  grid-column: 1 / 13;
  grid-row: 3;
  min-height: 260px;
}

/* ── CONTACT ── */
.contact__intro {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 300;
  margin: 1.25rem 0 2.25rem;
  line-height: 1.72;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact__icon {
  width: 36px;
  height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact__icon svg { width: 17px; height: 17px; }

.contact__item-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.contact__item-value {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
}

/* Social */
.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s, box-shadow 0.3s;
}

.social-link svg { width: 17px; height: 17px; }

.social-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: var(--shadow-teal);
}

/* Booking form */
.booking-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

.form-group label span {
  color: var(--teal);
}

.form-control {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  color: var(--white);
  padding: 0.72rem 0.95rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
  background: var(--surface);
  color: var(--white);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(0,210,210,0.7)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 14px;
  padding-right: 2.5rem;
}

select.form-control option {
  background: var(--card);
  color: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.form-control.is-invalid {
  border-color: var(--danger);
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(255, 63, 94, 0.2);
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(0, 210, 210, 0.08);
  border: 1px solid rgba(0, 210, 210, 0.28);
  border-radius: 3px;
  color: var(--teal);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 2.75rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.25s;
}

.footer__brand:hover .footer__logo { opacity: 0.85; }

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

.footer__nav a {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.25s;
}

.footer__nav a:hover { color: var(--teal); }

.footer__copy { text-align: right; }

.footer__copy p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
}

.footer__domain {
  font-family: var(--font-accent);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--teal) !important;
  opacity: 0.65;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 991px) {
  :root { --section-gap: 5.5rem; }

  .about__photo-wrap {
    max-width: 400px;
    margin: 0 auto 3rem;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__copy { text-align: center; }
  .footer__nav  { justify-content: center; }
}

/* Mobile */
@media (max-width: 767px) {
  :root { --section-gap: 4.5rem; }

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

  .gallery-item--featured,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 190px;
  }

  .gallery-item--featured {
    grid-column: 1 / 3;
    min-height: 260px;
  }

  .gallery-item--wide {
    grid-column: 1 / 3;
    min-height: 210px;
  }

  .about__stats { gap: 1.25rem; }

  .hero__scroll-cue { display: none; }

  .equipment-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .booking-form { padding: 1.5rem 1.25rem; }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__headline   { font-size: 3.4rem; }
  .hero__actions    { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .about__stats { flex-direction: column; gap: 1rem; }
}
