/* Automotive Highlights — bold industrial auto shop */
:root {
  /* Page stays dark; cards/panels are lighter slate so boxes don’t feel pure black */
  --bg: #1a1b20;
  --bg-elevated: #24262e;
  --bg-card: #2e303a;
  --bg-muted: #22242c;
  --ink: #f4f2ef;
  --ink-soft: #d0ccc4;
  --muted: #9a958c;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  /* Match logo red (oval mark) */
  --accent: #e10600;
  --accent-hot: #ff1a1a;
  --accent-deep: #a00000;
  --accent-soft: rgba(225, 6, 0, 0.16);
  /* Call buttons — white on red to match logo (no green) */
  --call: #e10600;
  --call-hover: #ff1a1a;
  --white: #ffffff;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Oswald", "Inter", system-ui, sans-serif;
  --max: 1140px;
  --header-h: 118px;
  --topbar-h: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--accent-hot);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--white);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.65rem);
  font-weight: 600;
}
h3 {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 0.9rem 1.45rem;
  font-size: 0.98rem;
}
.btn-block {
  width: 100%;
}
.btn-accent {
  background: var(--accent);
  color: var(--white) !important;
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(225, 6, 0, 0.28);
}
.btn-accent:hover {
  background: var(--accent-hot);
  border-color: var(--accent-hot);
  color: var(--white) !important;
}
.btn-call {
  background: var(--call);
  color: #ffffff !important;
  border-color: var(--call);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(225, 6, 0, 0.28);
}
.btn-call:hover {
  background: var(--call-hover);
  border-color: var(--call-hover);
  color: #ffffff !important;
}
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white) !important;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg) !important;
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--white);
  color: var(--bg) !important;
}

/* Announcement banner (admin-controlled) */
.announce {
  background: linear-gradient(90deg, #a00000 0%, #e10600 45%, #c40800 100%);
  color: #fff;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 16px rgba(225, 6, 0, 0.25);
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
}
.announce-text {
  margin: 0;
  font-weight: 700;
  font-size: clamp(0.92rem, 2.4vw, 1.1rem);
  letter-spacing: 0.02em;
  line-height: 1.35;
  max-width: 52rem;
}

/* Top bar */
.topbar {
  background: #12131a;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
}
.topbar-tag {
  color: var(--accent-hot);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.topbar-link:hover {
  color: var(--white);
}
.topbar-sep {
  opacity: 0.35;
}
.topbar-sat {
  color: #ffb4b0;
  font-weight: 700;
}
.topbar-text {
  white-space: nowrap;
}
@media (max-width: 760px) {
  .topbar {
    height: auto;
    min-height: var(--topbar-h);
    padding: 0.35rem 0;
  }
  .topbar-inner {
    flex-wrap: wrap;
    row-gap: 0.15rem;
  }
  .topbar-text {
    white-space: normal;
    font-size: 0.78rem;
  }
}
.hours-table tr.hours-sat th,
.hours-table tr.hours-sat td {
  color: var(--ink);
  background: rgba(225, 6, 0, 0.1);
}
.hours-table tr.hours-sat td strong {
  color: var(--accent-hot);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 27, 32, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  height: var(--header-h);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
/* Pull logo toward the left edge of the screen */
.header > .container {
  width: min(100% - 0.75rem, var(--max));
  margin-left: 0.35rem;
  margin-right: auto;
  padding-left: 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 0.75rem 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink) !important;
  text-decoration: none !important;
  flex-shrink: 0;
  line-height: 0;
  margin-left: 0;
}
/*
  Scale the IMAGE itself (not just the white plate).
  Height drives size; width follows aspect ratio (~2:1).
*/
.logo-img {
  display: block;
  height: 100px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  background: #ffffff;
  border-radius: 10px;
  padding: 3px 5px; /* tight plate — barely larger than logo */
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.header .logo-img {
  height: clamp(92px, 13vw, 108px);
  width: auto;
  max-width: min(520px, 75vw);
  padding: 3px 6px;
}
.logo-fallback {
  display: none;
}
.logo-fallback[hidden] {
  display: none !important;
}
.logo-fallback:not([hidden]) {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent-hot), var(--accent-deep));
  color: var(--white);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(225, 6, 0, 0.35);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.logo-text span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
}
.footer .logo-img {
  height: 110px;
  width: auto;
  max-width: min(480px, 90vw);
  padding: 4px 7px;
}
@media (max-width: 760px) {
  .header > .container {
    width: calc(100% - 0.5rem);
    margin-left: 0.25rem;
  }
  .header .logo-img {
    height: 72px;
    width: auto;
    max-width: 58vw;
    padding: 2px 4px;
  }
  :root {
    --header-h: 88px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
}
.nav a:not(.btn) {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none !important;
}
.nav a:not(.btn):hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.92) contrast(1.05);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.94) 0%, rgba(8, 8, 10, 0.78) 48%, rgba(8, 8, 10, 0.45) 100%),
    linear-gradient(0deg, rgba(8, 8, 10, 0.92) 0%, transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-kicker {
  color: var(--accent-hot);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-bottom: 1.75rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 5.5rem;
}
.hero-stat strong {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Theme song */
.section-music {
  background: linear-gradient(135deg, #2a1c1e 0%, var(--bg-elevated) 55%, #22242c 100%);
  border-block: 1px solid rgba(225, 6, 0, 0.25);
  padding: 3rem 0;
}
.music-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.75rem 2.5rem;
  align-items: center;
}
.music-copy .section-sub {
  margin-bottom: 0;
}
.music-player-wrap {
  background: #363843;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.music-player {
  width: 100%;
  display: block;
  height: 48px;
  accent-color: var(--accent);
}
.music-note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 760px) {
  .music-panel {
    grid-template-columns: 1fr;
  }
}

/* Trust strip */
.trust-strip {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
  padding: 1.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-hot);
  border: 1px solid rgba(225, 6, 0, 0.25);
}
.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.trust-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 5rem 0;
}
.section-dark {
  background: var(--bg-muted);
  border-block: 1px solid var(--line);
}
.section-muted {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}
.section-head {
  max-width: 36rem;
  margin-bottom: 2.5rem;
}
.eyebrow {
  color: var(--accent-hot);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0 0 0.65rem;
}
.section-sub {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.25rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.service-card:hover {
  border-color: rgba(225, 6, 0, 0.5);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background: #363843;
}
.service-card.featured {
  background: linear-gradient(165deg, #3a2224 0%, var(--bg-card) 55%);
  border-color: rgba(225, 6, 0, 0.4);
}
.service-num {
  font-family: var(--display);
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
  opacity: 0.9;
}
.service-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.05rem;
}
.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.service-card strong {
  color: var(--ink-soft);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.about-copy p {
  color: var(--ink-soft);
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
  display: grid;
  gap: 0.55rem;
}
.about-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.about-visual {
  position: relative;
}
.about-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(46, 48, 58, 0.95);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.about-badge strong {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--accent-hot);
  letter-spacing: 0.04em;
  line-height: 1;
}
.about-badge span {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 10rem;
}

/* Specials */
.section-specials {
  background: linear-gradient(180deg, #2a1c1e 0%, var(--bg) 100%);
  border-block: 1px solid rgba(225, 6, 0, 0.22);
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.special-card {
  background: #363843;
  border: 1px solid rgba(225, 6, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.5rem;
  position: relative;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.special-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-hot);
  margin-bottom: 0.65rem;
}
.special-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}
.special-price {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}
.special-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}
.text-link {
  color: var(--accent-hot);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none !important;
}
.text-link:hover {
  color: var(--white);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #2e303a;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item.wide img {
  aspect-ratio: 16 / 10;
}
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  color: var(--ink);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

@media (max-width: 980px) {
  .specials-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .specials-grid {
    grid-template-columns: 1fr;
  }
}

/* Hours */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: start;
}
.hours-address {
  font-style: normal;
  color: var(--ink);
  margin: 0 0 0.75rem;
  line-height: 1.55;
}
.hours-phone a {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--accent-hot);
  font-weight: 600;
}
.hours-phone {
  margin: 0 0 1.25rem;
}
.hours-table {
  width: 100%;
  max-width: 22rem;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.hours-table th,
.hours-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.hours-table th {
  color: var(--ink);
  font-weight: 600;
  width: 40%;
}
.hours-table td {
  color: var(--muted);
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  min-height: 340px;
  background: #2e303a;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
}
.contact-details li {
  display: grid;
  gap: 0.2rem;
}
.contact-details span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}
.contact-details a {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-details a:hover {
  color: var(--accent-hot);
}
.contact-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.contact-form {
  background: #363843;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.form-row {
  margin-bottom: 1rem;
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: #1e2028;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #5c5955;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-row input.invalid,
.form-row textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238a8680' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
}
.form-row select option {
  background: #1a1a1f;
  color: var(--ink);
}
.form-hint {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.form-success {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  background: rgba(225, 6, 0, 0.1);
  border: 1px solid rgba(225, 6, 0, 0.35);
  color: #ffb4b0;
  font-size: 0.92rem;
}

/* Footer */
.footer {
  background: #14151a;
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  margin: 1rem 0 0;
  max-width: 16rem;
  color: var(--muted);
}
.footer-col h3 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  margin: 0 0 0.45rem;
  text-decoration: none !important;
}
.footer-col a:hover {
  color: var(--accent-hot);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
}
.footer-fine {
  color: #5c5955;
  max-width: 28rem;
}
.footer-admin-link {
  color: var(--muted) !important;
  font-size: 0.88em;
  opacity: 0.75;
}
.footer-admin-link:hover {
  color: var(--accent-hot) !important;
  opacity: 1;
}
.footer-fine .footer-admin-link {
  font-size: inherit;
}

/* Responsive */
@media (max-width: 980px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    min-height: min(82vh, 680px);
    align-items: center;
    padding-top: 5rem;
  }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.88) 70%, rgba(8, 8, 10, 0.96) 100%);
  }
}

@media (max-width: 760px) {
  .hide-sm {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: calc(var(--topbar-h) + var(--header-h)) 0 0 0;
    background: rgba(8, 8, 10, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 2rem;
    gap: 0.35rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .nav.open {
    transform: translateX(0);
  }
  .nav a:not(.btn) {
    padding: 0.95rem 0.5rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .nav .btn {
    margin-top: 0.5rem;
    width: 100%;
  }

  .service-grid,
  .trust-grid,
  .gallery-grid,
  .footer-inner,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 3.5rem 0;
  }

  .contact-form {
    padding: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
