﻿/* ============================================================
   Paradise Auto Detailing | styles.css
   Dark premium automotive theme. Mobile-first.
   ============================================================ */

/* --- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; -webkit-text-size-adjust: 100%; }
body {
  background: #0a0a0a;
  color: #f0f0f0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, system-ui, sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }

/* --- Tokens ------------------------------------------------- */
:root {
  --orange:        #d6542a;
  --orange-dark:   #b8441f;
  --bg:            #0a0a0a;
  --raised:        #111111;
  --card:          #181818;
  --card-hover:    #1e1e1e;
  --border:        #272727;
  --border-bright: #383838;
  --text:          #f0f0f0;
  --text-muted:    #888;
  --text-dim:      #4a4a4a;
  --radius:        0.875rem;
  --radius-sm:     0.5rem;
  --shadow:        0 1px 4px rgba(0,0,0,0.6), 0 6px 20px rgba(0,0,0,0.3);
}

/* --- Accessibility ------------------------------------------ */
.skip {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--orange);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  z-index: 9999;
}
.skip:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Layout ------------------------------------------------- */
.wrap { width: min(92%, 1080px); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
.section--raised { background: var(--raised); }

/* --- Typography --------------------------------------------- */
h1 {
  font-size: clamp(2.4rem, 5vw + 0.5rem, 4.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.65rem, 3vw + 0.25rem, 2.6rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3 { font-size: 1.1rem; font-weight: 700; }
p { max-width: 60ch; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--orange);
}

/* --- Buttons ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  min-height: 2.75rem;
  white-space: nowrap;
  cursor: pointer;
}
.btn--orange {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}
.btn--orange:hover,
.btn--orange:focus-visible {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}
.btn--outline {
  background: transparent;
  border-color: var(--border-bright);
  color: var(--text);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}
.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--orange);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(249,115,22,0.1);
}
.btn--lg { padding: 0.95rem 2rem; font-size: 1.05rem; }

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

/* --- Header ------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(180deg, rgba(6,6,6,0.92) 0%, rgba(6,6,6,0.78) 62%, rgba(6,6,6,0.18) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header .wrap {
  width: min(94%, 1180px);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  padding-block: 0.9rem;
  min-height: 5.4rem;
  flex-wrap: nowrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 6px;
  object-fit: contain;
}
.logo__text strong { display: block; font-size: 0.9rem; font-weight: 700; line-height: 1.2; }
.logo__text span { display: none; font-size: 0.7rem; color: var(--text-muted); }
@media (min-width: 560px) { .logo__text span { display: block; } }
.footer__logo .logo__text { display: flex; align-items: center; gap: 0; flex-direction: column; align-items: flex-start; }

/* Nav */
.nav {
  display: none;
  align-items: center;
  gap: clamp(1.2rem, 1.8vw, 1.8rem);
  margin-left: auto;
}
@media (min-width: 768px) { .nav { display: flex; } }
.nav a {
  font-size: 0.93rem;
  line-height: 1;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--text); font-weight: 600; }

.header__cta {
  display: none;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
    margin-left: 0.4rem;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.4rem;
  margin-left: auto;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger[aria-expanded=true] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded=true] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded=true] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--raised);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.mobile-menu a:hover { color: var(--text); background: var(--card); }

/* --- Scroll reveal ----------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Hero --------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.3) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: clamp(8.5rem, 18vh, 11rem);
  padding-bottom: clamp(5rem, 12vh, 8rem);
}
.hero__content .eyebrow { margin-bottom: 1.25rem; }
.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}
.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 1.5vw + 0.25rem, 1.2rem);
  margin-bottom: 2rem;
  max-width: 44ch;
}
.hero .btn-row { margin-bottom: 2.5rem; }
.hero .btn--outline {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.hero .btn--outline:hover,
.hero .btn--outline:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  background: transparent;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
}
.hero__trust li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  padding-left: 1.1rem;
  position: relative;
}
.hero__trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* --- Section head ------------------------------------------- */
.section__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head h2 { margin-bottom: 0.5rem; }
.section__head p { color: var(--text-muted); }
.section__head--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.section__head--row p { display: none; }

/* --- Packages ---------------------------------------------- */
.packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 600px) {
  .packages { grid-template-columns: repeat(2, 1fr); }
}

.package {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  transition: border-color 0.2s;
}
.package:hover { border-color: var(--border-bright); }

.package--featured {
  border-color: var(--orange);
  background: #180f04;
  box-shadow: 0 0 0 1px var(--orange), 0 8px 48px rgba(249,115,22,0.14);
}
.package--featured:hover { border-color: var(--orange-dark); box-shadow: 0 0 0 1px var(--orange-dark), 0 8px 48px rgba(234,108,10,0.18); }

.package__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.package__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.package__top h3 { font-size: 1.2rem; }
.package__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
  line-height: 1;
}
.package__price-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.package__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.package ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.package ul li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.package ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.package__split {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.package__split-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-right: 0.25rem;
}

.package .btn { width: 100%; margin-top: auto; }

.package__cta-row {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.package__cta-row .btn {
  flex: 1;
  width: auto;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  white-space: nowrap;
}
.btn__icon {
  flex-shrink: 0;
  margin-top: -1px;
}

.package__caption {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
  padding-top: 0.25rem;
}
.package__caption-savings {
  color: var(--orange);
  font-weight: 600;
}

/* --- Package row utility (allow two packages side-by-side within the packages grid) --- */
.package-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 600px) {
  .package-row {
    grid-column: 1 / -1;
    flex-direction: row;
  }
  .package-row .package {
    flex: 1 1 0;
  }
}

/* --- Wide package card (Ceramic Coating etc.) --- */
.package--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}
@media (max-width: 599px) {
  .package--wide {
    grid-template-columns: 1fr;
  }
}
.package__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.package__right {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-block-start: 0.2rem;
}
.package__right li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.5;
}
.package__right li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--orange);
}

/* --- Biohazard signpost notice --- */
.biohazard-notice {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(249,115,22,0.35);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(249,115,22,0.07);
  padding: 1.375rem 1.625rem;
}
.biohazard-notice__head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.biohazard-notice__icon {
  flex-shrink: 0;
  color: var(--orange);
}
.biohazard-notice__head h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.biohazard-notice__meta {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  display: block;
}
.biohazard-notice > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.65;
}
.biohazard-notice__upgrade {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
}
.biohazard-notice__upgrade svg {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 0.15em;
}
.biohazard-notice__upgrade p {
  font-size: 0.825rem;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.6;
}
.biohazard-notice__upgrade strong {
  color: var(--text);
}
.biohazard-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Extras / specialty */
.extras {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.extras h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.extras p { font-size: 0.875rem; color: var(--text-muted); max-width: none; line-height: 1.6; }
.extras a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }

/* Pricing note */
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border: 1px solid var(--orange);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 1rem 1.125rem;
  line-height: 1.55;
  max-width: none;
  background: rgba(249,115,22,0.06);
}
.pricing-note__icon {
  flex-shrink: 0;
  color: var(--orange);
  margin-top: 0.1em;
}
.pricing-note p { color: var(--text-muted); max-width: none; font-size: inherit; line-height: inherit; }
.pricing-note strong { color: var(--text); }

/* --- Why Choose (trust grid) -------------------------------- */
.trust-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.trust-item {
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.trust-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.5;
}

/* --- FAQ ---------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item dt {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.faq-item dd {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.faq-cta {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: none;
}
.faq-cta a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Steps -------------------------------------------------- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 640px) {
  .steps {
    flex-direction: row;
    gap: 0;
  }
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex: 1;
}
@media (min-width: 640px) {
  .step {
    flex-direction: column;
    gap: 1rem;
    padding: 0 2.5rem;
    border-left: 1px solid var(--border);
  }
  .step:first-child {
    padding-left: 0;
    border-left: none;
  }
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  background: var(--orange);
  color: #000;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.step strong { display: block; font-size: 1rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.875rem; color: var(--text-muted); max-width: none; line-height: 1.55; }

/* --- Gallery ----------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gallery__feature {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.25rem);
  background: linear-gradient(180deg, rgba(24,24,24,0.95) 0%, rgba(14,14,14,0.98) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery__viewer-copy {
  display: grid;
  gap: 0.45rem;
}

.gallery__viewer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.gallery__viewer-meta .eyebrow {
  margin-bottom: 0;
}

.gallery__viewer-mode {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery__viewer-copy h3 {
  font-size: clamp(1.3rem, 2vw + 0.35rem, 1.85rem);
}

.gallery__viewer-copy p,
.gallery__viewer-hint {
  max-width: none;
  color: rgba(240,240,240,0.8);
}

.gallery__viewer-hint {
  font-size: 0.92rem;
}

.comparison-slider {
  --comparison-position: 50%;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: calc(var(--radius) - 0.125rem);
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 45%), #050505;
}

.comparison-slider > img,
.comparison-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-slider__after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--comparison-position));
}

.comparison-slider__label {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(10,10,10,0.78);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-slider__label--before {
  left: 1rem;
}

.comparison-slider__label--after {
  right: 1rem;
}

.comparison-slider__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  z-index: 2;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.18);
}

.comparison-slider__handle {
  position: absolute;
  top: 50%;
  left: var(--comparison-position);
  z-index: 3;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10,10,10,0.82);
  border: 2px solid rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  pointer-events: none;
}

.comparison-slider__handle::before {
  content: '\2194';
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.comparison-slider__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

.comparison-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  opacity: 0;
}

.comparison-slider__range::-webkit-slider-runnable-track {
  height: 100%;
  background: transparent;
}

.comparison-slider__range::-moz-range-thumb {
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  border-radius: 50%;
  opacity: 0;
}

.comparison-slider__range::-moz-range-track {
  height: 100%;
  background: transparent;
  border: none;
}

.gallery[data-mode="single"] .comparison-slider > img,
.gallery[data-mode="single"] .comparison-slider__after img {
  object-fit: contain;
}

.gallery[data-mode="single"] .comparison-slider__after,
.gallery[data-mode="single"] .comparison-slider__label,
.gallery[data-mode="single"] .comparison-slider__divider,
.gallery[data-mode="single"] .comparison-slider__handle,
.gallery[data-mode="single"] .comparison-slider__range {
  display: none;
}

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

.gallery__thumb {
  display: grid;
  gap: 0.5rem;
  padding: 0.55rem;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}

.gallery__thumb:hover,
.gallery__thumb:focus-visible {
  border-color: var(--border-bright);
  background: var(--card-hover);
  transform: translateY(-1px);
}

.gallery__thumb.is-active {
  border-color: var(--orange);
  background: rgba(249,115,22,0.08);
  box-shadow: 0 0 0 1px rgba(249,115,22,0.14);
}

.gallery__thumb-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery__thumb.is-active .gallery__thumb-badge {
  background: rgba(249,115,22,0.14);
  color: var(--orange);
}

.gallery__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius-sm) - 2px);
  object-fit: cover;
  background: #050505;
  transition: transform 0.3s ease;
}

.gallery__thumb:hover img,
.gallery__thumb:focus-visible img {
  transform: scale(1.02);
}

.gallery__thumb-copy {
  display: grid;
  gap: 0.2rem;
}

.gallery__thumb-copy strong {
  font-size: 0.9rem;
  line-height: 1.25;
}

.gallery__thumb-copy span {
  color: rgba(240,240,240,0.76);
  font-size: 0.8rem;
  line-height: 1.35;
}

@media (min-width: 700px) {
  .gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .gallery__thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.gallery__instagram {
  margin-top: 2.5rem;
}

.instagram-follow-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.125rem 1.375rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.instagram-follow-card:hover {
  border-color: var(--border-bright);
  background: var(--card-hover);
}
.instagram-follow-card__icon {
  flex-shrink: 0;
  color: var(--orange);
}
.instagram-follow-card strong {
  display: block;
  font-size: 0.9rem;
}
.instagram-follow-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.instagram-follow-card__arrow {
  flex-shrink: 0;
  color: var(--text-muted);
  margin-left: auto;
}

/* --- Contact ----------------------------------------------- */
.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (max-width: 479px) {
  .contact-actions { grid-template-columns: 1fr; }
}
.contact-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1.125rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.contact-card:hover,
.contact-card:focus-visible { border-color: var(--orange); background: var(--card-hover); }
.contact-card__icon {
  color: var(--orange);
  flex-shrink: 0;
}
.contact-card strong { font-size: 0.875rem; display: block; }
.contact-card span { font-size: 0.775rem; color: var(--text-muted); }

.reviews {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.reviews p { font-size: 0.9rem; color: var(--text-muted); margin: 0; max-width: none; }

/* --- Policy page ------------------------------------------- */
.policy-article {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}
.policy-article + .policy-article { margin-top: 1.25rem; }
.policy-article .eyebrow { margin-bottom: 0.4rem; }
.policy-article h2 { margin-bottom: 1rem; }
.policy-article h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.policy-article p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: none;
}
.policy-article p + p { margin-top: 0.65rem; }
.policy-article ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.policy-article li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}
.policy-article li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.policy-page__intro {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 56ch;
  line-height: 1.65;
}

/* --- Footer ------------------------------------------------- */
.footer {
  background: #070707;
  border-top: 1px solid var(--border);
  padding: 3rem 0 6rem;
}
@media (min-width: 768px) { .footer { padding-bottom: 3rem; } }

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.footer__grid > div { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__grid p { font-size: 0.85rem; color: var(--text-muted); max-width: 36ch; }
.footer__grid a { transition: color 0.15s; }
.footer__grid a:hover { color: var(--orange); }

.footer__logo { margin-bottom: 0.25rem; }
.footer__logo img { border-radius: 6px; }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
@media (min-width: 480px) { .footer__nav { padding-top: 0.25rem; } }
.footer__nav a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.15s; }
.footer__nav a:hover { color: var(--text); }

.footer__meta {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
}
.footer__meta p { font-size: 0.78rem; color: var(--text-dim); max-width: none; }

/* --- Sticky mobile bar ------------------------------------- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
@media (min-width: 768px) { .sticky-bar { display: none; } }

.sticky-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-right: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
}
.sticky-bar a:last-child { border-right: none; }
.sticky-bar a:hover { color: var(--text); background: var(--raised); }

.sticky-bar__primary {
  background: var(--orange);
  color: #000;
  font-weight: 700;
  border-right: none;
}
.sticky-bar__primary:hover { background: var(--orange-dark); color: #000; }

/* --- Layout utility overrides -------------------------------- */
/* Used in place of inline style="" attributes to keep CSP style-src 'self' clean */
.u-mt-0   { margin-top: 0; }
.u-mt-sm  { margin-top: 0.75rem; }
.u-mt-md  { margin-top: 2rem; }
