/* /var/www/d13x.net/public/jep-auto/assets/css/main.css */
:root {
  --color-bg: #1e1e1e;
  --color-bg-secondary: #2a2a2a;
  --color-bg-dark: #141414;
  --color-bg-darkest: #0f0f0f;
  --color-accent: #d3e97d;
  --color-accent-hover: #bfd660;
  --color-text: #f0f0f0;
  --color-text-muted: #888888;
  --color-border: #2a2a2a;
  --color-border-accent: #d3e97d;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Roboto", sans-serif;
  --bg-primary: var(--color-bg);
  --bg-secondary: var(--color-bg-secondary);
  --bg-accent: #242424;
  --text-primary: var(--color-text);
  --text-secondary: #b3b3b3;
  --text-muted: var(--color-text-muted);
  --accent: var(--color-accent);
  --accent-hover: var(--color-accent-hover);
  --border: var(--color-border);
  --success: #22c55e;
  --error: #ef4444;
  --content-max: 1600px;
  --gutter: clamp(1.25rem, 4vw, 3.75rem);
  --section-overlay: rgba(0, 0, 0, 0.75);
  --container: 100%;
  --header-h: 70px;
  --hero-h: calc(100vh - var(--header-h));
  --hero-h: calc(100svh - var(--header-h));
  --radius: 0;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

#contact-section {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

/* Fixed full-viewport background (matches jepautoworks.com bg3.jpg) */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: var(--color-bg);
  background-image: url("../images/bg3.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .site-bg {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  .site-bg {
    background-image: url("../images/mobile/bg3-768.webp");
  }
}


/* Centered content column scrolling over fixed background */
.site-shell {
  position: relative;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  min-height: 100vh;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

label,
input,
select,
textarea,
button {
  font-family: var(--font-body);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: 0;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: var(--container);
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30, 30, 30, 0.97);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

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

.logo:hover {
  opacity: 0.92;
}

.site-logo {
  width: 231px;
  height: 40px;
  max-width: min(231px, 55vw);
  object-fit: contain;
  filter: brightness(1.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-link {
  display: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-accent);
  white-space: nowrap;
  text-decoration: none;
}

.phone-link:hover {
  color: var(--color-accent-hover);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: var(--color-bg-secondary);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 200;
  }

  body > .main-nav {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    background: var(--color-bg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1.5rem;
  }

  body > .main-nav.is-open {
    transform: translateX(0);
  }

  body.nav-is-open {
    overflow: hidden;
  }

  body > .main-nav .nav-submenu,
  body > .main-nav #services-dropdown {
    display: block !important;
    flex-direction: column !important;
    columns: 1 !important;
    column-count: 1 !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    min-width: unset !important;
    max-width: 100% !important;
    position: static !important;
    box-shadow: none !important;
    border-top: none !important;
    border-left: 3px solid var(--color-accent);
    margin: 0 0 0 1rem !important;
    padding: 4px 0 !important;
    gap: 0 !important;
    background: transparent !important;
  }

  body > .main-nav #services-dropdown:not(.is-open),
  body > .main-nav .nav-submenu:not(.is-open) {
    display: none !important;
  }

  body > .main-nav #services-dropdown li,
  body > .main-nav .nav-submenu li {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    border: none !important;
  }

  body > .main-nav #services-dropdown li a,
  body > .main-nav .nav-submenu li a {
    display: block !important;
    width: 100% !important;
    padding: 3px 16px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    color: var(--color-text-muted) !important;
  }

  body > .main-nav #services-dropdown li a:hover,
  body > .main-nav .nav-submenu li a:hover {
    color: var(--color-accent) !important;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  border-bottom: 1px solid var(--color-border);
}

.nav-list a,
.nav-dropdown-toggle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.nav-list > li > a {
  display: block;
  padding: 0.85rem 0;
  text-decoration: none;
  line-height: 1;
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--color-accent);
}

.nav-dropdown-toggle,
button.nav-dropdown-toggle {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.nav-dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-submenu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

#services-dropdown,
#services-dropdown ul {
  gap: 0 !important;
  padding: 10px 0 !important;
}

#services-dropdown li,
#services-dropdown li a,
#services-dropdown a {
  line-height: 1 !important;
  padding: 6px 20px !important;
  margin: 0 !important;
  display: block !important;
  font-size: 13px !important;
  box-sizing: border-box !important;
}

#services-dropdown a:hover,
#services-dropdown li a:hover {
  color: var(--color-accent);
  background: rgba(211, 233, 125, 0.06);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .header-actions {
    gap: 32px;
    align-items: center;
    height: 100%;
  }

  .phone-link {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
    line-height: 1;
  }

  .main-nav {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    transform: none;
    padding: 0;
    background: transparent;
    border: none;
    overflow: visible;
    display: flex;
    align-items: center;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .nav-list > li {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    border: none;
  }

  .nav-list > li > a,
  .nav-list > li > button.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
    line-height: 1;
  }

  .nav-list > li > a {
    text-decoration: none;
  }

  .nav-list > li > button.nav-dropdown-toggle {
    width: auto;
    justify-content: flex-start;
    gap: 4px;
    vertical-align: middle;
  }

  .nav-list > li > button.nav-dropdown-toggle::after {
    margin-left: 0.35rem;
    flex-shrink: 0;
    align-self: center;
  }

  .nav-submenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    width: auto;
    min-width: 230px;
    background: #1a1a1a;
    border-top: 2px solid var(--color-accent);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    z-index: 200;
  }

  .nav-submenu.is-open {
    display: flex;
  }

  .nav-list > li.nav-item--dropdown .nav-submenu {
    left: auto;
    right: 0;
  }

  #services-dropdown.nav-submenu li {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  #services-dropdown li a,
  #services-dropdown.nav-submenu li a {
    border-left: 2px solid transparent;
    padding: 9px 16px 9px 14px !important;
    line-height: 1.4 !important;
    display: block !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    white-space: nowrap !important;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, font-weight 0.15s ease;
  }

  #services-dropdown li a:hover,
  #services-dropdown.nav-submenu li a:hover {
    border-left-color: var(--color-accent);
    background: rgba(211, 233, 125, 0.06);
    font-weight: 600 !important;
    color: var(--color-accent) !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), letter-spacing var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-bg);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-block {
  width: 100%;
}

.btn-hero-primary {
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid var(--color-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-bg);
}

.btn-hero-outline {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-hero-outline:hover {
  background: rgba(211, 233, 125, 0.12);
  color: var(--color-accent);
}

/* Homepage hero */
.hero {
  position: relative;
  height: var(--hero-h);
  min-height: 600px;
  max-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-fiber {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.15) 2px,
    rgba(255, 255, 255, 0.15) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-inline: var(--gutter);
  padding-block: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: left;
  width: 100%;
  margin: 0 0 1rem;
}

.hero-location::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
}

.hero-title-block {
  min-height: 2.4em;
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
  text-align: left;
  display: inline-block;
  margin: 0 auto 0;
}

.hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
  text-shadow: 1px 2px 12px rgba(0, 0, 0, 0.6);
  margin: 0;
  line-height: 1.15;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  color: var(--color-accent);
  margin: 12px 0 0;
  text-align: left;
  max-width: 560px;
}

.hero-actions {
  margin-top: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin-inline: 0;
}

@media (min-width: 768px) {
  .hero-inner {
    margin: 0;
    max-width: 800px;
    text-align: left;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-sub {
    font-size: 19px;
  }

  .hero-actions {
    flex-direction: row;
    gap: 16px;
    max-width: none;
    margin-inline: 0;
  }
}

.hero-actions .btn-hero-primary,
.hero-actions .btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-outline {
    width: auto;
    min-width: 220px;
  }
}

/* Why JEP (homepage section) */
.why-jep {
  background: var(--color-bg-secondary);
  padding: 80px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.why-jep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-jep-heading {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 36px;
  position: relative;
}

.why-jep-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin-top: 12px;
}

.why-jep-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-jep-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-jep-accent {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.why-jep-item p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Right column - reviews */
.why-jep-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reviews-heading {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.reviews-placeholder {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  padding: 20px;
}

.review-stars {
  color: var(--color-accent);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-quote {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 10px 0;
  font-style: italic;
}

.review-author {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Mobile: stack columns */
@media (max-width: 767px) {
  .why-jep-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-jep {
    padding: 60px 0;
  }
}

/* Trust bar */
.trust-bar {
  --trust-bar-base: #111111;
  --trust-bar-highlight: #141414;
  --trust-bar-rim: #0e0e0e;
  background: linear-gradient(
    180deg,
    var(--trust-bar-rim) 0%,
    var(--trust-bar-base) 18%,
    var(--trust-bar-highlight) 50%,
    var(--trust-bar-base) 82%,
    var(--trust-bar-rim) 100%
  );
  border-top: 1px solid #151515;
  border-bottom: 1px solid #0e0e0e;
  box-shadow:
    inset 0 1px 0 rgba(0, 0, 0, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
  min-height: 72px;
  padding-block: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

.trust-item span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-align: center;
  line-height: 1.35;
}

@media (min-width: 900px) {
  .trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .trust-item {
    position: relative;
    padding-inline: clamp(0.75rem, 1.5vw, 1.5rem);
  }

  .trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 65%;
    background: #222222;
  }
}

/* Promo banner (placeholder — reviews / highlights) */
.promo-banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.promo-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.75);
}

.promo-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-inline: var(--gutter);
}

.promo-banner-text {
  text-align: center;
  max-width: 720px;
  padding: 1.75rem 2.25rem;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-banner-text h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.promo-banner-text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--color-accent);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .promo-banner {
    height: min(450px, 52.5vh);
  }

  .promo-banner-text {
    padding: 0.9375rem 1.5rem;
  }
}

.banner-line {
  display: inline;
}

@media (max-width: 767px) {
  .trust-bar {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .trust-item {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .banner-line {
    display: block;
  }

  .promo-banner {
    height: 450px;
  }

  .promo-banner-text {
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem;
  }
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--section-overlay);
}

.section-alt {
  background: var(--color-bg-secondary);
}

.section-accent {
  background: var(--bg-accent);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 4vw, 32px);
  color: #ffffff;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: 0.75rem auto 0;
}

.section-header p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.section-header + .card-grid,
.section-header + .feature-grid {
  margin-top: 40px;
}

.split h2 {
  font-size: clamp(24px, 4vw, 32px);
  color: #ffffff;
  position: relative;
  padding-bottom: 0.75rem;
}

.split h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin-top: 0.75rem;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: #1e1e1e;
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 24px rgba(211, 233, 125, 0.08);
  transform: none;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.card-link:hover {
  color: inherit;
}

.card-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  margin: 0 0 6px;
}

.card-body p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0 0 10px;
}

.card-cta {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 0;
  transition: color var(--transition), letter-spacing var(--transition);
}

.card-link:hover .card-cta {
  color: var(--color-accent-hover);
  letter-spacing: 0.02em;
}

/* Features */
.feature-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
}

.feature h3 {
  color: var(--color-text);
  font-family: var(--font-heading);
}

/* Two column */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split img {
  border-radius: 0;
  border: 1px solid var(--color-border);
}

/* CTA band */
.cta-band {
  background: var(--color-accent);
  padding: 60px 0;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-bg);
  margin-bottom: 0.5rem;
}

.cta-band p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: #2a2a2a;
  margin-bottom: 1.5rem;
}

.cta-band .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
}

.cta-band .btn-cta-dark {
  background: var(--color-bg);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 0;
  border: 2px solid var(--color-bg);
}

.cta-band .btn-cta-dark:hover {
  background: #2a2a2a;
  color: var(--color-accent);
}

.cta-band .btn-cta-outline-dark {
  background: transparent;
  border: 2px solid var(--color-bg);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 0;
}

.cta-band .btn-cta-outline-dark:hover {
  background: rgba(30, 30, 30, 0.08);
}

@media (min-width: 768px) {
  .cta-band .cta-actions {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-inline: auto;
  }
}

.cta-band .cta-actions .btn-cta-dark,
.cta-band .cta-actions .btn-cta-outline-dark {
  width: 100%;
}

@media (min-width: 768px) {
  .cta-band .cta-actions .btn-cta-dark,
  .cta-band .cta-actions .btn-cta-outline-dark {
    width: auto;
    min-width: 220px;
  }
}

/* Visit shop + contact (standard footer block, Part B) */
.visit-shop-section {
  background: var(--color-bg);
  padding: 80px 0;
  border-top: 1px solid var(--color-border);
}

.visit-shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-shop-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.info-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-left: 3px solid var(--color-accent);
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: block;
}

.info-card-phone {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.2;
}

.info-card-phone:hover {
  color: #f0f0f0;
}

@media (min-width: 768px) {
  .info-card-phone {
    font-size: 32px;
  }
}

.info-card-address {
  font-family: var(--font-body);
  font-size: 15px;
  color: #888888;
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 14px;
}

.btn-directions {
  display: inline-block;
  background: var(--color-accent);
  color: #1e1e1e;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn-directions:hover {
  background: var(--color-accent-hover);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid #2a2a2a;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-day {
  font-family: var(--font-body);
  font-size: 13px;
  color: #888888;
  padding: 7px 0;
  width: 55%;
}

.hours-time {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  padding: 7px 0;
  text-align: right;
}

.info-card-cta-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: #888888;
  line-height: 1.6;
  margin: 0;
}

.contact-form-heading {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.contact-form-full {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-full .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-full label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form-full input,
.contact-form-full select,
.contact-form-full textarea {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 0;
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form-full input:focus,
.contact-form-full select:focus,
.contact-form-full textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(211,233,125,0.1);
}

.contact-form-full select {
  appearance: none;
  cursor: pointer;
}

.contact-section-heading {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  position: relative;
}

.contact-section-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin-top: 12px;
}

.btn-submit-full {
  background: var(--color-accent);
  color: #1e1e1e;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-submit-full:hover {
  background: var(--color-accent-hover);
}

.required {
  color: var(--color-accent);
  margin-left: 2px;
}

.form-disclaimer {
  font-family: var(--font-body);
  font-size: 11px;
  color: #444444;
  margin-top: 12px;
  line-height: 1.5;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 12px 0;
  min-height: 0;
}

.form-status.is-success {
  color: var(--color-text);
}

.form-status.is-error {
  color: #b00020;
}

@media (max-width: 767px) {
  .visit-shop-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .visit-shop-section {
    padding: 60px 0;
  }
}

/* Page heroes */
.page-hero {
  position: relative;
  min-height: min(50vh, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-bg-dark);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
}

.page-hero--plain {
  min-height: auto;
  align-items: center;
  padding: 2.5rem 0;
  background: var(--bg-accent);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero .hero-overlay,
.page-hero .hero-fiber {
  z-index: 1;
}

.page-hero .hero-fiber {
  z-index: 2;
}

.page-hero .container {
  position: relative;
  z-index: 3;
  padding: 2.5rem 1.5rem 3rem;
  width: 100%;
}

.page-hero--image .container {
  padding-bottom: 3.5rem;
}

.page-hero .breadcrumbs {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.page-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero .breadcrumbs a:hover {
  color: var(--color-accent);
}

.page-hero .hero-title-block {
  min-height: 2.4em;
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(28px, 5vw, 48px);
  color: #ffffff;
  text-shadow: 1px 2px 12px rgba(0, 0, 0, 0.6);
  margin: 0;
}

.page-hero .hero-lead {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-accent);
  margin-top: 0.75rem;
}

.page-hero--plain h1 {
  text-shadow: none;
  color: var(--color-text);
}

.page-hero--plain .hero-lead {
  color: var(--text-secondary);
}

.page-hero--about h1 {
  font-size: clamp(32px, 5vw, 48px);
}

/* Service page */
.breadcrumbs {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: var(--color-text-muted);
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.service-content {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .service-content {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

.service-sidebar {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 0;
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.service-sidebar h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-family: var(--font-heading);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-family: var(--font-body);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-info-block {
  background: #1a1a1a;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 0;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info-block h3 {
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.contact-info-block p {
  margin: 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table td {
  padding: 0.35rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-body);
}

.hours-table td:last-child {
  text-align: right;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--color-text);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(211, 233, 125, 0.1);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
}

#contact-form .btn-primary {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px;
  border-radius: 0;
}

.field-error {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 0.25rem;
}

.form-note {
  margin-top: 16px;
  font-size: 12px;
  color: #666666;
}

.form-success {
  display: none;
  padding: 1.25rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid var(--success);
  border-radius: 0;
  color: var(--success);
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
}

.map-embed {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  border: 1px solid var(--color-border);
  border-radius: 0;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.contact-section .map-embed {
  margin-top: 2.5rem;
}

/* Footer: service areas list */
.footer-areas {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-areas li {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666666;
  line-height: 1.4;
}

/* Footer column headings (services + areas only) */
.footer-col-heading {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dotted #333333;
  display: block;
  width: 100%;
}

/* Footer column 1 (brand) */
.footer-logo {
  width: 208px;
  height: 36px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
  margin: 0 0 0 0;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .footer-tagline {
    padding-right: 0;
  }
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
  clear: both;
  width: 100%;
}

.footer-follow-label {
  display: block;
  width: 100%;
  margin-bottom: 0;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: #555555;
  transition: fill 0.2s;
}

.footer-social a:hover svg {
  fill: var(--color-accent);
}

/* Footer services list: force spacing + typography */
.footer-col-services ul,
.footer-col-services .footer-services-list {
  display: flex;
  flex-direction: column;
  gap: 6px !important;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-col-services ul li,
.footer-col-services ul li a,
.footer-col-services .footer-services-list li,
.footer-col-services .footer-services-list li a {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  line-height: 1.2 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block;
}

.footer-col-services ul li a:hover,
.footer-col-services .footer-services-list li a:hover {
  color: var(--color-accent);
}

.footer-col-areas ul,
.footer-areas {
  display: flex;
  flex-direction: column;
  gap: 6px !important;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-col-areas ul li,
.footer-col-areas ul li a,
.footer-areas li {
  font-family: var(--font-body);
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  line-height: 1.2 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block;
}

/* Homepage short contact form */
.home-contact-short {
  background: var(--color-bg-secondary);
  padding: 80px 0;
  border-top: 1px solid var(--color-border);
}

/* Homepage visit/shop two-column layout (info + short form) */
.visit-shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 767px) {
  .visit-shop-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.short-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.short-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.short-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.short-form label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.short-form input,
.short-form textarea {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 0;
  transition: border-color 0.2s;
}

.short-form input:focus,
.short-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(211,233,125,0.1);
}

.btn-submit-short {
  background: var(--color-accent);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.btn-submit-short:hover {
  background: var(--color-accent-hover);
}

.form-note {
  font-family: var(--font-body);
  font-size: 13px;
  margin-top: 4px;
  min-height: 20px;
}

.form-full-link {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 8px;
}

.form-full-link a {
  color: var(--color-accent);
  text-decoration: none;
}

.form-full-link a:hover {
  color: var(--color-accent-hover);
}

@media (max-width: 767px) {
  .short-form-row {
    grid-template-columns: 1fr;
  }
  .home-contact-short {
    padding: 60px 0;
  }
}

.map-embed iframe {
  width: 100% !important;
  height: 450px;
  border: none;
  display: block;
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--color-bg-darkest);
  border-top: 3px solid var(--color-accent);
  padding: 3rem 0 0;
}

.footer-main {
  padding-bottom: 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 40% 30% 30%;
  }
}

.footer-brand .site-logo {
  height: 32px;
  filter: brightness(1.1);
}

.footer-col-brand .footer-tagline {
  max-width: 320px;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col-services ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-col-services li {
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.4rem;
}

.footer-nav a,
.footer-contact a {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  font-family: var(--font-body);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-col-services a {
  font-size: 13px;
  color: #666666;
}

.footer-col-services a:hover {
  color: var(--color-accent);
}

.footer-col-services .footer-col-heading,
.footer-col-areas .footer-col-heading {
  display: inline-block;
  width: calc(100% - 24px);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dotted #333333;
}

.footer-contact p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social-links a {
  color: #555555;
  transition: color var(--transition);
  display: inline-flex;
}

.footer-social-links a:hover {
  color: var(--color-accent);
}

.footer-social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-bottom {
  background: var(--color-bg-darkest);
  margin-top: 2rem;
  width: 100%;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px !important;
  color: #3a3a3a !important;
}

.footer-bottom span {
  font-size: 11px !important;
  color: #3a3a3a !important;
}

/* Utilities */
.text-center {
  text-align: center;
}

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

.text-accent:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.mb-0 {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Service page content (auto-repair and future service pages) */
.service-content-section {
  background: var(--color-bg);
}

.service-content-section > .container:not(:has(.service-page-layout)) {
  padding-block: 80px;
}

.service-content-section > .container:not(:has(.service-page-layout)) > * {
  margin-bottom: 48px;
}

.service-content-section > .container:not(:has(.service-page-layout)) > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .service-content-section > .container:not(:has(.service-page-layout)) {
    padding-block: 60px;
  }
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.about-feature-grid--two {
  grid-template-columns: 1fr 1fr;
}

.about-feature-block {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  padding: 28px 24px;
}

.about-feature-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 10px;
}

.about-feature-block h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 12px 0;
}

.about-feature-block p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-feature-grid--two {
    grid-template-columns: 1fr;
  }
}

.service-page-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
  padding: 80px 0;
  background: var(--color-bg);
}

.service-main-col {
  min-width: 0;
}

.service-main-col > * {
  margin-bottom: 48px;
}

.service-main-col > *:last-child {
  margin-bottom: 0;
}

.service-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-cta-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.sidebar-cta-heading {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.sidebar-cta-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.btn-sidebar-cta {
  display: block;
  width: 100%;
  background: var(--color-accent);
  color: #1e1e1e;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s;
}

.btn-sidebar-cta:hover {
  background: var(--color-accent-hover);
}

.btn-sidebar-call {
  display: block;
  width: 100%;
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 11px 20px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.2s;
}

.btn-sidebar-call:hover {
  background: rgba(211, 233, 125, 0.1);
}

.sidebar-hours {
  font-family: var(--font-body);
  font-size: 12px;
  color: #666666;
  line-height: 1.8;
  margin: 0;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

.sidebar-hours-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

@media (max-width: 1024px) {
  .service-page-layout {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }

  .service-sidebar {
    display: none;
  }
}

.block-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text-muted);
  margin-top: 8px;
  margin-bottom: 0;
}

.service-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.service-bullets li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.service-bullets li::before {
  content: '—';
  color: var(--color-accent);
  position: absolute;
  left: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.process-step {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  padding: 24px 20px;
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  margin-bottom: 10px;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.process-step p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.local-trust-block {
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg-secondary);
  padding: 24px 28px;
}

.local-trust-block p {
  font-family: var(--font-body);
  font-size: 16px;
  color: #888888;
  line-height: 1.7;
  margin: 0;
}

.local-trust-block--feature {
  border-left: 4px solid var(--color-accent);
  padding: 28px 32px;
}

.local-trust-block--feature p {
  font-size: 17px;
  color: var(--color-text-muted);
}

.two-col-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .service-bullets {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .two-col-callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: #1e1e1e;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.15s ease;
  z-index: 999;
  font-size: 22px;
  line-height: 1;
}
.back-to-top:hover {
  background: var(--color-accent-hover);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 600px) {
  .back-to-top { bottom: 16px; right: 16px; width: 44px; height: 44px; }
}

