﻿/* =============================================
   BIG DOG EQUIPMENT â€” MAIN STYLESHEET
   ============================================= */

:root {
  --bg:          #070b11;
  --panel:       rgba(14, 22, 33, 0.90);
  --line:        rgba(255, 255, 255, 0.08);
  --text:        #f4f7fb;
  --muted:       #8fa5bc;
  --blue:        #29c3ec;
  --blue-strong: #0e7dc2;
  --shadow:      0 24px 64px rgba(0, 0, 0, 0.5);
  --radius:      14px;
  --max:         1240px;
  --nav-h:       76px;
}

/* â”€â”€â”€ RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { color: inherit; }

body {
  color: var(--text);
  background: var(--bg);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - clamp(2rem, 4vw, 4rem)), var(--max));
  margin: 0 auto;
}

/* â”€â”€â”€ NAVIGATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5, 8, 13, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
}

.brand-wordmark {
  height: 52px;
  width: auto;
  max-width: min(270px, 42vw);
  object-fit: contain;
}

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  color: #071018;
  background: linear-gradient(135deg, #78e4ff 0%, var(--blue) 100%);
  box-shadow: 0 6px 20px rgba(41, 195, 236, 0.25);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(41, 195, 236, 0.35);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.site-header.is-open .site-nav {
  display: flex;
  position: absolute;
  top: var(--nav-h);
  left: 1rem; right: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(7, 11, 17, 0.97);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 999;
}
.site-header.is-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.is-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.is-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* â”€â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 1.35rem;
  border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  text-decoration: none; border: none; cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-primary {
  color: #071018;
  background: linear-gradient(135deg, #78e4ff 0%, var(--blue) 100%);
  box-shadow: 0 6px 20px rgba(41, 195, 236, 0.25);
}
.btn-primary:hover  { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(41, 195, 236, 0.35); }
.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}
.btn-secondary:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.10); }

.text-link {
  color: var(--blue); font-weight: 700; text-decoration: none;
  transition: opacity 0.2s;
}
.text-link:hover { opacity: 0.75; }

/* â”€â”€â”€ GLASS CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: var(--panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

/* =============================================
   HERO â€” SIMPLE FULL-SCREEN
   ============================================= */

.hero {
  position: relative;
  min-height: 82dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('immages/Screenshot 2025-08-10 212639.png') no-repeat center center / cover;
  /* Subtle scale so there's room for the parallax nudge on scroll */
  transform: scale(1.04);
  will-change: transform;
}

/* Dark gradient overlay â€” heavier on the left so text pops */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(5, 8, 13, 0.88) 0%,
      rgba(5, 8, 13, 0.60) 45%,
      rgba(5, 8, 13, 0.20) 100%
    ),
    linear-gradient(
      to top,
      rgba(5, 8, 13, 0.55) 0%,
      transparent 40%
    );
}

/* Content sits above overlays */
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 6rem;
}

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--blue);
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.hero-lead {
  color: rgba(244, 247, 251, 0.80);
  line-height: 1.75;
  font-size: 1.02rem;
  max-width: 46ch;
  margin-top: 1.1rem;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  margin-top: 1.75rem;
}

/* Three stat pills below the CTAs */

/* â”€â”€â”€ REVEAL ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-on-scroll.is-visible { opacity: 1; transform: none; }
.reveal-on-scroll:nth-child(2) { transition-delay: 0.10s; }
.reveal-on-scroll:nth-child(3) { transition-delay: 0.20s; }
.reveal-on-scroll:nth-child(4) { transition-delay: 0.30s; }

/* â”€â”€â”€ VALUE STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.value-strip {
  position: relative;
  z-index: 2;
  padding: 5rem 0 clamp(6rem, 12vw, 11rem);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.value-card {
  padding: 1.6rem;
  border-radius: var(--radius);
}

.value-icon {
  width: 34px; height: 34px;
  margin-bottom: 1rem;
  color: var(--blue);
}
.value-icon svg { width: 100%; height: 100%; }

.value-card h2 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-card p  { color: var(--muted); line-height: 1.7; font-size: 0.92rem; }

/* â”€â”€â”€ SECTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-block { padding: 5.5rem 0; }

.about.section-block {
  margin-top: calc(clamp(4rem, 10vw, 8rem) * -1);
  padding-top: 0;
}

.section-grid { display: grid; gap: 2.5rem; align-items: center; }

.section-kicker {
  display: block;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--blue);
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.section-copy {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
  margin-top: 1rem;
  max-width: 54ch;
}

.feature-list { margin-top: 1.6rem; display: grid; gap: 0; }
.feature-item { padding: 0.95rem 0; border-top: 1px solid var(--line); }
.feature-item:last-child { border-bottom: 1px solid var(--line); }
.feature-item strong { display: block; font-size: 0.94rem; margin-bottom: 0.2rem; }
.feature-item span   { color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

.about-shell {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

.about-showcase {
  position: relative;
  overflow: clip;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 760px;
  padding: clamp(5.5rem, 11vw, 9rem) clamp(2rem, 6vw, 5rem) clamp(2.8rem, 5vw, 4.25rem);
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.about-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 16, 0.96) 0%, rgba(5, 10, 16, 0.90) 16%, rgba(5, 10, 16, 0.76) 29%, rgba(5, 10, 16, 0.48) 42%, rgba(5, 10, 16, 0.20) 56%, rgba(5, 10, 16, 0.08) 70%, rgba(5, 10, 16, 0.18) 86%, rgba(5, 10, 16, 0.58) 96%, rgba(5, 10, 16, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 10, 16, 0.94) 0%, rgba(5, 10, 16, 0.58) 14%, rgba(5, 10, 16, 0.14) 30%, transparent 44%, transparent 62%, rgba(5, 10, 16, 0.16) 78%, rgba(5, 10, 16, 0.54) 90%, rgba(5, 10, 16, 0.94) 100%);
  z-index: 2;
  pointer-events: none;
}

.about-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 46%, rgba(41, 195, 236, 0.05), transparent 18%),
    radial-gradient(circle at 100% 0%, rgba(5, 10, 16, 0.42), transparent 26%),
    radial-gradient(circle at 100% 100%, rgba(5, 10, 16, 0.52), transparent 30%);
  z-index: 1;
  pointer-events: none;
}

.about-showcase-content {
  position: relative;
  z-index: 3;
  width: min(38%, 36rem);
  margin-left: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(8, 14, 22, 0.84);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-showcase-content::after {
  display: none;
}

.about-showcase .section-copy {
  max-width: 32rem;
}

.about-showcase .feature-list {
  max-width: 34rem;
}

.about-showcase-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    url('immages/fleet-lineup-primary.jpg') center right / cover no-repeat,
    radial-gradient(circle at 78% 54%, rgba(41, 195, 236, 0.05), transparent 22%),
    linear-gradient(135deg, rgba(7, 12, 18, 0.28), rgba(7, 12, 18, 0.06));
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, #000 30%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.18) 10%, #000 30%, #000 100%);
}

.about-showcase-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 16, 0.94) 0%, rgba(5, 10, 16, 0.66) 20%, rgba(5, 10, 16, 0.24) 40%, rgba(5, 10, 16, 0.08) 56%, transparent 72%),
    linear-gradient(180deg, rgba(5, 10, 16, 0.94) 0%, rgba(5, 10, 16, 0.46) 15%, rgba(5, 10, 16, 0.10) 30%, transparent 42%, transparent 66%, rgba(5, 10, 16, 0.18) 82%, rgba(5, 10, 16, 0.62) 92%, rgba(5, 10, 16, 0.96) 100%);
  filter: blur(16px);
  z-index: 2;
  pointer-events: none;
}

.about-showcase-media::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(5rem, 9vw, 11rem);
  background: linear-gradient(90deg, rgba(5, 10, 16, 0) 0%, rgba(5, 10, 16, 0.22) 22%, rgba(5, 10, 16, 0.58) 62%, rgba(5, 10, 16, 0.92) 100%);
  z-index: 2;
  pointer-events: none;
}

.about-showcase-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 84% 58%;
  transform: scale(1.03);
  filter: saturate(0.96) contrast(1.04);
}

/* â”€â”€â”€ EQUIPMENT GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-heading {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.equipment-card {
  display: grid;
  grid-template-rows: minmax(240px, auto) 1fr;
  height: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.equipment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 195, 236, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.equipment-grid {
  display: none;
}

.equipment-carousel {
  position: relative;
  display: grid;
  gap: 1rem;
}

.equipment-carousel-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(123, 213, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(10, 16, 28, 0.96), rgba(7, 12, 20, 0.98));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  padding: 1.1rem;
}

.equipment-carousel-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 20, 0.30), transparent 18%, transparent 82%, rgba(7, 12, 20, 0.24) 100%),
    linear-gradient(90deg, rgba(7, 12, 20, 0.18), transparent 14%, transparent 86%, rgba(7, 12, 20, 0.24) 100%);
  pointer-events: none;
  z-index: 2;
}

.equipment-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.rental-slide {
  flex: 0 0 calc((100% - 3rem) / 4);
  min-width: calc((100% - 3rem) / 4);
  display: grid;
  grid-template-rows: minmax(210px, 230px) 1fr;
  align-items: stretch;
  min-height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(123, 213, 255, 0.12);
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.96), rgba(8, 14, 22, 0.98));
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  min-height: clamp(29rem, 35vw, 33rem);
}

.rental-slide-copy {
  order: 2;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.8rem;
  padding: 1rem 1rem 1.1rem;
  min-height: 100%;
}

.rental-slide-copy::after {
  display: none;
}

.rental-slide-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rental-slide h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.rental-slide-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rental-slide-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.rental-slide-specs span {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 217, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(232, 240, 250, 0.88);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(14px);
}

.rental-slide-copy .card-link {
  align-self: stretch;
  margin-top: auto;
  min-width: 0;
  min-height: 2.7rem;
  font-size: 0.82rem;
}

.rental-slide-media {
  order: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem 1rem 0.5rem;
  border-bottom: 1px solid rgba(123, 213, 255, 0.08);
}

.rental-slide-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 12, 20, 0.86) 0%, rgba(7, 12, 20, 0.10) 28%, transparent 55%, rgba(7, 12, 20, 0.42) 100%);
  pointer-events: none;
  z-index: 1;
}

.rental-slide-media img {
  position: relative;
  z-index: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 185px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.34));
}

.equipment-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(123, 213, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  backdrop-filter: blur(14px);
}

.carousel-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(123, 213, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.carousel-dot {
  width: 0.82rem;
  height: 0.82rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

/* Extend the tap target to ~44px without changing the visual dot size */
.carousel-dot::after {
  content: '';
  position: absolute;
  inset: -1rem;
}

.carousel-dot.is-active {
  transform: scale(1.18);
  background: var(--blue);
  box-shadow: 0 0 0 0.35rem rgba(65, 208, 246, 0.14);
}
.equipment-card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(180deg, rgba(8, 14, 24, 0.95) 0%, rgba(6, 12, 20, 0.98) 100%);
  overflow: hidden;
}
.equipment-card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 24, 0.20) 0%, transparent 36%, rgba(8, 14, 24, 0.12) 100%);
  pointer-events: none;
}
.equipment-card img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(41, 195, 236, 0.10));
}
.equip-card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 1rem;
}
.equip-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.equip-card-body p  { color: var(--muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.9rem; flex: 1 1 auto; }

.card-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 0.9rem; border-radius: 999px;
  font-weight: 700; font-size: 0.82rem; text-decoration: none;
  color: #071018;
  background: linear-gradient(135deg, #78e4ff, var(--blue));
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s;
}
.card-link:hover { transform: translateY(-1px); }

/* â”€â”€â”€ CONTACT â€” ONE SOLID CARD â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-wrap {
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  border-radius: var(--radius);
  padding: 2.75rem 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 2.5rem;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0.3rem 0 0.7rem;
}
.contact-desc { color: var(--muted); font-size: 0.98rem; line-height: 1.75; max-width: 54ch; }

.contact-trust-list {
  display: grid;
  gap: 0.95rem;
}

.contact-trust-item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-trust-title {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 800;
}

.contact-trust-item p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.93rem;
}

.contact-details-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.contact-divider {
  width: 1px; height: 44px;
  background: var(--line);
  flex-shrink: 0;
}
.contact-detail { display: grid; gap: 0.3rem; }
.contact-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--blue); font-weight: 700;
}
.contact-detail a {
  font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--blue); }

.contact-actions {
  display: flex; align-items: center; gap: 0.85rem; flex-wrap: wrap;
}
.contact-inv-link { font-size: 0.88rem; }

.contact-form {
  display: grid;
  gap: 1rem;
  min-width: 0;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(4, 10, 16, 0.72);
}

.form-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
}

.date-picker-field {
  position: relative;
}

.date-picker-field input {
  padding-right: 3rem;
}

.date-picker-field::after {
  content: '';
  position: absolute;
  right: 1rem;
  bottom: 1.08rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--muted);
  border-top-width: 3px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0.72;
}

.date-picker-field:focus-within::after {
  border-color: var(--blue);
  opacity: 1;
}

.form-field--machine {
  position: relative;
  z-index: 12;
}

.form-field label,
.machine-fieldset legend {
  font-size: 0.86rem;
  font-weight: 700;
}

.field-help {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.multi-select {
  position: relative;
}

.multi-select-trigger {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.92rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.multi-select-trigger:hover,
.multi-select.is-open .multi-select-trigger,
.multi-select-trigger:focus-visible {
  outline: none;
  border-color: rgba(41, 195, 236, 0.65);
  box-shadow: 0 0 0 4px rgba(41, 195, 236, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.multi-select-trigger-text {
  color: var(--text);
}

.multi-select.is-empty .multi-select-trigger-text {
  color: var(--muted);
}

.multi-select-trigger-icon {
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.18s ease;
  flex-shrink: 0;
}

.multi-select.is-open .multi-select-trigger-icon {
  transform: rotate(-135deg) translateY(-1px);
}

.multi-select-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  gap: 0.35rem;
  max-height: 19rem;
  padding: 0.55rem;
  overflow-y: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(7, 13, 22, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.multi-select-menu[hidden] {
  display: none;
}

.multi-select-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 0.8rem;
  border-radius: 12px;
  color: var(--text);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.multi-select-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.multi-select-option input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.multi-select-option-label {
  font-size: 0.92rem;
  line-height: 1.45;
}

.multi-select-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.multi-select-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(41, 195, 236, 0.14);
  border: 1px solid rgba(41, 195, 236, 0.20);
  color: #b8f4ff;
  font-size: 0.8rem;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.92rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  /* Explicit 1rem (16px) prevents iOS Safari from auto-zooming on focus */
  font-size: 1rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-field input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
  padding-right: 1rem;
}

.date-picker-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}

.native-date-field input[type="date"] {
  appearance: auto;
  -webkit-appearance: auto;
}

.native-date-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  pointer-events: auto;
}

.date-picker-popover {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  z-index: 50;
  width: min(21rem, calc(100vw - 2rem));
  padding: 0.85rem;
  border: 1px solid rgba(41, 195, 236, 0.18);
  border-radius: 14px;
  background: rgba(7, 13, 22, 0.98);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.date-picker-field--end .date-picker-popover {
  right: 0;
  left: auto;
}

.date-picker-popover[hidden] {
  display: none;
}

/* Backdrop overlay — shown behind the date picker on mobile */
.date-picker-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.date-picker-backdrop.is-visible {
  display: block;
}

.date-picker-header,
.date-picker-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.date-picker-title {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 800;
}

.date-picker-controls {
  display: flex;
  gap: 0.35rem;
}

.date-picker-controls button,
.date-picker-footer button {
  min-height: 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.date-picker-controls button {
  width: 2.15rem;
  padding: 0;
}

.date-picker-footer button {
  padding: 0 0.75rem;
  color: var(--blue);
}

.date-picker-controls button:hover,
.date-picker-footer button:hover,
.date-picker-day:hover {
  border-color: rgba(41, 195, 236, 0.34);
  background: rgba(41, 195, 236, 0.12);
}

.date-picker-controls button:focus-visible,
.date-picker-footer button:focus-visible,
.date-picker-day:focus-visible {
  outline: none;
  border-color: rgba(41, 195, 236, 0.75);
  box-shadow: 0 0 0 3px rgba(41, 195, 236, 0.14);
}

.date-picker-weekdays,
.date-picker-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.date-picker-weekdays {
  margin: 0.85rem 0 0.35rem;
}

.date-picker-weekdays span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.date-picker-day {
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.date-picker-day.is-muted {
  color: rgba(143, 165, 188, 0.52);
}

.date-picker-day.is-today {
  border-color: rgba(41, 195, 236, 0.42);
  color: #b8f4ff;
}

.date-picker-day.is-selected {
  border-color: transparent;
  background: linear-gradient(135deg, #78e4ff 0%, var(--blue) 100%);
  color: #071018;
}

.date-picker-day.is-disabled,
.date-picker-footer button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.date-picker-footer {
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(41, 195, 236, 0.65);
  box-shadow: 0 0 0 4px rgba(41, 195, 236, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

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

.form-field select {
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.form-field select option {
  background: #0b1622;
  color: var(--text);
}

.form-field select[multiple] {
  appearance: auto;
  -webkit-appearance: auto;
  min-height: 16rem;
  padding: 0.5rem;
  padding-right: 0.5rem;
  background-image: none;
  overflow-y: auto;
}

.form-field select[multiple] option {
  padding: 0.7rem 0.85rem;
}

.multi-select .multi-select-option {
  align-items: flex-start;
}

.multi-select .multi-select-option input {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  margin: 0.16rem 0 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  accent-color: var(--blue);
  flex: 0 0 auto;
}

.multi-select .multi-select-option-label {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--text);
}

.form-field select[multiple] option:checked {
  background: rgba(41, 195, 236, 0.20);
  color: #f4fbff;
}

.form-error,
.form-success {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-error {
  color: #ffd3d3;
  border: 1px solid rgba(255, 115, 115, 0.25);
  background: rgba(135, 31, 31, 0.22);
}

.form-success {
  color: #d8ffe4;
  border: 1px solid rgba(69, 197, 120, 0.28);
  background: rgba(22, 94, 49, 0.24);
}

.contact-submit {
  width: 100%;
}

.contact-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.admin-main {
  padding: 3.5rem 0 4.5rem;
}

.admin-card {
  padding: 2rem;
  border-radius: var(--radius);
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-header p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

.admin-status {
  margin-bottom: 1rem;
  color: var(--muted);
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 940px;
}

.admin-table th,
.admin-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.92rem;
}

.admin-table th {
  color: var(--blue);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.admin-badge {
  display: inline-flex;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(41, 195, 236, 0.14);
  color: #9ee9ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-empty {
  color: var(--muted);
  padding: 1.2rem 0.25rem 0;
}

/* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2.25rem;
  /* Respect iPhone home bar / Android navigation bar */
  padding-bottom: max(2.25rem, env(safe-area-inset-bottom, 2.25rem));
}
.footer-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-logo  { height: 34px; width: auto; }
.footer-copy  { color: var(--muted); font-size: 0.85rem; }
.site-footer a {
  color: var(--muted); text-decoration: none; font-size: 0.85rem;
  transition: color 0.2s;
}
.site-footer a:hover { color: var(--text); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1020px) {
  .equipment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-grid     { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid   { grid-template-columns: 1fr; }

  .about-showcase {
    min-height: auto;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    display: grid;
    gap: 1.5rem;
  }

  .about-showcase::before {
    background:
      linear-gradient(180deg, rgba(5, 10, 16, 0.98) 0%, rgba(5, 10, 16, 0.78) 10%, rgba(5, 10, 16, 0.24) 24%, transparent 40%, transparent 64%, rgba(5, 10, 16, 0.20) 80%, rgba(5, 10, 16, 0.62) 92%, rgba(5, 10, 16, 0.94) 100%);
  }

  .about-showcase-content {
    width: min(100%, 38rem);
    margin-left: 0;
  }

  .about-showcase-content::after {
    display: none;
  }

  .about-showcase-media {
    position: relative;
    inset: auto;
    min-height: 430px;
    margin-top: 1.5rem;
    border-radius: 0;
    overflow: clip;
    background-position: center center;
  }

  .about-showcase-media::before {
    background:
      linear-gradient(180deg, rgba(5, 10, 16, 0.92) 0%, rgba(5, 10, 16, 0.42) 16%, transparent 34%, transparent 66%, rgba(5, 10, 16, 0.22) 82%, rgba(5, 10, 16, 0.62) 94%, rgba(5, 10, 16, 0.9) 100%);
    filter: blur(16px);
  }
}

@media (max-width: 820px) {
  :root { --nav-h: 68px; }
  .site-nav    { display: none; }
  .nav-cta     { display: none; }
  .menu-toggle { display: flex; }

  .hero-content { padding-block: 4rem; }

  .value-grid   { grid-template-columns: 1fr; }
  .rental-slide {
    flex: 0 0 calc((100% - 1rem) / 2);
    min-width: calc((100% - 1rem) / 2);
    grid-template-rows: minmax(200px, 220px) 1fr;
    min-height: auto;
  }
  .rental-slide-copy {
    padding: 0.95rem;
  }
  .rental-slide-copy::after {
    width: clamp(10rem, 20vw, 14rem);
    right: -12rem;
    opacity: 0.9;
  }
  .rental-slide-media {
    min-height: 0;
    padding: 0.85rem 0.85rem 0.35rem;
  }
  .rental-slide-media::before {
    background:
      linear-gradient(180deg, rgba(7, 12, 20, 0.74) 0%, rgba(7, 12, 20, 0.22) 18%, transparent 34%, transparent 72%, rgba(7, 12, 20, 0.52) 100%);
  }
  .equipment-carousel-controls {
    gap: 0.8rem;
  }

  .contact-card         { padding: 2rem 1.75rem; }
  .contact-details-row  { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .contact-divider      { display: none; }
  .form-grid-two        { grid-template-columns: 1fr; }
  .admin-header         { flex-direction: column; align-items: flex-start; }

  /* Tighten the equipment section heading so the link wraps cleanly on tablet */
  .section-heading      { align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 1.5rem), var(--max)); }

  .hero-content h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-lead { font-size: 0.96rem; line-height: 1.68; }

  .section-block  { padding: 3.5rem 0; }
  .value-strip    { padding: 3.5rem 0; }
  .equipment-card-media { min-height: 220px; }
  .equipment-card img   { max-height: 188px; }
  .about-showcase { padding: 1.4rem; }
  .about-showcase-content { width: 100%; }
  .about-showcase-media { min-height: 320px; margin-top: 1.1rem; }
  .equipment-carousel-shell {
    border-radius: 22px;
    padding: 0.9rem;
  }
  .equipment-carousel-track {
    gap: 0.8rem;
  }
  .rental-slide {
    flex: 0 0 100%;
    min-width: 100%;
    grid-template-rows: minmax(190px, 210px) 1fr;
  }
  .rental-slide-copy {
    padding: 0.95rem 0.9rem 1rem;
  }
  .rental-slide-copy::after {
    display: none;
  }
  .rental-slide h3 {
    font-size: 1rem;
  }
  .rental-slide-text {
    font-size: 0.84rem;
    line-height: 1.65;
  }
  .rental-slide-specs {
    gap: 0.55rem;
  }
  .rental-slide-specs span {
    min-height: 1.85rem;
    padding: 0 0.7rem;
    font-size: 0.7rem;
  }
  .rental-slide-copy .card-link {
    width: 100%;
    align-self: stretch;
  }
  .rental-slide-media {
    min-height: 0;
    padding: 0.7rem 0.8rem 0.35rem;
  }
  .rental-slide-media img {
    max-height: 170px;
  }
  .equipment-carousel-controls {
    flex-wrap: wrap;
    justify-content: center;
  }
  .carousel-arrow {
    width: 3rem;
    height: 3rem;
  }
  .carousel-dots {
    order: 3;
    width: 100%;
  }

  .btn            { width: 100%; }
  .hero-actions,
  .contact-actions { flex-direction: column; }
  .contact-card      { padding: 1.4rem; }
  .contact-form      { padding: 1rem; }

  .multi-select-trigger {
    min-height: 52px;
    padding: 0.88rem 0.9rem;
  }

  .multi-select-menu {
    max-height: 15rem;
    padding: 0.45rem;
  }

  .multi-select-option {
    gap: 0.7rem;
    padding: 0.7rem;
  }

  .multi-select-option-label {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .multi-select-summary {
    gap: 0.4rem;
  }

  .multi-select-chip {
    width: 100%;
    justify-content: flex-start;
    padding: 0.55rem 0.8rem;
    border-radius: 14px;
  }

  .footer-wrap { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* ── Date picker: compact custom bottom sheet on non-iOS small screens ─ */
  /* iOS mobile uses the native date picker instead of this custom sheet.   */
  .date-picker-popover {
    position: fixed;
    bottom: 0;
    left: 50%;
    right: auto;
    top: auto;
    width: min(calc(100% - 1.5rem), 24rem);
    max-height: 80dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px 20px 0 0;
    /* top padding is handled by the drag-handle pseudo-element below */
    padding: 0 1.1rem env(safe-area-inset-bottom, 1.1rem);
    box-shadow: 0 -8px 48px rgba(0, 0, 0, 0.65);
    transform: translateX(-50%);
    z-index: 1999;
  }

  .date-picker-backdrop {
    z-index: 1998;
  }

  /* Drag handle visual indicator at the top of the sheet */
  .date-picker-popover::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 0.28rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    margin: 0.75rem auto 0.9rem;
  }

  /* End date picker also anchors full-width, overriding the right-aligned default */
  .date-picker-field--end .date-picker-popover {
    left: 50%;
    right: auto;
  }

  /* Ensure the calendar grid sits at z-index 50 above everything */
  .date-picker-weekdays,
  .date-picker-grid,
  .date-picker-header,
  .date-picker-footer {
    position: relative;
    z-index: 1;
  }

  /* Larger tap targets for day buttons */
  .date-picker-day {
    min-height: 40px;
    border-radius: 10px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* More breathing room between weekday labels and the grid */
  .date-picker-weekdays {
    margin: 0.5rem 0 0.4rem;
  }

  /* Bigger prev/next and footer buttons */
  .date-picker-controls button,
  .date-picker-footer button {
    min-height: 2.6rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* Give the footer a bit more breathing room at the bottom */
  .date-picker-footer {
    padding-bottom: 0.5rem;
  }

  /* ── Feature list — more breathing room between items on mobile ─────── */
  .feature-item {
    padding: 1.1rem 0;
  }

  /* ── Contact section — respect iPhone home bar at bottom of page ─────── */
  .contact.section-block {
    padding-bottom: max(3.5rem, calc(3.5rem + env(safe-area-inset-bottom, 0px)));
  }

  /* ── Hero actions — stack vertically, full-width buttons ────────────── */
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .hero-content {
    padding-block: 3.25rem;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 10vw, 2.35rem);
    max-width: 11ch;
  }

  .section-title,
  .contact-title {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .about-showcase {
    padding: 1rem;
  }

  .about-showcase-content,
  .contact-card,
  .contact-form {
    border-radius: 20px;
  }

  .rental-slide-copy {
    padding: 0.9rem 0.8rem 0.95rem;
  }

  .rental-slide-specs span {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 1500px) {
  :root {
    --max: 1380px;
  }

  .hero-content {
    padding-block: 7rem;
  }

  .about-showcase {
    min-height: 820px;
    padding-inline: clamp(3rem, 6vw, 7rem);
  }

  .about-showcase-content {
    width: min(34%, 38rem);
    margin-left: clamp(2rem, 4vw, 4rem);
  }

  .about-showcase-media::after {
    width: clamp(10rem, 14vw, 18rem);
    background: linear-gradient(90deg, rgba(5, 10, 16, 0) 0%, rgba(5, 10, 16, 0.12) 16%, rgba(5, 10, 16, 0.32) 38%, rgba(5, 10, 16, 0.64) 66%, rgba(5, 10, 16, 0.90) 86%, rgba(5, 10, 16, 0.98) 100%);
  }

  .about-showcase-media {
    background-position: 76% 56%;
    background-size: cover;
  }

  .rental-slide {
    min-height: 31rem;
  }
}

@media (min-width: 1900px) {
  :root {
    --max: 1480px;
  }

  .about-showcase {
    min-height: 880px;
  }

  .about-showcase::before {
    background:
      linear-gradient(90deg, rgba(5, 10, 16, 0.98) 0%, rgba(5, 10, 16, 0.90) 18%, rgba(5, 10, 16, 0.70) 30%, rgba(5, 10, 16, 0.40) 44%, rgba(5, 10, 16, 0.14) 60%, rgba(5, 10, 16, 0.10) 74%, rgba(5, 10, 16, 0.28) 88%, rgba(5, 10, 16, 0.70) 97%, rgba(5, 10, 16, 0.94) 100%),
      linear-gradient(180deg, rgba(5, 10, 16, 0.94) 0%, rgba(5, 10, 16, 0.48) 15%, rgba(5, 10, 16, 0.10) 32%, transparent 44%, transparent 64%, rgba(5, 10, 16, 0.18) 82%, rgba(5, 10, 16, 0.58) 92%, rgba(5, 10, 16, 0.96) 100%);
  }

  .about-showcase-content {
    width: min(32%, 40rem);
  }

  .about-showcase-media::after {
    width: clamp(12rem, 16vw, 24rem);
    background: linear-gradient(90deg, rgba(5, 10, 16, 0) 0%, rgba(5, 10, 16, 0.10) 14%, rgba(5, 10, 16, 0.24) 30%, rgba(5, 10, 16, 0.48) 52%, rgba(5, 10, 16, 0.76) 74%, rgba(5, 10, 16, 0.94) 90%, rgba(5, 10, 16, 1) 100%);
  }

  .about-showcase-media {
    background-position: 78% 54%;
  }
}
