/* ===================================================================
   L1 Detailing — styles
   Brand: matte black + signal red. Bold, condensed, aggressive.
   =================================================================== */

:root {
  --bg: #0a0a0c;
  --bg-2: #101014;
  --surface: #16161b;
  --surface-2: #1d1d24;
  --line: #2a2a33;
  --red: #e11225;
  --red-2: #ff2436;
  --red-glow: rgba(225, 18, 37, 0.45);
  --text: #f4f5f7;
  --muted: #a2a6b0;
  --muted-2: #71757f;
  --white: #ffffff;

  --head: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --radius-s: 10px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

.accent {
  color: var(--red);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ===================== BRAND / LOGO ===================== */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  letter-spacing: 0.02em;
}
.brand__img {
  height: 34px;
  width: auto;
  display: block;
}
.brand__word {
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.42em;
  color: var(--text);
  padding-top: 3px;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--head);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    color 0.2s var(--ease);
  white-space: nowrap;
}
.btn--lg {
  padding: 0.95rem 1.9rem;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: var(--white);
  box-shadow: 0 8px 26px -8px var(--red-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px var(--red-glow);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
.btn--ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 12, 0.86);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__links {
  margin-left: auto;
  display: flex;
  gap: 1.75rem;
}
.nav__links a {
  font-family: var(--head);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
  color: var(--muted);
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover {
  color: var(--white);
}
.nav__links a:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0 1.25rem 1.1rem;
  background: rgba(10, 10, 12, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 0.25rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.btn {
  border-bottom: 0;
  margin-top: 0.6rem;
  justify-content: center;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: min(100svh, 932px);
  display: flex;
  align-items: center;
  padding: 7rem 1.25rem 4rem;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--bg) 8%,
      rgba(10, 10, 12, 0.72) 42%,
      rgba(10, 10, 12, 0.15) 78%
    ),
    linear-gradient(0deg, var(--bg) 2%, transparent 40%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.eyebrow__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--red-glow);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(225, 18, 37, 0);
  }
}
.hero__title {
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.01em;
  font-size: clamp(2.9rem, 9vw, 6.2rem);
  margin-bottom: 1.3rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}
.hero__lead {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.18rem);
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}
.hero__stats {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
}
.hero__stats strong {
  font-family: var(--head);
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
}
.hero__stats span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  margin-top: 4px;
}
.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  display: flex;
  justify-content: center;
}
.hero__scroll span {
  width: 4px;
  height: 9px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 7px;
  animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot {
  0% {
    opacity: 0;
    transform: translateY(-4px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

/* ===================== SECTIONS (shared) ===================== */
.section {
  padding: clamp(4rem, 9vw, 7rem) 1.25rem;
}
.section__head {
  max-width: var(--max);
  margin: 0 auto 2.6rem;
  text-align: center;
}
.kicker {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  color: var(--red);
  margin-bottom: 0.7rem;
}
.section__title {
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
}
.section__sub {
  color: var(--muted);
  margin-top: 0.9rem;
  max-width: 40rem;
  margin-inline: auto;
}

/* ===================== SERVICES CAROUSEL ===================== */
.services {
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
}
.carousel {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}
.carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem clamp(1rem, 50% - 165px, 50%);
  scrollbar-width: none;
  cursor: grab;
}
.carousel__track::-webkit-scrollbar {
  display: none;
}
.carousel__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.card {
  scroll-snap-align: center;
  flex: 0 0 330px;
  max-width: 330px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    opacity 0.45s var(--ease);
  transform: scale(0.9);
  opacity: 0.55;
  position: relative;
  user-select: none;
}
.card.is-active {
  transform: scale(1);
  opacity: 1;
  border-color: rgba(225, 18, 37, 0.55);
  box-shadow:
    0 24px 60px -24px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(225, 18, 37, 0.12);
}
.card.is-popular {
  background:
    radial-gradient(
      120% 80% at 50% 0%,
      rgba(225, 18, 37, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, var(--surface), var(--surface-2));
}
.card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #fff;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px var(--red-glow);
}
.card__tagline {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  margin-bottom: 0.5rem;
}
.card__name {
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1;
}
.card__price {
  font-family: var(--head);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
  margin: 0.6rem 0 0.2rem;
}
.card__price .from {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--muted-2);
  margin-bottom: 2px;
}
.card__list {
  list-style: none;
  margin: 1.1rem 0 1.3rem;
  display: grid;
  gap: 0.55rem;
}
.card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text);
}
.card__note {
  font-size: 0.78rem;
  color: var(--muted-2);
  font-style: italic;
  margin: -0.4rem 0 1.1rem;
}
.card__cta {
  margin-top: auto;
}

.tick,
.card__list li::before {
  flex: 0 0 auto;
  margin-top: 2px;
}
.card__list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 44%, transparent 44%),
    var(--red);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.4z'/></svg>")
    center/13px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.4z'/></svg>")
    center/13px no-repeat;
}

/* carousel controls */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(20, 20, 24, 0.9);
  backdrop-filter: blur(6px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.carousel__arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.carousel__arrow:hover {
  background: var(--red);
  border-color: var(--red);
}
.carousel__arrow--prev {
  left: 8px;
}
.carousel__arrow--next {
  right: 8px;
}
@media (max-width: 720px) {
  .carousel__arrow {
    display: none;
  }
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 1.6rem;
  flex-wrap: wrap;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s var(--ease),
    width 0.25s var(--ease);
}
.dot.is-active {
  background: var(--red);
  width: 26px;
  border-radius: 999px;
}

/* ===================== MAINTENANCE PLAN ===================== */
.plan {
  background: var(--bg-2);
  padding-top: 0;
}
.plan__card {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  background:
    radial-gradient(
      120% 100% at 100% 0%,
      rgba(225, 18, 37, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(1.8rem, 4vw, 3rem);
}
.plan__title {
  font-family: var(--head);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  line-height: 1;
  margin: 0.6rem 0 1rem;
}
.plan__text {
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.4rem;
}
.plan__list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}
.plan__list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.plan__pricing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
}
.plan__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan__label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}
.plan__amount {
  font-family: var(--head);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--white);
}
.plan__note {
  font-size: 0.85rem;
  color: var(--muted);
}
.plan__divider {
  height: 1px;
  background: var(--line);
}

/* shared tick */
.tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
}
.tick::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.4z'/></svg>")
    center/13px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2l-3.5-3.5L4 14.2l5 5 11-11-1.5-1.4z'/></svg>")
    center/13px no-repeat;
  background: #fff;
}

/* ===================== WHY US ===================== */
.why__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why__item {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  text-align: center;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.why__item:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 18, 37, 0.5);
}
.why__icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(225, 18, 37, 0.1);
  border: 1px solid rgba(225, 18, 37, 0.3);
}
.why__icon svg {
  width: 30px;
  height: 30px;
  fill: var(--red);
}
.why__item h3 {
  font-family: var(--head);
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.why__item p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ===================== GALLERY ===================== */
.gallery {
  background: var(--bg-2);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.gallery__item:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 18, 37, 0.5);
}
.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      120% 120% at 25% 15%,
      rgba(225, 18, 37, 0.18),
      transparent 60%
    ),
    linear-gradient(160deg, var(--surface), var(--surface-2));
}
.gallery__ph svg {
  width: 30%;
  max-width: 60px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.55;
}
.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  color: var(--white);
}
.gallery__more {
  text-align: center;
  margin-top: 2.5rem;
}
.gallery__more a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.3rem;
  transition:
    color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.gallery__more a:hover {
  color: var(--red);
  border-color: var(--red);
}
.gallery__more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s var(--ease);
}
.gallery__more a:hover svg {
  transform: translateX(3px);
}

/* ===================== CONTACT ===================== */
.contact {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.contact__intro {
  padding-top: 0.5rem;
}
.contact__intro .section__title {
  text-align: left;
}
.contact__intro .kicker {
  text-align: left;
}
.contact__points {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-top: 1.6rem;
}
.contact__points li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}

.contact__direct {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}
.contact__link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    background 0.2s var(--ease);
}
.contact__link:hover {
  border-color: rgba(225, 18, 37, 0.55);
  transform: translateY(-2px);
  background: rgba(225, 18, 37, 0.06);
}
.contact__ic {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(225, 18, 37, 0.12);
  border: 1px solid rgba(225, 18, 37, 0.3);
}
.contact__ic svg {
  width: 20px;
  height: 20px;
  fill: var(--red);
}
.contact__link span {
  display: flex;
  flex-direction: column;
  font-family: var(--head);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.15;
}
.contact__link small {
  font-family: var(--body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-2);
  margin-bottom: 2px;
}

.form {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  min-width: 0;
}
.field label {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.field .opt {
  color: var(--muted-2);
  letter-spacing: 0.04em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 0.98rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 0.8rem 0.9rem;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  width: 100%;
  min-width: 0;
}
.field textarea {
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 18, 37, 0.18);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a2a6b0' stroke-width='2' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 18px;
  padding-right: 2.4rem;
}
/* dark date/select popups where supported */
.field input[type="date"] {
  color-scheme: dark;
  min-width: 0;
  min-height: 3.05rem;
}
/* Safari-only: it ignores width on input[type=date] unless appearance is
   reset, which in turn hides its native placeholder/icon, so fake both back */
@supports (-webkit-touch-callout: none) {
  .field input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
  }
  .field input[type="date"]::before {
    content: attr(placeholder);
    color: var(--muted-2);
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .field input[type="date"]:focus::before,
  .field input[type="date"]:valid::before {
    content: "";
  }
}
.field input.is-invalid,
.field select.is-invalid {
  border-color: var(--red-2);
  box-shadow: 0 0 0 3px rgba(255, 36, 54, 0.22);
}

.form__status {
  margin-top: 1rem;
  font-size: 0.92rem;
  min-height: 1.2em;
  text-align: center;
}
.form__status.is-error {
  color: #ff6b76;
}
.form__status.is-success {
  color: #46d18a;
}
.btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 3rem 1.25rem 2.2rem;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}
.brand--footer .brand__img {
  height: 40px;
}
.footer__tag {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--red);
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s var(--ease);
}
.footer__links a:hover {
  color: var(--white);
}
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  transition:
    border-color 0.2s var(--ease),
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.footer__social a:hover {
  border-color: rgba(225, 18, 37, 0.55);
  background: rgba(225, 18, 37, 0.1);
  transform: translateY(-2px);
}
.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--text);
  transition: fill 0.2s var(--ease);
}
.footer__social a:hover svg {
  fill: var(--red);
}
.footer__contact {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 0.95rem;
}
.footer__contact a {
  color: var(--text);
  transition: color 0.2s var(--ease);
}
.footer__contact a:hover {
  color: var(--red);
}
.footer__sep {
  color: var(--muted-2);
}
.footer__area {
  color: var(--muted);
  font-size: 0.9rem;
}
.footer__copy {
  color: var(--muted-2);
  font-size: 0.82rem;
}

/* ===================== RESPONSIVE ===================== */
@media (min-width: 901px) {
  .hero {
    min-height: 0;
    padding: 8rem 1.25rem 5rem;
  }
}
@media (max-width: 900px) {
  .plan__card {
    grid-template-columns: 1fr;
  }
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .gallery__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.25rem 1.25rem 0.5rem;
    margin: 0 -1.25rem;
    scrollbar-width: none;
  }
  .gallery__grid::-webkit-scrollbar {
    display: none;
  }
  .gallery__item {
    flex: 0 0 78%;
    scroll-snap-align: center;
  }
}
@media (max-width: 780px) {
  .nav__links,
  .nav__cta {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
}
@media (max-height: 700px) {
  .hero {
    padding: 5rem 1.25rem 6.5rem;
  }
  .eyebrow {
    margin-bottom: 1rem;
  }
  .hero__title {
    margin-bottom: 1rem;
  }
  .hero__lead {
    margin-bottom: 1.4rem;
  }
  .hero__actions {
    margin-bottom: 1.8rem;
  }
}
@media (max-height: 420px) {
  .hero__scroll {
    display: none;
  }
}
@media (max-width: 480px) {
  .form__row {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero__stats {
    gap: 1.6rem;
  }
  .card {
    flex-basis: 84vw;
    max-width: 84vw;
  }
  .carousel__track {
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .gallery__item {
    flex-basis: 84vw;
  }
}
