/* Junior Custom Cars — stealth automotive dark theme */
:root {
  --black: #000000;
  --black-soft: #0a0a0a;
  --charcoal: #111111;
  --charcoal-mid: #1a1a1a;
  --silver: #a9a9a9;
  --silver-dim: #808080;
  --white: #f0f0f0;
  --gold: #909090;
  --gold-bright: #c8c8c8;
  --gold-deep: #606060;
  --danger: #ff4d4d;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 20px 60px rgba(0, 0, 0, 0.65);
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --max: 1140px;
  --header-offset: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--white);
  background: radial-gradient(1000px 500px at 50% -5%, rgba(169, 169, 169, 0.06), transparent 55%),
    var(--black);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--gold-bright);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: rgba(244, 245, 247, 0.88);
}

ul {
  margin: 0;
  padding: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 700;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, 760px);
}

/* Utility bar */
.utility-bar {
  background: linear-gradient(90deg, #0a0a0d, #12131a 40%, #0a0a0d);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 0;
}

.utility-bar__copy {
  margin: 0;
  color: var(--silver);
}

.utility-bar__accent {
  color: var(--white);
  font-weight: 600;
}

.utility-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
}

.utility-bar__link {
  color: var(--silver);
  text-decoration: none;
  font-weight: 500;
}

.utility-bar__link strong {
  color: var(--white);
  font-weight: 700;
}

.utility-bar__link--ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s;
}

.utility-bar__link--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.utility-bar__link--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 45%, var(--gold-deep));
  color: #14120a;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(230, 180, 34, 0.35);
}

.utility-bar__link--gold:hover {
  filter: brightness(1.05);
  color: #0a0906;
}

/* Sticky header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(5, 5, 8, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header.is-scrolled .nav-bar {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav-bar {
  transition: box-shadow 0.25s ease;
}

.nav-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.65rem 0;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  width: auto;
  max-height: 64px;
  object-fit: contain;
}

.brand--footer .brand__logo {
  max-height: 80px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav__list {
  display: flex;
  list-style: none;
  gap: 1.35rem;
  align-items: center;
}

.main-nav__list a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--silver);
  text-decoration: none;
  position: relative;
}

.main-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.2s ease;
}

.main-nav__list a:hover {
  color: var(--white);
}

.main-nav__list a:hover::after {
  width: 100%;
}

.main-nav__ctas {
  display: flex;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.65rem;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 950;
}

.site-header.is-menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: linear-gradient(160deg, #101118, #050508 60%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: var(--shadow-soft);
}

.site-header.is-menu-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__logo {
  margin: 0 auto 1.5rem;
  max-height: 80px;
  width: auto;
}

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu__list a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--white);
}

.mobile-menu__ctas {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu__call {
  text-align: center;
  font-weight: 700;
  color: var(--gold-bright);
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s, filter 0.2s, border-color 0.2s, background 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 0.95rem 1.75rem;
  font-size: 0.95rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 42%, var(--gold-deep) 100%);
  color: #000000;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 14px 44px rgba(169, 169, 169, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #000000;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 4.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=2000&q=80") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.94) 10%, rgba(0, 0, 0, 0.6) 45%, rgba(0, 0, 0, 0.92) 100%),
    radial-gradient(800px 500px at 70% 20%, rgba(169, 169, 169, 0.08), transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero__eyebrow {
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

.hero__lead {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-row li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  color: var(--silver);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 12px rgba(169, 169, 169, 0.5);
}

/* Hero floating Google reviews */
.hero-reviews {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding-bottom: 0.5rem;
}

.hero-reviews__header {
  margin-bottom: 0.75rem;
}

.hero-reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--silver);
}

.hero-reviews__google-icon {
  flex-shrink: 0;
}

.stars {
  color: #fbbc04;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  line-height: 1;
}

.stars--sm {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.stars--lg {
  font-size: 1rem;
}

.hero-reviews__track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hero-reviews__track::-webkit-scrollbar {
  display: none;
}

.review-mini {
  flex: 0 0 min(72vw, 260px);
  scroll-snap-align: start;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.review-mini__head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-mini__avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #5a6a7a, #3d4a56);
}

.review-mini__avatar--alt {
  background: linear-gradient(135deg, #7a6a5a, #564a3d);
}

.review-mini__name {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-body);
  text-transform: none;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1.2;
}

.review-mini__meta {
  margin: 0.1rem 0 0;
  font-size: 0.68rem;
  color: var(--silver-dim);
  line-height: 1.2;
}

.review-mini__text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--silver);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-reviews {
    margin-top: -3rem;
  }

  .hero-reviews__track {
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    scroll-snap-type: none;
    justify-content: flex-start;
    gap: 0.85rem;
  }

  .review-mini {
    flex: 0 0 240px;
    max-width: 240px;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.section--dark {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black-soft) 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.section--intro {
  background: radial-gradient(700px 400px at 20% 0%, rgba(169, 169, 169, 0.05), transparent 55%), var(--black);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section--why {
  background: linear-gradient(180deg, var(--black) 0%, #0c0d12 100%);
}

.section--faq {
  background: var(--black-soft);
}

.section--contact {
  background: radial-gradient(800px 500px at 100% 0%, rgba(184, 188, 198, 0.08), transparent 55%), var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section__header {
  margin-bottom: 2.5rem;
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
  max-width: 720px;
}

.section__title {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  margin-top: 0.75rem;
}

.section__subtitle {
  margin: 0.75rem 0 0;
  color: var(--silver);
  font-size: 1.05rem;
}

.badge {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
}

.badge--gold {
  border-color: rgba(230, 180, 34, 0.45);
  color: var(--gold-bright);
  background: rgba(230, 180, 34, 0.08);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--silver);
  background: rgba(255, 255, 255, 0.04);
}

/* Intro */
.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.intro__copy p:last-of-type {
  margin-bottom: 1.5rem;
}

.glass-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  mix-blend-mode: normal;
  opacity: 0.95;
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.service-card {
  background: linear-gradient(165deg, rgba(30, 32, 41, 0.95), rgba(10, 11, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 180, 34, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(230, 180, 34, 0.15);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  background: rgba(230, 180, 34, 0.1);
  border: 1px solid rgba(230, 180, 34, 0.25);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card__title {
  font-size: 1.05rem;
  margin: 0;
}

.service-card__text {
  flex: 1;
  margin: 0;
  font-size: 0.92rem;
  color: var(--silver);
}

.service-card__cta {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--gold-bright);
  text-decoration: none;
  margin-top: 0.25rem;
}

.service-card__cta:hover {
  color: var(--white);
}

/* Detail bands */
.detail-stack {
  background: var(--black);
}

.detail-band {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-band--alt {
  background: linear-gradient(180deg, #08090e, #050508);
}

.detail-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.detail-band__inner--reverse .detail-band__media {
  order: 2;
}

.detail-band__inner--reverse .detail-band__content {
  order: 1;
}

.detail-band__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.detail-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.5s ease;
}

.detail-band__media:hover img {
  transform: scale(1.03);
}

.detail-band__title {
  font-size: clamp(1.65rem, 2.6vw, 2.25rem);
  margin-bottom: 1rem;
}

.detail-band__content p {
  font-size: 1.02rem;
}

.checklist {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
  color: rgba(244, 245, 247, 0.9);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 10px rgba(230, 180, 34, 0.5);
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.why-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  transition: transform 0.2s, border-color 0.2s;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 180, 34, 0.35);
}

.why-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--silver);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a0d;
  isolation: isolate;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: brightness(0.75) contrast(1.1) saturate(1.05);
  transition: transform 0.45s ease, filter 0.35s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75));
  opacity: 0.85;
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
  color: var(--white);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.9) contrast(1.12);
}

/* Accordion */
.accordion {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(10, 11, 16, 0.65);
}

.accordion__item + .accordion__item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.accordion__trigger {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  padding: 1.15rem 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.accordion__trigger::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--gold-bright);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.accordion__trigger[aria-expanded="true"]::after {
  content: "–";
}

.accordion__panel {
  padding: 0 1.25rem 1.15rem;
}

.accordion__panel p {
  margin: 0;
  color: var(--silver);
  font-size: 0.98rem;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(90deg, #07080c, #12131d 50%, #07080c);
  border-block: 1px solid rgba(230, 180, 34, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 30% 50%, rgba(230, 180, 34, 0.12), transparent 55%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}

.cta-banner__title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-bottom: 0.35rem;
}

.cta-banner__text {
  margin: 0;
  color: var(--silver);
  max-width: 520px;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-lead {
  color: var(--silver);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.contact-list li {
  margin-bottom: 0.85rem;
  color: rgba(244, 245, 247, 0.9);
}

.contact-list a {
  color: var(--gold-bright);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.map-placeholder {
  min-height: 280px;
  display: block;
  overflow: hidden;
  padding: 0;
}

.map-placeholder iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
  filter: grayscale(0.85) contrast(1.1);
}

.service-grid--featured {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin-inline: auto;
}

.service-card--featured {
  text-align: center;
  padding: 2rem 1.5rem;
}

.service-card--featured .service-card__icon {
  margin-inline: auto;
}

.hours-grid {
  display: grid;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--silver);
}

.hours-grid dt {
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--silver-dim);
}

.hours-grid dd {
  margin: 0 0 0.75rem;
  color: var(--white);
}

@media (max-width: 900px) {
  .service-grid--featured {
    grid-template-columns: 1fr;
  }
}

.form-card {
  padding: 1.75rem 1.5rem;
}

.form-card__title {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--silver);
}

.field span {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 8, 0.65);
  color: var(--white);
  font: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(230, 180, 34, 0.55);
  outline-offset: 1px;
  border-color: rgba(230, 180, 34, 0.45);
}

.form-note {
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--gold-bright);
  margin: 0;
}

.field__optional {
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  color: var(--silver-dim);
  font-size: 0.72rem;
}

/* Reviews strip (before footer) */
.section--reviews {
  padding-top: 0;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.reviews-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2rem);
}

.reviews-strip__title {
  margin-top: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.reviews-strip__text {
  margin: 0;
  max-width: 560px;
  color: var(--silver);
  font-size: 1rem;
}

.reviews-strip__action {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Review dialog */
.review-dialog {
  border: none;
  padding: 0;
  background: transparent;
  max-width: calc(100% - 2rem);
  width: 480px;
}

.review-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.review-dialog__inner {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.review-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, color 0.2s;
}

.review-dialog__close:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.review-dialog__title {
  font-size: 1.35rem;
  padding-right: 2.5rem;
  margin-bottom: 0.35rem;
}

.review-dialog__hint {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--silver-dim);
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-dialog__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.review-form__status {
  text-align: center;
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: #030304;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.site-footer__tagline {
  margin-top: 1rem;
  color: var(--silver-dim);
  max-width: 280px;
  font-size: 0.95rem;
}

.site-footer__heading {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links a {
  display: block;
  padding: 0.25rem 0;
  color: var(--silver);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-footer__links a:hover {
  color: var(--gold-bright);
}

.site-footer__phone a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-decoration: none;
}

.social-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.social-row__link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--silver);
  transition: border-color 0.2s, color 0.2s;
}

.social-row__link:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--silver-dim);
}

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.site-footer__legal a {
  color: var(--silver);
  text-decoration: none;
}

.site-footer__legal a:hover {
  color: var(--gold-bright);
}

/* Reviews listing page */
.page-reviews {
  background: var(--black);
}

.reviews-page-hero {
  padding: clamp(4rem, 10vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, #0c0d14 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.reviews-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 280px at 15% 0%, rgba(230, 180, 34, 0.12), transparent 60%),
    radial-gradient(500px 240px at 85% 30%, rgba(184, 188, 198, 0.08), transparent 55%);
  pointer-events: none;
}

.reviews-page-hero .container {
  position: relative;
}

.reviews-page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.reviews-page-hero__lead {
  max-width: 560px;
  color: var(--silver);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.reviews-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.review-flash {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(230, 180, 34, 0.45);
  background: linear-gradient(135deg, rgba(230, 180, 34, 0.12), rgba(20, 21, 28, 0.95));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.review-flash__text {
  margin: 0;
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.review-flash__dismiss {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: var(--white);
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.review-flash__dismiss:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.section--reviews-feed {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(4rem, 8vw, 5.5rem);
  background: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 55%, var(--black-soft) 100%);
}

.reviews-feed-layout {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  max-width: 820px;
  margin-inline: auto;
}

.reviews-feed-layout:empty {
  display: none;
}

.reviews-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.reviews-empty__title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.reviews-empty__text {
  color: var(--silver);
  margin-bottom: 1.25rem;
}

.main-nav__list a[aria-current="page"] {
  color: var(--gold-bright);
}

.main-nav__list a[aria-current="page"]::after {
  width: 100%;
}

.mobile-menu__list a[aria-current="page"] {
  color: var(--gold-bright);
}

.review-block {
  position: relative;
  padding: 1.5rem 1.5rem 1.35rem 1.65rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.review-block:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 180, 34, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(230, 180, 34, 0.12);
}

.review-block__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  box-shadow: 0 0 20px rgba(230, 180, 34, 0.45);
}

.review-block--shift {
  margin-left: clamp(0px, 4vw, 3rem);
}

.review-block--shift .review-block__accent {
  left: auto;
  right: 0;
  background: linear-gradient(180deg, #d4d7e0, #8a8f9e);
  box-shadow: none;
}

.review-block__quote {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.review-block__text {
  display: inline;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(244, 245, 247, 0.94);
  font-weight: 500;
}

.review-block__mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 0;
  color: rgba(230, 180, 34, 0.35);
  vertical-align: -0.15em;
  margin-right: 0.08em;
}

.review-block__mark--end {
  margin-right: 0;
  margin-left: 0.06em;
  vertical-align: -0.2em;
}

.review-block__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-block__author {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gold-bright);
}

.review-block__date {
  font-size: 0.82rem;
  color: var(--silver-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.reviews-page-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.reviews-page-cta__hint {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--silver-dim);
}

/* Responsive */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .intro__grid {
    grid-template-columns: 1fr;
  }

  .intro__visual {
    order: -1;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-band__inner,
  .detail-band__inner--reverse {
    grid-template-columns: 1fr;
  }

  .detail-band__inner--reverse .detail-band__media,
  .detail-band__inner--reverse .detail-band__content {
    order: unset;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .utility-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 5rem;
    min-height: unset;
    padding-bottom: 3rem;
  }

  .trust-row {
    flex-direction: column;
    gap: 0.5rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reviews-strip {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .reviews-strip__text {
    max-width: none;
  }

  .reviews-strip__action .btn {
    width: 100%;
  }

  .review-block--shift {
    margin-left: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__actions {
    width: 100%;
  }

  .cta-banner__actions .btn {
    flex: 1;
    min-width: 140px;
  }
}
