﻿/* Touch of Shade — common.css
 * Consolidated theme styles.
 * Source order: base.css, header.css, components.css, inner-pages.css, mobile.css, reference-mobile-ui.css, reference-match.css, section-backgrounds.css, reference-design.css, inner-pages-bridge.css, service-pages-bridge.css, footer.css
 */



/* ===== base.css ===== */

/* Touch of Shade — Base styles */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue.woff2") format("woff2");
}

:root {
  --tos-yellow: #FDE20C;
  --tos-yellow-dim: #E5CB00;
  --tos-black: #000000;
  --tos-ink: #0A0A0A;
  --tos-ink-2: #141414;
  --tos-line: #2A2A2A;
  --tos-bone: #F4F1E8;
  --tos-mute: #8a8a8a;
  --tos-mute-2: #5a5a5a;
  --tos-red: #CE151B;
  --tos-maxw: 1340px;
  --tos-display: "Bebas Neue", Impact, sans-serif;
  --tos-body: "Archivo", system-ui, sans-serif;
  --tos-narrow: "Archivo Narrow", "Archivo", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--tos-body);
  background: var(--tos-black);
  color: var(--tos-bone);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

/* Remove parent theme root padding so hero sits flush at top */
.wp-site-blocks {
  padding-top: 0 !important;
  padding-block-start: 0 !important;
}

.page-template header .home_class a span {
  color: #fff !important;
}

.tos-front-page .wp-site-blocks,
body:has(.tos-hero) .wp-site-blocks {
  padding-top: 0 !important;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a.wp-element-button:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.tos-container {
  max-width: var(--tos-maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading {
  font-family: var(--tos-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

/* .tos-eyebrow {
	font-family: var(--tos-narrow);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #e7d010;
}

.tos-eyebrow::before {
	content: "◆";
	font-size: 10px;
	color: var(--tos-red);
	flex-shrink: 0;
} */

.tos-eyebrow--dark {
  color: var(--tos-black);
}

.tos-eyebrow--large {
  font-size: 20px;
  color: #e7d010;
}

.wp-block-button.is-style-tos-ghost .wp-block-button__link {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.wp-block-button.is-style-tos-ghost .wp-block-button__link:hover {
  border-color: var(--tos-yellow) !important;
  color: var(--tos-yellow) !important;
}

.wp-block-button.is-style-tos-arrow .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.tos-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.tos-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tos-yellow-text {
  color: var(--tos-yellow);
}

.tos-outline-text {
  -webkit-text-stroke: 1px var(--tos-bone);
  color: transparent;
}

.tos-section {
  padding-block: 75px !important;
  margin-top: 0 !important;
}

.tos-contact-phone,
.tos-contact-email,
.tos-contact-address {
  color: inherit;
}

.tos-contact-phone:hover,
.tos-contact-email:hover {
  color: var(--tos-yellow);
}



/* ===== header.css ===== */

/* Touch of Shade — Header */

/* Strip parent theme spacing/background from template part wrapper */
.wp-site-blocks>.wp-block-template-part,
.wp-block-template-part {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.tos-mobile-bar {
  display: none;
}

.tos-header,
.tos-header.wp-block-group {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent !important;
  background-color: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  overflow: visible !important;
  transition: background 0.25s ease, background-color 0.25s ease;
}

.tos-front-page .tos-header,
body:has(.tos-hero) .tos-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent !important;
  background-color: transparent !important;
}

.tos-header.is-scrolled,
.tos-front-page .tos-header.is-scrolled,
body:has(.tos-hero) .tos-header.is-scrolled {
  background: rgba(0, 0, 0, 0.98) !important;
  background-color: rgba(0, 0, 0, 0.98) !important;
}
.tos-header.is-scrolled {
    background: #000;
}
.tos-header.is-scrolled .tos-header__inner {
  top: 2px;
}

.tos-header__inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px;
  padding-block: 0px;
  max-width: var(--tos-maxw);
  margin-inline: auto;
  padding-inline: 20px;
  width: 100%;
  overflow: visible !important;
  position: relative;
  top: 12px;
}

.tos-header__logo {
  flex: 0 0 auto;
  width: 200px;
  max-width: 200px;
  min-width: 200px;
  margin-right: 8px;
}

.tos-header__logo .wp-block-site-logo,
.tos-header__logo .custom-logo-link {
  display: block;
  width: 200px;
  max-width: 170px;
  line-height: 0;
}

.tos-header__logo img,
.tos-header__logo .wp-block-site-logo img,
.tos-header__logo .custom-logo {
  width: 100% !important;
  max-width: 112px !important;
  height: auto !important;
  display: block;
}

.tos-header__nav {
  flex: 0 0 auto;
  width: auto !important;
  max-width: none;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  min-width: 0;
  overflow: visible !important;
}

.tos-header__nav.wp-block-group {
  width: auto !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
}

.tos-header__nav .wp-block-navigation,
.tos-header__nav .wp-block-navigation.has-black-background-color,
.tos-header__nav .wp-block-navigation.has-text-color,
.tos-header__nav .wp-block-navigation__responsive-container,
.tos-header__nav .wp-block-navigation__responsive-container-content {
  background: transparent !important;
  background-color: transparent !important;
}

.tos-header__nav .wp-block-navigation {
  width: auto;
  justify-content: center;
  --wp--style--block-gap: 38px;
}

.tos-header__nav .wp-block-navigation__container,
.tos-header__nav ul.wp-block-navigation__container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 38px !important;
  column-gap: 38px !important;
}

.tos-header__nav .wp-block-navigation__container>.wp-block-navigation-item {
  flex-shrink: 0;
  margin: 0 !important;
}

.tos-header__nav .wp-block-navigation,
.tos-header__nav .wp-block-navigation.has-sm-font-size,
.tos-header__nav .wp-block-navigation-item,
.tos-header__nav .wp-block-navigation-item__label,
.tos-header__nav .wp-block-navigation-item__content,
.tos-header__nav .wp-block-navigation a {
  font-family: "Archivo Narrow", "Archivo Narrow", Arial, sans-serif !important;
  letter-spacing: 0.18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  font-style: normal !important;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.tos-front-page .tos-header__nav .wp-block-navigation-item__content:hover,
.tos-front-page .tos-header__nav .wp-block-navigation-item__content:focus {
  text-decoration: none;
}

.tos-front-page .tos-header__nav .wp-block-navigation-item__content:hover span {
  color: #f7de0d !important;
}

.tos-header__nav .wp-block-navigation-item__content {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-block: 36px;
  transition: color 0.2s ease;
}

.tos-header__nav .wp-block-navigation-item__content::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: 30px;
  width: 0;
  height: 2px;
  background: var(--tos-yellow);
  transition: width 0.3s ease;
}

.tos-header__nav .wp-block-navigation-item__content:hover,
.tos-header__nav .wp-block-navigation-item__content:focus {
  color: #fff !important;
}

body:not(.tos-front-page) .tos-header__nav .wp-block-navigation-item__content:hover,
body:not(.tos-front-page) .tos-header__nav .wp-block-navigation-item__content:focus {
  color: var(--tos-yellow) !important;
}

.tos-header__nav .wp-block-navigation-item__content:hover::after,
.tos-header__nav .current-menu-item>.wp-block-navigation-item__content::after,
.tos-header__nav .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content::after {
  width: 100%;
}

.tos-header__nav .current-menu-item>.wp-block-navigation-item__content,
.tos-header__nav .wp-block-navigation-item.current-menu-item>.wp-block-navigation-item__content {
  color: var(--tos-yellow) !important;
}

.tos-front-page .tos-header__nav .wp-block-navigation__container>.wp-block-navigation-item:first-child .wp-block-navigation-item__content {
  color: var(--tos-yellow) !important;
}

.tos-front-page .tos-header__nav .wp-block-navigation__container>.wp-block-navigation-item:first-child .wp-block-navigation-item__content::after {
  width: 100%;
}

.tos-header__nav .wp-block-navigation__submenu-icon svg {
  fill: #fff;
}

/* Default submenu fallback (non-mega / mobile) */
.tos-header__nav .wp-block-navigation__submenu-container:not(.tos-mega-menu__panel),
.tos-header__nav .wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container:not(.tos-mega-menu__panel) {
  background-color: rgba(0, 0, 0, 0.98) !important;
  border: 1px solid var(--tos-line) !important;
  min-width: 280px !important;
  padding: 8px 0 !important;
  color: #fff !important;
  z-index: 200 !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

.tos-header__nav .wp-block-navigation__submenu-container:not(.tos-mega-menu__panel) .wp-block-navigation-item__content {
  color: #fff !important;
  padding: 12px 24px !important;
}

.tos-header__nav .wp-block-navigation__submenu-container:not(.tos-mega-menu__panel) .wp-block-navigation-item__content::after {
  display: none !important;
}

/* Services parent — keep underline only on top-level, not when submenu open */
.tos-header__nav .wp-block-navigation>.wp-block-navigation-item.has-child>.wp-block-navigation-item__content::after,
.tos-header__nav .wp-block-navigation__container>.wp-block-navigation-item.has-child>.wp-block-navigation-item__content::after {
  bottom: -2px;
}

.tos-header__nav .wp-block-navigation-item.has-child:hover>.wp-block-navigation-item__content::after {
  width: 100%;
}

.tos-header__cta {
  flex: 0 0 auto;
  margin-left: 8px;
  position: relative;
}

.tos-header__cta .wp-block-button__link {
  background: var(--tos-red) !important;
  color: #fff !important;
  font-family: "Archivo Narrow", "Archivo Narrow", Arial, sans-serif !important;
  font-weight: 700;
  font-size: 15px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 13px 14px !important;
  border-radius: 0 !important;
  white-space: nowrap;
  border: none !important;
  -webkit-font-smoothing: antialiased;
}

.tos-mega-services-nav button {
  display: none !important;
}

.tos-mega-services-nav {
  position: relative;
}

.tos-mega-services-nav::before {
  position: absolute;
  font-family: "Font Awesome 6 Free";
  content: "\f078";
  /* width: 20px; */
  /* height: 20px; */
  top: 38px;
  right: -18px;
  font-size: 13px;
}

.tos-header__cta .wp-block-button__link:hover {
  opacity: 0.9;
  color: #fff !important;
}

header .home_class a span {
  color: var(--tos-yellow) !important;
}

/* Inner pages — solid header */
body:not(.tos-front-page):not(:has(.tos-hero)) .tos-header {
  position: relative;
  background: rgba(0, 0, 0, 0.98) !important;
  background-color: rgba(0, 0, 0, 0.98) !important;
  border-bottom: 1px solid var(--tos-line);
}

.tos-header__nav .wp-block-navigation__responsive-container-open {
  color: var(--tos-yellow);
}

.tos-header__nav .wp-block-navigation__responsive-container.is-menu-open {
  background: rgba(0, 0, 0, 0.98);
  padding: 24px;
}

.tos-header__nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__container {
  gap: 20px;
  align-items: flex-start;
}

.tos-header__nav .wp-block-navigation__responsive-container-close {
  color: var(--tos-yellow);
}

/* Desktop: always show inline navigation */
@media (min-width: 1261px) {
  .tos-header__nav .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: block;
    position: relative;
    background: transparent !important;
    overflow: visible !important;
  }

  .tos-header__nav .wp-block-navigation__responsive-container-open {
    display: none;
  }

  .tos-header__nav .wp-block-navigation__responsive-container-content {
    display: block !important;
    overflow: visible !important;
  }

  .tos-header__nav .wp-block-navigation__responsive-container-content .wp-block-navigation__container,
  .tos-header__nav .wp-block-navigation__responsive-container-content ul.wp-block-navigation__container {
    gap: 38px !important;
    column-gap: 38px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
  }

  .tos-header__nav .wp-block-navigation__container {
    overflow: visible !important;
  }

  .tos-header__nav .wp-block-navigation-item.has-child {
    position: relative;
  }

  .tos-header__nav .wp-block-navigation .has-child:not(.open-on-click):hover>.wp-block-navigation__submenu-container:not(.tos-mega-menu__panel),
  .tos-header__nav .wp-block-navigation .has-child:focus-within>.wp-block-navigation__submenu-container:not(.tos-mega-menu__panel) {
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    width: auto !important;
    height: auto !important;
  }

  .tos-header__nav .wp-block-navigation .has-child:not(.open-on-click):hover>.tos-mega-menu__panel,
  .tos-header__nav .wp-block-navigation .has-child:focus-within>.tos-mega-menu__panel {
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    width: min(1300px, calc(100vw - 40px)) !important;
    height: auto !important;
  }

  .tos-header__nav .tos-mega-menu__panel,
  .tos-header__nav .tos-mega-menu__panel.tos-mega-initialized {
    flex-direction: unset !important;
    align-items: stretch !important;
  }

  .tos-header__nav .tos-mega-menu__panel>* {
    flex: unset !important;
  }

  /* ── Services mega menu (reference design) ── */
  .tos-header__nav .tos-mega-services,
  .tos-header__nav .tos-mega-services-nav {
    position: static;
  }

  .tos-header__nav .tos-mega-services:hover>.wp-block-navigation-item__content,
  .tos-header__nav .tos-mega-services:focus-within>.wp-block-navigation-item__content,
  .tos-header__nav .tos-mega-services-nav:hover>.wp-block-navigation-item__content,
  .tos-header__nav .tos-mega-services-nav:focus-within>.wp-block-navigation-item__content {
    color: var(--tos-yellow) !important;
  }

  .tos-header__nav .tos-mega-services>.wp-block-navigation-item__content::after,
  .tos-header__nav .tos-mega-services-nav>.wp-block-navigation-item__content::after {
    display: none !important;
  }

  .tos-header__nav .tos-mega-services .wp-block-navigation__submenu-icon svg,
  .tos-header__nav .tos-mega-services-nav .wp-block-navigation__submenu-icon svg {
    fill: currentColor;
    width: 10px;
    height: 10px;
  }

  .tos-header__nav .tos-mega-menu__panel {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: 96px !important;
    transform: translateX(-50%) !important;
    width: min(1300px, calc(100vw - 40px)) !important;
    min-width: unset !important;
    max-width: 1300px;
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    border: none !important;
    border-top: 4px solid var(--tos-red) !important;
    box-shadow: 0 0 5px 1px rgba(91, 86, 86, 0.75) !important;
    padding: 25px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 52%) minmax(280px, 1fr);
    gap: 20px;
    align-items: stretch;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    z-index: 300 !important;
    list-style: none;
    margin: 0 !important;
  }

  .tos-header__nav .tos-mega-menu__panel::before {
    content: "";
    position: absolute;
    left: var(--tos-mega-caret-left, 43%);
    top: -11px;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    transform: rotate(45deg);
    background: #000;
    border-left: 3px solid var(--tos-red);
    border-top: 3px solid var(--tos-red);
    z-index: -1;
  }

  .tos-header__nav .tos-mega-menu__links {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 26px;
    row-gap: 0;
    width: 100%;
    min-width: 0;
    align-content: center;
  }

  .tos-header__nav .tos-mega-menu__col {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .tos-header__nav .tos-mega-menu__links .wp-block-navigation-item {
    display: block;
    width: 100%;
    margin: 0;
    min-width: 0;
  }

  .tos-header__nav .tos-mega-menu__links .wp-block-navigation-item__content,
   .tos-header__nav .tos-mega-menu__links .is-active {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px 15px 35px !important;
    position: relative;
    color: #fff !important;
    font-family: var(--tos-narrow);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(238, 238, 238, 0.14);
    transition: color 0.2s ease, background 0.2s ease;
    white-space: normal;
    line-height: 1.35;
  }

  .tos-header__nav .tos-mega-menu__links .wp-block-navigation-item__content::before,
    .tos-header__nav .tos-mega-menu__links .is-active::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    height: 12px;
    width: 12px;
    background-color: #f7de0d;
    outline: 2px solid #f7de0d;
    outline-offset: 2px;
  }

  .tos-header__nav .tos-mega-menu__links .wp-block-navigation-item__content::after {
    display: none !important;
  }

  .tos-header__nav .tos-mega-menu__links .wp-block-navigation-item__content:hover,
  .tos-header__nav .tos-mega-menu__links .wp-block-navigation-item__content:focus,
   .tos-header__nav .tos-mega-menu__links .is-active:hover {
    color: var(--tos-yellow) !important;
    background: rgba(253, 226, 12, 0.06) !important;
  }

  .tos-header__nav .tos-mega-menu__preview {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    background: var(--tos-ink);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .tos-header__nav .tos-mega-menu__preview-img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
  }

  .tos-header__nav .tos-mega-menu__links .wp-block-navigation-item__label {
    display: block;
    white-space: normal;
    line-height: 1.35;
  }
}

@media (max-width: 1260.98px) {
  .tos-header__nav .tos-mega-menu__preview {
    display: none !important;
  }

  .tos-header__nav .tos-mega-menu__panel {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    display: block !important;
    grid-template-columns: 1fr !important;
    border-top: none !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .tos-header__nav .tos-mega-menu__panel::before {
    display: none;
  }

  .tos-header__nav .tos-mega-menu__links {
    display: block;
  }
}



/* ===== components.css ===== */

/* Touch of Shade — Homepage & component sections */

/* Hero */
.tos-front-page main,
body:has(.tos-hero) main {
  margin-block-start: 0 !important;
  padding-block-start: 0 !important;
}

.tos-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
  display: flex;
  align-items: center;
  margin-block-start: 0 !important;
  padding-block-start: 0 !important;
}

.tos-hero.wp-block-cover {
  padding: 0 !important;
  min-height: 100vh !important;
}

.tos-hero .wp-block-cover__image-background {
  object-position: center right !important;
}

.tos-hero .wp-block-cover__background {
  opacity: 0 !important;
}

.tos-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.75) 100%);
}

.tos-hero::after {
  content: "";
  position: absolute;
  top: 120px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(253, 226, 12, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(253, 226, 12, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(120deg, transparent 0%, rgba(0, 0, 0, 0.35) 35%, #000 68%);
  -webkit-mask-image: linear-gradient(120deg, transparent 0%, rgba(0, 0, 0, 0.35) 35%, #000 68%);
}

.tos-hero .wp-block-cover__inner-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--tos-maxw);
  margin-inline: auto;
  padding: 155px 20px 100px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 100vh;
  box-sizing: border-box;
  left: 274px;
}

.tos-hero .tos-container,
.tos-hero .tos-hero-content {
  max-width: 980px;
  width: 100%;
}

.tos-hero .tos-eyebrow--large {
  font-family: "Archivo Narrow", var(--tos-narrow), Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #e7d010;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0;
}

.tos-hero .tos-eyebrow--large::before {
  display: none;
}

.tos-hero h1,
.tos-hero h1.has-hero-font-size {
  font-family: var(--tos-display);
  font-size: clamp(2.5rem, 5vw, 4.375rem);
  color: var(--tos-bone);
  letter-spacing: 0.005em;
  line-height: 1.14;
  margin-top: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 400;
}

.tos-hero h1 .tos-highlight {
  color: var(--tos-red);
  -webkit-text-stroke: 4px var(--tos-yellow);
  paint-order: stroke fill;
}

.tos-hero .tos-hero-sub {
  max-width: 676px;
  font-size: 18px;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.6;
}

.tos-hero .wp-block-buttons,
.tos-hero .tos-hero-ctas {
  gap: 18px;
  flex-wrap: wrap;
}

.tos-hero .wp-block-button__link {
  font-family: var(--tos-narrow);
  font-weight: 700;
  font-size: 15px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 13px !important;
  border-radius: 0 !important;
}

.tos-hero .is-style-fill .wp-block-button__link {
  background: var(--tos-red) !important;
  color: #fff !important;
  border: none !important;
}

.tos-hero .is-style-tos-ghost .wp-block-button__link {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

/* Stats */
.tos-stats {
  background: var(--tos-yellow);
  color: var(--tos-black);
  padding: 20px 0 !important;
  border-bottom: 2px solid var(--tos-black);
  position: relative;
  overflow: hidden;
}

.tos-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

.tos-stats .wp-block-columns,
.tos-stats .tos-stats-grid {
  position: relative;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.tos-stats .wp-block-columns>.wp-block-column,
.tos-stats .tos-stats-grid>.wp-block-column {
  flex-basis: auto !important;
  width: auto;
}

.tos-stats .wp-block-column {
  padding: 14px 30px;
  border-left: 2px solid rgba(0, 0, 0, 0.85) !important;
}

.tos-stats .wp-block-column:first-child {
  border-left: none;
}

.tos-stats .tos-stat-number {
  font-family: var(--tos-display);
  font-size: 60px;
  line-height: 1;
  color: var(--tos-black);
}

.tos-stats .tos-stat-label {
  font-family: var(--tos-narrow);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--tos-black);
}

/* LLumar — true 50/50 split like reference */
.tos-llumar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: #0a0a0a !important;
  overflow: hidden;
  padding: 0 !important;
  min-height: 520px;
}

.tos-llumar-left,
.tos-llumar .left-bx {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 5rem clamp(24px, 4vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #000;
  z-index: 2;
  overflow: hidden;
  padding-left: 32%;
}

.tos-llumar .tos-eyebrow--large {
  color: #e7d010;
  margin-bottom: 0;
}

.tos-llumar h2 {
  font-family: var(--tos-display);
  font-size: clamp(1.75rem, 3.2vw, 3.875rem);
  color: var(--tos-bone);
  line-height: 1.14;
  margin: 15px 0 14px;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 100%;
}

.tos-llumar-sub {
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
  font-size: 1.125rem;
  max-width: 100%;
}

.tos-llumar-sub strong {
  font-weight: 700;
}

.tos-llumar-desc {
  max-width: 560px;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 11px;
  color: #fff;
  line-height: 1.6;
}

.tos-llumar-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.tos-llumar-ctas .wp-block-button__link {
  font-family: var(--tos-narrow);
  font-weight: 700;
  font-size: 15px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 13px !important;
  border-radius: 0 !important;
  background: var(--tos-red) !important;
  color: #fff !important;
}

.tos-llumar .tos-llumar-sub p strong {
  text-transform: capitalize !important;
}

.tos-llumar-visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  height: 100%;
  margin: 0;
  z-index: 1;
}

.tos-llumar-visual .tos-llumar-photo,
.tos-llumar-visual .wp-block-image.tos-llumar-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  max-width: none;
  width: 100%;
  height: 100%;
}

.tos-llumar-visual .tos-llumar-photo img,
.tos-llumar-visual .wp-block-image.tos-llumar-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: left center;
}

@media (max-width: 980px) {
  .tos-llumar {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tos-llumar-left,
  .tos-llumar .left-bx {
    grid-column: 1;
    grid-row: 1;
    padding: 90px clamp(20px, 4vw, 40px) 40px;
  }

  .tos-llumar-visual {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    min-height: 360px;
    height: 360px;
  }

  .tos-llumar-visual .tos-llumar-photo,
  .tos-llumar-visual .wp-block-image.tos-llumar-photo {
    position: relative;
    inset: auto;
    height: 360px;
  }
}

@media (max-width: 880px) {

  .tos-stats .wp-block-columns,
  .tos-stats .tos-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
}

@media (max-width: 480px) {

  .tos-stats .wp-block-columns,
  .tos-stats .tos-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* Marquee */
.tos-marquee {
  background: var(--tos-red);
  color: #fff;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  overflow: hidden;
  height: 80px;
  display: flex;
  margin-top: 0 !important;
  align-items: center;
}

.tos-marquee__track {
  display: flex;
  gap: 54px;
  animation: tos-scroll 30s linear infinite;
  white-space: nowrap;
  padding-right: 54px;
}

.tos-marquee__track .tos-marquee__item,
.tos-marquee__track span {
  font-family: var(--tos-display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 54px;
  margin: 0;
  white-space: nowrap;
}

.tos-marquee__track .tos-marquee__item::after,
.tos-marquee__track span::after {
  content: "✦";
  font-size: 18px;
  margin-left: 54px;
}

@keyframes tos-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Services grid */
.tos-services {
  background: var(--tos-ink);
  padding: 140px 0 110px !important;
  margin-top: 0 !important;
}

.tos-services-head {
  margin-bottom: 40px;
  text-align: center;
}

.tos-services h2 {
  font-family: var(--tos-display);
  font-size: clamp(2rem, 4.5vw, 4.0625rem);
  color: var(--tos-bone);
  margin-top: 16px;
  text-align: center;
  max-width: 1229px;
  margin-inline: auto;
  line-height: 1.08;
  font-weight: 400;
  text-transform: uppercase;
}

.tos-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tos-service-card {
  background: #0f0f0f;
  border: 1px solid var(--tos-line);
  overflow: hidden;
  position: relative;
  padding: 10px;
  transition: transform 0.35s ease, border-color 0.35s ease;
  margin-top: 0;
}

.tos-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--tos-red) !important;
}

.tos-service-card .tos-service-num {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: var(--tos-red);
  font-family: var(--tos-display);
  font-size: 40px;
  -webkit-text-stroke: 2px #fff;
  color: transparent !important;
  z-index: 3;
  line-height: 1;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tos-service-card .tos-service-image,
.tos-service-card .wp-block-image.tos-service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: #222 center / cover no-repeat;
}

.tos-service-card .tos-service-image img,
.tos-service-card .wp-block-image.tos-service-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tos-service-card h3 {
  font-family: var(--tos-display);
  font-size: 34px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.tos-service-card .tos-service-body {
  padding: 25px 20px;
}

.tos-service-card .tos-service-body p {
  color: #fff;
  margin-bottom: 20px;
}

.tos-service-card .tos-more-link {
  font-family: var(--tos-narrow);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tos-yellow);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--tos-yellow);
  padding-bottom: 4px;
  margin-bottom: 0 !important;
}

.tos-service-card .tos-more-link a {
  color: #e7d010 !important;
  text-decoration: none;
}

.tos-service-card .tos-more-link:hover {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 980px) {
  .tos-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tos-services-grid {
    grid-template-columns: 1fr;
  }

  .tos-services {
    padding: 90px 0 70px !important;
  }
}

/* Mid CTA — reference HTML structure (not wp:cover) */
.tos-midcta {
  position: relative;
  text-align: center;
  min-height: 70vh;
  padding: 120px 0 100px !important;
  overflow: hidden;
  background: #000;
}

.tos-midcta::before {
  content: "";
  position: absolute;
  inset: -10% 0;
  background: url("https://www.touchofshadetint.com/wp-content/uploads/2026/06/photo-1494976388531-d1058494cdd8.jpg") center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.tos-midcta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.92));
  z-index: 1;
  pointer-events: none;
}

.tos-midcta>.tos-container,
.tos-midcta .tos-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.tos-midcta .tos-reveal {
  opacity: 1;
  transform: none;
}

.tos-midcta .tos-eyebrow--large {
  color: #e7d010;
  font-size: 20px;
  margin-bottom: 0;
}

.tos-midcta-line1,
.tos-midcta h2.tos-midcta-line1 {
  font-family: var(--tos-display);
  font-size: clamp(40px, 7vw, 90px);
  color: #ffffff;
  max-width: 1200px;
  margin: 18px auto 0;
  line-height: 1.04;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  -webkit-text-stroke: unset;
  -webkit-text-fill-color: #ffffff;
}

.tos-midcta-line2,
.tos-midcta h2.tos-midcta-line2 {
  font-family: var(--tos-display);
  font-size: clamp(40px, 7vw, 90px);
  color: #ce151b;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.04;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  -webkit-text-stroke: unset;
  -webkit-text-fill-color: #ce151b;
}

.tos-midcta .tos-midcta-desc {
  max-width: 100%;
  margin: 20px auto;
  color: #fff;
  line-height: 1.6;
  font-size: 16px;
}

.tos-midcta-btn {
  margin-bottom: 0 !important;
}

.tos-midcta-btn .wp-block-button__link {
  font-family: var(--tos-narrow);
  font-weight: 700;
  font-size: 15px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 13px !important;
  border-radius: 0 !important;
  background: var(--tos-red) !important;
  color: #fff !important;
}

.tos-midcta-sub,
.tos-midcta-sub.wp-block-columns {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 36px !important;
  margin-top: 96px !important;
  margin-bottom: 0 !important;
  padding-top: 50px !important;
  text-align: left !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative;
  z-index: 2;
  width: 100% !important;
  max-width: 100% !important;
  align-items: start !important;
}

.tos-midcta-sub .wp-block-column {
  flex-basis: unset !important;
  flex-grow: unset !important;
  width: auto !important;
  min-width: 0;
  text-align: left !important;
}

.tos-midcta-sub h4,
.tos-midcta-sub .wp-block-heading {
  font-family: var(--tos-display);
  font-size: 28px;
  color: var(--tos-yellow);
  letter-spacing: 0.04em;
  margin: 0 0 14px;
  font-weight: 400;
  line-height: 1.05;
  text-align: left !important;
  text-transform: uppercase;
}

.tos-midcta-sub p,
.tos-midcta-sub .wp-block-paragraph {
  color: #fff;
  margin: 0;
  text-align: left !important;
  line-height: 1.6;
}

@media (max-width: 880px) {

  .tos-midcta-sub,
  .tos-midcta-sub.wp-block-columns {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    margin-top: 48px !important;
  }
}

/* Why section */
.tos-why {
  background: var(--tos-ink);
  padding: 140px 0 !important;
  text-align: center;
}

.tos-why-head {
  margin-bottom: 40px;
}

.tos-why h2 {
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  color: var(--tos-bone);
  margin-top: 22px;
  max-width: 980px;
  margin-inline: auto;
  line-height: 1.08;
  font-weight: 400;
  text-transform: uppercase;
}

.tos-why-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
  align-items: stretch;
}

.tos-why-grid>.wp-block-group.tos-why-card {
  margin-block-start: 0 !important;
  min-width: 0;
}

.tos-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--tos-red);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: border-color 0.3s ease, background 0.3s ease;
  background: var(--tos-red);
  flex-shrink: 0;
}

.tos-why-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s ease;
}

.tos-why-card:hover .tos-why-icon {
  border-color: var(--tos-black);
  background: var(--tos-black);
}

.tos-why-card:hover .tos-why-icon svg {
  stroke: var(--tos-yellow);
}

.tos-why-card {
  background: #0f0f0f;
  border: 1px solid var(--tos-line);
  padding: 20px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.tos-why-card:hover {
  background: var(--tos-red);
  border-color: var(--tos-red);
}

.tos-why-card:hover .tos-why-index {
  color: #000;
  opacity: 0.6;
}

.tos-why-card h4 {
  font-family: var(--tos-display);
  font-size: 26px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.05;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.tos-why-card p {
  color: #fff;
  transition: color 0.3s ease;
  margin-top: 0;
}

.tos-why-index {
  font-family: var(--tos-display);
  font-size: 60px;
  color: #2f2f2f;
  line-height: 1;
  position: absolute;
  top: -5px;
  right: 14px;
  margin: 0;
  transition: color 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 980px) {
  .tos-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .tos-why-grid {
    grid-template-columns: 1fr;
  }
}

/* Stickers / Team */
.tos-team .wp-block-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 !important;
  align-items: center !important;
}

.tos-team .wp-block-column {
  min-width: 0;
}

.tos-team .tos-team-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 560px;
  width: 100%;
  background: var(--tos-yellow);
}

.tos-team .tos-team-visual .tos-team-photo,
.tos-team .tos-team-visual .wp-block-image.tos-team-photo {
  position: absolute;
  inset: 6% 6% -6% -6%;
  z-index: 1;
  margin: 0;
  max-width: none;
  width: auto;
  height: auto;
}

.tos-team .tos-team-visual .tos-team-photo img,
.tos-team .tos-team-visual .wp-block-image.tos-team-photo img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: left center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tos-team .tos-team-tag {
  position: absolute;
  right: 4px;
  top: 3px;
  background: var(--tos-yellow);
  color: var(--tos-black);
  padding: 8px 13px;
  font-family: var(--tos-display);
  font-size: 24px;
  z-index: 2;
  margin: 0;
}

.tos-team h2 {
  font-size: 60px;
  line-height: 68px;
  color: var(--tos-bone);
  margin: 15px 0 5px;
}

.tos-team h2 .tos-team-highlight {
  color: var(--tos-red);
}

.tos-team .tos-team-desc,
.tos-team .tos-team-desc p {
  color: #ffffff;
  max-width: 700px;
  margin-bottom: 34px;
  line-height: 1.6;
}

.tos-team .tos-eyebrow--large {
  color: #e7d010;
}

@media (max-width: 880px) {
  .tos-team .wp-block-columns {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }
}

/* Testimonials */
.tos-testimonials {
  background: var(--tos-yellow) !important;
  color: var(--tos-black);
  padding: 120px 0 !important;
  position: relative;
}

.tos-testimonials.has-bone-background-color {
  background: var(--tos-yellow) !important;
}

.tos-testi-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}

.tos-testimonials h2 {
  color: var(--tos-black);
  font-size: clamp(40px, 5vw, 76px);
  margin-top: 18px;
  max-width: 720px;
  line-height: 1;
}

.tos-testimonials .tos-eyebrow,
.tos-testimonials .tos-eyebrow--dark {
  color: var(--tos-black);
}

.tos-testi-track-wrap {
  overflow: hidden;
  cursor: grab;
  margin: 0;
}

.tos-testi-track.wp-block-group {
  display: flex;
  margin: 0;
}

.tos-testi-track-wrap.is-dragging {
  cursor: grabbing;
}

.tos-testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.tos-review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: #000;
  color: #e8e8e8;
  padding: 25px;
  position: relative;
  border: 1px solid var(--tos-black);
}

.tos-review-card .tos-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: #fff;
}

.tos-review-card .tos-stars svg {
  width: 28px;
  height: 28px;
  fill: orange;
  flex-shrink: 0;
}

.tos-review-card .tos-review-text {
  margin-bottom: 28px;
  line-height: 1.7;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.tos-review-card .tos-review-text p {
  margin: 0;
  color: #fff;
}

.tos-review-card .tos-who {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #222;
  padding-top: 18px;
}

.tos-review-card .tos-who b {
  display: block;
  font-family: var(--tos-display);
  font-size: 25px;
  color: #fff;
  letter-spacing: 0.04em;
  font-weight: 300;
  text-transform: uppercase;
}

.tos-review-card .tos-who small {
  display: block;
  font-family: var(--tos-narrow);
  font-size: 16px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tos-yellow);
  font-weight: 600;
}

.tos-testi-nav {
  display: flex;
  gap: 10px;
}

.tos-testi-nav .wp-block-buttons {
  display: flex;
  gap: 10px;
}

.tos-testi-nav button,
.tos-testi-nav .wp-block-button__link {
  width: 45px;
  height: 45px;
  border: 1.5px solid var(--tos-black) !important;
  background: transparent !important;
  color: var(--tos-black) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 0 !important;
  padding: 0 !important;
  min-height: 45px;
  font-size: 22px;
  line-height: 1;
}

.tos-testi-nav button:hover,
.tos-testi-nav .wp-block-button__link:hover {
  background: var(--tos-black) !important;
  color: var(--tos-yellow) !important;
}

@media (max-width: 980px) {
  .tos-review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 640px) {
  .tos-testi-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tos-review-card {
    flex: 0 0 100%;
  }
}

/* Newsletter / Final CTA */
.tos-newsletter {
  position: relative;
}

.tos-final-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  width: 100%;
}

.tos-final-grid>.wp-block-group.tos-map-block,
.tos-final-grid>.wp-block-group.tos-news-panel {
  margin-block-start: 0 !important;
  min-width: 0;
}

.tos-map-block {
  height: 100%;
  min-height: 450px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.tos-map-block .tos-map-embed,
.tos-map-block .map-block {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 450px;
  margin: 0;
}

.tos-map-block iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  display: block;
}

.tos-news-panel {
  background: #fff;
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  height: 100%;
}

.tos-news-panel h3,
.tos-news-panel h3.wp-block-heading {
  font-family: var(--tos-display);
  font-size: 35px;
  color: #000;
  margin: 0 0 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.tos-news-panel h3::after,
.tos-news-panel h3.wp-block-heading::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: #090808;
  margin-top: 14px;
}

.tos-news-panel>p,
.tos-news-panel>.wp-block-paragraph {
  color: #000 !important;
  margin: 0 0 20px !important;
  font-size: 16px;
  line-height: 1.5;
}

.tos-news-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  margin-top: auto;
}

.tos-main-form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  width: 100%;
}

.tos-news-form input[type="text"],
.tos-news-form input[type="email"] {
  background: #fff;
  border: 1px solid rgba(42, 42, 42, 0.24);
  padding: 0 10px;
  font-family: var(--tos-narrow);
  font-size: 17px;
  color: #000;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.2s ease;
  height: 50px;
  width: 100%;
  box-sizing: border-box;
}

.tos-news-form input::placeholder {
  color: #242424;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  font-size: 16px;
}

.tos-news-form input:focus {
  border-color: var(--tos-yellow);
}

.tos-news-form .tos-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 14px;
  background: var(--tos-red);
  color: #fff;
  font-family: var(--tos-narrow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
  margin-top: auto;
  margin-left: auto;
  width: fit-content;
}

.tos-news-form .tos-btn:hover {
  background: #b01218;
}

/* Newsletter plugin form inside homepage panel */
.tos-news-panel .tnp-subscription {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: auto;
  margin: 0;
}

.tos-news-panel .tnp-subscription form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  width: 100%;
}

div.tnp-subscription,
form.tnp-subscription,
form.tnp-profile {
  max-width: 100% !important;
}

.tos-news-panel .tnp-subscription .tnp-field {
  margin: 0;
}

.tos-news-panel .tnp-subscription label {
  display: block;
  font-family: var(--tos-narrow);
  font-size: 16px;
  font-weight: 700;
  color: #242424;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.tos-news-panel .tnp-subscription input[type="text"],
.tos-news-panel .tnp-subscription input[type="email"] {
  background: #fff;
  border: 1px solid rgba(42, 42, 42, 0.24);
  padding: 0 10px;
  font-family: var(--tos-narrow);
  font-size: 17px;
  color: #000;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.2s ease;
  height: 50px;
  width: 100% !important;
  box-sizing: border-box;
}

.tos-news-panel .tnp-subscription input[type="text"]:focus,
.tos-news-panel .tnp-subscription input[type="email"]:focus {
  border-color: var(--tos-yellow);
}

.tos-news-panel .tnp-subscription .tnp-field-button,
.tos-news-panel .tnp-subscription .tnp-field.tnp-field-button {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.tos-news-panel .tnp-subscription .tnp-submit,
.tos-news-panel .tnp-subscription input.tnp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 14px;
  background: var(--tos-red) !important;
  color: #fff !important;
  font-family: var(--tos-narrow);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
  margin-top: auto;
  margin-left: auto;
  width: fit-content !important;
  height: auto !important;
}

.tos-news-panel .tnp-subscription .tnp-submit:hover {
  background: #b01218 !important;
}

.tos-site-time-block {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.tos-final-grid>.wp-block-html {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.tos-site-time-block dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: var(--tos-red);
  padding: 15px;
  gap: 7px;
  margin: 0;
  border-top: 4px solid var(--tos-red);
}

.tos-site-time-block dl dt,
.tos-site-time-block dl dd {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  /* font-family: var(--tos-narrow); */
  margin: 0;
}

.tos-site-time-block dl dt {
  position: relative;
}

.tos-site-time-block dl dt:not(:first-child) {
  margin-left: 30px;
  padding-left: 25px;
}

.tos-site-time-block dl dt:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #fff;
}

body .tos-footer .wp-block-navigation,
body .tos-footer .wp-block-navigation a,
body .tos-footer .wp-block-navigation .wp-block-navigation-item__label {
  font-family: var(--tos-body) !important;
}

.tos-site-time-block dl dd.closed,
.tos-site-time-block .closed {
  color: #fff;
}

@media (max-width: 1366px) {
  .tos-hero .wp-block-cover__inner-container {
    left: 0;
  }

  .tos-llumar-left,
  .tos-llumar .left-bx {
    padding-left: 6%;
  }

}

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

  .tos-map-block,
  .tos-map-block iframe,
  .tos-news-panel {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .tos-stats .wp-block-columns {
    flex-wrap: wrap !important;
  }

  .tos-stats .wp-block-column {
    flex-basis: 50% !important;
  }

  .tos-review-card {
    flex: 0 0 calc(50% - 12px);
  }

  .tos-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.15;
  }
}

@media (max-width: 640px) {
  .tos-stats .wp-block-column {
    flex-basis: 100% !important;
    border-left: none;
  }

  .tos-review-card {
    flex: 0 0 100%;
  }

  .tos-hero .wp-block-cover__inner-container {
    padding-top: 120px;
  }
}













/* ===== inner-pages.css ===== */

/* Touch of Shade — Inner pages (theme overrides; reference CSS loaded separately) */

.tos-page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.tos-page-hero .wp-block-cover__inner-container {
  position: relative;
  z-index: 3;
}

.tos-page-hero .tos-breadcrumb {
  font-family: var(--tos-narrow);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tos-mute);
  margin-bottom: 20px;
}

.tos-page-hero .tos-breadcrumb a {
  color: var(--tos-yellow);
}

.tos-timeline {
  background-size: cover;
  background-position: center;
  position: relative;
}

.tos-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.tos-timeline>.wp-block-group {
  position: relative;
  z-index: 1;
}

.tos-grid-card {
  background: var(--tos-ink-2);
  border: 1px solid var(--tos-line);
  padding: 32px;
}

.tos-grid-card h2,
.tos-grid-card h3 {
  color: var(--tos-yellow);
  font-size: 28px;
  margin-bottom: 12px;
}

.tos-contact-section .wp-block-column {
  padding: 24px;
}

.tos-contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.tos-contact-info-item .tos-icon {
  color: var(--tos-red);
  font-size: 20px;
  min-width: 24px;
}

.tos-error-404 {
  text-align: center;
  padding: 80px 20px;
  min-height: auto;
  display: block;
}

.tos-error-404 h2,
.tos-error-404 .wp-block-heading.has-text-align-center {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-align: center;
}

.tos-error-404 p {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 18px;
  color: #ccc;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
}

.tos-error-404 .wp-block-buttons {
  justify-content: center;
  gap: 12px;
}

.tos-thank-you,
.tos-privacy {
  padding: 80px 0;
}

.tos-privacy h1,
.tos-privacy>.wp-block-heading {
  display: none;
}

.tos-privacy p,
.tos-privacy li,
.tos-privacy .wp-block-paragraph {
  color: #ccc;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.tos-privacy h2,
.tos-privacy h3,
.tos-privacy .wp-block-heading {
  color: var(--tos-yellow);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.tos-thank-you h2,
.tos-thank-you .wp-block-heading {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-align: center;
}

.tos-thank-you p {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  text-align: center;
}

.tos-thank-you .wp-block-group {
  max-width: 700px;
  margin-inline: auto;
}

.tos-privacy .wp-block-group {
  max-width: 800px;
  margin-inline: auto;
}

/* Inner page sections — design parity */
.tos-inner-page .tos-section {
  padding: 65px 0;
}

.benefits-section {
  padding-bottom: 100px;
}

.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefits-section .benefits-grid.wp-block-columns {
  flex-wrap: nowrap;
}

.benefits-section .benefits-grid>.wp-block-column {
  flex-basis: auto !important;
  flex-grow: 0;
  width: auto;
}

.benefit-card,
.type-card {
  background: #0c0c0c;
  border: 1px solid var(--tos-line);
  border-top: 3px solid var(--tos-yellow);
  padding: 18px;
  height: 100%;
}

.benefit-card h3,
.benefit-card h4,
.type-card h3 {
  color: var(--tos-bone);
  margin-bottom: 12px;
}

.commercial-image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.commercial-image .wp-block-cover__inner-container {
  display: flex;
  align-items: center;
  min-height: 420px;
}

.commercial-image .text-block {
  text-align: left;
  background: rgba(255, 255, 255, 0.9);
  padding: 25px;
  width: 100%;
  max-width: 700px;
}

.commercial-image .text-block h2 {
  color: #000 !important;
  text-align: left;
}

.commercial-image .text-block p,
.commercial-image .text-block li {
  color: #000;
}

.new-list2 li::before {
  background-color: #000;
  outline: 2px solid #000;
}

.Truck-block .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.Truck-block .info-grid.wp-block-columns {
  flex-wrap: nowrap;
}

.Truck-block .info-box {
  background: #1c1c1c;
  padding: 15px;
}

.Truck-block .info-box img {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

.Truck-block .info-box p {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-top: 12px;
}

.site-cta {
  background: var(--tos-ink-2);
  border-top: 5px solid var(--tos-yellow);
  text-align: center;
}

.site-cta h2 {
  color: #fff;
  margin-bottom: 15px;
}

.site-cta p {
  max-width: 850px;
  margin-inline: auto;
  margin-bottom: 15px;
}

.types__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.types__grid.wp-block-columns {
  flex-wrap: nowrap;
}

.intro .intro__grid .intro__img img {
  width: 100%;
  height: auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 35px;
}

.projects-grid.wp-block-columns {
  flex-wrap: nowrap;
}

.project-item {
  background: #151514;
  padding: 15px;
  border: 1px solid #181717;
}

.project-item img {
  height: 350px !important;
  object-fit: cover;
  width: 100%;
}

.project-item h3 {
  font-size: 23px;
  text-align: center;
  margin-top: 22px;
}

.coomaon-parallax {
  min-height: 450px;
}

.coomaon-parallax .text-block {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.coomaon-parallax .text-block h2 {
  color: #fff;
}

.process-section .process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.process-section .step {
  background: #0c0c0c;
  border: 1px solid var(--tos-line);
  padding: 24px;
  height: 100%;
}

.process-section .step-num {
  font-family: var(--tos-display);
  font-size: 2rem;
  color: var(--tos-yellow);
  margin-bottom: 8px;
}

.wash-section2 .info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.wash-section2 .info-box {
  background: #1c1c1c;
  padding: 24px;
  border: 1px solid var(--tos-line);
}

.wash-section2 .info-box h3 {
  color: var(--tos-yellow);
  margin-bottom: 12px;
}

@media (max-width: 1024px) {

  .benefits-section .benefits-grid,
  .types__grid,
  .Truck-block .info-grid,
  .projects-grid,
  .wash-section2 .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-section .benefits-grid.wp-block-columns,
  .types__grid.wp-block-columns,
  .Truck-block .info-grid.wp-block-columns,
  .projects-grid.wp-block-columns {
    flex-wrap: wrap;
  }

  .tos-llumar {
    grid-template-columns: 1fr;
  }

  .tos-llumar-visual .tos-llumar-photo,
  .tos-llumar-visual .wp-block-image.tos-llumar-photo {
    position: inherit !important;
  }

  .tos-llumar-visual {
    grid-column: inherit !important;
    grid-row: inherit !important
  }
}

@media (max-width: 640px) {

  .benefits-section .benefits-grid,
  .types__grid,
  .Truck-block .info-grid,
  .projects-grid,
  .process-section .process-steps,
  .wash-section2 .info-grid {
    grid-template-columns: 1fr;
  }
}



/* ===== mobile.css ===== */

/* Touch of Shade — Mobile responsive */
@media (max-width: 1260.98px) {
  .tos-mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    position: relative;
    z-index: 101;
  }

  .tos-mobile-bar a,
  .tos-mobile-bar p a {
    font-family: var(--tos-narrow);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 12px 0;
    background: var(--tos-red);
    color: #fff;
    transition: background 0.25s;
    display: block;
  }

  .tos-mobile-bar p {
    margin: 0;
  }

  .tos-mobile-bar a+a,
  .tos-mobile-bar p+p a {
    background: #faea47;
    color: #000;
  }

  .tos-header__nav.tos-header__nav--desktop {
    display: none !important;
  }

  .tos-header__cta--desktop {
    display: none !important;
  }

  .tos-front-page .tos-header,
  body:has(.tos-hero) .tos-header {
    top: 0px;
  }

  .tos-front-page .tos-header,
  body:has(.tos-hero) .tos-header {
    position: relative;
    background: transparent !important;
  }

  .tos-front-page .tos-header.is-scrolled,
  body:has(.tos-hero) .tos-header.is-scrolled {
    background: rgba(0, 0, 0, 0.98) !important;
  }

  body:not(.tos-front-page):not(:has(.tos-hero)) .tos-header {
    position: relative !important;
    top: 0;
    background: rgba(0, 0, 0, 0.98) !important;
  }
}

@media (max-width: 1200.98px) {
  .tos-llumar .wp-block-columns {
    flex-direction: column !important;
  }
}

@media (max-width: 980px) {
  .tos-services .wp-block-columns {
    flex-wrap: wrap !important;
  }

  .tos-services .wp-block-column {
    flex-basis: 50% !important;
  }

  .tos-team .wp-block-columns {
    flex-direction: column !important;
  }

  .tos-why .wp-block-columns {
    flex-wrap: wrap !important;
  }

  .tos-why .wp-block-column {
    flex-basis: 50% !important;
  }
}

@media (max-width: 600px) {

  .tos-services .wp-block-column,
  .tos-why .wp-block-column {
    flex-basis: 100% !important;
  }
}



/* ===== reference-mobile-ui.css ===== */

.mobile-nav {
  display: none;
}

body {
  margin: 0px;
  padding: 0px;
}

@media (max-width: 1260.98px) {
  .nav-links {
    display: none !important;
  }

  #nav .btn {
    display: none;
  }

  #nav {
    position: unset !important;
    padding: 20px 0px;
  }


  body.is-home .hero .scrim {
    display: none;
  }

  .mobile-nav {
    display: grid;
  }

  .mobile-nav a+a {
    background: #faea47;
    color: #000;
  }

  .mobile-nav a {
    --bg: #ce151b;
    --fg: #fff;
    font-family: var(--narrow);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 12px 0px;
    background: var(--bg);
    transition: transform 0.25s, background 0.25s;
  }

  .mobile-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  body.is-home .hero .container {
    padding: 0px;
  }

  body.is-home .hero-content {
    display: none;
  }


}

@media (max-width: 1200.98px) {
  body.is-home .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.is-home .llumar-grid {
    grid-template-columns: 1fr;
  }

  body.is-home .llumar-visual {
    height: 100%;
    width: 100%;
    max-width: 100%;
    position: unset;
    padding: 16px;
  }

  body.is-home .left-bx {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  body.is-home .llumar .eyebrow {
    justify-content: center;
    width: 100%;
  }

  body.is-home .llumar h2 {
    font-size: 35px;
    line-height: normal;
    text-align: center;
  }

  body.is-home .llumar .desc {
    max-width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }

  .left-bx p {
    text-align: center;
  }

  body.is-home .llumar-ctas {
    justify-content: center;
    width: 100%;
    align-items: center;
  }

  body.is-home .marquee {
    height: 50px;
  }

  body.is-home .marquee-track span {
    font-size: 25px;
  }

  body.is-home .services-head h2 {
    font-size: 35px;
  }

  body.is-home .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.is-home .midcta h2 {
    margin-bottom: 10px;
    font-size: 50px;
    line-height: normal;
  }

  body.is-home .stickers-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  body.is-home .stickers-visual {
    max-width: 100%;
    width: 100%;
    background: unset;
    height: 400px;
  }

  body.is-home .stickers-visual .tag {
    display: none;
  }

  body.is-home .stickers-visual .img {
    position: unset;
    inset: unset;
    height: 400px;
  }

  body.is-home .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.is-home .review {
    flex: 0 0 calc((100% - 0px) / 1);
  }

  body.is-home .final-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.is-home .new-footer-grid {
    grid-template-columns: 1fr;
  }

  body.is-home .new-footer-col:nth-last-child(2)::before {
    display: none;
  }

  body.is-home .new-footer-col:nth-last-child(2)::after {
    display: none;
  }

  .new-footer-grid .new-footer-col:first-child {
    display: none;
  }

  .footer-col-section h2 {
    text-align: center;
  }

  .new-footer-col ul li {
    margin-bottom: 25px;
    text-align: center;
  }

  .new-footer-col:nth-last-child(2) {
    width: 100% !important;
    max-width: 100% !important;
    left: unset !important;
  }
}

@media (max-width: 991.98px) {
  .page-title h1 br {
    display: none;
  }

  #slick-header {
    padding: 39px 0px !important;
  }

  body.page-commercial-wraps .logo {
    width: 35%;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .slick-header {
    padding: 30px 0px !important;
  }

  body.page-window-tinting .logo {
    width: 35%;
  }

  body.page-book-appointment .submit-btn-container {
    max-width: 100%;
    margin-left: auto;
  }

  body.page-book-appointment .submit-btn-container .btn {
    max-width: 100% !important;
  }

  body.page-book-appointment .container {
    padding-inline: 5px;
  }

  body.page-book-appointment .form-wrapper h2 {
    font-size: 35px;
  }

  body.page-book-appointment .appointment-section {
    padding: 40px 0;
  }

  body.page-book-appointment .logo {
    width: 35%;
  }

  body.page-book-appointment .form-wrapper h2 {
    font-size: 45px;
  }

  body.page-book-appointment .form-row {
    grid-template-columns: 1fr;
  }

  body.page-book-appointment .form-wrapper .intro-text {
    margin-bottom: 20px;
  }

  .form-row2 {
    grid-template-columns: 1fr !important;
  }

  .form-group2 {
    grid-template-columns: 1fr !important;
  }

  .fomr-grid {
    display: flex;
    flex-direction: column;
  }

  .contact-us .right {
    padding: 1.5rem 1rem;
    order: -2;
  }

  .contact-us .right {
    padding: 1.5rem 1rem;
  }

  .contact-us .pxl-item-inner {

    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .contact-us .main-form {
    grid-template-columns: 1fr;
  }

  body.page-contact .logo {
    width: 35%;
  }

  body.page-reviews .logo {
    width: 35%;
  }

  .main-grid-block {
    row-gap: 40px;
    position: relative;
    flex-direction: column;
  }

  .grid-card {
    width: 100%;
  }

  .main-grid-block::after {
    display: none;
  }

  .grid-card::before {
    display: none;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.page-about .logo {
    width: 30% !important;
  }

  #nav {
    padding: 15px 0px;
  }

  .slick-header {
    padding: 45px 0px !important;
  }

  .page-title h1 {
    font-size: 40px;
  }

  .section-header h2 {
    font-size: 40px;
  }

  body.page-about .about-intro .visual .main-img {
    height: auto;
  }

  body.page-about .about-intro h2 {
    font-size: 40px;
  }

  body.page-about .about-intro-grid {
    gap: 20px;
  }

  .inner-pages section {
    padding: 40px 0px;
  }

  .new-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-section-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  body.page-projects .logo {
    width: 15%;
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-item h3 {
    font-size: 20px;
  }

  .coomaon-parallax {
    height: auto;
  }

  .coomaon-parallax .text-block .section-header h2 {
    line-height: normal;
  }

  .info-box {
    padding: 10px !important;
  }

  .page-title h1 {
    font-size: 35px;
  }

  .wash-section2 .info-box h3 {
    font-size: 21px;
  }

  body.page-commercial-wraps .section-header h2 {
    font-size: 35px;
  }

  body.page-commercial-wraps section {
    padding: 40px 0 !important;
  }

  body.page-vinyl-wraps .logo {
    width: 35%;
  }

  .section-header h2 {
    font-size: 35px;
    line-height: normal;
  }

  body.page-vinyl-wraps .intro__img-corner-tl {
    display: none;
  }

  body.page-vinyl-wraps .reveal-right {
    transform: unset;
  }

  body.page-vinyl-wraps .intro {
    padding-block: 3rem;
  }

  section.types {
    padding-bottom: 100px;
  }

  .flex-list {
    flex-direction: column;
  }

  .flex-list li {
    width: 100%;
  }

  body.page-vinyl-wraps .reveal-left {
    transform: unset;
  }

  .commercial-image .section-header h2 {
    line-height: normal;
  }

  body.page-paint-protection .logo {
    width: 35%;
  }

  .page-title h1 {
    font-size: 30px;
  }

  .benefits-section .section-header h2 {
    line-height: normal;
  }

  .benefits-section .section-header h2 br {
    display: none;
  }

  body.page-paint-protection .section-header {
    margin-bottom: 0px;
  }

  body.page-paint-protection .benefits-grid {
    gap: 30px;
  }


  .intro-section-9 .section-header-block h2 {
    color: #fff;
    line-height: normal;
    text-align: center;
  }

  body.page-paint-protection .intro-img-container img {
    height: 250px;
  }

  body.page-paint-protection .intro-grid {
    gap: 20px;
  }

  body.page-windshield-replacement .logo {
    width: 40%;
  }

  .process-section7 .section-header h2 {
    line-height: normal;
    margin: 0px 0px;
  }

  body.page-windshield-replacement .container {
    width: 100% !important;
    max-width: 95% !important;
    padding: 0px !important;
  }

  section.process-section.process-section7 {
    padding-bottom: 100px !important;
  }

  section.intro-section.intro-section9 {
    padding-top: 0px;
  }

  .intro-section9 .section-header h2 {
    line-height: normal;
  }

  body.page-windshield-replacement .intro-img-wrap img {
    height: auto;
  }
}

@media (max-width: 575.98px) {

  .project-item img {
    height: auto !important;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  #nav {
    padding: 10px 0px;
  }

  .nav-inner {
    padding: 10px 10px !important;
  }

  .logo img {
    max-width: 115px !important;
  }

  #nav {
    padding: 5px 0px;
  }

  body.is-home .hero {
    min-height: 300px;
  }



  body.is-home .stat .n {
    justify-content: center;
  }

  body.is-home .stat .label {
    text-align: center;
  }

  body.is-home .stat {
    border: 2px solid #000;
  }

  body.is-home .stats-grid {
    row-gap: 15px;
  }

  body.is-home .stats-grid {
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  body.is-home .stat .n {
    font-size: 40px;
  }

  body.is-home .stat {
    padding: 14px 1px;
  }

  body.is-home .stats {
    padding: 45px 0 !important;
  }

  body.is-home .llumar .eyebrow {
    text-align: center;
  }

  body.is-home .eyebrow {
    font-size: 18px;
  }

  body.is-home .btn {
    text-align: center;
  }

  body.is-home section {
    padding: 40px 0px !important;
  }

  body.is-home .services-grid {
    grid-template-columns: 1fr;
  }

  body.is-home .service .body {
    padding: 25px 0px;
  }

  body.is-home .service h3 {
    font-size: 28px;
  }

  body.is-home .midcta h2 {
    font-size: 30px;
  }

  body.is-home .midcta-sub {
    margin-top: 40px;
    padding-top: 35px;
  }

  body.is-home .midcta-sub h4 {
    font-size: 25px;
  }

  body.is-home .stickers-grid {
    gap: 30px;
    display: flex;
    flex-direction: column;
  }

  body.is-home .stickers h2 {
    font-size: 35px;
    line-height: normal;
  }

  body.is-home .why-head h2 {
    font-size: 30px;
    line-height: normal;
  }

  body.is-home .why-grid {
    grid-template-columns: 1fr;
  }

  body.is-home .testi-head {
    flex-direction: column;
    display: flex;
    text-align: center;
    gap: 20px;
  }

  body.is-home .site-time-block dl {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    text-align: center;
  }

  body.is-home .site-time-block dl * {
    margin: 0px;
  }

  body.is-home .news {
    padding: 15px;
  }

  .new-footer-grid {
    padding: 35px 15px 15px 15px !important;
  }

  .footer-logo img {
    max-width: 175px !important;
  }

  body.is-home .footer-section-container {
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}


/* ===== reference-match.css ===== */

/**
 * Reference design typography & color overrides.
 * Loaded last to beat theme.json / block preset colors on the front end.
 */

/* ── Global headings (reference: Bebas Neue 400) ── */
h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading {
  font-family: var(--tos-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.95;
}

p {
  margin: 0;
}

/* ── Eyebrows ── */
.tos-eyebrow,
.tos-eyebrow--large {
  font-family: var(--tos-narrow);
  font-weight: 600;
  text-transform: uppercase;
  color: #e7d010;
}

.tos-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
}

.tos-eyebrow--large {
  font-size: 18px;
  letter-spacing: 0.18em;
}

/* .tos-eyebrow::before {
	content: "◆";
	font-size: 10px;
	color: var(--tos-red);
} */

.tos-eyebrow--dark {
  color: var(--tos-black);
}

.tos-eyebrow--dark::before {
  color: var(--tos-red);
}

/* ── Buttons (reference .btn) ── */
.wp-block-button__link,
.wp-element-button {
  font-family: var(--tos-narrow) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 14px 13px !important;
}

/* ── Header nav (reference) ── */
.tos-front-page .tos-header__nav .wp-block-navigation-item__content:hover,
.tos-front-page .tos-header__nav .wp-block-navigation-item__content:focus {
  color: #fff !important;
}

/* ── Hero ── */
.tos-hero h1,
.tos-hero h1.wp-block-heading {
  font-size: 70px !important;
  line-height: 80px !important;
  color: var(--tos-bone) !important;
  letter-spacing: 0.005em !important;
}

.tos-hero h1 .tos-highlight {
  color: #ce151b !important;
  -webkit-text-stroke: 2px var(--tos-yellow);
  paint-order: stroke fill;
}

.tos-hero .tos-hero-sub,
.tos-hero .tos-hero-sub p {
  color: #fff !important;
  font-size: 18px !important;
}

.tos-hero .tos-eyebrow--large {
  color: #e7d010 !important;
}

/* ── Stats ── */
.tos-stats .tos-stat-number {
  font-size: 60px !important;
  color: #000 !important;
}

.tos-stats .tos-stat-label {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #000 !important;
}

/* ── LLumar ── */
.tos-llumar h2,
.tos-llumar h2.wp-block-heading {
  font-size: 62px !important;
  line-height: 71px !important;
  color: var(--tos-bone) !important;
}

.tos-llumar .tos-llumar-sub,
.tos-llumar .tos-llumar-sub p {
  font-family: var(--tos-display) !important;
  font-size: clamp(22px, 2.4vw, 16px) !important;
  /* color: var(--tos-yellow) !important; */
  letter-spacing: 0.04em !important;
  font-weight: 400 !important;
}

.tos-llumar .tos-llumar-desc,
.tos-llumar .tos-llumar-desc p {
  color: #fff !important;
}

.tos-llumar .tos-eyebrow--large {
  color: #e7d010 !important;
}

/* ── Marquee ── */
.tos-marquee__track .tos-marquee__item,
.tos-marquee__track span,
.tos-marquee__track p {
  font-size: 38px !important;
  color: #fff !important;
}

/* ── Services ── */
.tos-services h2,
.tos-services h2.wp-block-heading {
  font-size: 65px !important;
  color: var(--tos-bone) !important;
  line-height: 1.08 !important;
}

.tos-service-card h3,
.tos-service-card h3.wp-block-heading {
  font-size: 34px !important;
  color: #fff !important;
  letter-spacing: 0.02em !important;
  line-height: 1 !important;
}

.tos-service-card p {
  color: #fff !important;
}

.tos-services .tos-eyebrow--large {
  color: #e7d010 !important;
}

/* ── Mid CTA — solid fills only, no text-stroke ── */
.tos-midcta .tos-reveal {
  opacity: 1 !important;
  transform: none !important;
}

.tos-midcta-line1,
.tos-midcta h2.tos-midcta-line1,
.tos-midcta .tos-midcta-line1.wp-block-heading {
  font-size: clamp(40px, 7vw, 90px) !important;
  line-height: 1.04 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-text-stroke: unset !important;
  letter-spacing: 0.005em !important;
  max-width: 1200px;
  margin: 18px auto 0 !important;
  text-transform: uppercase;
  font-weight: 400 !important;
  font-family: var(--tos-display) !important;
}

.tos-midcta-line2,
.tos-midcta h2.tos-midcta-line2,
.tos-midcta .tos-midcta-line2.wp-block-heading {
  font-size: clamp(40px, 7vw, 90px) !important;
  line-height: 1.04 !important;
  color: #ce151b !important;
  -webkit-text-fill-color: #ce151b !important;
  -webkit-text-stroke: unset !important;
  letter-spacing: 0.005em !important;
  max-width: 1200px;
  margin: 0 auto !important;
  text-transform: uppercase;
  font-weight: 400 !important;
  font-family: var(--tos-display) !important;
}

.tos-midcta .tos-eyebrow,
.tos-midcta .tos-eyebrow--large,
.tos-midcta .tos-eyebrow p {
  color: #e7d010 !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}

.tos-midcta .tos-midcta-desc,
.tos-midcta .tos-midcta-desc p {
  color: #ffffff !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
}

.tos-midcta-sub,
.tos-midcta-sub.wp-block-columns {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 36px !important;
  margin-top: 96px !important;
  padding-top: 50px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  text-align: left !important;
  width: 100% !important;
  align-items: start !important;
}

.tos-midcta-sub .wp-block-column {
  text-align: left !important;
  min-width: 0;
}

.tos-midcta-sub h4,
.tos-midcta-sub h4.wp-block-heading {
  font-size: 28px !important;
  color: #fde20c !important;
  letter-spacing: 0.04em !important;
  font-weight: 400 !important;
  text-align: left !important;
  margin-bottom: 14px !important;
  line-height: 1.05 !important;
  text-transform: uppercase;
}

.tos-midcta-sub p {
  color: #ffffff !important;
  text-align: left !important;
}

/* ── Team / Stickers ── */
.tos-team h2,
.tos-team h2.wp-block-heading {
  font-size: 60px !important;
  line-height: 68px !important;
  color: var(--tos-bone) !important;
}

.tos-team .tos-team-desc,
.tos-team .tos-team-desc p {
  color: #fff !important;
}

.tos-team .tos-eyebrow--large {
  color: #e7d010 !important;
}

/* ── Why ── */
.tos-why h2,
.tos-why h2.wp-block-heading {
  font-size: clamp(40px, 5vw, 76px) !important;
  color: var(--tos-bone) !important;
}

.tos-why-card h4,
.tos-why-card h4.wp-block-heading {
  font-size: 26px !important;
  color: #fff !important;
  letter-spacing: 0.04em !important;
  line-height: 1.05 !important;
}

.tos-why-card p {
  color: #fff !important;
}

.tos-why-card .tos-why-index {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 60px !important;
  color: #2f2f2f !important;
  opacity: 1 !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.tos-why-card:hover h4,
.tos-why-card:hover p {
  color: #fff !important;
}

.tos-why-card:hover .tos-why-index {
  color: #000 !important;
  opacity: 0.6 !important;
}

.tos-why-card .tos-why-icon {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  border: 1.5px solid #ce151b !important;
  background: #ce151b !important;
  display: grid !important;
  place-items: center !important;
  margin-bottom: 22px !important;
}

.tos-why-card .tos-why-icon svg,
.tos-why-card .tos-why-icon svg path,
.tos-why-card .tos-why-icon svg circle {
  stroke: #fff !important;
  fill: none !important;
  stroke-width: 1.5 !important;
}

.tos-why-card:hover .tos-why-icon {
  border-color: #000 !important;
  background: #000 !important;
}

.tos-why-card:hover .tos-why-icon svg,
.tos-why-card:hover .tos-why-icon svg path,
.tos-why-card:hover .tos-why-icon svg circle {
  stroke: var(--tos-yellow) !important;
  fill: none !important;
}

.tos-why .tos-eyebrow--large {
  color: #e7d010 !important;
}

/* ── Team / Stickers ── */
.tos-team h2,
.tos-team h2.wp-block-heading {
  font-size: 60px !important;
  line-height: 68px !important;
  color: var(--tos-bone) !important;
}

.tos-team h2 .tos-team-highlight {
  color: #ce151b !important;
}

.tos-team .tos-team-desc,
.tos-team .tos-team-desc p {
  color: #ffffff !important;
}

.tos-team .tos-eyebrow--large {
  color: #e7d010 !important;
}

/* ── Testimonials ── */
.tos-testimonials h2,
.tos-testimonials h2.wp-block-heading {
  font-size: clamp(40px, 5vw, 76px) !important;
  color: #000 !important;
  line-height: 1 !important;
}

.tos-testimonials .tos-eyebrow,
.tos-testimonials .tos-eyebrow--dark {
  color: #000 !important;
}

/* ── Newsletter ── */
.tos-news-panel {
  background: #fff !important;
}

.tos-news-panel h3,
.tos-news-panel h3.wp-block-heading {
  color: #000 !important;
  font-size: 35px !important;
  text-transform: uppercase !important;
}

.tos-news-panel p,
.tos-news-panel .wp-block-paragraph {
  color: #000 !important;
}

.tos-map-block {
  background: #fff !important;
}

.tos-site-time-block dl {
  background: #ce151b !important;
  border-top: 4px solid #ce151b !important;
}

.tos-site-time-block dl dt,
.tos-site-time-block dl dd {
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.tos-news-form .tos-btn {
  background: #ce151b !important;
  color: #fff !important;
  margin-left: auto !important;
  margin-top: auto !important;
}

.tos-news-form input:focus {
  border-color: var(--tos-yellow) !important;
}

/* ── Inner page heroes ── */
.tos-page-hero h1,
.tos-page-hero h1.wp-block-heading,
.tos-slick-header h1,
.tos-slick-header h1.wp-block-heading {
  font-size: clamp(52px, 7vw, 100px) !important;
  line-height: 1 !important;
  color: var(--tos-bone) !important;
}

.tos-page-hero .tos-hero-sub,
.tos-page-hero .tos-hero-sub p,
.tos-slick-header p {
  color: #ccc !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.tos-page-hero .tos-breadcrumb,
.tos-page-hero .tos-breadcrumb p {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  color: var(--tos-mute) !important;
}

.tos-page-hero .tos-breadcrumb a {
  color: var(--tos-yellow) !important;
}

.tos-page-hero h1 .tos-highlight,
.tos-page-hero h1 span.tos-highlight {
  color: var(--tos-red) !important;
}

/* ── Inner page sections ── */
.tos-grid-card h2,
.tos-grid-card h3 {
  font-size: 28px !important;
  color: var(--tos-yellow) !important;
  font-weight: 400 !important;
}

.site-cta h2,
.tos-site-cta h2 {
  color: #fff !important;
}

.site-cta p,
.tos-site-cta p {
  color: #fff !important;
}

@media (max-width: 980px) {

  .tos-hero h1,
  .tos-hero h1.wp-block-heading {
    font-size: clamp(2.5rem, 8vw, 70px) !important;
    line-height: 1.14 !important;
  }

  .tos-llumar h2,
  .tos-llumar h2.wp-block-heading {
    font-size: clamp(1.75rem, 6vw, 62px) !important;
    line-height: 1.14 !important;
  }

  .tos-services h2,
  .tos-services h2.wp-block-heading {
    font-size: clamp(2rem, 7vw, 65px) !important;
  }

  .tos-midcta-line1,
  .tos-midcta-line2,
  .tos-midcta h2.tos-midcta-line1,
  .tos-midcta h2.tos-midcta-line2 {
    font-size: clamp(36px, 9vw, 90px) !important;
  }
}



/* ===== section-backgrounds.css ===== */

/**
 * Reference section backgrounds, padding, and WP preset overrides.
 * https://design.softsystemsolution.com/touch-of-shade/v3/index.html
 */

/* ── Site shell ── */
body,
.wp-site-blocks,
.tos-front-page .wp-site-blocks {
  background-color: #000000 !important;
  color: #f4f1e8;
}

/* ── Hero ── */
.tos-hero {
  background-color: #050505 !important;
}

/* ── Stats ── */
.tos-stats.tos-section {
  background-color: #fde20c !important;
  padding: 20px 0 !important;
}

/* ── LLumar ── */
.tos-llumar.tos-section,
.tos-llumar.has-black-background-color,
.tos-llumar.has-ink-background-color {
  background-color: #0a0a0a !important;
  padding: 0 !important;
  margin-top: 0 !important;
}

.tos-llumar-left,
.tos-llumar .left-bx {
  background-color: #000000 !important;
}

/* ── Marquee ── */
.tos-marquee.tos-section {
  background-color: #ce151b !important;
  padding: 0 !important;
}

/* ── Services ── */
.tos-services.tos-section,
.tos-services.has-black-background-color,
.tos-services.has-ink-background-color {
  background-color: #0a0a0a !important;
  padding: 75px 0 !important;
}

/* ── Mid CTA ── */
.tos-midcta.tos-section {
  background-color: #000000 !important;
  padding: 75px 0 !important;
  margin-top: 0 !important;
}

/* ── Team / Stickers ── */
.tos-team.tos-section,
.tos-team.has-black-background-color,
.tos-team.has-ink-2-background-color {
  background-color: #141414 !important;
  padding: 75px 0 !important;
  overflow: hidden;
}

/* ── Why ── */
.tos-why.tos-section,
.tos-why.has-black-background-color,
.tos-why.has-ink-background-color {
  background-color: #0a0a0a !important;
  padding: 75px 0 !important;
}

/* ── Testimonials ── */
.tos-testimonials.tos-section,
.tos-testimonials.has-yellow-background-color {
  background-color: #fde20c !important;
  padding: 75px 0 !important;
  color: #000000;
}

/* ── Newsletter / Final ── */
.tos-newsletter.tos-section,
.tos-newsletter.has-ink-background-color,
.tos-newsletter.has-black-background-color {
  background-color: #000000 !important;
  padding: 75px 0px !important;
  position: relative;
  overflow: hidden;
}

.tos-newsletter::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: url("https://www.touchofshadetint.com//wp-content/themes/touch-of-shade/assets/images/newsletter-bg.jpg") center / cover no-repeat;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}

.tos-newsletter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 30%, rgba(0, 0, 0, 0.6) 70%);
  z-index: 1;
  pointer-events: none;
}

.tos-newsletter>.tos-container,
.tos-newsletter .tos-container {
  position: relative;
  z-index: 2;
}

/* ── Inner page sections ── */
.tos-slick-header,
.tos-page-hero {
  background-color: #050505 !important;
}

.has-ink-background-color.has-background {
  background-color: #0a0a0a !important;
}

.has-ink-2-background-color.has-background {
  background-color: #141414 !important;
}

.has-black-background-color.has-background:not(.tos-stats):not(.tos-testimonials):not(.tos-marquee) {
  background-color: #000000 !important;
}

.site-cta.has-ink-2-background-color,
.site-cta.tos-section {
  background-color: #141414 !important;
}

.tos-grid-card.has-ink-2-background-color {
  background-color: #141414 !important;
}

.tos-contact-section.has-ink-background-color {
  background-color: #0a0a0a !important;
}

.intro-section.has-black-background-color,
.about-intro.has-black-background-color,
.about-intro2.has-black-background-color {
  background-color: #000000 !important;
}

.benefits-section.has-ink-background-color,
.process-section.has-ink-background-color,
.types.has-ink-background-color,
.Projects-section.has-ink-background-color {
  background-color: #0a0a0a !important;
}

.wash-section.has-ink-2-background-color,
.Truck-block.has-ink-2-background-color {
  background-color: #141414 !important;
}

/* ── Service cards & why cards (stay dark on ink sections) ── */
.tos-service-card {
  background-color: #0f0f0f !important;
  border-color: #2a2a2a !important;
}

.tos-why-card {
  background-color: #0f0f0f !important;
  border-color: #2a2a2a !important;
}

.tos-why-card:hover {
  background-color: var(--tos-red) !important;
  border-color: var(--tos-red) !important;
}

.tos-review-card {
  background-color: #000000 !important;
}



/* ===== reference-design.css ===== */

/* ==========================================================
   PAGE: about.html (Body Class: page-about)
   ========================================================== */
body.page-about {
  --yellow: #FDE20C;
  --yellow-dim: #E5CB00;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --mute: #8a8a8a;
  --mute-2: #5a5a5a;
  --red: #CE151B;
  --maxw: 1340px;
  --display: "Bebas Neue", "Anton", Impact, sans-serif;
  --body: "Archivo", system-ui, sans-serif;
  --narrow: "Archivo Narrow", "Archivo", sans-serif;
}

body.page-about *,
body.page-about *::before,
body.page-about *::after {
  box-sizing: border-box
}

html,
body.page-about {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

body.page-about {
  font-family: var(--body);
  background: var(--black);
  color: var(--bone);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.page-about img {
  max-width: 100%;
  display: block
}

body.page-about a {
  color: inherit;
  text-decoration: none
}

body.page-about button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit
}

body.page-about h1,
body.page-about h2,
body.page-about h3,
body.page-about h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .95;
  margin: 0;
}

/* body.page-about p {
  margin: 0
} */

body.page-about .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px
}



body.page-about .eyebrow {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
}

body.page-about .eyebrow.dark {
  color: var(--black)
}

body.page-about .btn {
  --bg: var(--red);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--narrow);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
}

body.page-about .btn:hover {
  opacity: .9
}

body.page-about .btn.ghost {
  --bg: transparent;
  --fg: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}

body.page-about .btn.ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow)
}

@media (max-width:980px) {}

body.page-about .page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

body.page-about .page-hero .bg {
  position: absolute;
  inset: 0;
  background: url('https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/window-tinting-install.jpg') center/cover no-repeat;
  opacity: .25;
  z-index: 0;
}

body.page-about .page-hero .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .95) 40%, rgba(0, 0, 0, .5) 100%);
}

body.page-about .page-hero .grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(253, 226, 12, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 226, 12, .05) 1px, transparent 1px);
  background-size: 60px 60px;
}

body.page-about .page-hero .container {
  position: relative;
  z-index: 3;
  padding: 100px 20px 80px
}

body.page-about .page-hero .breadcrumb {
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-about .page-hero .breadcrumb a {
  color: var(--yellow)
}

body.page-about .page-hero .breadcrumb a:hover {
  text-decoration: underline
}

body.page-about .page-hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 100px);
  color: var(--bone);
  line-height: 1;
  margin: 12px 0 18px;
}

body.page-about .page-hero h1 span {
  color: var(--red)
}

body.page-about .page-hero .sub {
  font-size: 18px;
  color: #ccc;
  max-width: 580px;
  line-height: 1.7;
}

body.page-about .about-intro {
  background-color: #000;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
}


.about-intro-grid::before {
  height: calc(100% - 16%);
  width: 1px;
  background-color: transparent;
  position: absolute;
  content: '';
  left: 50%;
}

@media (max-width:880px) {
  body.page-about .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }
}

body.page-about .about-intro .visual {
  position: relative;
  /* aspect-ratio: 4/3; */
}

body.page-about .about-intro .visual .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  height: 589px;
}


body.page-about .about-intro .visual .badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: #fff;
  padding: 18px 22px;
  text-align: center;
  display: none;
}

body.page-about .about-intro .visual .badge .num {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  color: var(--yellow);
}

body.page-about .about-intro .visual .badge .lbl {
  font-family: var(--narrow);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

body.page-about .about-intro h2 {
  font-size: clamp(40px, 5vw, 68px);
  color: var(--bone);
  margin: 16px 0 20px;
  line-height: 1;
}


body.page-about .about-intro .vals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

body.page-about .about-intro .val {
  background: #0F0F0F;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 16px 18px;
}

body.page-about .about-intro .val strong {
  font-family: var(--display);
  font-size: 20px;
  color: var(--yellow);
  letter-spacing: .04em;
  display: block;
  margin-bottom: 4px;
}

body.page-about .about-intro .val span {
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
}

body.page-about .stats-band {
  background: var(--yellow);
  color: var(--black);
  padding: 0;
  position: relative;
  overflow: hidden;
}

body.page-about .stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, .06) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

body.page-about .stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

body.page-about .sstat {
  padding: 32px 30px;
  border-left: 2px solid rgba(0, 0, 0, .85);
}

body.page-about .sstat .n {
  font-family: var(--display);
  font-size: 64px;
  line-height: 1;
  color: var(--black);
}

body.page-about .sstat .label {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--black);
}

@media (max-width:880px) {
  body.page-about .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px) {
  body.page-about .stats-band-grid {
    grid-template-columns: 1fr;
  }
}

body.page-about .timeline-section {
  background: var(--ink-2)
}

body.page-about .timeline-section h2 {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--bone);
  margin: 16px 0 60px;
}

body.page-about .timeline {
  position: relative;
  padding-left: 40px;
  border-left: 2px solid var(--line);
}

body.page-about .tl-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 30px;
}

body.page-about .tl-item::before {
  content: "";
  position: absolute;
  left: -47px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border-radius: 50%;
  border: 2px solid var(--black);
}

body.page-about .tl-item .year {
  font-family: var(--display);
  font-size: 42px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}

body.page-about .tl-item h4 {
  font-family: var(--display);
  font-size: 26px;
  color: var(--bone);
  letter-spacing: .04em;
  margin-bottom: 8px;
}

body.page-about .tl-item p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  max-width: 580px
}

body.page-about .values-section {
  background: var(--ink)
}

body.page-about .values-section h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--bone);
  margin: 16px 0 50px;
}

body.page-about .values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width:880px) {
  body.page-about .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:560px) {
  body.page-about .values-grid {
    grid-template-columns: 1fr;
  }
}

body.page-about .val-card {
  background: #0F0F0F;
  border: 1px solid var(--line);
  padding: 32px 28px;
  transition: border-color .3s, transform .3s;
  position: relative;
}

body.page-about .val-card:hover {
  border-color: var(--red);
  transform: translateY(-4px)
}

body.page-about .val-card .icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

body.page-about .val-card .icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5
}

body.page-about .val-card h4 {
  font-family: var(--display);
  font-size: 24px;
  color: var(--bone);
  letter-spacing: .04em;
  margin-bottom: 12px;
}

body.page-about .val-card p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7
}

body.page-about .brands-section {
  background: #050505
}

body.page-about .brands-section h2 {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--bone);
  margin: 16px 0 12px;
}

body.page-about .brands-section .sub {
  color: #aaa;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 50px
}

body.page-about .brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width:880px) {
  body.page-about .brands-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:480px) {
  body.page-about .brands-grid {
    grid-template-columns: 1fr 1fr
  }
}

body.page-about .brand-card {
  background: #111;
  border: 1px solid var(--line);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
  letter-spacing: .08em;
  text-align: center;
  transition: border-color .3s, background .3s;
}

body.page-about .brand-card:hover {
  border-color: var(--yellow);
  background: #181818
}

body.page-about .cta-band {
  background: var(--red);
  padding: 60px 0;
}

body.page-about .cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

body.page-about .cta-band h2 {
  font-size: clamp(36px, 4vw, 60px);
  color: #fff;
  line-height: 1;
}

body.page-about .cta-band .btn {
  --bg: var(--black);
  --fg: var(--yellow);
  flex-shrink: 0;
}

body.page-about footer {
  background: var(--black);
  border-top: 4px solid var(--yellow);
  padding: 80px 0 0;
}

body.page-about .foot-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 50px;
}

@media (max-width:980px) {
  body.page-about .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }
}

@media (max-width:560px) {
  body.page-about .foot-grid {
    grid-template-columns: 1fr
  }
}

body.page-about .foot h5 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 24px;
}

body.page-about .foot h5::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  margin-top: 10px
}

body.page-about .foot ul {
  list-style: none;
  margin: 0;
  padding: 0
}

body.page-about .foot li {
  margin-bottom: 10px
}

body.page-about .foot li a {
  font-family: var(--narrow);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bdbdbd;
  font-weight: 600;
  transition: color .2s;
}

body.page-about .foot li a:hover {
  color: var(--yellow)
}

body.page-about .foot .tag {
  color: #a5a5a5;
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0 22px;
  max-width: 300px
}

body.page-about .foot .socials {
  display: flex;
  gap: 12px;
  margin-top: 14px
}

body.page-about .foot .socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #2a2a2a;
  display: grid;
  place-items: center;
  color: #bdbdbd;
  transition: background .2s, color .2s, border-color .2s;
}

body.page-about .foot .socials a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow)
}

body.page-about .foot .socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

body.page-about .addr {
  font-style: normal;
  font-family: var(--narrow);
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
  letter-spacing: .02em;
  margin: 0 0 18px;
  padding: 14px 0 14px 14px;
  border-left: 2px solid var(--yellow);
}

body.page-about .addr strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 6px
}

body.page-about .addr a {
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: .1em
}

body.page-about .addr a:hover {
  text-decoration: underline
}

body.page-about .foot-bottom {
  background: var(--ink);
  margin-top: 60px;
  padding: 22px 0;
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .16em;
  color: #7a7a7a;
  text-transform: uppercase;
}

body.page-about .foot-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center
}

body.page-about .foot-bottom a {
  color: #a5a5a5
}

body.page-about .foot-bottom a:hover {
  color: var(--yellow)
}

body.page-about .foot-bottom .right {
  display: flex;
  gap: 24px
}

body.page-about .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease
}

body.page-about .reveal.in {
  opacity: 1;
  transform: translateY(0)
}

body.page-about .reveal.d1 {
  transition-delay: .08s
}

body.page-about .reveal.d2 {
  transition-delay: .16s
}

body.page-about .reveal.d3 {
  transition-delay: .24s
}

body.page-about ::selection {
  background: var(--yellow);
  color: var(--black)
}

@media (max-width: 980px) {}

body.page-about .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-about .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-about .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
  width: 10%;
}

body.page-about .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-about .nav-links {
  display: flex;
  gap: 38px !important;
  align-items: center !important;
}

body.page-about .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

body.page-about .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  bottom: -4px !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--yellow) !important;
  transition: width .3s ease !important;
}

body.page-about .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-about .nav-links a:hover::after,
body.page-about .nav-links a.active::after {
  width: 100% !important;
}

body.page-about .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-about .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-about .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}


body.page-about .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-about .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-about .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-about .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-about .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-about .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-about .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-about .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-about .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-about .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-about .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-about .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.page-about .nav-links {
    display: none !important;
  }

  body.page-about .nav-inner .btn {
    display: none !important;
  }

  body.page-about .burger {
    display: flex !important;
  }
}

body.page-about .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-about .mobile-menu.open {
  display: flex !important;
}

body.page-about .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-about .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-about .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-about .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: book-appointment.html (Body Class: page-book-appointment)
   ========================================================== */
body.page-book-appointment {
  --yellow: #FDE20C;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --red: #CE151B;
  --maxw: 1340px;
  --display: "Bebas Neue", sans-serif;
  --body: "Archivo", sans-serif;
  --narrow: "Archivo Narrow", sans-serif;
}

body.page-book-appointment *,
body.page-book-appointment *::before,
body.page-book-appointment *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.page-book-appointment {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.page-book-appointment img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.page-book-appointment a {
  text-decoration: none;
  color: inherit;
}

body.page-book-appointment ul {
  list-style: none;
}

body.page-book-appointment .container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

body.page-book-appointment .eyebrow {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
}

body.page-book-appointment .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}

body.page-book-appointment .btn-red {
  background: var(--red);
  color: #fff;
}

body.page-book-appointment .btn-red:hover {
  background: #a81116;
  transform: translateY(-2px);
}

body.page-book-appointment .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.page-book-appointment .btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

body.page-book-appointment .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}

body.page-book-appointment .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

body.page-book-appointment .reveal.d1 {
  transition-delay: .08s;
}

body.page-book-appointment .reveal.d2 {
  transition-delay: .16s;
}

body.page-book-appointment .reveal.d3 {
  transition-delay: .24s;
}

body.page-book-appointment .page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
  border-bottom: 4px solid var(--yellow);
}

body.page-book-appointment .page-hero .bg {
  position: absolute;
  inset: 0;
  background: url('https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/hero-shop.jpg') center/cover no-repeat;
  opacity: .2;
  z-index: 0;
}

body.page-book-appointment .page-hero .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .95) 40%, rgba(0, 0, 0, .5) 100%);
}

body.page-book-appointment .page-hero .grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(253, 226, 12, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 226, 12, .05) 1px, transparent 1px);
  background-size: 60px 60px;
}

body.page-book-appointment .page-hero .container {
  position: relative;
  z-index: 3;
  padding: 80px 0 60px;
}

body.page-book-appointment .breadcrumb {
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-book-appointment .breadcrumb a {
  color: var(--yellow);
}

body.page-book-appointment .breadcrumb a:hover {
  text-decoration: underline;
}

body.page-book-appointment .page-hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 90px);
  color: var(--bone);
  line-height: 1;
  margin: 12px 0 18px;
}

body.page-book-appointment .page-hero h1 span {
  color: var(--yellow);
}

body.page-book-appointment .page-hero .sub {
  font-size: 18px;
  color: #ccc;
  max-width: 580px;
  line-height: 1.7;
}

body.tos-page-book-appointment .appointment-section {
  padding: 85px 0;
  background: #0a0a0a;
  position: relative;
  background-image: url(https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/colorado-springs-expert-window-tinting-3.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

body.tos-page-book-appointment .form-wrapper {
  max-width: 1168px;
  margin: 0 auto;
  background: #141414d1;
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 0px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {
  body.tos-page-book-appointment .form-wrapper {
    padding: 30px 20px;
  }
}

body.tos-page-book-appointment .form-wrapper h2 {
  font-family: var(--display);
  font-size: 60px;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  margin-bottom: 0px;
}

body.tos-page-book-appointment .form-wrapper h2 span {
  color: var(--yellow);
}

body.tos-page-book-appointment .form-wrapper .intro-text {
  text-align: center;
  font-family: var(--tos-narrow);
  font-size: 15px;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  font-size: 16px;
  color: #fff;
}

body.tos-page-book-appointment .form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.tos-appointment-form-wrap .inner-block {
  gap: 0 !important;
}

body.tos-page-book-appointment .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.page-id-16 header {
  border-bottom: 1px solid #2a2a2a !important
}

@media (max-width: 600px) {
  body.tos-page-book-appointment .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.tos-appointment-form-wrap .submit-btn-container .btn,
.tos-appointment-form-wrap .submit-btn-container .btn-red {
  padding: 13px 14px;
  font-size: 15px;
  width: fit-content !important;
}

body.tos-page-book-appointment .form-label {
  font-family: var(--tos-narrow);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #fff;
}

body.tos-page-book-appointment .form-input,
body.tos-page-book-appointment .form-select,
body.tos-page-book-appointment .form-textarea {
  background: var(--black);
  border: 1px solid var(--line);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s ease;
  background: #fff;
  border-radius: 0px;
  height: 45px;
}

body.tos-page-book-appointment .form-input:focus,
body.tos-page-book-appointment .form-select:focus,
body.tos-page-book-appointment .form-textarea:focus {
  border-color: var(--yellow);
}

body.tos-page-book-appointment .form-textarea {
  resize: vertical;
  min-height: 120px;
}

body.tos-page-book-appointment .form-input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
}

body.tos-page-book-appointment .submit-btn-container {
  text-align: center;
  margin-top: 25px;
  text-align: end;
  width: 100%;
  max-width: 31%;
  margin-left: auto;
}

body.tos-page-book-appointment .submit-btn-container .btn {
  width: 100%;
  max-width: 320px;
}

body.tos-page-book-appointment .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.tos-page-book-appointment .modal-overlay.open {
  display: flex;
  opacity: 1;
}

body.tos-page-book-appointment .modal-box {
  background: var(--ink-2);
  border: 2px solid var(--yellow);
  border-radius: 4px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

body.tos-page-book-appointment .modal-overlay.open .modal-box {
  transform: scale(1);
}

body.tos-page-book-appointment .modal-icon {
  font-size: 54px;
  color: var(--yellow);
  margin-bottom: 20px;
}

body.tos-page-book-appointment .modal-box h3 {
  font-family: var(--display);
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

body.tos-page-book-appointment .modal-box p {
  font-family: var(--narrow);
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

body.tos-page-book-appointment footer {
  background: var(--black);
  border-top: 4px solid var(--yellow);
  padding: 80px 0 0;
}

body.tos-page-book-appointment .foot-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 50px;
}

@media (max-width:980px) {
  body.tos-page-book-appointment .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }
}

@media (max-width:560px) {
  body.tos-page-book-appointment .foot-grid {
    grid-template-columns: 1fr
  }
}

body.tos-page-book-appointment .foot h5 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 24px;
}

body.tos-page-book-appointment .foot h5::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  margin-top: 10px
}

body.tos-page-book-appointment .foot ul {
  list-style: none;
  margin: 0;
  padding: 0
}

body.tos-page-book-appointment .foot li {
  margin-bottom: 10px
}

body.tos-page-book-appointment .foot li a {
  font-family: var(--narrow);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bdbdbd;
  font-weight: 600;
  transition: color .2s;
}

body.tos-page-book-appointment .foot li a:hover {
  color: var(--yellow)
}

body.tos-page-book-appointment .foot .tag {
  color: #a5a5a5;
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0 22px;
  max-width: 300px
}

body.page-book-appointment .foot .socials {
  display: flex;
  gap: 12px;
  margin-top: 14px
}

body.page-book-appointment .foot .socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #2a2a2a;
  display: grid;
  place-items: center;
  color: #bdbdbd;
  transition: background .2s, color .2s, border-color .2s;
}

body.page-book-appointment .foot .socials a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow)
}

body.page-book-appointment .foot .socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

body.page-book-appointment .addr {
  font-style: normal;
  font-family: var(--narrow);
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
  letter-spacing: .02em;
  margin: 0 0 18px;
  padding: 14px 0 14px 14px;
  border-left: 2px solid var(--yellow);
}

body.page-book-appointment .addr strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 6px
}

body.page-book-appointment .addr a {
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: .1em
}

body.page-book-appointment .addr a:hover {
  text-decoration: underline
}

body.page-book-appointment .foot-bottom {
  background: var(--ink);
  margin-top: 60px;
  padding: 22px 0;
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .16em;
  color: #7a7a7a;
  text-transform: uppercase;
}

body.page-book-appointment .foot-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center
}

body.page-book-appointment .foot-bottom a {
  color: #a5a5a5
}

body.page-book-appointment .foot-bottom a:hover {
  color: var(--yellow)
}

body.page-book-appointment .foot-bottom .right {
  display: flex;
  gap: 24px
}

@media (max-width: 980px) {}

body.page-book-appointment .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-book-appointment .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-book-appointment .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
  width: 10%;
}

body.page-book-appointment .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-book-appointment .nav-links {
  display: flex;
  gap: 38px !important;
  align-items: center !important;
}

body.page-book-appointment .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

body.page-book-appointment .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  bottom: -4px !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--yellow) !important;
  transition: width .3s ease !important;
  display: none !important;
}

body.page-book-appointment .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-book-appointment .nav-links a:hover::after,
body.page-book-appointment .nav-links a.active::after {
  width: 100% !important;
}

body.page-book-appointment .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-book-appointment .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-book-appointment .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}



body.page-book-appointment .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-book-appointment .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-book-appointment .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-book-appointment .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-book-appointment .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-book-appointment .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-book-appointment .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-book-appointment .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-book-appointment .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-book-appointment .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-book-appointment .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-book-appointment .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.page-book-appointment .nav-links {
    display: none !important;
  }

  body.page-book-appointment .nav-inner .btn {
    display: none !important;
  }

  body.page-book-appointment .burger {
    display: flex !important;
  }
}

body.page-book-appointment .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-book-appointment .mobile-menu.open {
  display: flex !important;
}

body.page-book-appointment .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-book-appointment .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-book-appointment .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-book-appointment .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: commercial-wraps.html (Body Class: page-commercial-wraps)
   ========================================================== */
body.page-commercial-wraps {
  --yellow: #FDE20C;
  --yellow-dim: #E5CB00;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --red: #CE151B;
  --mute: #8a8a8a;
  --mute-2: #5a5a5a;
  --maxw: 1340px;
  --display: "Bebas Neue", "Anton", Impact, sans-serif;
  --body: "Archivo", system-ui, sans-serif;
  --narrow: "Archivo Narrow", "Archivo", sans-serif;
}

body.page-commercial-wraps *,
body.page-commercial-wraps *::before,
body.page-commercial-wraps *::after {
  box-sizing: border-box
}

html,
body.page-commercial-wraps {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body.page-commercial-wraps {
  font-family: var(--body);
  background: var(--black);
  color: var(--bone);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.page-commercial-wraps img {
  max-width: 100%;
  display: block
}

body.page-commercial-wraps a {
  color: inherit;
  text-decoration: none
}

body.page-commercial-wraps button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit
}

body.page-commercial-wraps h1,
body.page-commercial-wraps h2,
body.page-commercial-wraps h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .95;
  margin: 0
}

body.page-commercial-wraps .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

body.page-commercial-wraps section {
  padding: 80px 0 !important;
}

@media (max-width:640px) {
  body.page-commercial-wraps .container {
    padding: 0 20px
  }

  body.page-commercial-wraps section {
    padding: 60px 0 !important;
  }
}

body.page-commercial-wraps .eyebrow {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
}

body.page-commercial-wraps .eyebrow.dark {
  color: var(--black)
}

body.page-commercial-wraps .btn {
  --bg: var(--red);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 28px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--narrow);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
}

body.page-commercial-wraps .btn:hover {
  opacity: .88;
  transform: translateY(-2px);
}

body.page-commercial-wraps .btn.yellow {
  --bg: var(--yellow);
  --fg: var(--black);
}

body.page-commercial-wraps .btn.ghost {
  --bg: transparent;
  --fg: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}

body.page-commercial-wraps .btn.ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

@media (max-width:720px) {}

@media (max-width:980px) {}

body.page-commercial-wraps .mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .97);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

body.page-commercial-wraps .mobile-overlay.open {
  display: flex
}

body.page-commercial-wraps .mobile-overlay a {
  font-family: var(--display);
  font-size: 44px;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s ease;
}

body.page-commercial-wraps .mobile-overlay a:hover,
body.page-commercial-wraps .mobile-overlay a.active {
  color: var(--yellow)
}

body.page-commercial-wraps .mobile-overlay .close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

body.page-commercial-wraps .mobile-overlay .close-btn:hover {
  color: var(--yellow)
}

body.page-commercial-wraps .mobile-overlay .mo-phone {
  font-family: var(--narrow);
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-top: 16px;
}

body.page-commercial-wraps .page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #050505;
}

body.page-commercial-wraps .page-hero .bg {
  position: absolute;
  inset: 0;
  background: url("https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/truck-commercial-wraps.jpg") center/cover no-repeat;
  opacity: .3;
  z-index: 0;
}

body.page-commercial-wraps .page-hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .55) 50%, rgba(0, 0, 0, .85) 100%);
  z-index: 1;
}

body.page-commercial-wraps .page-hero .grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(253, 226, 12, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 226, 12, .05) 1px, transparent 1px);
  background-size: 60px 60px;
}

body.page-commercial-wraps .page-hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

body.page-commercial-wraps .page-hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 96px);
  color: var(--bone);
  letter-spacing: .01em;
  line-height: 1;
  margin: 18px 0 20px;
}

body.page-commercial-wraps .page-hero h1 span {
  color: var(--yellow)
}

body.page-commercial-wraps .page-hero .sub {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
}

body.page-commercial-wraps .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--narrow);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

body.page-commercial-wraps .breadcrumb a {
  color: var(--yellow);
  transition: color .2s
}

body.page-commercial-wraps .breadcrumb a:hover {
  color: #fff
}

body.page-commercial-wraps .breadcrumb .sep {
  color: rgba(255, 255, 255, .3)
}

body.page-commercial-wraps .breadcrumb .current {
  color: #fff
}

body.page-commercial-wraps .intro-section {
  background: var(--ink);
}

body.page-commercial-wraps .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

@media (max-width:900px) {
  body.page-commercial-wraps .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

body.page-commercial-wraps .intro-left h2 {
  font-size: clamp(42px, 4.5vw, 62px);
  color: var(--bone);
  line-height: 1;
  margin: 16px 0 24px;
}

body.page-commercial-wraps .intro-left h2 span {
  color: var(--yellow)
}

body.page-commercial-wraps .intro-left p {
  color: #c5c5c5;
  margin-bottom: 18px;
  line-height: 1.75;
}

body.page-commercial-wraps .intro-left p:last-child {
  margin-bottom: 0
}

body.page-commercial-wraps .intro-right {
  position: relative;
}

body.page-commercial-wraps .intro-right img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}

body.page-commercial-wraps .intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .04em;
  padding: 18px 26px;
  line-height: 1;
  transform: rotate(-2deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  z-index: 2;
}

body.page-commercial-wraps .intro-badge small {
  display: block;
  font-family: var(--narrow);
  font-size: 10px;
  letter-spacing: .28em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 4px;
  color: rgba(0, 0, 0, .7);
}

@media (max-width:600px) {
  body.page-commercial-wraps .intro-badge {
    left: 10px;
    bottom: 10px;
  }
}

body.page-commercial-wraps .benefits-section {
  background: var(--black);
}

.tos-page-window-tinting .benefits-section {
  background: #141414 !important;
}

body.page-commercial-wraps .section-header {
  text-align: center;
  margin-bottom: 45px;
}

body.page-commercial-wraps .section-header h2 {
  font-size: 60px;
  color: var(--bone);
  margin: 14px 0 18px;
  line-height: 1;
}

body.page-commercial-wraps .section-header h2 span {
  color: var(--yellow)
}


body.page-commercial-wraps .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 28px;
}

@media (max-width:900px) {
  body.page-commercial-wraps .benefits-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:580px) {
  body.page-commercial-wraps .benefits-grid {
    grid-template-columns: 1fr
  }
}

body.page-commercial-wraps .benefit-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 15px;
  transition: border-color .3s ease, transform .3s ease;
}

body.page-commercial-wraps .benefit-card:hover {
  border-color: var(--yellow);
  transform: translateY(-5px);
}

body.page-commercial-wraps .benefit-icon {
  width: 54px;
  height: 54px;
  background: rgba(253, 226, 12, .12);
  border: 1px solid rgba(253, 226, 12, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 22px;
  color: var(--yellow);
}

body.page-commercial-wraps .benefit-card h3 {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
  letter-spacing: 0px;
  margin-bottom: 12px;
  line-height: 1;
  margin-top: 15px;
  font-weight: 300;
}

body.page-commercial-wraps .benefit-card p {
  color: #fff;
}

body.page-commercial-wraps .services-offered {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.page-commercial-wraps .offered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width:900px) {
  body.page-commercial-wraps .offered-grid {
    grid-template-columns: 1fr
  }
}

body.page-commercial-wraps .offered-card {
  background: #0f0f0f;
  border: 1px solid var(--line);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease;
}

body.page-commercial-wraps .offered-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
  transition: width .3s ease;
}

body.page-commercial-wraps .offered-card:hover {
  border-color: var(--red)
}

body.page-commercial-wraps .offered-card:hover::before {
  width: 6px
}

body.page-commercial-wraps .offered-card .card-num {
  font-family: var(--display);
  font-size: 80px;
  color: rgba(255, 255, 255, .04);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}

body.page-commercial-wraps .offered-card h3 {
  font-family: var(--display);
  font-size: 32px;
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 14px;
  line-height: 1.05;
}

body.page-commercial-wraps .offered-card>p {
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

body.page-commercial-wraps .offered-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.page-commercial-wraps .offered-card ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--narrow);
  font-size: 14px;
  font-weight: 600;
  color: #ddd;
  letter-spacing: .04em;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

body.page-commercial-wraps .offered-card ul li:last-child {
  border-bottom: none
}

body.page-commercial-wraps .offered-card ul li i {
  color: var(--yellow);
  font-size: 12px;
  width: 16px;
  flex-shrink: 0;
}

body.page-commercial-wraps .industries-section {
  background: var(--black);
}

body.page-commercial-wraps .industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 12px;
}

@media (max-width:900px) {
  body.page-commercial-wraps .industries-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:480px) {
  body.page-commercial-wraps .industries-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

body.page-commercial-wraps .industry-chip {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 28px 20px;
  text-align: center;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  cursor: default;
}

body.page-commercial-wraps .industry-chip:hover {
  background: #1a1a1a;
  border-color: var(--yellow);
  transform: translateY(-4px);
}

body.page-commercial-wraps .industry-chip i {
  font-size: 28px;
  color: var(--yellow);
  margin-bottom: 12px;
  display: block;
}

body.page-commercial-wraps .industry-chip span {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ddd;
}

body.page-commercial-wraps .process-section {
  background: var(--ink);
}

body.page-commercial-wraps .process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

body.page-commercial-wraps .process-steps::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), rgba(253, 226, 12, .2));
  z-index: 0;
}

@media (max-width:900px) {
  body.page-commercial-wraps .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.page-commercial-wraps .process-steps::before {
    display: none
  }
}

body.page-commercial-wraps .process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

body.page-commercial-wraps .step-num {
  width: 76px;
  height: 76px;
  border-radius: 0;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--display);
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  box-shadow: 0 0 0 6px var(--ink), 0 0 0 8px rgba(253, 226, 12, .2);
}

body.page-commercial-wraps .process-step h4 {
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  letter-spacing: .03em;
  margin-bottom: 10px;
  line-height: 1.1;
}

body.page-commercial-wraps .process-step p {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.65;
}

body.page-commercial-wraps .stats-band {
  background: var(--yellow);
  color: var(--black);
  padding: 20px 0 !important;
  position: relative;
  overflow: hidden;
}

body.page-commercial-wraps .stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, .06) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

body.page-commercial-wraps .stats-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

@media (max-width:880px) {
  body.page-commercial-wraps .stats-band-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px
  }
}

@media (max-width:480px) {
  body.page-commercial-wraps .stats-band-grid {
    grid-template-columns: 1fr
  }
}

body.page-commercial-wraps .stat-item {
  padding: 20px 30px;
  border-left: 2px solid rgba(0, 0, 0, .15);
}

body.page-commercial-wraps .stat-item:first-child {
  border-left: none
}

body.page-commercial-wraps .stat-num {
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
  color: var(--black);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

body.page-commercial-wraps .stat-label {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 6px;
  color: rgba(0, 0, 0, .7);
}

body.page-commercial-wraps .cta-band {
  background: var(--red);
  position: relative;
  overflow: hidden;
}

body.page-commercial-wraps .cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

body.page-commercial-wraps .cta-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

body.page-commercial-wraps .cta-band h2 {
  font-size: clamp(42px, 5.5vw, 76px);
  color: #fff;
  line-height: 1;
  margin: 18px 0 28px;
}

body.page-commercial-wraps .cta-band h2 span {
  color: var(--yellow)
}

body.page-commercial-wraps .cta-band p {
  color: rgba(255, 255, 255, .8);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.7;
}

body.page-commercial-wraps .cta-band .btn.yellow:hover {
  background: #fff;
  color: var(--black)
}

body.page-commercial-wraps .site-footer {
  background: var(--black);
  border-top: 4px solid var(--yellow);
}

body.page-commercial-wraps .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 1fr;
  gap: 50px;
  padding: 70px 20px 50px;
  max-width: var(--maxw);
  margin: 0 auto;
}

@media (max-width:1024px) {
  body.page-commercial-wraps .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px
  }
}

@media (max-width:600px) {
  body.page-commercial-wraps .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 20px 36px
  }
}

body.page-commercial-wraps .footer-logo-col .logo-img {
  max-width: 180px;
  margin-bottom: 20px;
}

body.page-commercial-wraps .footer-logo-col p {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

body.page-commercial-wraps .footer-social {
  display: flex;
  gap: 10px;
}

body.page-commercial-wraps .footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}

body.page-commercial-wraps .footer-social a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

body.page-commercial-wraps .footer-col h4 {
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 28px;
  line-height: 1;
}

body.page-commercial-wraps .footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.page-commercial-wraps .footer-col ul li {
  margin-bottom: 14px;
}

body.page-commercial-wraps .footer-col ul li a {
  color: rgba(255, 255, 255, .6);
  font-family: var(--narrow);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: color .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.page-commercial-wraps .footer-col ul li a:hover {
  color: var(--yellow)
}

body.page-commercial-wraps .footer-col ul li a i {
  font-size: 11px;
  color: var(--yellow)
}

body.page-commercial-wraps .footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

body.page-commercial-wraps .footer-contact-item .icon {
  width: 36px;
  height: 36px;
  background: rgba(253, 226, 12, .1);
  border: 1px solid rgba(253, 226, 12, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

body.page-commercial-wraps .footer-contact-item .text {
  font-family: var(--narrow);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .65);
}

body.page-commercial-wraps .footer-contact-item .text strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

body.page-commercial-wraps .footer-contact-item a {
  color: var(--yellow)
}

body.page-commercial-wraps .footer-contact-item a:hover {
  text-decoration: underline
}

body.page-commercial-wraps .footer-hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.page-commercial-wraps .footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--narrow);
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  padding-bottom: 6px;
}

body.page-commercial-wraps .footer-hours-row .day {
  color: rgba(255, 255, 255, .85);
  font-weight: 600
}

body.page-commercial-wraps .footer-bottom {
  background: var(--red);
  padding: 14px 20px;
}

body.page-commercial-wraps .footer-bottom-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

body.page-commercial-wraps .footer-bottom p {
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
}

body.page-commercial-wraps .footer-bottom a {
  color: #fff;
  transition: color .2s;
}

body.page-commercial-wraps .footer-bottom a:hover {
  color: var(--yellow)
}

body.page-commercial-wraps .footer-bottom .right {
  display: flex;
  gap: 20px;
}

body.page-commercial-wraps .reveal {
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}

body.page-commercial-wraps .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

body.page-commercial-wraps .reveal.d1 {
  transition-delay: .08s
}

body.page-commercial-wraps .reveal.d2 {
  transition-delay: .16s
}

body.page-commercial-wraps .reveal.d3 {
  transition-delay: .24s
}

body.page-commercial-wraps .reveal.d4 {
  transition-delay: .32s
}

body.page-commercial-wraps .reveal.d5 {
  transition-delay: .40s
}

body.page-commercial-wraps ::selection {
  background: var(--yellow);
  color: var(--black)
}

@media (max-width: 980px) {}

body.page-commercial-wraps .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-commercial-wraps .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-commercial-wraps .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
  width: 10%;
}

body.page-commercial-wraps .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-commercial-wraps .nav-links {
  display: flex;
  gap: 38px !important;
  align-items: center !important;
}

body.page-commercial-wraps .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}


body.page-commercial-wraps .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-commercial-wraps .nav-links a:hover::after,
body.page-commercial-wraps .nav-links a.active::after {
  width: 100% !important;
}

body.page-commercial-wraps .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-commercial-wraps .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-commercial-wraps .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}



body.page-commercial-wraps .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-commercial-wraps .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-commercial-wraps .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-commercial-wraps .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-commercial-wraps .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-commercial-wraps .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-commercial-wraps .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-commercial-wraps .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-commercial-wraps .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-commercial-wraps .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-commercial-wraps .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-commercial-wraps .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.page-commercial-wraps .nav-links {
    display: none !important;
  }

  body.page-commercial-wraps .nav-inner .btn {
    display: none !important;
  }

  body.page-commercial-wraps .burger {
    display: flex !important;
  }
}

body.page-commercial-wraps .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-commercial-wraps .mobile-menu.open {
  display: flex !important;
}

body.page-commercial-wraps .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-commercial-wraps .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-commercial-wraps .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-commercial-wraps .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: contact.html (Body Class: page-contact)
   ========================================================== */
body.page-contact {
  --yellow: #FDE20C;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --red: #CE151B;
  --maxw: 1340px;
  --card-bg: #0F0F0F;
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-body: 'Archivo', sans-serif;
  --ff-narrow: 'Archivo Narrow', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

body.page-contact *,
body.page-contact *::before,
body.page-contact *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.page-contact {
  background-color: var(--black);
  color: var(--bone);
  font-family: var(--ff-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.page-contact img {
  max-width: 100%;
  display: block;
}

body.page-contact a {
  text-decoration: none;
  color: inherit;
}

body.page-contact ul {
  list-style: none;
}

body.page-contact button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

body.page-contact .container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

body.page-contact .eyebrow {
  font-family: var(--ff-narrow);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
}

body.page-contact .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo);
}

body.page-contact .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.page-contact .reveal-delay-1 {
  transition-delay: .1s;
}

body.page-contact .reveal-delay-2 {
  transition-delay: .2s;
}

body.page-contact .reveal-delay-3 {
  transition-delay: .3s;
}

body.page-contact .reveal-delay-4 {
  transition-delay: .4s;
}

body.page-contact .nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

body.page-contact .nav__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}

body.page-contact .nav__logo-icon {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.1rem;
}

body.page-contact .nav__logo-text {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  letter-spacing: .04em;
  line-height: 1;
  color: #fff;
}

body.page-contact .nav__logo-text span {
  color: var(--yellow);
}

body.page-contact .nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}

body.page-contact .nav__links a {
  font-family: var(--ff-narrow);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ccc;
  padding: 0 1.1rem;
  height: 72px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color .25s;
}

body.page-contact .nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width .3s var(--ease-out-expo);
}

body.page-contact .nav__links a:hover {
  color: #fff;
}

body.page-contact .nav__links a:hover::after {
  width: 100%;
}

body.page-contact .nav__links a.active {
  color: var(--yellow);
}

body.page-contact .nav__links a.active::after {
  width: 100%;
}

body.page-contact .nav__cta {
  background: var(--red);
  color: #fff;
  font-family: var(--ff-narrow);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .6rem 1.3rem;
  border-radius: 3px;
  transition: background .25s, transform .2s;
  flex-shrink: 0;
  white-space: nowrap;
}

body.page-contact .nav__cta:hover {
  background: #a81116;
  transform: translateY(-1px);
}

body.page-contact .nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  z-index: 1100;
}

body.page-contact .nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s, opacity .35s;
}

body.page-contact .nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.page-contact .nav__burger.open span:nth-child(2) {
  opacity: 0;
}

body.page-contact .nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.page-contact .mobile-menu__cta {
  background: var(--red);
  color: #fff !important;
  font-family: var(--ff-narrow) !important;
  font-size: 1rem !important;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .85rem 2.5rem;
  border-radius: 3px;
}

body.page-contact .hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

body.page-contact .hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/hero-shop.jpg');
  background-size: cover;
  background-position: center;
  opacity: .2;
  z-index: 0;
}

body.page-contact .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .85) 0%, rgba(10, 10, 10, .7) 100%);
  z-index: 1;
}

body.page-contact .hero__grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(253, 226, 12, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 226, 12, .04) 1px, transparent 1px);
  background-size: 60px 60px;
}

body.page-contact .hero__content {
  position: relative;
  z-index: 3;
  padding-block: clamp(3rem, 8vw, 5rem);
}

body.page-contact .hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-narrow);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.2rem;
}

body.page-contact .hero__breadcrumb a:hover {
  color: var(--yellow);
  transition: color .2s;
}

body.page-contact .hero__breadcrumb i {
  font-size: .6rem;
  color: var(--line);
}

body.page-contact .hero__eyebrow {
  margin-bottom: .8rem;
}

body.page-contact .hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .95;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 1.2rem;
}

body.page-contact .hero__title span {
  color: var(--red);
}

body.page-contact .hero__sub {
  font-family: var(--ff-narrow);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: #aaa;
  max-width: 540px;
  line-height: 1.7;
}

body.page-contact .info-cards {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: var(--ink);
}

body.page-contact .info-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

body.page-contact .info-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .3s, transform .3s;
}

body.page-contact .info-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

body.page-contact .info-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(253, 226, 12, .1);
  border: 1px solid rgba(253, 226, 12, .25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.3rem;
  flex-shrink: 0;
}

body.page-contact .info-card__label {
  font-family: var(--ff-narrow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .25rem;
}

body.page-contact .info-card__title {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .4rem;
}

body.page-contact .info-card__body {
  font-family: var(--ff-narrow);
  font-size: .95rem;
  color: #aaa;
  line-height: 1.7;
}

body.page-contact .info-card__body a {
  color: #fff;
  transition: color .2s;
}

body.page-contact .info-card__body a:hover {
  color: var(--yellow);
}

body.page-contact .info-card__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: .3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

body.page-contact .info-card__hours-row:last-child {
  border-bottom: none;
}

body.page-contact .info-card__hours-row span:first-child {
  color: #888;
}

body.page-contact .info-card__hours-row span:last-child {
  color: #fff;
  font-weight: 600;
}

body.page-contact .info-card__hours-row.closed span:last-child {
  color: var(--red);
}

body.page-contact .contact-section {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--black);
}

body.page-contact .contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

body.page-contact .contact-form__eyebrow {
  margin-bottom: .8rem;
}

body.page-contact .contact-form__heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .03em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: .8rem;
}

body.page-contact .contact-form__heading span {
  color: var(--yellow);
}

body.page-contact .contact-form__sub {
  font-family: var(--ff-narrow);
  font-size: .95rem;
  color: #888;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

body.page-contact .form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

body.page-contact .form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

body.page-contact .form__group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

body.page-contact .form__label {
  font-family: var(--ff-narrow);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #888;
}

body.page-contact .form__input,
body.page-contact .form__select,
body.page-contact .form__textarea {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #fff;
  font-family: var(--ff-body);
  font-size: .95rem;
  padding: .85rem 1rem;
  width: 100%;
  transition: border-color .25s, box-shadow .25s;
  appearance: none;
  outline: none;
}

body.page-contact .form__input::placeholder,
body.page-contact .form__textarea::placeholder {
  color: #555;
}

body.page-contact .form__input:focus,
body.page-contact .form__select:focus,
body.page-contact .form__textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(253, 226, 12, .1);
}

body.page-contact .form__select-wrap {
  position: relative;
}

body.page-contact .form__select-wrap::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  pointer-events: none;
}

body.page-contact .form__select {
  cursor: pointer;
}

body.page-contact .form__select option {
  background: #111;
}

body.page-contact .form__textarea {
  resize: vertical;
  min-height: 130px;
}

body.page-contact .form__submit {
  background: var(--red);
  color: #fff;
  font-family: var(--ff-narrow);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: background .25s, transform .2s;
  align-self: flex-start;
  margin-top: .25rem;
}

body.page-contact .form__submit:hover {
  background: #a81116;
  transform: translateY(-2px);
}

body.page-contact .form__submit i {
  font-size: .85rem;
}

body.page-contact .map-wrap {
  position: sticky;
  top: 90px;
}

body.page-contact .map-wrap__label {
  font-family: var(--ff-narrow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .8rem;
}

body.page-contact .map-wrap__heading {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}

body.page-contact .map-iframe-container {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}

body.page-contact .map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(60%) contrast(1.1);
}

body.page-contact .map-wrap__address {
  margin-top: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

body.page-contact .map-wrap__address i {
  color: var(--yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
}

body.page-contact .map-wrap__address-text {
  font-family: var(--ff-narrow);
  font-size: .9rem;
  color: #bbb;
  line-height: 1.55;
}

body.page-contact .map-wrap__address-text strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  margin-bottom: .15rem;
}

body.page-contact .map-wrap__directions {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--ff-narrow);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-top: .75rem;
  transition: gap .2s;
}

body.page-contact .map-wrap__directions:hover {
  gap: .65rem;
}

body.page-contact .faq {
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--ink);
}

body.page-contact .faq__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

body.page-contact .faq__header .eyebrow {
  margin-bottom: .8rem;
}

body.page-contact .faq__heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .03em;
  color: #fff;
  margin-bottom: .75rem;
}

body.page-contact .faq__heading span {
  color: var(--yellow);
}

body.page-contact .faq__sub {
  font-family: var(--ff-narrow);
  font-size: 1rem;
  color: #888;
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

body.page-contact .faq__list {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

body.page-contact .faq__item {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .3s;
}

body.page-contact .faq__item.open {
  border-color: rgba(253, 226, 12, .35);
}

body.page-contact .faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.75rem;
  text-align: left;
  font-family: var(--ff-narrow);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}

body.page-contact .faq__question:hover {
  color: var(--yellow);
}

body.page-contact .faq__item.open .faq__question {
  color: var(--yellow);
}

body.page-contact .faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: #888;
  transition: background .3s, color .3s, transform .4s var(--ease-out-expo);
}

body.page-contact .faq__item.open .faq__icon {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(45deg);
}

body.page-contact .faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease-out-expo);
}

body.page-contact .faq__answer-inner {
  padding: 0 1.75rem 1.5rem;
  font-family: var(--ff-narrow);
  font-size: .95rem;
  color: #999;
  line-height: 1.75;
}

body.page-contact .cta-band {
  background: var(--red);
  padding-block: clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}

body.page-contact .cta-band::before {
  content: 'TINT';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(8rem, 20vw, 16rem);
  letter-spacing: .02em;
  color: rgba(0, 0, 0, .15);
  line-height: 1;
  pointer-events: none;
}

body.page-contact .cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

body.page-contact .cta-band__text {
  flex: 1;
  min-width: 260px;
}

body.page-contact .cta-band__eyebrow {
  font-family: var(--ff-narrow);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: .5rem;
}

body.page-contact .cta-band__heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .03em;
  color: #fff;
  line-height: 1.05;
}

body.page-contact .cta-band__sub {
  font-family: var(--ff-narrow);
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
  margin-top: .6rem;
  line-height: 1.6;
}

body.page-contact .cta-band__actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  align-items: center;
}

body.page-contact .btn-black {
  background: var(--black);
  color: #fff;
  font-family: var(--ff-narrow);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .25s, transform .2s;
  white-space: nowrap;
}

body.page-contact .btn-black:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

body.page-contact .btn-outline-white {
  background: transparent;
  color: #fff;
  font-family: var(--ff-narrow);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .875rem 1.75rem;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, .4);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: border-color .25s, background .25s;
  white-space: nowrap;
}

body.page-contact .btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .1);
}

body.page-contact .footer {
  background: var(--black);
  border-top: 4px solid var(--yellow);
  padding-block: clamp(3rem, 7vw, 5rem) 2rem;
}

body.page-contact .footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

body.page-contact .footer__brand {}

body.page-contact .footer__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}

body.page-contact .footer__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}

body.page-contact .footer__logo-text {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  letter-spacing: .04em;
  color: #fff;
}

body.page-contact .footer__logo-text span {
  color: var(--yellow);
}

body.page-contact .footer__tagline {
  font-family: var(--ff-narrow);
  font-size: .875rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

body.page-contact .footer__socials {
  display: flex;
  gap: .6rem;
}

body.page-contact .footer__social-link {
  width: 38px;
  height: 38px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: .95rem;
  transition: background .2s, color .2s, border-color .2s;
}

body.page-contact .footer__social-link:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

body.page-contact .footer__col-title {
  font-family: var(--ff-narrow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}

body.page-contact .footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

body.page-contact .footer__links a {
  font-family: var(--ff-narrow);
  font-size: .9rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s, gap .2s;
}

body.page-contact .footer__links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--yellow);
  transition: width .2s;
}

body.page-contact .footer__links a:hover {
  color: #fff;
  gap: .75rem;
}

body.page-contact .footer__links a:hover::before {
  width: 10px;
}

body.page-contact .footer__address-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

body.page-contact .footer__address-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

body.page-contact .footer__address-item i {
  color: var(--yellow);
  font-size: .9rem;
  margin-top: .2rem;
  flex-shrink: 0;
}

body.page-contact .footer__address-text {
  font-family: var(--ff-narrow);
  font-size: .875rem;
  color: #888;
  line-height: 1.6;
}

body.page-contact .footer__address-text a {
  color: #bbb;
  transition: color .2s;
}

body.page-contact .footer__address-text a:hover {
  color: var(--yellow);
}

body.page-contact .footer__address-text strong {
  color: #ccc;
}

body.page-contact .footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

body.page-contact .footer__copy {
  font-family: var(--ff-narrow);
  font-size: .8rem;
  color: #555;
}

body.page-contact .footer__copy a {
  color: var(--yellow);
}

body.page-contact .footer__legal {
  display: flex;
  gap: 1.5rem;
}

body.page-contact .footer__legal a {
  font-family: var(--ff-narrow);
  font-size: .8rem;
  color: #555;
  transition: color .2s;
}

body.page-contact .footer__legal a:hover {
  color: #888;
}

@media (max-width: 1100px) {
  body.page-contact .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {

  body.page-contact .nav__links,
  body.page-contact .nav__cta {
    display: none;
  }

  body.page-contact .nav__burger {
    display: flex;
  }

  body.page-contact .info-cards__grid {
    grid-template-columns: 1fr;
  }

  body.page-contact .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  body.page-contact .map-wrap {
    position: static;
  }

  body.page-contact .form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body.page-contact .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.page-contact .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  body.page-contact .cta-band__actions {
    justify-content: center;
  }

  body.page-contact .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 980px) {}

body.page-contact .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-contact .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-contact .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
  width: 10%;
}

body.page-contact .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-contact .nav-links {
  display: flex !important;
  gap: 38px !important;
  align-items: center !important;
}

body.page-contact .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

body.page-contact .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  bottom: -4px !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--yellow) !important;
  transition: width .3s ease !important;
  display: none !important;
}

body.page-contact .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-contact .nav-links a:hover::after,
body.page-contact .nav-links a.active::after {
  width: 100% !important;
}

body.page-contact .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-contact .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-contact .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}

body.page-contact .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-contact .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-contact .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-contact .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-contact .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-contact .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-contact .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-contact .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-contact .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-contact .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-contact .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-contact .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.page-contact .nav-links {
    display: none !important;
  }

  body.page-contact .nav-inner .btn {
    display: none !important;
  }

  body.page-contact .burger {
    display: flex !important;
  }
}

body.page-contact .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-contact .mobile-menu.open {
  display: flex !important;
}

body.page-contact .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-contact .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-contact .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-contact .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: headlight-restoration.html (Body Class: page-headlight-restoration)
   ========================================================== */
body.page-headlight-restoration {
  --yellow: #FDE20C;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --red: #CE151B;
  --maxw: 1340px;
  --nav-h: 72px;
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-body: 'Archivo', sans-serif;
  --ff-narrow: 'Archivo Narrow', sans-serif;
  --ease: cubic-bezier(.25, .46, .45, .94);
}

body.page-headlight-restoration *,
body.page-headlight-restoration *::before,
body.page-headlight-restoration *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.page-headlight-restoration {
  background: var(--black);
  color: var(--bone);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.page-headlight-restoration img {
  display: block;
  max-width: 100%;
}

body.page-headlight-restoration a {
  color: inherit;
  text-decoration: none;
}

body.page-headlight-restoration ul {
  list-style: none;
}

body.page-headlight-restoration .container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

body.page-headlight-restoration .site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

body.page-headlight-restoration .nav-logo {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  letter-spacing: .04em;
  color: var(--bone);
}

body.page-headlight-restoration .nav-logo span {
  color: var(--yellow);
}

body.page-headlight-restoration .nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background .2s var(--ease) !important;
}

body.page-headlight-restoration .nav-cta:hover {
  background: #e6cc00 !important;
  color: var(--black) !important;
}

body.page-headlight-restoration .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--bone);
  font-size: 1.4rem;
}

body.page-headlight-restoration .mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity .3s var(--ease);
}

body.page-headlight-restoration .mobile-overlay.open {
  opacity: 1;
}

body.page-headlight-restoration .mobile-overlay a {
  font-family: var(--ff-display);
  font-size: 2rem;
  letter-spacing: .05em;
  color: var(--bone);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  width: 100%;
  text-align: center;
  transition: color .2s;
}

body.page-headlight-restoration .mobile-overlay a:hover,
body.page-headlight-restoration .mobile-overlay a.active {
  color: var(--yellow);
}

body.page-headlight-restoration .mobile-overlay a:last-child {
  border-bottom: none;
}

body.page-headlight-restoration .overlay-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 1.8rem;
  cursor: pointer;
}

body.page-headlight-restoration .page-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

body.page-headlight-restoration .page-hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/headlight-restoration.jpg') center center / cover no-repeat;
  opacity: .35;
}

body.page-headlight-restoration .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, .75) 100%);
}

body.page-headlight-restoration .page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

body.page-headlight-restoration .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-narrow);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 18px;
}

body.page-headlight-restoration .breadcrumb a {
  color: var(--yellow);
  transition: opacity .2s;
}

body.page-headlight-restoration .breadcrumb a:hover {
  opacity: .75;
}

body.page-headlight-restoration .breadcrumb i {
  font-size: .6rem;
  color: #666;
}

body.page-headlight-restoration .page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: .03em;
  color: var(--bone);
  margin-bottom: 16px;
}

body.page-headlight-restoration .page-hero h1 span {
  color: var(--yellow);
}

body.page-headlight-restoration .page-hero p {
  font-family: var(--ff-narrow);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

body.page-headlight-restoration .intro-section {
  background: var(--ink);
}

body.page-headlight-restoration .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}



body.page-headlight-restoration .intro-text h2 em {
  font-style: normal;
  color: var(--yellow);
}

body.page-headlight-restoration .intro-text p {
  font-size: .97rem;
  color: #bbb;
  margin-bottom: 18px;
  line-height: 1.75;
}

body.page-headlight-restoration .intro-text p:last-child {
  margin-bottom: 0;
}

body.page-headlight-restoration .intro-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

body.page-headlight-restoration .intro-image img {
  width: 100%;
  height: 575px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

body.page-headlight-restoration .why-section {
  background: var(--yellow);
  padding: 90px 0;
}

body.page-headlight-restoration .why-header {
  text-align: center;
  margin-bottom: 56px;
}

body.page-headlight-restoration .why-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  letter-spacing: .03em;
}

body.page-headlight-restoration .why-header p {
  font-family: var(--ff-narrow);
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

body.page-headlight-restoration .why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

body.page-headlight-restoration .why-card {
  background: rgba(0, 0, 0, .08);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}

body.page-headlight-restoration .why-card:hover {
  transform: translateY(-6px);
  background: rgba(0, 0, 0, .13);
}

body.page-headlight-restoration .why-card .icon {
  width: 64px;
  height: 64px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.5rem;
  color: var(--yellow);
}

body.page-headlight-restoration .why-card h3 {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  letter-spacing: .04em;
  color: var(--black);
  margin-bottom: 12px;
}

body.page-headlight-restoration .why-card p {
  font-family: var(--ff-narrow);
  font-size: .95rem;
  color: #1a1a1a;
  line-height: 1.65;
}

body.page-headlight-restoration .process-section {
  background: var(--ink-2);
  background-image: url(https://www.touchofshadetint.com//wp-content/themes/touch-of-shade/assets/images/automative-apint-protection.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

body.page-headlight-restoration .process-section .container {
  position: relative;
  z-index: 111;
}

body.page-headlight-restoration .process-section::before {
  height: 100%;
  width: 100%;
  background-color: #000000cf;
  position: absolute;
  content: '';
  inset: 0;
}

body.page-headlight-restoration .section-header {
  text-align: center;
  margin-bottom: 35px;
}

body.page-headlight-restoration .section-header .eyebrow {
  display: inline-block;
  font-family: var(--ff-narrow);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}


body.page-headlight-restoration .section-header p {
  color: #fff;
  text-align: left;
}

body.page-headlight-restoration .process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

body.page-headlight-restoration .process-steps::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

body.page-headlight-restoration .step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

body.page-headlight-restoration .step.revealed {
  opacity: 1;
  transform: translateY(0);
}

body.page-headlight-restoration .step:last-child {
  border-bottom: none;
}

body.page-headlight-restoration .step-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-display);
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

body.page-headlight-restoration .step-body h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--bone);
  margin-bottom: 8px;
}

body.page-headlight-restoration .step-body p {
  color: #fff;
}

body.page-headlight-restoration .benefits-section {
  background: var(--black);
  padding: 100px 0;
}

body.page-headlight-restoration .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

body.page-headlight-restoration .benefit-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 28px;
  transition: border-color .3s, transform .3s var(--ease);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .3s;
}

body.page-headlight-restoration .benefit-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

body.page-headlight-restoration .benefit-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

body.page-headlight-restoration .benefit-icon {
  width: 52px;
  height: 52px;
  background: rgba(253, 226, 12, .1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--yellow);
  margin-bottom: 20px;
}

body.page-headlight-restoration .benefit-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  letter-spacing: .04em;
  color: var(--bone);
  margin-bottom: 10px;
}

body.page-headlight-restoration .benefit-card p {
  font-family: var(--ff-narrow);
  font-size: .92rem;
  color: #888;
  line-height: 1.6;
}

body.page-headlight-restoration .comparison-section {
  background: var(--ink);
  padding: 100px 0;
}

body.page-headlight-restoration .comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

body.page-headlight-restoration .compare-card {
  border-radius: 8px;
  overflow: hidden;
}

body.page-headlight-restoration .compare-card__head {
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  letter-spacing: .05em;
}

body.page-headlight-restoration .compare-card.before .compare-card__head {
  background: #1a1a1a;
  color: #888;
}

body.page-headlight-restoration .compare-card.after .compare-card__head {
  background: var(--yellow);
  color: var(--black);
}

body.page-headlight-restoration .compare-card__head i {
  font-size: 1rem;
}

body.page-headlight-restoration .compare-card__body {
  background: var(--ink-2);
  padding: 28px;
  border: 1px solid var(--line);
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

body.page-headlight-restoration .compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-narrow);
  font-size: .95rem;
  color: #aaa;
  line-height: 1.5;
}

body.page-headlight-restoration .compare-list li:last-child {
  border-bottom: none;
}

body.page-headlight-restoration .compare-card.before .compare-list li i {
  color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}

body.page-headlight-restoration .compare-card.after .compare-list li i {
  color: #2ecc71;
  margin-top: 3px;
  flex-shrink: 0;
}

body.page-headlight-restoration .compare-card.after .compare-list li {
  color: var(--bone);
}

body.page-headlight-restoration .pricing-section {
  background: var(--black);
  padding: 100px 0;
}

body.page-headlight-restoration .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

body.page-headlight-restoration .price-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: border-color .3s, transform .3s var(--ease);
}

body.page-headlight-restoration .price-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

body.page-headlight-restoration .price-card.featured {
  border-color: var(--yellow);
  background: rgba(253, 226, 12, .04);
}

body.page-headlight-restoration .price-card .badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-narrow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

body.page-headlight-restoration .price-card h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--bone);
  margin-bottom: 6px;
}

body.page-headlight-restoration .price-card .price-label {
  font-family: var(--ff-narrow);
  font-size: .82rem;
  color: #666;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

body.page-headlight-restoration .price-card .price-amount {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

body.page-headlight-restoration .price-card .price-note {
  font-family: var(--ff-narrow);
  font-size: .8rem;
  color: #666;
  margin-bottom: 28px;
}

body.page-headlight-restoration .price-card ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-headlight-restoration .price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ff-narrow);
  font-size: .9rem;
  color: #aaa;
}

body.page-headlight-restoration .price-card ul li i {
  color: var(--yellow);
  margin-top: 3px;
  flex-shrink: 0;
}

body.page-headlight-restoration .price-divider {
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}

body.page-headlight-restoration .price-disclaimer {
  text-align: center;
  font-family: var(--ff-narrow);
  font-size: .85rem;
  color: #555;
  margin-top: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

body.page-headlight-restoration .cta-band {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
}

body.page-headlight-restoration .cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 12px;
}

body.page-headlight-restoration .cta-band p {
  font-family: var(--ff-narrow);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 36px;
}

body.page-headlight-restoration .cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

body.page-headlight-restoration .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-narrow);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  border: 2px solid var(--yellow);
  transition: background .2s var(--ease), color .2s var(--ease);
  cursor: pointer;
}

body.page-headlight-restoration .btn-primary:hover {
  background: #e6cc00;
  border-color: #e6cc00;
}

body.page-headlight-restoration .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-family: var(--ff-narrow);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, .6);
  transition: border-color .2s, background .2s;
}

body.page-headlight-restoration .btn-outline-white:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
}

body.page-headlight-restoration .site-footer {
  background: var(--ink);
  border-top: 4px solid var(--yellow);
  padding: 80px 0 40px;
}

body.page-headlight-restoration .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

body.page-headlight-restoration .footer-brand p {
  font-family: var(--ff-narrow);
  font-size: .9rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}

body.page-headlight-restoration .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ff-narrow);
  font-size: .88rem;
  color: #888;
  margin-bottom: 10px;
}

body.page-headlight-restoration .footer-contact-item i {
  color: var(--yellow);
  margin-top: 3px;
  flex-shrink: 0;
}

body.page-headlight-restoration .footer-contact-item a {
  color: #888;
  transition: color .2s;
}

body.page-headlight-restoration .footer-contact-item a:hover {
  color: var(--yellow);
}

body.page-headlight-restoration .footer-col h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 20px;
}

body.page-headlight-restoration .footer-col ul li {
  margin-bottom: 10px;
}

body.page-headlight-restoration .footer-col ul li a {
  font-family: var(--ff-narrow);
  font-size: .88rem;
  color: #777;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-headlight-restoration .footer-col ul li a:hover {
  color: var(--yellow);
}

body.page-headlight-restoration .footer-col ul li a i {
  font-size: .65rem;
  color: var(--yellow);
}

body.page-headlight-restoration .footer-hours .hour-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-narrow);
  font-size: .85rem;
  color: #777;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

body.page-headlight-restoration .footer-hours .hour-row:last-child {
  border-bottom: none;
}

body.page-headlight-restoration .footer-hours .hour-row span:last-child {
  color: var(--bone);
}

body.page-headlight-restoration .footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

body.page-headlight-restoration .footer-bottom p {
  font-family: var(--ff-narrow);
  font-size: .8rem;
  color: #555;
}

body.page-headlight-restoration .social-links {
  display: flex;
  gap: 12px;
}

body.page-headlight-restoration .social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: #666;
  transition: border-color .2s, color .2s, background .2s;
}

body.page-headlight-restoration .social-links a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(253, 226, 12, .06);
}

body.page-headlight-restoration .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

body.page-headlight-restoration .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  body.page-headlight-restoration .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.page-headlight-restoration .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  body.page-headlight-restoration .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  body.page-headlight-restoration .nav-toggle {
    display: flex;
  }

  body.page-headlight-restoration .mobile-overlay {
    display: flex;
  }

  body.page-headlight-restoration .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  body.page-headlight-restoration .intro-image img {
    height: 340px;
  }

  body.page-headlight-restoration .why-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  body.page-headlight-restoration .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.page-headlight-restoration .comparison-grid {
    grid-template-columns: 1fr;
  }

  body.page-headlight-restoration .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  body.page-headlight-restoration .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  body.page-headlight-restoration .process-steps::before {
    left: 30px;
  }

  body.page-headlight-restoration .step-num {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 540px) {
  body.page-headlight-restoration .benefits-grid {
    grid-template-columns: 1fr;
  }

  body.page-headlight-restoration .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  body.page-headlight-restoration .cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 980px) {}

body.page-headlight-restoration .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-headlight-restoration .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 15px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-headlight-restoration .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
}

body.page-headlight-restoration .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-headlight-restoration .nav-links {
  display: flex !important;
  gap: 38px !important;
  align-items: center !important;
}

body.page-headlight-restoration .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

body.page-headlight-restoration .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  bottom: -4px !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--yellow) !important;
  transition: width .3s ease !important;
}

body.page-headlight-restoration .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-headlight-restoration .nav-links a:hover::after,
body.page-headlight-restoration .nav-links a.active::after {
  width: 100% !important;
}

body.page-headlight-restoration .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-headlight-restoration .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-headlight-restoration .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}

body.page-headlight-restoration .nav-links .has-drop::after {
  content: "▾" !important;
  font-size: 11px !important;
  color: var(--yellow) !important;
  margin-left: 2px !important;
  display: inline-block !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  background: none !important;
}

body.page-headlight-restoration .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-headlight-restoration .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-headlight-restoration .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-headlight-restoration .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-headlight-restoration .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-headlight-restoration .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-headlight-restoration .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-headlight-restoration .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-headlight-restoration .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-headlight-restoration .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-headlight-restoration .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-headlight-restoration .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.page-headlight-restoration .nav-links {
    display: none !important;
  }

  body.page-headlight-restoration .nav-inner .btn {
    display: none !important;
  }

  body.page-headlight-restoration .burger {
    display: flex !important;
  }
}

body.page-headlight-restoration .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-headlight-restoration .mobile-menu.open {
  display: flex !important;
}

body.page-headlight-restoration .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-headlight-restoration .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-headlight-restoration .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-headlight-restoration .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: index.html (Body Class: is-home)
   ========================================================== */
body.is-home {
  --yellow: #FDE20C;
  --yellow-dim: #E5CB00;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --mute: #8a8a8a;
  --mute-2: #5a5a5a;
  --maxw: 1340px;
  --e-global-color-ec3c7a7: #FF6D00;
  --e-global-color-3ee16e7: #E39101;
  --e-global-color-4a928a8: #FFC700;
  --display: "Bebas Neue", "Anton", Impact, sans-serif;
  --body: "Archivo", system-ui, sans-serif;
  --narrow: "Archivo Narrow", "Archivo", sans-serif;
}

body.is-home *,
body.is-home *::before,
body.is-home *::after {
  box-sizing: border-box
}

html,
body.is-home {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body.is-home {
  font-family: var(--body);
  background: var(--black);
  color: var(--bone);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-home img {
  max-width: 100%;
  display: block
}

body.is-home p a {
  font-style: normal;
  font-size: 16px;
}

body.is-home a {
  color: inherit;
  text-decoration: none
}

body.is-home button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit
}

body.is-home h1,
body.is-home h2,
body.is-home h3,
body.is-home h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .95;
  margin: 0
}

body.is-home p {
  margin: 0
}

body.is-home .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

body.is-home section {
  padding: 75px 0px !important;
}

@media (max-width:640px) {
  body.is-home .container {
    padding: 0 20px
  }
}

body.is-home .eyebrow {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: .18em;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e7d010;
}

body.is-home .eyebrow::before {
  content: "◆";
  font-size: 17px;
  color: var(--yellow);
  display: none;
}

body.is-home .eyebrow.dark {
  color: var(--black)
}

body.is-home .eyebrow.dark::before {
  color: var(--black)
}

body.is-home .btn {
  --bg: #ce151b;
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--narrow);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease;
  position: relative;
}

body.is-home .btn .arrow {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .25s ease;
  display: none;
}

body.is-home .btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
  display: none;
}

body.is-home .btn:hover .arrow {
  width: 26px
}

body.is-home .btn.ghost {
  --bg: transparent;
  --fg: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
  clip-path: none;
}

body.is-home .btn.ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow)
}

body.is-home .btn.dark {
  --bg: var(--black);
  --fg: var(--yellow)
}

body.is-home .utility {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 60;
}

body.is-home .utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%
}

body.is-home .utility a {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

body.is-home .utility .phone:hover {
  text-decoration: underline
}

body.is-home .utility .socials {
  display: flex;
  gap: 18px
}

body.is-home .utility .socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

body.is-home .utility .socials a {
  transition: opacity .2s
}

body.is-home .utility .socials a:hover {
  opacity: .6
}

body.is-home .utility .left {
  display: flex;
  gap: 28px;
  align-items: center
}

body.is-home .utility .ping {
  font-size: 11px;
  opacity: .65
}

@media (max-width:720px) {
  body.is-home .utility .ping {
    display: none
  }
}

body.is-home .nav {
  z-index: 50;
  background: transparent;
  border-bottom: transparent;
  transition: background .25s ease, border-color .25s ease;
  position: absolute;
  width: 100%;
  top: 0;
  backdrop-filter: unset;
}

body.is-home .nav.scrolled {
  background: rgba(0, 0, 0, .98)
}

body.is-home .nav-inner .btn {
  background-color: #CE151B;
  color: #fff;
}

body.is-home .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.is-home .logo {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  width: 100%;
  max-width: 170px;
}

body.is-home .logo img {
  width: 100%;
  max-width: 200px;
}

body.is-home .logo .name {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
  border-left: 1px solid #2a2a2a;
  padding-left: 16px;
}

body.is-home .logo .name small {
  display: block;
  color: var(--yellow);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: .32em;
  margin-top: 4px
}

@media (max-width:560px) {
  body.is-home .logo .name {
    display: none
  }
}

body.is-home .nav-links {
  display: flex;
  gap: 38px;
  align-items: center
}

body.is-home .nav-links a {
  font-family: var(--narrow);
  letter-spacing: .18rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  position: relative;
}

body.is-home .nav-links a::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width .3s ease;
}

body.is-home .nav-links a:hover {
  color: #fff
}

body.is-home .nav-links a:hover::after,
body.is-home .nav-links a.active::after {
  width: 100%
}

body.is-home .nav-links .has-drop {
  display: inline-flex;
  align-items: center;
  gap: 6px
}



body.is-home .burger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: flex-end
}

body.is-home .burger span {
  display: block;
  height: 2px;
  background: var(--yellow);
  width: 24px
}

body.is-home .burger span:nth-child(2) {
  width: 18px
}

@media (max-width:1260px) {
  body.is-home .nav-links {
    display: none;
  }

  body.is-home .burger {
    display: flex;
  }
}

body.is-home .hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050505;
  display: flex;
  align-items: center;
}

body.is-home .hero .bg {
  position: absolute;
  inset: -10% -2% -10% -2%;
  background: url("https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/hero-shop.jpg") center right/cover no-repeat;
  z-index: 0;
  will-change: transform;
}

body.is-home .hero .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .85) 35%, rgba(0, 0, 0, .35) 70%, rgba(0, 0, 0, .55) 100%), linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, .75) 100%);
}

body.is-home .hero .grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(253, 226, 12, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 226, 12, .06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(120deg, #00000000 30%, transparent 80%);
}

body.is-home .hero h1 {}

body.is-home .hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 120px 15px;
}

body.is-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end
}

body.is-home .hero-content {
  max-width: 980px
}

body.is-home .hero h1 {
  font-family: var(--display);
  font-size: 70px;
  color: var(--bone);
  letter-spacing: .005em;
  line-height: 80px;
  margin-top: 18px;
  margin-bottom: 12px;
}

body.is-home .hero h1 .yellow {
  color: var(--yellow);
  -webkit-text-stroke: 2px var(--yellow);
  color: #ce151b;
}

body.is-home .hero h1 .accent-bar {
  display: inline-block;
  width: 64px;
  height: 8px;
  background: var(--yellow);
  vertical-align: middle;
  margin: 0 16px 18px 0;
  display: none;
}

body.is-home .hero .sub {
  max-width: 676px;
  font-size: 18px;
  color: #fff;
  margin-bottom: 28px;
}

body.is-home .hero .ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap
}

body.is-home .hero-side {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

body.is-home .vertical-tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: #8a8a8a;
  border-left: 1px solid var(--yellow);
  padding: 36px 0 36px 14px;
  display: none;
}

body.is-home .vertical-tag b {
  color: var(--yellow);
  font-weight: 600
}

@media (max-width:980px) {
  body.is-home .hero-grid {
    grid-template-columns: 1fr
  }

  body.is-home .hero-side {
    display: none
  }
}

body.is-home .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  font-family: var(--narrow);
  font-size: 11px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: #fff;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  display: none;
}

body.is-home .scroll-cue .bar {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--yellow), transparent);
  position: relative;
  overflow: hidden;
}

body.is-home .scroll-cue .bar::after {
  content: "";
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 30%;
  background: var(--yellow);
  animation: slide 2s ease-in-out infinite;
}

@keyframes slide {
  0% {
    top: -30%
  }

  100% {
    top: 130%
  }
}

body.is-home .stats {
  background: var(--yellow);
  color: var(--black);
  padding: 20px 0 !important;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--black);
}

body.is-home .stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(0, 0, 0, .06) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

body.is-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

body.is-home .stat {
  padding: 14px 30px;
  border-left: 2px solid rgba(0, 0, 0, .85);
  position: relative;
}

body.is-home .stat .n {
  font-family: var(--display);
  font-size: 60px;
  line-height: 1;
  color: var(--black);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

body.is-home .stat .label {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--black);
}

@media (max-width:880px) {
  body.is-home .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px
  }
}

@media (max-width:480px) {
  body.is-home .stats-grid {
    grid-template-columns: 1fr
  }
}

body.is-home .llumar {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

body.is-home .llumar .bg {
  position: absolute;
  inset: 0;
  opacity: .14;
  z-index: 0;
  will-change: transform;
  background-color: #000 !important;
}

body.is-home .llumar {
  background-color: #000 !important;
}

body.is-home .llumar .container {
  position: relative;
  z-index: 2
}

body.is-home .llumar-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 90px;
  align-items: center
}

@media (max-width:980px) {
  body.is-home .llumar-grid {
    grid-template-columns: 1fr;
    gap: 60px
  }

  body.is-home .llumar {
    padding: 90px 0
  }
}

body.is-home .llumar h2 {
  font-size: 62px;
  color: var(--bone);
  margin: 22px 0 14px;
  line-height: 71px;
  margin-top: 15px;
}

body.is-home .llumar .sub {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--yellow);
  letter-spacing: .04em;
  margin-bottom: 12px;
  background-color: transparent;
  color: var(--yellow);
  width: max-content;
}

body.is-home .llumar .desc {
  max-width: 560px;
  margin-bottom: 32px
}

body.is-home .check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 14px;
  color: #e8e8e8;
}

body.is-home .check li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 6px 0;
  letter-spacing: .04em
}

body.is-home .check li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--yellow);
  transform: rotate(45deg);
  flex-shrink: 0;
}

body.is-home .llumar-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px
}

body.is-home .contact-link {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #bdbdbd;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

body.is-home .contact-link:hover {
  color: var(--yellow);
  border-color: var(--yellow)
}

body.is-home .contact-link b {
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: .16em
}

body.is-home .llumar-visual .badge {
  position: absolute;
  left: -32px;
  top: 30px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
  padding: 18px 22px;
  transform: rotate(-3deg);
  letter-spacing: .04em;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6);
  display: none;
}

body.is-home .llumar-visual .badge b {
  display: block;
  font-size: 36px;
  color: var(--black);
  font-weight: 400
}

body.is-home .llumar-visual .badge small {
  display: block;
  font-family: var(--narrow);
  font-size: 9px;
  letter-spacing: .3em;
  margin-top: 4px;
  font-weight: 700
}

body.is-home .marquee {
  background: #ce151b;
  color: #fff;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  overflow: hidden;
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
}

body.is-home .marquee-track {
  display: flex;
  gap: 54px;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
  padding-right: 54px;
}

body.is-home .marquee-track span {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 54px;
}

body.is-home .marquee-track span::after {
  content: "✦";
  color: #fff;
  font-size: 18px;
}

@keyframes scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

body.is-home .services {
  background: var(--ink);
  padding: 140px 0 110px;
}

body.is-home .services * {
  transition: 0.8s !important;
}

body.is-home .services-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 40px;
  text-align: center;
}

body.is-home .services-head h2 {
  font-size: 65px;
  color: var(--bone);
  margin-top: 16px;
  max-width: 1229px;
  margin-inline: auto;
  display: block;
}

body.is-home .services-head .lead {
  color: #b5b5b5;
  font-size: 16px;
  line-height: 1.75;
  max-width: 480px
}

@media (max-width:880px) {
  body.is-home .services-head {
    grid-template-columns: 1fr;
    gap: 30px
  }
}

body.is-home .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width:980px) {
  body.is-home .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:600px) {
  body.is-home .services-grid {
    grid-template-columns: 1fr
  }
}

body.is-home .service {
  position: relative;
  background: #0F0F0F;
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
  padding: 10px;
  cursor: pointer;
}

body.is-home .service:hover {
  transform: translateY(-6px);
  border-color: #ce151b;
}

body.is-home .service .num {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #ce151b;
  place-items: center;
  font-family: var(--display);
  z-index: 3;
  border-radius: 0px;
  -webkit-text-stroke: 2px #fff;
  font-size: 40px;
  color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 10px;
  right: 10px;
}

body.is-home .service .image {
  aspect-ratio: 4/3;
  background: #222 center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

body.is-home .service .body {
  padding: 25px 20px;
}

body.is-home .service h3 {
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1;
}

body.is-home .service p {
  color: #fff;
  margin-bottom: 20px;
}

body.is-home .service .more span {
  display: none;
}

body.is-home .service .more {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--yellow);
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap .25s ease;
}

body.is-home .service:hover .more span {
  display: none;
}

body.is-home .service:hover .more {
  gap: 18px;
}

body.is-home .midcta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 100px;
}

body.is-home .midcta .bg {
  position: absolute;
  inset: -10% 0;
  background: url("https://images.unsplash.com/photo-1494976388531-d1058494cdd8?auto=format&fit=crop&w=2400&q=80") center/cover no-repeat;
  z-index: 0;
  will-change: transform;
}

body.is-home .midcta .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .7) 50%, rgba(0, 0, 0, .92));
  z-index: 1
}

body.is-home .midcta .container {
  position: relative;
  z-index: 2;
  text-align: center
}

body.is-home .midcta h2 {
  font-size: 90px;
  color: #fff;
  max-width: 1200px;
  margin: 18px auto 28px;
  letter-spacing: .005em;
  line-height: 94px;
  margin-bottom: 0px;
}

body.is-home .midcta h2 .outline {
  -webkit-text-stroke: 2px #ce151b;
  color: #ce151b;
}

body.is-home .midcta .desc {
  max-width: 100%;
  margin: 0 auto 20px;
  color: #fff;
}

body.is-home .midcta-sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 96px;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 50px;
}

body.is-home .midcta-sub h4 {
  font-family: var(--display);
  font-size: 28px;
  color: var(--yellow);
  letter-spacing: .04em;
  margin-bottom: 14px;
}

body.is-home .midcta-sub p {
  color: #fff;
}

@media (max-width:880px) {
  body.is-home .midcta-sub {
    grid-template-columns: 1fr;
    gap: 28px
  }
}

body.is-home .stickers {
  background: var(--ink-2);
  padding: 120px 0;
  overflow: hidden;
}

body.is-home .stickers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}

@media (max-width:880px) {
  body.is-home .stickers-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }
}

body.is-home .stickers-visual {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 560px;
  width: 100%;
  background: #fde20c;
}

body.is-home .stickers-visual .img {
  position: absolute;
  inset: 6% 6% -6% -6%;
  background: url("https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/colorado-springs-expert-window-tinting-3.jpg") center/cover no-repeat;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .06);
  background-size: cover;
  background-position: left;
}

body.is-home .stickers-visual .tag {
  position: absolute;
  right: 4px;
  top: 3px;
  background: #fde20c;
  color: #000000;
  padding: 8px 13px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: .04em;
  transform: unset;
  z-index: 2;
}

body.is-home .stickers h2 {
  font-size: 60px;
  color: var(--bone);
  margin: 15px 0 5px;
  max-width: 100%;
  line-height: 68px;
}

body.is-home .stickers .desc {
  color: #fff;
  max-width: 700px;
  margin-bottom: 34px
}

body.is-home .why {
  background: var(--ink);
  padding: 140px 0;
  text-align: center;
}

body.is-home .why-head {
  margin-bottom: 40px;
}

body.is-home .why-head h2 {
  font-size: clamp(40px, 5vw, 76px);
  color: var(--bone);
  margin-top: 22px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

body.is-home .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width:980px) {
  body.is-home .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:560px) {
  body.is-home .why-grid {
    grid-template-columns: 1fr
  }
}

body.is-home .why-card {
  background: #0F0F0F;
  border: 1px solid var(--line);
  padding: 20px;
  text-align: left;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
  position: relative;
}

body.is-home .why-card:hover {
  background: #ce1519;
  border-color: #ce1519;
  color: var(--black);
}

body.is-home .why-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid #CE1519;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  transition: border-color .3s, background .3s;
  background: #CE1519;
}

body.is-home .why-card:hover .icon {
  border-color: var(--black);
  background: var(--black)
}

body.is-home .why-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  transition: stroke .3s;
}

body.is-home .why-card:hover .icon svg {
  stroke: var(--yellow)
}

body.is-home .why-card h4 {
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.05;
  margin-bottom: 14px;
  transition: color .3s;
}

body.is-home .why-card:hover h4 {
  color: #fff;
}

body.is-home .why-card p {
  color: #fff;
}

body.is-home .why-card:hover p {
  color: #fff;
}

body.is-home .why-card .index {
  font-family: var(--display);
  color: #2f2f2f;
  opacity: 1;
  transition: color .3s, opacity .3s;
  font-size: 60px;
  position: absolute;
  top: -5px;
  right: 14px;
}

body.is-home .why-card:hover .index {
  color: var(--black);
  opacity: .6
}

body.is-home .testi {
  background: var(--yellow);
  color: var(--black);
  padding: 120px 0;
  position: relative;
}

body.is-home .testi-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

body.is-home .testi-head h2 {
  font-size: clamp(40px, 5vw, 76px);
  color: var(--black);
  margin-top: 18px;
  max-width: 720px;
}

body.is-home .testi-nav {
  display: flex;
  gap: 10px
}

body.is-home .testi-nav button {
  width: 45px;
  height: 45px;
  border: 1.5px solid var(--black);
  display: grid;
  place-items: center;
  background: transparent;
  transition: background .2s;
}

body.is-home .testi-nav button:hover {
  background: var(--black);
  color: var(--yellow)
}

body.is-home .testi-nav button svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

body.is-home .testi-track-wrap {
  overflow: hidden;
  cursor: grab
}

body.is-home .testi-track-wrap.dragging {
  cursor: grabbing
}

body.is-home .testi-track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

body.is-home .review {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  background: transparent;
  color: #e8e8e8;
  padding: 25px;
  position: relative;
  border: 1px solid var(--black);
  background: #000;
}

body.is-home .review .quote {
  font-family: var(--display);
  color: var(--yellow);
  font-size: 72px;
  line-height: .6;
  margin-bottom: 12px;
  display: none;
}

body.is-home .review .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  color: #fff;
}

body.is-home .review .stars svg {
  width: 28px;
  height: 28px;
  fill: orange;
}

body.is-home .review p {
  line-height: 1.7;
  color: #fff;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

body.is-home .review .who {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #222;
  padding-top: 18px
}

body.is-home .review .who b {
  display: block;
  font-family: var(--display);
  font-size: 25px;
  color: #fff;
  letter-spacing: .04em;
  font-weight: 300;
}

body.is-home .review .who small {
  display: block;
  font-family: var(--narrow);
  font-size: 16px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
}

@media (max-width:980px) {
  body.is-home .review {
    flex-basis: calc((100% - 24px) / 2)
  }
}

@media (max-width:640px) {
  body.is-home .review {
    flex-basis: 100%
  }
}

body.is-home .final {
  background: var(--black);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

body.is-home .final .bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: url("https://images.unsplash.com/photo-1583121274602-3e2820c69888?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  opacity: .25;
  z-index: 0;
  will-change: transform;
}

body.is-home .final .accent {
  position: absolute;
  right: -10%;
  top: -20%;
  bottom: 0;
  width: 60%;
  background: var(--yellow);
  clip-path: polygon(80% 0, 100% 0, 30% 100%, 10% 100%);
  opacity: .05;
  z-index: 0;
}

body.is-home .final .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .95) 30%, rgba(0, 0, 0, .6) 70%);
  z-index: 1
}

body.is-home .final .container {
  position: relative;
  z-index: 2;
}

body.is-home .news {
  background: #fff;
  padding: 30px;
}

body.is-home .final-grid {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
}

body.is-home .map-block {
  height: 100%;
  background: #fff;
}

@media (max-width:980px) {
  body.is-home .final-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }
}

body.is-home .final h2 {
  font-size: clamp(38px, 4.6vw, 68px);
  color: var(--bone);
  margin: 18px 0 18px;
}

body.is-home .final .sub {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--yellow);
  letter-spacing: .04em;
  margin-bottom: 22px;
  display: none;
}

body.is-home .final .desc {
  color: #fff;
  max-width: 584px;
}

body.is-home .hours h3,
body.is-home .news h3 {
  font-family: var(--display);
  font-size: 35px;
  color: #000;
  margin-bottom: 22px;
  letter-spacing: .02em;
}

body.is-home .hours h3::after,
body.is-home .news h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: #090808;
  margin-top: 14px;
}

body.is-home .hours dl {
  margin: 0;
  font-family: var(--narrow);
  font-size: 14px;
  letter-spacing: .05em
}

body.is-home .hours dt {
  color: #d4d4d4;
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px
}

body.is-home .hours dd {
  margin: 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .04em;
  margin-top: 2px
}

body.is-home .hours .closed {
  color: #888;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .04em
}

body.is-home .news p {
  color: #000;
  margin-bottom: 20px;
}

body.is-home .news .form {
  display: flex;
  flex-direction: column;
  gap: 10px
}

body.is-home .news input {
  background: transparent;
  border: 1px solid #2a2a2a3d;
  padding: 0px 10px;
  font-family: var(--narrow);
  font-size: 17px;
  color: #fff;
  letter-spacing: .05em;
  outline: none;
  transition: border-color .2s;
  height: 50px;
  display: flex;
  akuc: inherit;
}

body.is-home .news input::placeholder {
  color: #242424;
  letter-spacing: .1em;
  text-transform: capitalize;
  font-size: 16px
}

body.is-home .news input:focus {
  border-color: var(--yellow)
}

body.is-home .news button {
  align-self: flex-start;
  justify-content: end;
  width: fit-content;
  margin-left: auto;
}

body.is-home footer {
  background: var(--black);
  border-top: 4px solid var(--yellow);
  padding: 80px 0 0
}

body.is-home .foot-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 50px;
}

@media (max-width:980px) {
  body.is-home .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }
}

@media (max-width:560px) {
  body.is-home .foot-grid {
    grid-template-columns: 1fr
  }
}

body.is-home .foot h5 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 24px;
}

body.is-home .foot h5::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  margin-top: 10px;
}

body.is-home .foot ul {
  list-style: none;
  margin: 0;
  padding: 0
}

body.is-home .foot li {
  margin-bottom: 10px
}

body.is-home .foot li a {
  font-family: var(--narrow);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bdbdbd;
  font-weight: 600;
  transition: color .2s;
}

body.is-home .foot li a:hover {
  color: var(--yellow)
}

body.is-home .foot .tag {
  color: #a5a5a5;
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0 22px;
  max-width: 300px
}

body.is-home .foot .socials {
  display: flex;
  gap: 12px;
  margin-top: 14px
}

body.is-home .foot .socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #2a2a2a;
  display: grid;
  place-items: center;
  color: #bdbdbd;
  transition: background .2s, color .2s, border-color .2s;
}

body.is-home .foot .socials a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow)
}

body.is-home .foot .socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

body.is-home .map {
  width: 100%;
  aspect-ratio: 5/3;
  background: #111;
  position: relative;
  border: 1px solid #1f1f1f;
  overflow: hidden;
}

body.is-home .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(.4) brightness(.95);
}

body.is-home .addr {
  font-style: normal;
  font-family: var(--narrow);
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
  letter-spacing: .02em;
  margin: 0 0 18px;
  padding: 14px 0 14px 14px;
  border-left: 2px solid var(--yellow);
}

body.is-home .addr strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

body.is-home .addr a {
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: .1em
}

body.is-home .addr a:hover {
  text-decoration: underline
}

body.is-home .foot-bottom {
  background: var(--ink);
  margin-top: 60px;
  padding: 22px 0;
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .16em;
  color: #7a7a7a;
  text-transform: uppercase;
}

body.is-home .foot-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center
}

body.is-home .foot-bottom a {
  color: #a5a5a5
}

body.is-home .foot-bottom a:hover {
  color: var(--yellow)
}

body.is-home .foot-bottom .right {
  display: flex;
  gap: 24px
}

body.is-home .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease
}

body.is-home .reveal.in {
  opacity: 1;
  transform: translateY(0)
}

body.is-home .reveal.d1 {
  transition-delay: .08s
}

body.is-home .reveal.d2 {
  transition-delay: .16s
}

body.is-home .reveal.d3 {
  transition-delay: .24s
}

body.is-home .reveal.d4 {
  transition-delay: .32s
}

body.is-home ::selection {
  background: var(--yellow);
  color: var(--black)
}

body.is-home .llumar-visual {
  height: 100%;
  width: 100%;
  max-width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}

body.is-home .llumar-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

body.is-home .llumar {
  padding: 0px !important;
}

body.is-home element.style {}

body.is-home .left-bx {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

body.is-home .llumar .eyebrow {
  color: #fff;
}

body.is-home .stickers h2 span {
  color: #ce151b;
}

body.is-home .main-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

body.is-home .map-block iframe {
  width: 100%;
  height: 100%;
}

body.is-home .site-time-block dl * {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

body.is-home .site-time-block dl dt {
  position: relative;
}

body.is-home .site-time-block dl dt::before {
  height: 100%;
  width: 2px;
  background-color: #fff;
  position: absolute;
  content: '';
  right: -25px;
}

body.is-home .site-time-block dl {
  display: flex;
  background: #ce151b;
  padding: 15px;
  justify-content: center;
  gap: 7px;
  margin: 0px;
  border-top: 4px solid #ce151b;
}

body.is-home .footer-section-container {}

body.is-home .footer-section-container {
  max-width: var(--maxw);
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  align-items: center;
}

body.is-home footer {
  display: none;
}

body.is-home .new-footer-col ul li a {
  font-family: var(--body) !important;
}

body.is-home .new-footer {
  background: #000000;
  border-top: 5px solid #fde20c;
}

body.is-home .new-footer-col ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

body.is-home .footer-logo p {
  margin-bottom: 14px;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  margin-top: 22px;
}

body.is-home .new-footer-col ul li a {
  color: #fff;
  text-transform: capitalize;
  font-family: var(--display);
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 16px;
}

body.is-home .footer-logo img {
  text-align: center;
  margin-inline: auto;
  width: 100%;
  max-width: 230px;
}

body.is-home .footer-col-section h2 {
  color: #fff;
  font-size: 30px !important;
  margin-bottom: 35px;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 1px;
}

body.is-home .new-footer-col .brand-line {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

body.is-home .new-footer-col .brand-line strong {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

body.is-home .new-footer-col .contact-line span {
  color: #fff;
}

body.is-home .new-footer-col .contact-line {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

body.is-home .new-footer-col .contact-line svg {}

body.is-home .new-footer-col .tag {
  color: #fff;
  margin: 18px 0px;
  text-align: center;
}

body.is-home .new-footer-col .socials a {
  height: 40px;
  width: 40px;
  background: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
}

body.is-home .new-footer-col .socials a svg {
  width: 30px;
  height: 20px;
}

body.is-home .new-footer-col .socials {
  display: flex;
  gap: 10px;
  justify-content: center;
}

body.is-home .new-footer-grid {
  display: grid;
  grid-template-columns: 20% 50% 20%;
  justify-content: space-between;
  gap: 30px;
  padding: 75px 15px 15px 15px;
  max-width: var(--maxw);
  padding-bottom: 0px;
  margin-inline: auto;
}

body.is-home .new-footer-col ul li {
  margin-bottom: 25px;
}

body.is-home .new-footer-col:last-child {}

body.is-home .new-footer-col:nth-last-child(2) {
  width: 100%;
  margin-inline: auto;
  display: block;
  max-width: 392px;
  position: relative;
  left: -37px;
  position: relative;
}

body.is-home .new-footer-col:nth-last-child(2)::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 1px;
  background-color: #ffffff36;
  left: -86px;
}

body.is-home .new-footer-col:nth-last-child(2)::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 1px;
  background-color: #ffffff36;
  right: -92px;
  top: 0;
}

body.is-home .socials {
  display: flex;
  width: 50%;
  justify-content: end;
  gap: 10px;
}

body.is-home .socials a {
  height: 40px;
  width: 40px;
  background-color: red;
}

body.is-home .footer-end {
  text-align: end;
  display: flex;
  margin-top: 40px;
  border-top: 1px solid #ffffff36;
  padding: 10px 0px;
  margin-bottom: 0px;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  align-items: center;
  background: #ce151b;
}

body.is-home .gallery .ba img {
  display: none !important;
}

body.is-home .footer-end p a {
  text-transform: capitalize;
  color: #fff;
}

body.is-home .new-footer-col .insured {
  text-align: center;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 0px;
}

body.is-home .address p {
  color: #fff;
  text-align: center;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: start;
}

body.is-home .address p i {
  position: relative;
  top: 4px;
}

body.is-home .address h6 {
  margin: 0px;
  border-top: 1px solid #ffffff36;
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  font-size: 21px;
  margin-bottom: 10px;
}

body.is-home .footer-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

body.is-home .new-footer-col:nth-last-child(2) a {
  color: #fff;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
  margin-bottom: 10px;
  background: #ce151b;
  width: max-content;
  margin-inline: auto;
  padding: 4px 10px;
  outline: 2px solid #fff;
  font-weight: 700;
  outline-offset: -4px;
  font-size: 17px;
}

body.is-home .footer-section-container {
  max-width: var(--maxw);
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
}

body.is-home .socials a {
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: 1px solid #ffffff;
  padding: 8px;
}

body.is-home .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.98) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  transition: background .25s ease, border-color .25s ease;
  backdrop-filter: blur(10px) !important;
}

body.is-home.is-home .nav {
  position: absolute !important;
  background: transparent !important;
  border-bottom: transparent !important;
  backdrop-filter: none !important;
}

body.is-home.is-home .nav.scrolled {
  background: rgba(0, 0, 0, 0.98) !important;
  border-bottom: 1px solid var(--line) !important;
  backdrop-filter: blur(10px) !important;
}

body.is-home .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.is-home .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
}

body.is-home .logo img {
  width: 100% !important;
  max-width: 200px;
  display: block !important;
}

body.is-home .nav-links {
  display: flex;
  gap: 38px !important;
  align-items: center !important;
}

body.is-home .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

body.is-home .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--yellow) !important;
  transition: width .3s ease !important;
}

body.is-home .nav-links a:hover {
  color: var(--yellow) !important;
}

body.is-home .nav-links a:hover::after,
body.is-home .nav-links a.active::after {
  width: 100% !important;
}

body.is-home .nav-links a.active {
  color: var(--yellow) !important;
}

body.is-home .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.is-home .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}


body.is-home .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.is-home .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.is-home .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.is-home .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.is-home .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #fff;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.is-home .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.is-home .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.is-home .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.is-home .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  display: none !important;
}

body.is-home .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.is-home .burger span:nth-child(2) {
  width: 18px !important;
}

body.is-home .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.is-home .nav-links {
    display: none !important;
  }

  body.is-home .nav-inner .btn {
    display: none !important;
  }

  body.is-home .burger {
    display: flex !important;
  }
}

body.is-home .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.is-home .mobile-menu.open {
  display: flex !important;
}

body.is-home .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.is-home .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.is-home .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.is-home .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: paint-protection.html (Body Class: page-paint-protection)
   ========================================================== */
body.page-paint-protection {
  --yellow: #FDE20C;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --red: #CE151B;
  --maxw: 1340px;
  --ff-display: 'Bebas Neue', sans-serif;
  --ff-body: 'Archivo', sans-serif;
  --ff-narrow: 'Archivo Narrow', sans-serif;
  --nav-h: 72px;
  --transition: 0.3s ease;
}

body.page-paint-protection *,
body.page-paint-protection *::before,
body.page-paint-protection *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.page-paint-protection {
  background: var(--black);
  color: var(--bone);
  font-family: var(--ff-body);
  line-height: 1.7;
  overflow-x: hidden;
}

body.page-paint-protection img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.page-paint-protection a {
  text-decoration: none;
  color: inherit;
}

body.page-paint-protection ul {
  list-style: none;
}

body.page-paint-protection .container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

body.page-paint-protection .yellow {
  color: var(--yellow);
}

body.page-paint-protection .red {
  color: var(--red);
}

body.page-paint-protection .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-narrow);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

body.page-paint-protection .btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

body.page-paint-protection .btn-yellow:hover {
  background: #e8cf00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 226, 12, .25);
}

body.page-paint-protection .btn-red {
  background: var(--red);
  color: #fff;
}

body.page-paint-protection .btn-red:hover {
  background: #a81015;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206, 21, 27, .35);
}

body.page-paint-protection .btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

body.page-paint-protection .btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

body.page-paint-protection .section-tag {
  display: inline-block;
  font-family: var(--ff-narrow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 6px 16px;
  border: 1px solid rgba(253, 226, 12, .3);
  margin-bottom: 16px;
}

body.page-paint-protection .reveal {
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.page-paint-protection .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.page-paint-protection .reveal-delay-1 {
  transition-delay: 0.1s;
}

body.page-paint-protection .reveal-delay-2 {
  transition-delay: 0.2s;
}

body.page-paint-protection .reveal-delay-3 {
  transition-delay: 0.3s;
}

body.page-paint-protection .reveal-delay-4 {
  transition-delay: 0.4s;
}

body.page-paint-protection .reveal-delay-5 {
  transition-delay: 0.5s;
}

body.page-paint-protection .site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: var(--nav-h);
  background: rgba(0, 0, 0, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

body.page-paint-protection .nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

body.page-paint-protection .nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-paint-protection .nav-logo-icon svg {
  width: 22px;
  height: 22px;
}

body.page-paint-protection .nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

body.page-paint-protection .nav-logo-text .top {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: #fff;
}

body.page-paint-protection .nav-logo-text .sub {
  font-family: var(--ff-narrow);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
}

body.page-paint-protection .nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

body.page-paint-protection .nav-phone {
  font-family: var(--ff-narrow);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bone);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-paint-protection .nav-phone i {
  color: var(--yellow);
  font-size: 0.8rem;
}

body.page-paint-protection .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

body.page-paint-protection .hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bone);
  transition: var(--transition);
}

body.page-paint-protection .hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.page-paint-protection .hamburger.open span:nth-child(2) {
  opacity: 0;
}

body.page-paint-protection .hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.page-paint-protection .mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 8900;
  background: rgba(0, 0, 0, .98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77, 0, .18, 1);
}

body.page-paint-protection .mobile-overlay.open {
  transform: translateX(0);
}

body.page-paint-protection .mobile-overlay a {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  color: var(--bone);
  padding: 8px 24px;
  transition: color var(--transition);
}

body.page-paint-protection .mobile-overlay a:hover,
body.page-paint-protection .mobile-overlay a.active {
  color: var(--yellow);
}

body.page-paint-protection .mobile-overlay .mob-phone {
  margin-top: 24px;
  font-family: var(--ff-narrow);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
}

body.page-paint-protection .hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  margin-top: var(--nav-h);
  overflow: hidden;
}

body.page-paint-protection .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.touchofshadetint.com//wp-content/themes/touch-of-shade/assets/images/automative-apint-protection.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.3;
}

body.page-paint-protection .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .92) 0%, rgba(10, 10, 10, .75) 60%, rgba(0, 0, 0, .60) 100%);
}

body.page-paint-protection .hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}

body.page-paint-protection .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-narrow);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, .5);
  margin-bottom: 28px;
}

body.page-paint-protection .breadcrumb a {
  color: rgba(244, 241, 232, .5);
  transition: color var(--transition);
}

body.page-paint-protection .breadcrumb a:hover {
  color: var(--yellow);
}

body.page-paint-protection .breadcrumb i {
  font-size: 0.6rem;
  color: var(--yellow);
}

body.page-paint-protection .breadcrumb span {
  color: var(--yellow);
}

body.page-paint-protection .hero-eyebrow {
  font-family: var(--ff-narrow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.page-paint-protection .hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--yellow);
}

body.page-paint-protection .hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 24px;
}

body.page-paint-protection .hero h1 span {
  color: var(--yellow);
}

body.page-paint-protection .hero-desc {
  font-size: 1.05rem;
  color: rgba(244, 241, 232, .78);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

body.page-paint-protection .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

body.page-paint-protection .hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 226, 12, .08);
  border: 1px solid rgba(253, 226, 12, .25);
  padding: 8px 16px;
  font-family: var(--ff-narrow);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
}

body.page-paint-protection .hero-badge i {
  color: var(--yellow);
  font-size: 0.75rem;
}

body.page-paint-protection .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body.page-paint-protection .hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0%, var(--red) 100%);
}

body.page-paint-protection .intro-section {
  padding: 100px 0;
  background: var(--ink);
}

body.page-paint-protection .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

body.page-paint-protection .intro-text .section-tag {
  margin-bottom: 16px;
}

body.page-paint-protection .intro-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 28px;
}

body.page-paint-protection .intro-text h2 span {
  color: var(--yellow);
}

body.page-paint-protection .intro-text p {
  color: #fff;
  margin-bottom: 15px;
}

body.page-paint-protection .intro-text p:last-of-type {
  margin-bottom: 32px;
}

body.page-paint-protection .intro-feature-list {
  margin-top: 8px;
}

body.page-paint-protection .intro-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: rgba(244, 241, 232, .8);
}

body.page-paint-protection .intro-feature-list li:last-child {
  border-bottom: none;
}

body.page-paint-protection .intro-feature-list i {
  color: var(--yellow);
  margin-top: 3px;
  flex-shrink: 0;
}

body.page-paint-protection .intro-image-wrap {
  position: relative;
}

body.page-paint-protection .intro-img-container {
  position: relative;
  overflow: hidden;
}

body.page-paint-protection .intro-img-container img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

body.page-paint-protection .intro-img-container:hover img {
  transform: scale(1.04);
}

body.page-paint-protection .img-accent-corner {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--yellow);
  border-right: 4px solid var(--yellow);
  z-index: 2;
  pointer-events: none;
}

body.page-paint-protection .img-accent-corner-bl {
  position: absolute;
  bottom: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-bottom: 4px solid var(--red);
  border-left: 4px solid var(--red);
  z-index: 2;
  pointer-events: none;
}

body.page-paint-protection .self-healing-badge {
  position: absolute;
  bottom: 28px;
  left: -28px;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 20px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 180px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
  display: none;
}

body.page-paint-protection .self-healing-badge .badge-icon {
  font-size: 1.4rem;
}

body.page-paint-protection .self-healing-badge .badge-label {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

body.page-paint-protection .self-healing-badge .badge-sub {
  font-family: var(--ff-narrow);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}


body.page-paint-protection .section-header {
  text-align: center;
  margin-bottom: 35px;
}

/* body.page-paint-protection .section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 16px;
} */

body.page-paint-protection .section-header h2 span {
  color: var(--yellow);
}

body.page-paint-protection .section-header p {
  font-size: 1rem;
  color: rgba(244, 241, 232, .65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

body.page-paint-protection .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2px;
}

body.page-paint-protection .benefit-card {
  background: var(--ink-2);
  padding: 15px;
  border: 1px solid var(--line);
  position: relative;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  overflow: hidden;
}

body.page-paint-protection .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

body.page-paint-protection .benefit-card:hover {
  background: #1a1a1a;
  border-color: rgba(253, 226, 12, .2);
  transform: translateY(-4px);
}

body.page-paint-protection .benefit-card:hover::before {
  transform: scaleX(1);
}

body.page-paint-protection .benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(253, 226, 12, .08);
  border: 1px solid rgba(253, 226, 12, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  display: none;
}

body.page-paint-protection .benefit-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--yellow);
}

body.page-paint-protection .benefit-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 12px;
}

body.page-paint-protection .benefit-card p {
  color: #fff;
}

body.page-paint-protection .coverage-section {
  padding: 100px 0;
  background: var(--ink);
  position: relative;
}

body.page-paint-protection .coverage-section::before {
  content: 'PPF';
  position: absolute;
  top: 40px;
  right: 24px;
  font-family: var(--ff-display);
  font-size: 10rem;
  color: rgba(253, 226, 12, .03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

body.page-paint-protection .coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-paint-protection .coverage-card {
  background: var(--black);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

body.page-paint-protection .coverage-card:hover {
  border-color: var(--yellow);
  transform: translateY(-6px);
}

body.page-paint-protection .coverage-card.featured {
  border-color: var(--yellow);
}

body.page-paint-protection .featured-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--ff-narrow);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
}

body.page-paint-protection .coverage-header {
  padding: 36px 32px 28px;
  border-bottom: 1px solid var(--line);
}

body.page-paint-protection .coverage-pkg {
  font-family: var(--ff-narrow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

body.page-paint-protection .coverage-card h3 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

body.page-paint-protection .coverage-card .coverage-desc {
  font-size: 0.85rem;
  color: rgba(244, 241, 232, .6);
  line-height: 1.6;
}

body.page-paint-protection .coverage-body {
  padding: 28px 32px;
  flex: 1;
}

body.page-paint-protection .coverage-body h4 {
  font-family: var(--ff-narrow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, .45);
  margin-bottom: 16px;
}

body.page-paint-protection .coverage-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-paint-protection .coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(244, 241, 232, .8);
}

body.page-paint-protection .coverage-list li i {
  color: var(--yellow);
  font-size: 0.8rem;
  flex-shrink: 0;
}

body.page-paint-protection .coverage-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--line);
}

body.page-paint-protection .coverage-footer .btn {
  width: 100%;
  justify-content: center;
}

body.page-paint-protection .tech-section {
  padding: 100px 0;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}

body.page-paint-protection .tech-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
}

body.page-paint-protection .tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

body.page-paint-protection .tech-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.page-paint-protection .layer-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
}

body.page-paint-protection .layer {
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}

body.page-paint-protection .layer:hover {
  transform: translateX(6px);
}

body.page-paint-protection .layer-1 {
  background: rgba(253, 226, 12, .12);
  border-left: 4px solid var(--yellow);
}

body.page-paint-protection .layer-2 {
  background: rgba(253, 226, 12, .07);
  border-left: 4px solid rgba(253, 226, 12, .6);
}

body.page-paint-protection .layer-3 {
  background: rgba(253, 226, 12, .04);
  border-left: 4px solid rgba(253, 226, 12, .4);
}

body.page-paint-protection .layer-4 {
  background: rgba(206, 21, 27, .08);
  border-left: 4px solid rgba(206, 21, 27, .5);
}

body.page-paint-protection .layer-5 {
  background: rgba(206, 21, 27, .04);
  border-left: 4px solid rgba(206, 21, 27, .3);
}

body.page-paint-protection .layer-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(253, 226, 12, .15);
  border: 1px solid rgba(253, 226, 12, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--yellow);
  flex-shrink: 0;
}

body.page-paint-protection .layer-info .layer-name {
  font-family: var(--ff-narrow);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

body.page-paint-protection .layer-info .layer-detail {
  font-size: 0.78rem;
  color: rgba(244, 241, 232, .5);
}

body.page-paint-protection .tech-content .section-tag {
  margin-bottom: 16px;
}

body.page-paint-protection .tech-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 24px;
}

body.page-paint-protection .tech-content h2 span {
  color: var(--yellow);
}

body.page-paint-protection .tech-content p {
  font-size: 0.95rem;
  color: rgba(244, 241, 232, .72);
  margin-bottom: 18px;
  line-height: 1.8;
}

body.page-paint-protection .tech-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

body.page-paint-protection .tech-stat {
  padding: 20px 24px;
  background: rgba(253, 226, 12, .05);
  border: 1px solid rgba(253, 226, 12, .15);
}

body.page-paint-protection .tech-stat .stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 4px;
}

body.page-paint-protection .tech-stat .stat-label {
  font-family: var(--ff-narrow);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, .55);
}

body.page-paint-protection .process-section {
  padding: 100px 0;
  background: var(--black);
}

body.page-paint-protection .process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

body.page-paint-protection .process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  z-index: 0;
}

body.page-paint-protection .process-step {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

body.page-paint-protection .step-num {
  width: 72px;
  height: 72px;
  background: var(--ink-2);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--yellow);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  transition: background var(--transition);
}

body.page-paint-protection .process-step:hover .step-num {
  background: var(--yellow);
  color: var(--black);
}

body.page-paint-protection .step-icon {
  width: 44px;
  height: 44px;
  background: rgba(253, 226, 12, .08);
  border: 1px solid rgba(253, 226, 12, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

body.page-paint-protection .step-icon i {
  color: var(--yellow);
  font-size: 1.1rem;
}

body.page-paint-protection .process-step h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 12px;
}

body.page-paint-protection .process-step p {
  font-size: 0.83rem;
  color: rgba(244, 241, 232, .6);
  line-height: 1.65;
}

body.page-paint-protection .compare-section {
  padding: 100px 0;
  background: var(--ink);
}

body.page-paint-protection .compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

body.page-paint-protection .compare-card {
  padding: 48px 40px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

body.page-paint-protection .compare-card.without-ppf {
  background: var(--ink-2);
}

body.page-paint-protection .compare-card.with-ppf {
  background: linear-gradient(135deg, rgba(253, 226, 12, .04) 0%, var(--ink-2) 100%);
  border-color: rgba(253, 226, 12, .3);
}

body.page-paint-protection .compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  margin-bottom: 32px;
  font-family: var(--ff-narrow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.page-paint-protection .without-ppf .compare-badge {
  background: rgba(206, 21, 27, .12);
  border: 1px solid rgba(206, 21, 27, .3);
  color: #ff6b6b;
}

body.page-paint-protection .with-ppf .compare-badge {
  background: rgba(253, 226, 12, .12);
  border: 1px solid rgba(253, 226, 12, .3);
  color: var(--yellow);
}

body.page-paint-protection .compare-card h3 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 28px;
}

body.page-paint-protection .compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.page-paint-protection .compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(244, 241, 232, .75);
  line-height: 1.5;
}

body.page-paint-protection .without-ppf .compare-list li i {
  color: var(--red);
  font-size: 0.85rem;
  margin-top: 2px;
}

body.page-paint-protection .with-ppf .compare-list li i {
  color: var(--yellow);
  font-size: 0.85rem;
  margin-top: 2px;
}

body.page-paint-protection .compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  position: relative;
  margin-top: -12px;
  margin-bottom: -12px;
}

body.page-paint-protection .cta-band {
  padding: 80px 0;
  background: var(--red);
  position: relative;
  overflow: hidden;
}

body.page-paint-protection .cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

body.page-paint-protection .cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .1);
}

body.page-paint-protection .cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

body.page-paint-protection .cta-eyebrow {
  font-family: var(--ff-narrow);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

body.page-paint-protection .cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.1;
}

body.page-paint-protection .cta-band p {
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
  max-width: 560px;
}

body.page-paint-protection .cta-phone {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 16px 36px;
  margin: 8px 0;
}

body.page-paint-protection .cta-phone i {
  color: var(--yellow);
  font-size: 1.4rem;
}

body.page-paint-protection .cta-phone-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: #fff;
}

body.page-paint-protection .cta-phone-label {
  font-family: var(--ff-narrow);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

body.page-paint-protection .cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

body.page-paint-protection .cta-btn-white {
  background: #fff;
  color: var(--red);
  font-family: var(--ff-narrow);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

body.page-paint-protection .cta-btn-white:hover {
  background: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

body.page-paint-protection .cta-btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .5);
  font-family: var(--ff-narrow);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 36px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

body.page-paint-protection .cta-btn-outline-white:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
}

body.page-paint-protection .site-footer {
  background: var(--ink-2);
  border-top: 4px solid var(--yellow);
  padding: 72px 0 0;
}

body.page-paint-protection .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

body.page-paint-protection .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


body.page-paint-protection .footer-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

body.page-paint-protection .footer-logo-text .top {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: #fff;
  display: block;
}

body.page-paint-protection .footer-logo-text .sub {
  font-family: var(--ff-narrow);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
}

body.page-paint-protection .footer-brand p {
  font-size: 0.85rem;
  color: rgba(244, 241, 232, .55);
  line-height: 1.75;
}

body.page-paint-protection .footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

body.page-paint-protection .footer-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 241, 232, .5);
  font-size: 0.85rem;
  transition: var(--transition);
}

body.page-paint-protection .footer-social-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

body.page-paint-protection .footer-col h4 {
  font-family: var(--ff-narrow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

body.page-paint-protection .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-paint-protection .footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(244, 241, 232, .6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

body.page-paint-protection .footer-col ul li a::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--yellow);
  flex-shrink: 0;
  transition: width var(--transition);
}

body.page-paint-protection .footer-col ul li a:hover {
  color: var(--yellow);
}

body.page-paint-protection .footer-col ul li a:hover::before {
  width: 12px;
}

body.page-paint-protection .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-paint-protection .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

body.page-paint-protection .footer-contact-item i {
  color: var(--yellow);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

body.page-paint-protection .footer-contact-item span {
  font-size: 0.85rem;
  color: rgba(244, 241, 232, .6);
  line-height: 1.6;
}

body.page-paint-protection .footer-contact-item a {
  font-size: 0.85rem;
  color: rgba(244, 241, 232, .6);
  transition: color var(--transition);
}

body.page-paint-protection .footer-contact-item a:hover {
  color: var(--yellow);
}

body.page-paint-protection .footer-bottom {
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

body.page-paint-protection .footer-bottom p {
  font-size: 0.78rem;
  color: rgba(244, 241, 232, .35);
  font-family: var(--ff-narrow);
}

body.page-paint-protection .footer-bottom-links {
  display: flex;
  gap: 20px;
}

body.page-paint-protection .footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(244, 241, 232, .35);
  font-family: var(--ff-narrow);
  transition: color var(--transition);
}

body.page-paint-protection .footer-bottom-links a:hover {
  color: var(--yellow);
}

@media (max-width: 1100px) {
  body.page-paint-protection .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-paint-protection .coverage-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  body.page-paint-protection .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  body.page-paint-protection .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  body.page-paint-protection .tech-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  body.page-paint-protection .compare-grid {
    grid-template-columns: 1fr;
  }

  body.page-paint-protection .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  body.page-paint-protection .process-steps::before {
    display: none;
  }

  body.page-paint-protection .self-healing-badge {
    left: 16px;
  }

  body.page-paint-protection .hamburger {
    display: flex;
  }

  body.page-paint-protection .nav-cta .btn {
    display: none;
  }

  body.page-paint-protection .tech-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  body.page-paint-protection .benefits-grid {
    grid-template-columns: 1fr;
  }

  body.page-paint-protection .process-steps {
    grid-template-columns: 1fr;
  }

  body.page-paint-protection .footer-grid {
    grid-template-columns: 1fr;
  }

  body.page-paint-protection .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  body.page-paint-protection .hero-actions {
    flex-direction: column;
  }

  body.page-paint-protection .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  body.page-paint-protection .tech-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {}

body.page-paint-protection .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-paint-protection .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-paint-protection .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
  width: 10%;
}

body.page-paint-protection .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-paint-protection .nav-links {
  display: flex !important;
  gap: 38px !important;
  align-items: center !important;
}

body.page-paint-protection .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

body.page-paint-protection .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  bottom: -4px !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--yellow) !important;
  transition: width .3s ease !important;
}

body.page-paint-protection .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-paint-protection .nav-links a:hover::after,
body.page-paint-protection .nav-links a.active::after {
  width: 100% !important;
}

body.page-paint-protection .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-paint-protection .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-paint-protection .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}


body.page-paint-protection .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-paint-protection .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-paint-protection .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-paint-protection .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-paint-protection .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-paint-protection .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-paint-protection .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-paint-protection .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-paint-protection .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-paint-protection .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-paint-protection .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-paint-protection .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.page-paint-protection .nav-links {
    display: none !important;
  }

  body.page-paint-protection .nav-inner .btn {
    display: none !important;
  }

  body.page-paint-protection .burger {
    display: flex !important;
  }
}

body.page-paint-protection .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-paint-protection .mobile-menu.open {
  display: flex !important;
}

body.page-paint-protection .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-paint-protection .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-paint-protection .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-paint-protection .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: projects.html (Body Class: page-projects)
   ========================================================== */
body.page-projects {
  --yellow: #FDE20C;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --red: #CE151B;
  --maxw: 1340px;
  --display: "Bebas Neue", sans-serif;
  --body: "Archivo", sans-serif;
  --narrow: "Archivo Narrow", sans-serif;
}

body.page-projects *,
body.page-projects *::before,
body.page-projects *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.page-projects {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.page-projects img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.page-projects a {
  text-decoration: none;
  color: inherit;
}

body.page-projects ul {
  list-style: none;
}

body.page-projects .container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

body.page-projects .eyebrow {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
}

body.page-projects .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  background-color: #ce151b;
}

body.page-projects .btn-red {
  background: var(--red);
  color: #fff;
}

body.page-projects .btn-red:hover {
  background: #a81116;
  transform: translateY(-2px);
}

body.page-projects .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}

body.page-projects .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

body.page-projects .reveal.d1 {
  transition-delay: .08s;
}

body.page-projects .reveal.d2 {
  transition-delay: .16s;
}

body.page-projects .reveal.d3 {
  transition-delay: .24s;
}

body.page-projects .page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
  border-bottom: 4px solid var(--yellow);
}

body.page-projects .page-hero .bg {
  position: absolute;
  inset: 0;
  background: url('https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/hero-shop.jpg') center/cover no-repeat;
  opacity: .25;
  z-index: 0;
}

body.page-projects .page-hero .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .95) 40%, rgba(0, 0, 0, .5) 100%);
}

body.page-projects .page-hero .grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(253, 226, 12, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 226, 12, .05) 1px, transparent 1px);
  background-size: 60px 60px;
}

body.page-projects .page-hero .container {
  position: relative;
  z-index: 3;
  padding: 100px 0 80px;
}

body.page-projects .breadcrumb {
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-projects .breadcrumb a {
  color: var(--yellow);
}

body.page-projects .breadcrumb a:hover {
  text-decoration: underline;
}

body.page-projects .page-hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 90px);
  color: var(--bone);
  line-height: 1;
  margin: 12px 0 18px;
}

body.page-projects .page-hero h1 span {
  color: var(--yellow);
}

body.page-projects .page-hero .sub {
  font-size: 18px;
  color: #ccc;
  max-width: 580px;
  line-height: 1.7;
}

/* body.page-projects .gallery-section {
  padding: 80px 0;
  background: var(--ink);
} */

body.page-projects .filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

body.page-projects .filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 10px 24px;
  font-family: var(--narrow);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

body.page-projects .filter-btn:hover,
body.page-projects .filter-btn.active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 4px 15px rgba(253, 226, 12, 0.2);
}

body.page-projects .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

body.page-projects .gallery-item {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

body.page-projects .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

body.page-projects .gallery-item:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

body.page-projects .gallery-item:hover img {
  transform: scale(1.06);
}

body.page-projects .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
}

body.page-projects .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

body.page-projects .gallery-overlay .cat {
  font-family: var(--narrow);
  font-size: 11px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

body.page-projects .gallery-overlay h3 {
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

body.page-projects .gallery-overlay .view-zoom {
  font-family: var(--narrow);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-projects .gallery-overlay .view-zoom i {
  color: var(--yellow);
}

body.page-projects .gallery-item.hidden {
  display: none;
}

body.page-projects .lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.page-projects .lightbox.open {
  display: flex;
  opacity: 1;
}

body.page-projects .lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

body.page-projects .lightbox.open .lightbox-content {
  transform: scale(1);
}

body.page-projects .lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 2px solid var(--line);
}

body.page-projects .lightbox-caption {
  margin-top: 15px;
  text-align: center;
}

body.page-projects .lightbox-caption h3 {
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
  letter-spacing: 0.05em;
}

body.page-projects .lightbox-caption p {
  font-family: var(--narrow);
  font-size: 13px;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

body.page-projects .lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
}

body.page-projects .lightbox-close:hover {
  color: var(--yellow);
}

body.page-projects .lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
}

body.page-projects .lightbox-btn:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

body.page-projects .lightbox-prev {
  left: -70px;
}

body.page-projects .lightbox-next {
  right: -70px;
}

@media (max-width: 768px) {
  body.page-projects .lightbox-prev {
    left: 10px;
  }

  body.page-projects .lightbox-next {
    right: 10px;
  }

  body.page-projects .lightbox-btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
  }

  body.page-projects .lightbox-close {
    top: 10px;
    right: 15px;
    position: fixed;
  }
}

body.page-projects footer {
  background: var(--black);
  border-top: 4px solid var(--yellow);
  padding: 80px 0 0;
}

body.page-projects .foot-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 50px;
}

@media (max-width:980px) {
  body.page-projects .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }
}

@media (max-width:560px) {
  body.page-projects .foot-grid {
    grid-template-columns: 1fr
  }
}

body.page-projects .foot h5 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 24px;
}

body.page-projects .foot h5::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  margin-top: 10px
}

body.page-projects .foot ul {
  list-style: none;
  margin: 0;
  padding: 0
}

body.page-projects .foot li {
  margin-bottom: 10px
}

body.page-projects .foot li a {
  font-family: var(--narrow);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bdbdbd;
  font-weight: 600;
  transition: color .2s;
}

body.page-projects .foot li a:hover {
  color: var(--yellow)
}

body.page-projects .foot .tag {
  color: #a5a5a5;
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0 22px;
  max-width: 300px
}

body.page-projects .foot .socials {
  display: flex;
  gap: 12px;
  margin-top: 14px
}

body.page-projects .foot .socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #2a2a2a;
  display: grid;
  place-items: center;
  color: #bdbdbd;
  transition: background .2s, color .2s, border-color .2s;
}

body.page-projects .foot .socials a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow)
}

body.page-projects .foot .socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

body.page-projects .addr {
  font-style: normal;
  font-family: var(--narrow);
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
  letter-spacing: .02em;
  margin: 0 0 18px;
  padding: 14px 0 14px 14px;
  border-left: 2px solid var(--yellow);
}

body.page-projects .addr strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 6px
}

body.page-projects .addr a {
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: .1em
}

body.page-projects .addr a:hover {
  text-decoration: underline
}

body.page-projects .foot-bottom {
  background: var(--ink);
  margin-top: 60px;
  padding: 22px 0;
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .16em;
  color: #7a7a7a;
  text-transform: uppercase;
}

body.page-projects .foot-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center
}

body.page-projects .foot-bottom a {
  color: #a5a5a5
}

body.page-projects .foot-bottom a:hover {
  color: var(--yellow)
}

body.page-projects .foot-bottom .right {
  display: flex;
  gap: 24px
}

body.page-projects .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-projects .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-projects .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
  width: 10%;
}

body.page-projects .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-projects .nav-links {
  display: flex;
  gap: 38px !important;
  align-items: center !important;
}

body.page-projects .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

body.page-projects .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  bottom: -4px !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--yellow) !important;
  transition: width .3s ease !important;
}

body.page-projects .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-projects .nav-links a:hover::after,
body.page-projects .nav-links a.active::after {
  width: 100% !important;
}

body.page-projects .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-projects .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-projects .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}


body.page-projects .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-projects .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-projects .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-projects .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-projects .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-projects .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-projects .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-projects .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-projects .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-projects .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-projects .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-projects .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.page-projects .nav-links {
    display: none !important;
  }

  body.page-projects .nav-inner .btn {
    display: none !important;
  }

  body.page-projects .burger {
    display: flex !important;
  }
}

body.page-projects .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-projects .mobile-menu.open {
  display: flex !important;
}

body.page-projects .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-projects .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-projects .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-projects .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: reviews.html (Body Class: page-reviews)
   ========================================================== */
body.page-reviews {
  --yellow: #FDE20C;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --red: #CE151B;
  --maxw: 1340px;
  --display: "Bebas Neue", sans-serif;
  --body: "Archivo", sans-serif;
  --narrow: "Archivo Narrow", sans-serif;
}

body.page-reviews *,
body.page-reviews *::before,
body.page-reviews *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.page-reviews {
  background: var(--black);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.page-reviews img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.page-reviews a {
  text-decoration: none;
  color: inherit;
}

body.page-reviews ul {
  list-style: none;
}

body.page-reviews .container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

body.page-reviews .eyebrow {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
}

body.page-reviews .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}

body.page-reviews .btn-red {
  background: var(--red);
  color: #fff;
}

body.page-reviews .btn-red:hover {
  background: #a81116;
  transform: translateY(-2px);
}

body.page-reviews .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

body.page-reviews .btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

body.page-reviews .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}

body.page-reviews .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

body.page-reviews .reveal.d1 {
  transition-delay: .08s;
}

body.page-reviews .reveal.d2 {
  transition-delay: .16s;
}

body.page-reviews .reveal.d3 {
  transition-delay: .24s;
}

body.page-reviews .page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
  border-bottom: 4px solid var(--yellow);
}

body.page-reviews .page-hero .bg {
  position: absolute;
  inset: 0;
  background: url('https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/hero-shop.jpg') center/cover no-repeat;
  opacity: .25;
  z-index: 0;
}

body.page-reviews .page-hero .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, .95) 40%, rgba(0, 0, 0, .5) 100%);
}

body.page-reviews .page-hero .grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(253, 226, 12, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 226, 12, .05) 1px, transparent 1px);
  background-size: 60px 60px;
}

body.page-reviews .page-hero .container {
  position: relative;
  z-index: 3;
  padding: 100px 0 80px;
}

body.page-reviews .breadcrumb {
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-reviews .breadcrumb a {
  color: var(--yellow);
}

body.page-reviews .breadcrumb a:hover {
  text-decoration: underline;
}

body.page-reviews .page-hero h1 {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 90px);
  color: var(--bone);
  line-height: 1;
  margin: 12px 0 18px;
}

body.page-reviews .page-hero h1 span {
  color: var(--yellow);
}

body.page-reviews .page-hero .sub {
  font-size: 18px;
  color: #ccc;
  max-width: 580px;
  line-height: 1.7;
}

body.page-reviews .overview-section {
  padding: 60px 0;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

body.page-reviews .overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  body.page-reviews .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}

body.page-reviews .rating-box {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 30px;
  text-align: center;
  border-radius: 4px;
}

body.page-reviews .rating-box .score {
  font-family: var(--display);
  font-size: 72px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

body.page-reviews .rating-box .stars {
  color: var(--yellow);
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

body.page-reviews .rating-box .total {
  font-family: var(--narrow);
  font-size: 14px;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.page-reviews .rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-reviews .bar-row {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--narrow);
  font-size: 13px;
}

body.page-reviews .bar-label {
  width: 50px;
  text-align: right;
  color: #aaa;
}

body.page-reviews .bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

body.page-reviews .bar-fill {
  height: 100%;
  background: var(--yellow);
}

body.page-reviews .bar-value {
  width: 40px;
  color: #888;
}

body.page-reviews .share-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  body.page-reviews .share-box {
    align-items: center;
  }
}

body.page-reviews .share-box h3 {
  font-family: var(--display);
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.05em;
}

body.page-reviews .share-box p {
  font-size: 15px;
  color: #aaa;
}

body.page-reviews .reviews-section {
  padding: 80px 0;
  background: var(--black);
}

body.page-reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

body.page-reviews .review-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 35px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

body.page-reviews .review-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-family: var(--display);
  font-size: 120px;
  line-height: 1;
  color: rgba(253, 226, 12, 0.03);
  pointer-events: none;
}

body.page-reviews .review-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

body.page-reviews .review-card .card-stars {
  color: var(--yellow);
  font-size: 14px;
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

body.page-reviews .review-card p {
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

body.page-reviews .review-card .reviewer-info {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.page-reviews .review-card .reviewer-name {
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

body.page-reviews .review-card .review-source {
  font-family: var(--narrow);
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
}

body.page-reviews .review-card .review-source i {
  color: var(--yellow);
}

body.page-reviews .write-review-section {
  padding: 80px 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

body.page-reviews .form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 50px 40px;
  border-radius: 4px;
}

@media (max-width: 600px) {
  body.page-reviews .form-container {
    padding: 30px 20px;
  }
}

body.page-reviews .form-container h2 {
  font-family: var(--display);
  font-size: 38px;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

body.page-reviews .form-container .form-sub {
  text-align: center;
  color: #888;
  font-family: var(--narrow);
  font-size: 15px;
  margin-bottom: 35px;
  letter-spacing: 0.05em;
}

body.page-reviews .form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

@media (max-width: 600px) {
  body.page-reviews .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

body.page-reviews .form-label {
  font-family: var(--narrow);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
}

body.page-reviews .form-input,
body.page-reviews .form-select,
body.page-reviews .form-textarea {
  background: var(--black);
  border: 1px solid var(--line);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s ease;
}

body.page-reviews .form-input:focus,
body.page-reviews .form-select:focus,
body.page-reviews .form-textarea:focus {
  border-color: var(--yellow);
}

body.page-reviews .form-textarea {
  resize: vertical;
  min-height: 120px;
}

body.page-reviews .star-select-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-reviews .star-select-btn {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}

body.page-reviews .star-select-btn:hover {
  transform: scale(1.15);
}

body.page-reviews .star-select-btn.active {
  color: var(--yellow);
}

body.page-reviews .submit-btn-wrap {
  text-align: center;
  margin-top: 15px;
}

body.page-reviews .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 9999999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

body.page-reviews .modal-overlay.open {
  display: flex;
  opacity: 1;
}

body.page-reviews .modal-box {
  background: var(--ink-2);
  border: 2px solid var(--yellow);
  border-radius: 4px;
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

body.page-reviews .modal-overlay.open .modal-box {
  transform: scale(1);
}

body.page-reviews .modal-icon {
  font-size: 54px;
  color: var(--yellow);
  margin-bottom: 20px;
}

body.page-reviews .modal-box h3 {
  font-family: var(--display);
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

body.page-reviews .modal-box p {
  font-family: var(--narrow);
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

body.page-reviews .cta-band {
  background: var(--red);
  padding: 60px 0;
  text-align: center;
}

body.page-reviews .cta-band h2 {
  font-family: var(--display);
  font-size: 48px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

body.page-reviews .cta-band p {
  font-family: var(--narrow);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

body.page-reviews footer {
  background: var(--black);
  border-top: 4px solid var(--yellow);
  padding: 80px 0 0;
}

body.page-reviews .foot-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 50px;
}

@media (max-width:980px) {
  body.page-reviews .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }
}

@media (max-width:560px) {
  body.page-reviews .foot-grid {
    grid-template-columns: 1fr
  }
}

body.page-reviews .foot h5 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 24px;
}

body.page-reviews .foot h5::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  margin-top: 10px
}

body.page-reviews .foot ul {
  list-style: none;
  margin: 0;
  padding: 0
}

body.page-reviews .foot li {
  margin-bottom: 10px
}

body.page-reviews .foot li a {
  font-family: var(--narrow);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bdbdbd;
  font-weight: 600;
  transition: color .2s;
}

body.page-reviews .foot li a:hover {
  color: var(--yellow)
}

body.page-reviews .foot .tag {
  color: #a5a5a5;
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0 22px;
  max-width: 300px
}

body.page-reviews .foot .socials {
  display: flex;
  gap: 12px;
  margin-top: 14px
}

body.page-reviews .foot .socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #2a2a2a;
  display: grid;
  place-items: center;
  color: #bdbdbd;
  transition: background .2s, color .2s, border-color .2s;
}

body.page-reviews .foot .socials a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow)
}

body.page-reviews .foot .socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

body.page-reviews .addr {
  font-style: normal;
  font-family: var(--narrow);
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
  letter-spacing: .02em;
  margin: 0 0 18px;
  padding: 14px 0 14px 14px;
  border-left: 2px solid var(--yellow);
}

body.page-reviews .addr strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 6px
}

body.page-reviews .addr a {
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: .1em
}

body.page-reviews .addr a:hover {
  text-decoration: underline
}

body.page-reviews .foot-bottom {
  background: var(--ink);
  margin-top: 60px;
  padding: 22px 0;
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .16em;
  color: #7a7a7a;
  text-transform: uppercase;
}

body.page-reviews .foot-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center
}

body.page-reviews .foot-bottom a {
  color: #a5a5a5
}

body.page-reviews .foot-bottom a:hover {
  color: var(--yellow)
}

body.page-reviews .foot-bottom .right {
  display: flex;
  gap: 24px
}

@media (max-width: 980px) {}

body.page-reviews .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-reviews .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-reviews .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
  width: 10%;
}

body.page-reviews .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-reviews .nav-links {
  display: flex !important;
  gap: 38px !important;
  align-items: center !important;
}

body.page-reviews .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

body.page-reviews .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  bottom: -4px !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--yellow) !important;
  transition: width .3s ease !important;
}

body.page-reviews .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-reviews .nav-links a:hover::after,
body.page-reviews .nav-links a.active::after {
  width: 100% !important;
}

body.page-reviews .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-reviews .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-reviews .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}

body.page-reviews .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-reviews .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-reviews .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-reviews .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-reviews .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-reviews .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-reviews .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-reviews .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-reviews .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-reviews .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-reviews .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-reviews .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.page-reviews .nav-links {
    display: none !important;
  }

  body.page-reviews .nav-inner .btn {
    display: none !important;
  }

  body.page-reviews .burger {
    display: flex !important;
  }
}

body.page-reviews .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-reviews .mobile-menu.open {
  display: flex !important;
}

body.page-reviews .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-reviews .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-reviews .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-reviews .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: vinyl-wraps.html (Body Class: page-vinyl-wraps)
   ========================================================== */
body.page-vinyl-wraps {
  --yellow: #FDE20C;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --red: #CE151B;
  --maxw: 1340px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Archivo', sans-serif;
  --font-narrow: 'Archivo Narrow', sans-serif;
  --nav-h: 72px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

body.page-vinyl-wraps *,
body.page-vinyl-wraps *::before,
body.page-vinyl-wraps *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.page-vinyl-wraps {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body.page-vinyl-wraps img {
  display: block;
  max-width: 100%;
}

body.page-vinyl-wraps a {
  color: inherit;
  text-decoration: none;
}

body.page-vinyl-wraps ul {
  list-style: none;
}

body.page-vinyl-wraps .container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

body.page-vinyl-wraps .yellow {
  color: var(--yellow);
}

body.page-vinyl-wraps .red {
  color: var(--red);
}

body.page-vinyl-wraps .btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 2px;
  font-family: var(--font-narrow);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

body.page-vinyl-wraps .btn-red {
  background: var(--red);
  color: #fff;
}

body.page-vinyl-wraps .btn-red:hover {
  background: #a61015;
  transform: translateY(-2px);
}

body.page-vinyl-wraps .btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

body.page-vinyl-wraps .btn-yellow:hover {
  background: #f0d200;
  transform: translateY(-2px);
}

body.page-vinyl-wraps .btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

body.page-vinyl-wraps .btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

body.page-vinyl-wraps .section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-narrow);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

body.page-vinyl-wraps .section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

body.page-vinyl-wraps .reveal {
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}

body.page-vinyl-wraps .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.page-vinyl-wraps .reveal-left {
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}

body.page-vinyl-wraps .reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

body.page-vinyl-wraps .reveal-right {
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}

body.page-vinyl-wraps .reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

body.page-vinyl-wraps .nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

body.page-vinyl-wraps .nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

body.page-vinyl-wraps .nav__logo-top {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .06em;
  color: #fff;
}

body.page-vinyl-wraps .nav__logo-top span {
  color: var(--yellow);
}

body.page-vinyl-wraps .nav__logo-sub {
  font-family: var(--font-narrow);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-top: 2px;
}

body.page-vinyl-wraps .nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

body.page-vinyl-wraps .nav__links a {
  font-family: var(--font-narrow);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  position: relative;
  transition: color var(--transition);
}

body.page-vinyl-wraps .nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width var(--transition);
}

body.page-vinyl-wraps .nav__links a:hover,
body.page-vinyl-wraps .nav__links a.active {
  color: var(--yellow);
}

body.page-vinyl-wraps .nav__links a:hover::after,
body.page-vinyl-wraps .nav__links a.active::after {
  width: 100%;
}

body.page-vinyl-wraps .nav__cta {
  margin-left: 1rem;
}

body.page-vinyl-wraps .nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}

body.page-vinyl-wraps .nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

body.page-vinyl-wraps .nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.page-vinyl-wraps .nav__burger.open span:nth-child(2) {
  opacity: 0;
}

body.page-vinyl-wraps .nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.page-vinyl-wraps .nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

body.page-vinyl-wraps .nav__overlay.open {
  display: flex;
}

body.page-vinyl-wraps .nav__overlay a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .08em;
  color: var(--bone);
  transition: color var(--transition);
}

body.page-vinyl-wraps .nav__overlay a:hover,
body.page-vinyl-wraps .nav__overlay a.active {
  color: var(--yellow);
}

body.page-vinyl-wraps .nav__overlay .overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

body.page-vinyl-wraps .nav__overlay-phone {
  font-family: var(--font-narrow);
  font-size: .9rem;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .5);
}

body.page-vinyl-wraps .hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}

body.page-vinyl-wraps .hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/vehicle-vynl-wrap.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: .25;
  transform: scale(1.04);
  transition: transform 8s ease;
}

body.page-vinyl-wraps .hero__bg.loaded {
  transform: scale(1);
}

body.page-vinyl-wraps .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .7) 60%, rgba(0, 0, 0, .92) 100%);
}

body.page-vinyl-wraps .hero__content {
  position: relative;
  z-index: 2;
  padding-inline: 1.5rem;
}

body.page-vinyl-wraps .hero__eyebrow {
  font-family: var(--font-narrow);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

body.page-vinyl-wraps .hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: .95;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}

body.page-vinyl-wraps .hero__title span {
  color: var(--yellow);
}

body.page-vinyl-wraps .hero__sub {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  color: rgba(244, 241, 232, .8);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.7;
}

body.page-vinyl-wraps .hero__breadcrumb {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-narrow);
  font-size: .78rem;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .45);
}

body.page-vinyl-wraps .hero__breadcrumb a {
  color: var(--yellow);
  transition: opacity .2s;
}

body.page-vinyl-wraps .hero__breadcrumb a:hover {
  opacity: .75;
}

body.page-vinyl-wraps .hero__breadcrumb span {
  color: rgba(255, 255, 255, .3);
}

body.page-vinyl-wraps .intro {
  padding-block: 6rem;
  border-bottom: 1px solid var(--line);
}

body.page-vinyl-wraps .intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

body.page-vinyl-wraps .intro__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 1.5rem;
}

body.page-vinyl-wraps .intro__h2 span {
  color: var(--yellow);
}

body.page-vinyl-wraps .intro__body p {
  margin-bottom: 15px;
}

body.page-vinyl-wraps .intro__body p:last-child {
  margin-bottom: 0;
}

body.page-vinyl-wraps .intro__img-wrap {
  position: relative;
}

body.page-vinyl-wraps .intro__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

body.tos-page-vinyl-wraps .intro__img-wrap::after {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 80px;
  height: 80px;
  border-right: 4px solid #fde20c;
  border-bottom: 4px solid #fde20c;
  pointer-events: none;
  content: "";
}

body.tos-page-vinyl-wraps .intro__img-wrap {
  position: relative;
}

body.tos-page-vinyl-wraps .intro__img-wrap::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 80px;
  height: 80px;
  border-left: 4px solid #fde20c;
  border-top: 4px solid #fde20c;
  pointer-events: none;
}

body.page-vinyl-wraps .intro__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-narrow);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem .85rem;
  border-radius: 2px;
  display: none;
}

body.page-vinyl-wraps .types {
  border-bottom: 1px solid var(--line);
}

body.page-vinyl-wraps .types__head {
  text-align: center;
  margin-bottom: 35px;
}

body.page-vinyl-wraps .types__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .5rem;
}

body.page-vinyl-wraps .types__sub {
  color: rgba(244, 241, 232, .6);
  font-size: .95rem;
  max-width: 540px;
  margin-inline: auto;
}

body.page-vinyl-wraps .types__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

body.tos-page-vinyl-wraps .type-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), border-color .35s cubic-bezier(.4, 0, .2, 1);
  margin-top: 0;
}

body.tos-page-vinyl-wraps .type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fde20c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

body.tos-page-vinyl-wraps .type-card:hover {
  transform: translateY(-6px);
  border-color: rgba(253, 226, 12, .25);
}

body.tos-page-vinyl-wraps .type-card:hover::before {
  transform: scaleX(1);
}

body.tos-page-vinyl-wraps .type-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(253, 226, 12, .1);
  border: 1px solid rgba(253, 226, 12, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: #fde20c;
  margin-left: 0 !important;
}

body.tos-page-vinyl-wraps .type-card__title {
  font-family: var(--tos-display);
  ;
  font-size: 1.3rem;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .65rem;
}

body.tos-page-vinyl-wraps .type-card__desc {
  color: #fff;
  font-size: 16px;
  font-family: var(--tos-body);
  line-height: 1.65;
}

body.page-vinyl-wraps .materials {
  background: var(--ink-2);
  padding-block: 6rem;
  border-bottom: 1px solid var(--line);
}

body.page-vinyl-wraps .materials__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

body.page-vinyl-wraps .materials__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .5rem;
}

body.page-vinyl-wraps .materials__sub {
  color: rgba(244, 241, 232, .6);
  font-size: .95rem;
  max-width: 560px;
  margin-inline: auto;
}

body.page-vinyl-wraps .materials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

body.page-vinyl-wraps .brand-card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 2.5rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition);
}

body.page-vinyl-wraps .brand-card:hover {
  border-color: var(--yellow);
}

body.page-vinyl-wraps .brand-card__logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: .06em;
  margin-bottom: .25rem;
}

body.page-vinyl-wraps .brand-card:nth-child(1) .brand-card__logo {
  color: var(--yellow);
}

body.page-vinyl-wraps .brand-card:nth-child(2) .brand-card__logo {
  color: var(--red);
}

body.page-vinyl-wraps .brand-card__tagline {
  font-family: var(--font-narrow);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

body.page-vinyl-wraps .brand-card__features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

body.page-vinyl-wraps .brand-card__feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(244, 241, 232, .8);
}

body.page-vinyl-wraps .brand-card__feature i {
  color: var(--yellow);
  font-size: .75rem;
  margin-top: .3rem;
  flex-shrink: 0;
}

body.page-vinyl-wraps .brand-card:nth-child(2) .brand-card__feature i {
  color: var(--red);
}

body.page-vinyl-wraps .brand-card__warranty {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-narrow);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(253, 226, 12, .1);
  border: 1px solid rgba(253, 226, 12, .25);
  padding: .45rem 1rem;
  border-radius: 2px;
}

body.page-vinyl-wraps .brand-card:nth-child(2) .brand-card__warranty {
  color: var(--red);
  background: rgba(206, 21, 27, .1);
  border-color: rgba(206, 21, 27, .25);
}

body.page-vinyl-wraps .process {
  padding-block: 6rem;
  border-bottom: 1px solid var(--line);
}

body.page-vinyl-wraps .process__head {
  text-align: center;
  margin-bottom: 4rem;
}

body.page-vinyl-wraps .process__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .5rem;
}

body.page-vinyl-wraps .process__sub {
  color: rgba(244, 241, 232, .6);
  font-size: .95rem;
  max-width: 540px;
  margin-inline: auto;
}

body.page-vinyl-wraps .process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

body.page-vinyl-wraps .process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 36px);
  right: calc(12.5% + 36px);
  height: 2px;
  background: var(--line);
  z-index: 0;
}

body.page-vinyl-wraps .process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 1rem;
  position: relative;
  z-index: 1;
}

body.page-vinyl-wraps .process__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
}

body.page-vinyl-wraps .process__icon {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: .6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-vinyl-wraps .process__step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .5rem;
}

body.page-vinyl-wraps .process__step-desc {
  color: rgba(244, 241, 232, .6);
  font-size: .85rem;
  line-height: 1.6;
}

body.page-vinyl-wraps .gallery {
  padding-block: 6rem;
  border-bottom: 1px solid var(--line);
}

body.page-vinyl-wraps .gallery__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

body.page-vinyl-wraps .gallery__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .5rem;
}

body.page-vinyl-wraps .gallery__sub {
  color: rgba(244, 241, 232, .6);
  font-size: .95rem;
}

body.page-vinyl-wraps .gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

body.page-vinyl-wraps .gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--line);
}

body.page-vinyl-wraps .gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

body.page-vinyl-wraps .gallery-card:hover img {
  transform: scale(1.07);
}

body.page-vinyl-wraps .gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background var(--transition);
}

body.page-vinyl-wraps .gallery-card:hover .gallery-card__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .3) 55%);
}

body.page-vinyl-wraps .gallery-card__tag {
  font-family: var(--font-narrow);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: .4rem;
}

body.page-vinyl-wraps .gallery-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .04em;
  color: #fff;
}

body.page-vinyl-wraps .gallery-card__arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  opacity: 0;
  transform: scale(.8);
  transition: opacity var(--transition), transform var(--transition);
}

body.page-vinyl-wraps .gallery-card:hover .gallery-card__arrow {
  opacity: 1;
  transform: scale(1);
}

body.page-vinyl-wraps .faq {
  padding-block: 6rem;
  border-bottom: 1px solid var(--line);
}

body.page-vinyl-wraps .faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

body.page-vinyl-wraps .faq__left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: .04em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}

body.page-vinyl-wraps .faq__left h2 span {
  color: var(--yellow);
}

body.page-vinyl-wraps .faq__left p {
  color: rgba(244, 241, 232, .65);
  font-size: .92rem;
  margin-bottom: 2rem;
}

body.page-vinyl-wraps .faq__items {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

body.page-vinyl-wraps .faq-item {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}

body.page-vinyl-wraps .faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-narrow);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
}

body.page-vinyl-wraps .faq-item__q:hover {
  color: var(--yellow);
}

body.page-vinyl-wraps .faq-item__q i {
  flex-shrink: 0;
  font-size: .8rem;
  color: var(--yellow);
  transition: transform var(--transition);
}

body.page-vinyl-wraps .faq-item.open .faq-item__q i {
  transform: rotate(180deg);
}

body.page-vinyl-wraps .faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding-inline: 1.5rem;
}

body.page-vinyl-wraps .faq-item.open .faq-item__a {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

body.page-vinyl-wraps .faq-item__a p {
  color: rgba(244, 241, 232, .7);
  font-size: .88rem;
  line-height: 1.7;
}

body.page-vinyl-wraps .cta-band {
  background: var(--red);
  padding-block: 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

body.page-vinyl-wraps .cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(0, 0, 0, .06) 20px, rgba(0, 0, 0, .06) 40px);
}

body.page-vinyl-wraps .cta-band__content {
  position: relative;
  z-index: 1;
}

body.page-vinyl-wraps .cta-band__eyebrow {
  font-family: var(--font-narrow);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
  margin-bottom: .75rem;
}

body.page-vinyl-wraps .cta-band__h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: .5rem;
}

body.page-vinyl-wraps .cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--yellow);
  letter-spacing: .06em;
  margin-bottom: 2rem;
}

body.page-vinyl-wraps .cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

body.page-vinyl-wraps .btn-white {
  background: #fff;
  color: var(--red);
}

body.page-vinyl-wraps .btn-white:hover {
  background: var(--yellow);
  color: var(--black);
}

body.page-vinyl-wraps .footer {
  background: var(--ink);
  border-top: 4px solid var(--yellow);
  padding-top: 4rem;
}

body.page-vinyl-wraps .footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

body.page-vinyl-wraps .footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: .25rem;
}

body.page-vinyl-wraps .footer__brand-name span {
  color: var(--yellow);
}

body.page-vinyl-wraps .footer__brand-sub {
  font-family: var(--font-narrow);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 1.25rem;
}

body.page-vinyl-wraps .footer__brand-desc {
  color: rgba(244, 241, 232, .55);
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

body.page-vinyl-wraps .footer__social {
  display: flex;
  gap: .75rem;
}

body.page-vinyl-wraps .footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
  transition: var(--transition);
}

body.page-vinyl-wraps .footer__social a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(253, 226, 12, .1);
}

body.page-vinyl-wraps .footer__col-title {
  font-family: var(--font-narrow);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}

body.page-vinyl-wraps .footer__links {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

body.page-vinyl-wraps .footer__links a {
  font-size: .875rem;
  color: rgba(244, 241, 232, .55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

body.page-vinyl-wraps .footer__links a::before {
  content: '›';
  color: var(--yellow);
  font-size: 1rem;
}

body.page-vinyl-wraps .footer__links a:hover {
  color: var(--bone);
}

body.page-vinyl-wraps .footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .9rem;
  font-size: .875rem;
  color: rgba(244, 241, 232, .55);
}

body.page-vinyl-wraps .footer__contact-item i {
  color: var(--yellow);
  font-size: .85rem;
  margin-top: .25rem;
  flex-shrink: 0;
}

body.page-vinyl-wraps .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  flex-wrap: wrap;
  gap: .75rem;
}

body.page-vinyl-wraps .footer__copy {
  font-family: var(--font-narrow);
  font-size: .78rem;
  color: rgba(255, 255, 255, .3);
}

body.page-vinyl-wraps .footer__copy span {
  color: var(--yellow);
}

body.page-vinyl-wraps .footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

body.page-vinyl-wraps .footer__bottom-links a {
  font-family: var(--font-narrow);
  font-size: .75rem;
  color: rgba(255, 255, 255, .3);
  transition: color var(--transition);
}

body.page-vinyl-wraps .footer__bottom-links a:hover {
  color: var(--yellow);
}

@media (max-width: 1024px) {
  body.page-vinyl-wraps .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  body.page-vinyl-wraps .process__steps::before {
    display: none;
  }

  body.page-vinyl-wraps .types__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.page-vinyl-wraps .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {

  body.page-vinyl-wraps .nav__links,
  body.page-vinyl-wraps .nav__cta {
    display: none;
  }

  body.page-vinyl-wraps .nav__burger {
    display: flex;
  }

  body.page-vinyl-wraps .intro__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  body.page-vinyl-wraps .intro__img {
    height: 280px;
  }

  body.page-vinyl-wraps .types__grid {
    grid-template-columns: 1fr;
  }

  body.page-vinyl-wraps .materials__grid {
    grid-template-columns: 1fr;
  }

  body.page-vinyl-wraps .gallery__grid {
    grid-template-columns: 1fr;
  }

  body.page-vinyl-wraps .gallery-card {
    aspect-ratio: 16/9;
  }

  body.page-vinyl-wraps .faq__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.page-vinyl-wraps .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  body.page-vinyl-wraps .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  body.page-vinyl-wraps .footer__bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  body.page-vinyl-wraps .process__steps {
    grid-template-columns: 1fr;
  }

  body.page-vinyl-wraps .cta-band__actions {
    flex-direction: column;
  }

  body.page-vinyl-wraps .hero__title {
    font-size: 2.8rem;
  }
}

@media (max-width: 980px) {}

body.page-vinyl-wraps .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-vinyl-wraps .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-vinyl-wraps .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
  width: 10%;
}

body.page-vinyl-wraps .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-vinyl-wraps .nav-links {
  display: flex !important;
  gap: 38px !important;
  align-items: center !important;
}

body.page-vinyl-wraps .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}


body.page-vinyl-wraps .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-vinyl-wraps .nav-links a:hover::after,
body.page-vinyl-wraps .nav-links a.active::after {
  width: 100% !important;
}

body.page-vinyl-wraps .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-vinyl-wraps .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-vinyl-wraps .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}



body.page-vinyl-wraps .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-vinyl-wraps .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-vinyl-wraps .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-vinyl-wraps .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-vinyl-wraps .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-vinyl-wraps .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-vinyl-wraps .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-vinyl-wraps .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-vinyl-wraps .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-vinyl-wraps .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-vinyl-wraps .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-vinyl-wraps .burger:hover span {
  width: 24px !important;
}
.tos-appointment-form-wrap .form-row2 .form-group2 {
      grid-template-columns: 48% 51%;
}
.uwy.userway_p3 .userway_buttons_wrapper {
      bottom: 88px !important;
}
@media (max-width: 980px) {
  body.page-vinyl-wraps .nav-links {
    display: none !important;
  }

  body.page-vinyl-wraps .nav-inner .btn {
    display: none !important;
  }

  body.page-vinyl-wraps .burger {
    display: flex !important;
  }
}

body.page-vinyl-wraps .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-vinyl-wraps .mobile-menu.open {
  display: flex !important;
}

body.page-vinyl-wraps .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-vinyl-wraps .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-vinyl-wraps .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-vinyl-wraps .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: window-tinting.html (Body Class: page-window-tinting)
   ========================================================== */
body.page-window-tinting {
  --yellow: #FDE20C;
  --yellow-dim: #E5CB00;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --mute: #8a8a8a;
  --mute-2: #5a5a5a;
  --red: #CE151B;
  --maxw: 1340px;
  --display: "Bebas Neue", "Anton", Impact, sans-serif;
  --body: "Archivo", system-ui, sans-serif;
  --narrow: "Archivo Narrow", "Archivo", sans-serif;
}

body.page-window-tinting *,
body.page-window-tinting *::before,
body.page-window-tinting *::after {
  box-sizing: border-box
}

html,
body.page-window-tinting {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body.page-window-tinting {
  font-family: var(--body);
  background: var(--black);
  color: var(--bone);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.page-window-tinting img {
  max-width: 100%;
  display: block
}

body.page-window-tinting a {
  color: inherit;
  text-decoration: none
}

body.page-window-tinting button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit
}

body.page-window-tinting h1,
body.page-window-tinting h2,
body.page-window-tinting h3,
body.page-window-tinting h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: .95;
  margin: 0;
}

body.page-window-tinting p {
  font-weight: 500 !important;
}

body.page-window-tinting .container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px
}

body.page-window-tinting .eyebrow {
  font-family: var(--narrow);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
}

body.page-window-tinting .eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

body.page-window-tinting .btn {
  --bg: var(--red);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--narrow);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, opacity .25s ease;
}

body.page-window-tinting .btn:hover {
  opacity: .88;
  transform: translateY(-2px)
}

body.page-window-tinting .btn.ghost {
  --bg: transparent;
  --fg: #fff;
  border: 1px solid rgba(255, 255, 255, .35);
}

body.page-window-tinting .btn.ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow)
}

body.page-window-tinting .btn.yellow-btn {
  --bg: var(--yellow);
  --fg: var(--black);
}

body.page-window-tinting .btn.yellow-btn:hover {
  opacity: .9
}

@media (max-width:980px) {}

body.page-window-tinting .page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

body.page-window-tinting .page-hero .bg {
  position: absolute;
  inset: 0;
  background: url('https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/camaro-window-tint-customer.jpg') center/cover no-repeat;
  opacity: .32;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}

body.page-window-tinting .page-hero:hover .bg {
  transform: scale(1)
}

body.page-window-tinting .page-hero .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(0, 0, 0, .96) 38%, rgba(0, 0, 0, .55) 100%);
}

body.page-window-tinting .page-hero .grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(253, 226, 12, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(253, 226, 12, .04) 1px, transparent 1px);
  background-size: 60px 60px;
}

body.page-window-tinting .page-hero .yellow-rule {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--yellow);
  z-index: 3;
}

body.page-window-tinting .page-hero .container {
  position: relative;
  z-index: 3;
  padding: 110px 20px 90px 36px
}

body.page-window-tinting .page-hero .breadcrumb {
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-window-tinting .page-hero .breadcrumb a {
  color: var(--yellow);
  transition: opacity .2s
}

body.page-window-tinting .page-hero .breadcrumb a:hover {
  opacity: .75
}

body.page-window-tinting .page-hero h1 {
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 108px);
  color: var(--bone);
  line-height: .95;
  margin: 14px 0 20px;
}

body.page-window-tinting .page-hero h1 span {
  color: var(--red)
}

body.page-window-tinting .page-hero .sub {
  font-size: 18px;
  color: #ccc;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 36px;
}

body.page-window-tinting .hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

body.page-window-tinting .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(253, 226, 12, .25);
  padding: 8px 14px;
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
}

body.page-window-tinting .hero-badge i {
  font-size: 11px
}

body.page-window-tinting .intro-section {
  background: var(--ink)
}

body.page-window-tinting .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width:880px) {
  body.page-window-tinting .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }
}

body.page-window-tinting .intro-section h2 {
  font-size: clamp(38px, 5vw, 68px);
  color: var(--bone);
  margin: 16px 0 24px;
  line-height: 1;
}

body.page-window-tinting .intro-section h2 span {
  color: var(--yellow)
}

body.page-window-tinting .intro-section p {
  color: #c0c0c0;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 16px;
}

body.page-window-tinting .intro-section p:last-of-type {
  margin-bottom: 0
}

body.page-window-tinting .visual {
  position: relative;
  aspect-ratio: 4/3;
}

body.page-window-tinting .visual .main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

body.page-window-tinting .visual .accent-corner {
  position: absolute;
  left: -16px;
  top: -16px;
  width: 80px;
  height: 80px;
  background: var(--yellow);
  z-index: -1;
}

body.page-window-tinting .visual .llumar-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: #fff;
  padding: 20px 24px;
  text-align: center;
  z-index: 2;
}

body.page-window-tinting .visual .llumar-badge .badge-title {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: .06em;
}

body.page-window-tinting .visual .llumar-badge .badge-sub {
  font-family: var(--narrow);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

body.page-window-tinting .benefits-section {
  background: var(--ink-2)
}

body.page-window-tinting .benefits-section h2 {
  font-size: clamp(38px, 5vw, 68px);
  color: var(--bone);
  margin: 16px 0 14px;
  line-height: 1;
}

body.page-window-tinting .benefits-section .section-lead {
  color: #aaa;
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 60px;
}

body.page-window-tinting .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 45px;
}

@media (max-width:900px) {
  body.page-window-tinting .benefits-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:560px) {
  body.page-window-tinting .benefits-grid {
    grid-template-columns: 1fr
  }
}

.benefit-card {
  background: #0c0c0c;
  border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
  padding: 18px;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), border-color .35s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
}

.benefit-card:hover {
  transform: translateY(-28px) !important;
  background: #101010;
  border-color: var(--yellow);
}

.benefits-section .section-header {
  margin-bottom: 35px !important;
}

body.page-window-tinting .benefit-card .icon-wrap {
  width: 45px;
  height: 45px;
  background: rgba(253, 226, 12, .1);
  border: 1px solid rgba(253, 226, 12, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

body.page-window-tinting .benefit-card .icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: #ffffff;
  fill: #ffffff;
  stroke-width: 1.5;
}

body.page-window-tinting .benefit-card h4 {
  font-family: var(--display);
  font-size: 26px;
  color: var(--bone);
  letter-spacing: .04em;
  margin-bottom: 12px;
  line-height: 1;
}



body.page-window-tinting .film-section {
  background: #050505;
}

body.page-window-tinting .film-section h2 {
  font-size: clamp(38px, 5vw, 68px);
  color: var(--bone);
  margin: 16px 0 14px;
}

body.page-window-tinting .film-section .section-lead {
  color: #aaa;
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 60px;
}

body.page-window-tinting .film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width:900px) {
  body.page-window-tinting .film-grid {
    grid-template-columns: 1fr
  }
}

body.page-window-tinting .film-card {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 40px 32px;
  position: relative;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
}

body.page-window-tinting .film-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

body.page-window-tinting .film-card .film-tag {
  font-family: var(--narrow);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 16px;
}

body.page-window-tinting .film-card h3 {
  font-family: var(--display);
  font-size: 40px;
  color: var(--bone);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 6px;
}

body.page-window-tinting .film-card .vlt {
  font-family: var(--narrow);
  font-size: 13px;
  color: var(--mute);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

body.page-window-tinting .film-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

body.page-window-tinting .film-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--narrow);
  font-size: 14px;
  color: #bbb;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

body.page-window-tinting .film-card ul li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  margin-top: 7px;
}

body.page-window-tinting .film-card .film-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--yellow);
  transition: gap .25s;
}

body.page-window-tinting .film-card:hover .film-cta {
  gap: 14px
}

body.page-window-tinting .film-card.featured {
  border-color: var(--yellow);
  background: #0d0d0d;
}

body.page-window-tinting .film-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--narrow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 14px;
}

body.page-window-tinting .tint-law-section {
  background: var(--ink)
}

body.page-window-tinting .tint-law-section h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--bone);
  margin: 16px 0 14px;
}

body.page-window-tinting .tint-law-section .section-lead {
  color: #aaa;
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 50px;
}

body.page-window-tinting .law-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width:780px) {
  body.page-window-tinting .law-grid {
    grid-template-columns: 1fr
  }
}

body.page-window-tinting .law-table-wrap {
  overflow-x: auto;
}

body.page-window-tinting .law-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--narrow);
  font-size: 14px;
}

body.page-window-tinting .law-table thead th {
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 18px;
  text-align: left;
}

body.page-window-tinting .law-table tbody tr {
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}

body.page-window-tinting .law-table tbody tr:hover {
  background: rgba(253, 226, 12, .05)
}

body.page-window-tinting .law-table tbody td {
  padding: 16px 18px;
  color: #c0c0c0;
  vertical-align: top;
}

body.page-window-tinting .law-table tbody td:first-child {
  font-weight: 700;
  color: var(--bone);
  white-space: nowrap;
}

body.page-window-tinting .law-note {
  background: #0c0c0c;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 24px 28px;
  margin-top: 24px;
}

body.page-window-tinting .law-note h4 {
  font-family: var(--display);
  font-size: 22px;
  color: var(--red);
  letter-spacing: .06em;
  margin-bottom: 10px;
}

body.page-window-tinting .law-note p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.72;
}

body.page-window-tinting .law-info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.page-window-tinting .law-info-card {
  background: #0c0c0c;
  border: 1px solid var(--line);
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

body.page-window-tinting .law-info-card .lc-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(206, 21, 27, .12);
  border: 1px solid rgba(206, 21, 27, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
}

body.page-window-tinting .law-info-card h5 {
  font-family: var(--display);
  font-size: 20px;
  color: var(--bone);
  letter-spacing: .04em;
  margin-bottom: 6px;
}

body.page-window-tinting .law-info-card p {
  font-family: var(--narrow);
  font-size: 13px;
  color: #999;
  line-height: 1.65;
}

body.page-window-tinting .llumar-section {
  background: var(--ink-2)
}

body.page-window-tinting .llumar-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

@media (max-width:880px) {
  body.page-window-tinting .llumar-inner {
    grid-template-columns: 1fr;
    gap: 50px
  }
}

body.page-window-tinting .llumar-branding {
  position: relative;
}

body.page-window-tinting .llumar-wordmark {
  font-family: var(--display);
  font-size: clamp(70px, 10vw, 130px);
  color: var(--yellow);
  line-height: .9;
  letter-spacing: .02em;
  margin-bottom: 20px;
}

body.page-window-tinting .llumar-wordmark span {
  display: block;
  color: rgba(253, 226, 12, .18);
  font-size: .65em
}

body.page-window-tinting .llumar-dealer-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--red);
  padding: 16px 22px;
  margin-bottom: 28px;
}

body.page-window-tinting .llumar-dealer-badge i {
  font-size: 22px;
  color: #fff
}

body.page-window-tinting .llumar-dealer-badge span {
  font-family: var(--narrow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
}

body.page-window-tinting .llumar-dealer-badge span em {
  display: block;
  font-style: normal;
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: .2em;
}

body.page-window-tinting .llumar-stat-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

body.page-window-tinting .llumar-stat .num {
  font-family: var(--display);
  font-size: 54px;
  color: var(--bone);
  line-height: 1;
}

body.page-window-tinting .llumar-stat .lbl {
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
  margin-top: 4px;
}

body.page-window-tinting .llumar-section h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  color: var(--bone);
  margin: 16px 0 20px;
}

body.page-window-tinting .llumar-section h2 span {
  color: var(--yellow)
}

body.page-window-tinting .llumar-section p {
  color: #c0c0c0;
  line-height: 1.8;
  margin-bottom: 28px;
}

body.page-window-tinting .llumar-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-window-tinting .llumar-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: #0c0c0c;
  border: 1px solid var(--line);
}

body.page-window-tinting .llumar-points li .lp-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 16px;
}

body.page-window-tinting .llumar-points li .lp-text strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  color: var(--bone);
  letter-spacing: .04em;
  margin-bottom: 2px;
}

body.page-window-tinting .llumar-points li .lp-text span {
  font-family: var(--narrow);
  font-size: 13px;
  color: #999;
  line-height: 1.55;
}

body.page-window-tinting .cta-section {
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}

body.page-window-tinting .cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(253, 226, 12, .03) 0 1px, transparent 1px 30px);
  pointer-events: none;
}

body.page-window-tinting .cta-section .yellow-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--yellow);
}

body.page-window-tinting .cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}

body.page-window-tinting .cta-inner .eyebrow {
  justify-content: center
}

body.page-window-tinting .cta-inner h2 {
  font-size: clamp(48px, 7vw, 96px);
  color: var(--bone);
  margin: 20px 0 10px;
  line-height: .95;
}

body.page-window-tinting .cta-inner h2 span {
  color: var(--yellow)
}

body.page-window-tinting .cta-inner .cta-sub {
  color: #aaa;
  font-size: 18px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}

body.page-window-tinting .cta-phone {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--yellow);
  letter-spacing: .04em;
  margin-bottom: 32px;
}

body.page-window-tinting .cta-phone a {
  color: inherit;
  transition: opacity .2s
}

body.page-window-tinting .cta-phone a:hover {
  opacity: .75
}

body.page-window-tinting .cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

body.page-window-tinting footer {
  background: var(--black);
  border-top: 4px solid var(--yellow);
  padding: 80px 0 0;
}

body.page-window-tinting .foot-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 50px;
}

@media (max-width:980px) {
  body.page-window-tinting .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px
  }
}

@media (max-width:560px) {
  body.page-window-tinting .foot-grid {
    grid-template-columns: 1fr
  }
}

body.page-window-tinting .foot h5 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 24px;
}

body.page-window-tinting .foot h5::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  margin-top: 10px
}

body.page-window-tinting .foot ul {
  list-style: none;
  margin: 0;
  padding: 0
}

body.page-window-tinting .foot li {
  margin-bottom: 10px
}

body.page-window-tinting .foot li a {
  font-family: var(--narrow);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bdbdbd;
  font-weight: 600;
  transition: color .2s;
}

body.page-window-tinting .foot li a:hover {
  color: var(--yellow)
}

body.page-window-tinting .foot .tag {
  color: #a5a5a5;
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0 22px;
  max-width: 300px
}

body.page-window-tinting .foot .socials {
  display: flex;
  gap: 12px;
  margin-top: 14px
}

body.page-window-tinting .foot .socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #2a2a2a;
  display: grid;
  place-items: center;
  color: #bdbdbd;
  transition: background .2s, color .2s, border-color .2s;
}

body.page-window-tinting .foot .socials a:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow)
}

body.page-window-tinting .foot .socials svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

body.page-window-tinting .addr {
  font-style: normal;
  font-family: var(--narrow);
  font-size: 14px;
  line-height: 1.7;
  color: #bdbdbd;
  letter-spacing: .02em;
  margin: 0 0 18px;
  padding: 14px 0 14px 14px;
  border-left: 2px solid var(--yellow);
}

body.page-window-tinting .addr strong {
  display: block;
  font-family: var(--display);
  font-size: 18px;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 6px
}

body.page-window-tinting .addr a {
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: .1em
}

body.page-window-tinting .addr a:hover {
  text-decoration: underline
}

body.page-window-tinting .foot-bottom {
  background: var(--ink);
  margin-top: 60px;
  padding: 22px 0;
  font-family: var(--narrow);
  font-size: 12px;
  letter-spacing: .16em;
  color: #7a7a7a;
  text-transform: uppercase;
}

body.page-window-tinting .foot-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center
}

body.page-window-tinting .foot-bottom a {
  color: #a5a5a5;
  transition: color .2s
}

body.page-window-tinting .foot-bottom a:hover {
  color: var(--yellow)
}

body.page-window-tinting .foot-bottom .right {
  display: flex;
  gap: 24px
}

body.page-window-tinting .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease
}

body.page-window-tinting .reveal.in {
  opacity: 1;
  transform: translateY(0)
}

body.page-window-tinting .reveal.d1 {
  transition-delay: .08s
}

body.page-window-tinting .reveal.d2 {
  transition-delay: .16s
}

body.page-window-tinting .reveal.d3 {
  transition-delay: .24s
}

body.page-window-tinting .reveal.d4 {
  transition-delay: .32s
}

body.page-window-tinting .reveal.d5 {
  transition-delay: .40s
}

body.page-window-tinting ::selection {
  background: var(--yellow);
  color: var(--black)
}

body.page-window-tinting ::-webkit-scrollbar {
  width: 6px
}

body.page-window-tinting ::-webkit-scrollbar-track {
  background: var(--black)
}

body.page-window-tinting ::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 0
}

@media (max-width: 980px) {}

body.page-window-tinting .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-window-tinting .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-window-tinting .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
  width: 10%;
}

body.page-window-tinting .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-window-tinting .nav-links {
  display: flex !important;
  gap: 38px !important;
  align-items: center !important;
}

body.page-window-tinting .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}


body.page-window-tinting .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-window-tinting .nav-links a:hover::after,
body.page-window-tinting .nav-links a.active::after {
  width: 100% !important;
}

body.page-window-tinting .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-window-tinting .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-window-tinting .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}



body.page-window-tinting .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-window-tinting .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-window-tinting .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-window-tinting .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-window-tinting .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-window-tinting .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-window-tinting .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-window-tinting .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-window-tinting .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-window-tinting .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-window-tinting .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-window-tinting .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.page-window-tinting .nav-links {
    display: none !important;
  }

  body.page-window-tinting .nav-inner .btn {
    display: none !important;
  }

  body.page-window-tinting .burger {
    display: flex !important;
  }
}

body.page-window-tinting .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-window-tinting .mobile-menu.open {
  display: flex !important;
}

body.page-window-tinting .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-window-tinting .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-window-tinting .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-window-tinting .mobile-close:hover {
  color: var(--yellow) !important;
}

/* ==========================================================
   PAGE: windshield-replacement.html (Body Class: page-windshield-replacement)
   ========================================================== */
body.page-windshield-replacement {
  --yellow: #FDE20C;
  --black: #000;
  --ink: #0A0A0A;
  --ink-2: #141414;
  --line: #2A2A2A;
  --bone: #F4F1E8;
  --red: #CE151B;
  --maxw: 1340px;
}

body.page-windshield-replacement *,
body.page-windshield-replacement *::before,
body.page-windshield-replacement *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.page-windshield-replacement {
  background: var(--black);
  color: var(--bone);
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.page-windshield-replacement img {
  display: block;
  max-width: 100%;
}

body.page-windshield-replacement a {
  text-decoration: none;
  color: inherit;
}

body.page-windshield-replacement ul {
  list-style: none;
}

body.page-windshield-replacement .container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

body.page-windshield-replacement .tag {
  display: inline-block;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid var(--yellow);
  padding: 4px 14px;
  margin-bottom: 14px;
}

body.page-windshield-replacement .section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  color: #fff;
}

body.page-windshield-replacement .section-title span {
  color: var(--yellow);
}

body.page-windshield-replacement .section-lead {
  font-size: 1.05rem;
  color: rgba(244, 241, 232, 0.78);
  max-width: 640px;
  margin-top: 14px;
}

body.page-windshield-replacement .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}

body.page-windshield-replacement .btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

body.page-windshield-replacement .btn-yellow:hover {
  background: #e8cf00;
  transform: translateY(-2px);
}

body.page-windshield-replacement .btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

body.page-windshield-replacement .btn-outline:hover {
  background: #fff;
  color: var(--black);
}

body.page-windshield-replacement .btn-red {
  background: var(--red);
  color: #fff;
}

body.page-windshield-replacement .btn-red:hover {
  background: #a81116;
  transform: translateY(-2px);
}

body.page-windshield-replacement .reveal {
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}

body.page-windshield-replacement .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.page-windshield-replacement .nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  color: #fff;
}

body.page-windshield-replacement .nav-logo span {
  color: var(--yellow);
}

body.page-windshield-replacement .nav-cta {
  background: var(--yellow);
  color: var(--black) !important;
  padding: 8px 20px;
  font-weight: 700;
}

body.page-windshield-replacement .nav-cta::after {
  display: none !important;
}

body.page-windshield-replacement .nav-cta:hover {
  background: #e8cf00 !important;
  color: var(--black) !important;
}

body.page-windshield-replacement .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

body.page-windshield-replacement .hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all .3s ease;
}

body.page-windshield-replacement .hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.page-windshield-replacement .hamburger.open span:nth-child(2) {
  opacity: 0;
}

body.page-windshield-replacement .hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.page-windshield-replacement .mob-close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

body.page-windshield-replacement .hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

body.page-windshield-replacement .hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/windshield-replacment.jpg') center/cover no-repeat;
  opacity: 0.3;
}

body.page-windshield-replacement .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88) 0%, rgba(10, 10, 10, 0.72) 100%);
}

body.page-windshield-replacement .hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
}

body.page-windshield-replacement .breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.55);
}

body.page-windshield-replacement .breadcrumb a {
  color: rgba(244, 241, 232, 0.55);
  transition: color .2s;
}

body.page-windshield-replacement .breadcrumb a:hover {
  color: var(--yellow);
}

body.page-windshield-replacement .breadcrumb i {
  font-size: 0.65rem;
}

body.page-windshield-replacement .breadcrumb span {
  color: var(--yellow);
}

body.page-windshield-replacement .hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  color: #fff;
  letter-spacing: 0.02em;
}

body.page-windshield-replacement .hero-title span {
  color: var(--yellow);
}

body.page-windshield-replacement .hero-sub {
  font-size: 1.1rem;
  color: rgba(244, 241, 232, 0.82);
  max-width: 580px;
  margin-top: 18px;
  line-height: 1.7;
}

body.page-windshield-replacement .hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

body.page-windshield-replacement .intro-section {
  padding: 100px 0;
  background: var(--ink);
}

body.page-windshield-replacement .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}


body.page-windshield-replacement .intro-left h2 span {
  color: var(--yellow);
}

body.page-windshield-replacement .intro-left p {
  font-size: 0.97rem;
  color: #fff;
  margin-bottom: 16px;
}

body.page-windshield-replacement .intro-left .highlight-bar {
  border-left: 3px solid var(--yellow);
  padding-left: 18px;
  margin: 28px 0;
  font-size: 1rem;
  color: rgba(244, 241, 232, 0.88);
  font-style: italic;
}

body.page-windshield-replacement .intro-right {
  position: relative;
}

body.page-windshield-replacement .intro-img-wrap {
  position: relative;
}

body.page-windshield-replacement .intro-img-wrap img {
  width: 100%;
  height: 515px;
  object-fit: cover;
}

body.page-windshield-replacement .intro-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border-top: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
  pointer-events: none;
  z-index: 1;
}

body.page-windshield-replacement .intro-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  display: none;
  z-index: 2;
}

body.page-windshield-replacement .intro-badge i {
  font-size: 1.2rem;
}

body.page-windshield-replacement .services-section {
  padding: 100px 0;
  background: var(--black);
}

body.page-windshield-replacement .services-header {
  text-align: center;
  margin-bottom: 56px;
}

body.page-windshield-replacement .services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

body.page-windshield-replacement .service-card {
  padding: 56px 52px;
  border: 1px solid var(--line);
  transition: border-color .3s;
}

body.page-windshield-replacement .service-card:first-child {
  border-right: none;
}

body.page-windshield-replacement .service-card:hover {
  border-color: var(--yellow);
}

body.page-windshield-replacement .service-card-icon {
  width: 60px;
  height: 60px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.5rem;
  color: var(--black);
}

body.page-windshield-replacement .service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 14px;
}

body.page-windshield-replacement .service-card .service-tag {
  display: inline-block;
  background: rgba(253, 226, 12, 0.12);
  color: var(--yellow);
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 18px;
}

body.page-windshield-replacement .service-card p {
  font-size: 0.95rem;
  color: rgba(244, 241, 232, 0.78);
  margin-bottom: 20px;
}

body.page-windshield-replacement .service-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.page-windshield-replacement .service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: rgba(244, 241, 232, 0.82);
}

body.page-windshield-replacement .service-card ul li i {
  color: var(--yellow);
  margin-top: 3px;
  flex-shrink: 0;
}

body.page-windshield-replacement .service-card .note {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(206, 21, 27, 0.1);
  border-left: 3px solid var(--red);
  font-size: 0.88rem;
  color: rgba(244, 241, 232, 0.8);
}

body.page-windshield-replacement .process-section {
  background: var(--ink-2);
}

body.page-windshield-replacement .process-header {
  text-align: center;
  margin-bottom: 70px;
}

body.page-windshield-replacement .process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  position: relative;
}

body.page-windshield-replacement .process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

body.page-windshield-replacement .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

body.page-windshield-replacement .step-num {
  width: 70px;
  height: 70px;
  background: var(--black);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--yellow);
  margin-bottom: 22px;
  flex-shrink: 0;
}

body.page-windshield-replacement .step-icon {
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 16px;
  display: none;
}

.process-section7 .container {
  max-width: 81% !important;
  width: 100%;
}

body.page-windshield-replacement .process-step h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0px;
}

body.page-windshield-replacement .process-step p {
  color: #fff;
}

.process-section7 span {
  font-size: 16px;
}

body.page-windshield-replacement .why-section {
  padding: 100px 0;
  background: var(--ink);
}

body.page-windshield-replacement .why-header {
  text-align: center;
  margin-bottom: 60px;
}

body.page-windshield-replacement .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

body.page-windshield-replacement .why-card {
  background: var(--ink-2);
  padding: 44px 32px;
  transition: background .3s;
}

body.page-windshield-replacement .why-card:hover {
  background: #1a1a1a;
}

body.page-windshield-replacement .why-icon {
  width: 54px;
  height: 54px;
  background: rgba(253, 226, 12, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 22px;
}

body.page-windshield-replacement .why-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 12px;
}

body.page-windshield-replacement .why-card p {
  font-size: 0.91rem;
  color: rgba(244, 241, 232, 0.7);
  line-height: 1.65;
}

body.page-windshield-replacement .rock-chip-section {
  padding: 100px 0;
  background: var(--black);
}

body.page-windshield-replacement .rock-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

body.page-windshield-replacement .rock-chip-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
}

body.page-windshield-replacement .rock-chip-left h2 span {
  color: var(--yellow);
}

body.page-windshield-replacement .rock-chip-left p {
  font-size: 0.97rem;
  color: rgba(244, 241, 232, 0.78);
  margin-bottom: 14px;
}

body.page-windshield-replacement .damage-table {
  margin-top: 30px;
  border: 1px solid var(--line);
}

body.page-windshield-replacement .damage-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--yellow);
}

body.page-windshield-replacement .damage-table-header span {
  padding: 12px 20px;
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

body.page-windshield-replacement .damage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

body.page-windshield-replacement .damage-row span {
  padding: 13px 20px;
  font-size: 0.9rem;
  color: rgba(244, 241, 232, 0.82);
}

body.page-windshield-replacement .damage-row span:first-child {
  border-right: 1px solid var(--line);
  font-weight: 600;
}

body.page-windshield-replacement .damage-row .repair {
  color: #4ade80;
}

body.page-windshield-replacement .damage-row .replace {
  color: #f87171;
}

body.page-windshield-replacement .rock-chip-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body.page-windshield-replacement .damage-type-card {
  border: 1px solid var(--line);
  padding: 26px 28px;
  transition: border-color .3s;
}

body.page-windshield-replacement .damage-type-card:hover {
  border-color: var(--yellow);
}

body.page-windshield-replacement .damage-type-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.page-windshield-replacement .damage-type-card p {
  font-size: 0.91rem;
  color: rgba(244, 241, 232, 0.72);
  line-height: 1.6;
}

body.page-windshield-replacement .co-alert {
  margin-top: 10px;
  padding: 20px 24px;
  background: rgba(206, 21, 27, 0.08);
  border-left: 3px solid var(--red);
}

body.page-windshield-replacement .co-alert h5 {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-windshield-replacement .co-alert p {
  font-size: 0.9rem;
  color: rgba(244, 241, 232, 0.75);
}

body.page-windshield-replacement .insurance-section {
  padding: 90px 0;
  background: var(--yellow);
}

body.page-windshield-replacement .insurance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

body.page-windshield-replacement .insurance-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--black);
  line-height: 1.06;
  margin-bottom: 18px;
}

body.page-windshield-replacement .insurance-left p {
  font-size: 0.97rem;
  color: rgba(10, 10, 10, 0.8);
  margin-bottom: 14px;
}

body.page-windshield-replacement .insurance-left .ins-note {
  margin-top: 20px;
  padding: 16px 22px;
  background: rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--black);
  font-size: 0.92rem;
  color: var(--black);
  font-weight: 600;
}

body.page-windshield-replacement .insurance-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

body.page-windshield-replacement .ins-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(0, 0, 0, 0.07);
}

body.page-windshield-replacement .ins-item-icon {
  width: 44px;
  height: 44px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--yellow);
  flex-shrink: 0;
}

body.page-windshield-replacement .ins-item-text h5 {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 4px;
}

body.page-windshield-replacement .ins-item-text p {
  font-size: 0.88rem;
  color: rgba(10, 10, 10, 0.75);
  margin: 0;
}

body.page-windshield-replacement .cta-band {
  padding: 90px 0;
  background: var(--red);
}

body.page-windshield-replacement .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

body.page-windshield-replacement .cta-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: #fff;
  line-height: 1.06;
  max-width: 640px;
}

body.page-windshield-replacement .cta-left p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
  max-width: 520px;
}

body.page-windshield-replacement .cta-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

body.page-windshield-replacement .cta-phone i {
  color: var(--yellow);
}

body.page-windshield-replacement .cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

body.page-windshield-replacement .footer {
  background: var(--ink);
  border-top: 4px solid var(--yellow);
  padding: 80px 0 0;
}

body.page-windshield-replacement .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
  gap: 52px;
}

body.page-windshield-replacement .footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 16px;
}

body.page-windshield-replacement .footer-logo span {
  color: var(--yellow);
}

body.page-windshield-replacement .footer-desc {
  font-size: 0.9rem;
  color: rgba(244, 241, 232, 0.6);
  line-height: 1.65;
  margin-bottom: 24px;
}

body.page-windshield-replacement .footer-socials {
  display: flex;
  gap: 12px;
}

body.page-windshield-replacement .footer-socials a {
  width: 38px;
  height: 38px;
  background: var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(244, 241, 232, 0.7);
  transition: all .25s;
}

body.page-windshield-replacement .footer-socials a:hover {
  background: var(--yellow);
  color: var(--black);
}

body.page-windshield-replacement .footer-col h5 {
  font-family: 'Archivo Narrow', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 22px;
}

body.page-windshield-replacement .footer-col ul li {
  margin-bottom: 10px;
}

body.page-windshield-replacement .footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(244, 241, 232, 0.62);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-windshield-replacement .footer-col ul li a i {
  font-size: 0.7rem;
  color: var(--yellow);
}

body.page-windshield-replacement .footer-col ul li a:hover {
  color: var(--yellow);
}

body.page-windshield-replacement .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

body.page-windshield-replacement .footer-contact li i {
  color: var(--yellow);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.95rem;
}

body.page-windshield-replacement .footer-contact li span {
  font-size: 0.9rem;
  color: rgba(244, 241, 232, 0.68);
  line-height: 1.55;
}

body.page-windshield-replacement .footer-bottom {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

body.page-windshield-replacement .footer-bottom p {
  font-size: 0.82rem;
  color: rgba(244, 241, 232, 0.4);
}

body.page-windshield-replacement .footer-bottom p a {
  color: var(--yellow);
}

@media (max-width: 1100px) {
  body.page-windshield-replacement .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  body.page-windshield-replacement .process-steps::before {
    display: none;
  }

  body.page-windshield-replacement .process-step:nth-child(4),
  body.page-windshield-replacement .process-step:nth-child(5) {
    grid-column: auto;
  }

  body.page-windshield-replacement .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  body.page-windshield-replacement .hamburger {
    display: flex;
  }

  body.page-windshield-replacement .intro-grid,
  body.page-windshield-replacement .services-grid,
  body.page-windshield-replacement .rock-chip-grid,
  body.page-windshield-replacement .insurance-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.page-windshield-replacement .service-card:first-child {
    border-right: 1px solid var(--line);
    border-bottom: none;
  }

  body.page-windshield-replacement .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.page-windshield-replacement .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  body.page-windshield-replacement .cta-actions {
    align-items: center;
  }

  body.page-windshield-replacement .cta-phone {
    justify-content: center;
  }
}

@media (max-width: 680px) {
  body.page-windshield-replacement .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  body.page-windshield-replacement .why-grid {
    grid-template-columns: 1fr;
  }

  body.page-windshield-replacement .services-grid {
    grid-template-columns: 1fr;
  }

  body.page-windshield-replacement .service-card:first-child {
    border-right: 1px solid var(--line);
  }

  body.page-windshield-replacement .footer-grid {
    grid-template-columns: 1fr;
  }

  body.page-windshield-replacement .insurance-section {
    padding: 60px 0;
  }

  body.page-windshield-replacement .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  body.page-windshield-replacement .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  body.page-windshield-replacement .intro-img-wrap::before {
    display: none;
  }

  body.page-windshield-replacement .intro-badge {
    left: 0;
    bottom: -16px;
  }
}

@media (max-width: 980px) {}

body.page-windshield-replacement .nav {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom: 1px solid var(--line) !important;
  position: sticky !important;
  top: 0 !important;
  width: 100% !important;
  backdrop-filter: blur(10px) !important;
  transition: background .25s ease, border-color .25s ease;
}

body.page-windshield-replacement .nav-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0px 20px !important;
  max-width: var(--maxw) !important;
  margin: 0 auto !important;
  width: 100% !important;
}

body.page-windshield-replacement .logo {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  color: #fff !important;
  max-width: 170px !important;
  width: 10%;
}

body.page-windshield-replacement .logo img {
  width: 100% !important;
  max-width: 200px !important;
  display: block !important;
}

body.page-windshield-replacement .nav-links {
  display: flex !important;
  gap: 38px !important;
  align-items: center !important;
}

body.page-windshield-replacement .nav-links a {
  font-family: var(--narrow), "Archivo Narrow", sans-serif !important;
  letter-spacing: .18rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: #fff !important;
  position: relative !important;
  font-size: 14px !important;
  transition: color 0.2s ease !important;
}

body.page-windshield-replacement .nav-links a::after {
  content: "" !important;
  position: absolute !important;
  left: -1px !important;
  bottom: -4px !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--yellow) !important;
  transition: width .3s ease !important;
}

body.page-windshield-replacement .nav-links a:hover {
  color: var(--yellow) !important;
}

body.page-windshield-replacement .nav-links a:hover::after,
body.page-windshield-replacement .nav-links a.active::after {
  width: 100% !important;
}

body.page-windshield-replacement .nav-links a.active {
  color: var(--yellow) !important;
}

body.page-windshield-replacement .nav-item-dropdown {
  position: relative !important;
  display: inline-block !important;
}

body.page-windshield-replacement .nav-links .has-drop {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}


body.page-windshield-replacement .nav-item-dropdown .dropdown-menu {
  display: none;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(10, 10, 10, 0.98) !important;
  border: 1px solid var(--line) !important;
  min-width: 260px !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  padding: 12px 0 !important;
  margin-top: 15px !important;
}

body.page-windshield-replacement .nav-item-dropdown .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 0 !important;
  right: 0 !important;
  height: 18px !important;
}

body.page-windshield-replacement .nav-item-dropdown .dropdown-menu::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-width: 8px !important;
  border-style: solid !important;
  border-color: transparent transparent var(--line) transparent !important;
  pointer-events: none !important;
}

body.page-windshield-replacement .nav-item-dropdown:hover .dropdown-menu {
  display: block !important;
}

body.page-windshield-replacement .nav-item-dropdown .dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(244, 241, 232, 0.85) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-windshield-replacement .nav-item-dropdown .dropdown-menu a:last-child {
  border-bottom: none !important;
}

body.page-windshield-replacement .nav-item-dropdown .dropdown-menu a:hover {
  color: var(--yellow) !important;
  background: rgba(253, 226, 12, 0.05) !important;
  padding-left: 28px !important;
}

body.page-windshield-replacement .nav-item-dropdown .dropdown-menu a::after {
  display: none !important;
}

body.page-windshield-replacement .burger {
  display: none !important;
  width: 32px !important;
  height: 32px !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 6px !important;
  align-items: flex-end !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
}

body.page-windshield-replacement .burger span {
  display: block !important;
  height: 2px !important;
  background: var(--yellow) !important;
  width: 24px !important;
  transition: width 0.2s ease !important;
}

body.page-windshield-replacement .burger span:nth-child(2) {
  width: 18px !important;
}

body.page-windshield-replacement .burger:hover span {
  width: 24px !important;
}

@media (max-width: 980px) {
  body.page-windshield-replacement .nav-links {
    display: none !important;
  }

  body.page-windshield-replacement .nav-inner .btn {
    display: none !important;
  }

  body.page-windshield-replacement .burger {
    display: flex !important;
  }
}

body.page-windshield-replacement .mobile-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.98) !important;
  z-index: 999999 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  backdrop-filter: blur(15px) !important;
}

body.page-windshield-replacement .mobile-menu.open {
  display: flex !important;
}

body.page-windshield-replacement .mobile-menu a {
  font-family: var(--display), "Bebas Neue", sans-serif !important;
  font-size: 36px !important;
  color: #fff !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  transition: color 0.2s ease !important;
}

body.page-windshield-replacement .mobile-menu a:hover {
  color: var(--yellow) !important;
}

body.page-windshield-replacement .mobile-close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  font-size: 36px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

body.page-windshield-replacement .mobile-close:hover {
  color: var(--yellow) !important;
}




.inner-pages header {
  position: unset;

}


#slick-header {
  background: var(--yellow);
  text-align: center;
  padding: 60px 0px !important;
}

.slick-header {
  background: var(--yellow);
  text-align: center;
  padding: 60px 0px !important;
}

.page-title h1 {
  font-size: 60px;
  color: #000;
  font-weight: 400;
  line-height: normal;
  font-family: "Bebas Neue", "Anton", Impact, sans-serif;

}

.slick-header p {
  margin: 0;
  width: 100%;
  color: #000;
  max-width: 853px;
  margin-inline: auto !important;
  margin-top: 5px !important;
  font-weight: 500;
}

.section-header h2 {
  font-size: 60px;
  color: #000;
  font-family: "Bebas Neue", "Anton", Impact, sans-serif;

}


.about-intro .section-header p {
  color: #fff;
  margin: 0px;
  display: flex;
  margin-bottom: 14px;
  padding: 10px 10px;
  width: fit-content;
  font-size: 17px;
  background: #ce151b;
}

.inner-pages section {
  padding: 65px 0px;
}

.site-cta {
  background: var(--ink-2);
  border-block: 5px solid #eed50b;
  text-align: center;
  border-bottom: 0px;
}

.site-cta p {
  text-align: center;
  width: 100%;
  max-width: 850px;
  margin: auto;
  margin-bottom: 15px;
}

.site-cta .section-header h2 {
  color: #fff;
  margin-bottom: 15px !important;
}


.new-footer-grid {
  display: grid;
  grid-template-columns: 20% 28% 20%;
  justify-content: space-between;
  gap: 30px;
  padding: 75px 15px 15px 15px !important;
  max-width: var(--maxw);
  padding-bottom: 0px !important;
  margin-inline: auto !important;
}

.new-footer {
  background: #000000;
  border-top: 5px solid #fde20c;
}

.footer-col-section h2 {
  color: #fff;
  font-size: 30px !important;
  margin-bottom: 35px !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  font-family: "Bebas Neue", "Anton", Impact, sans-serif !important;
}

.new-footer-col ul li a {
  color: #fff;
  text-transform: capitalize;
  font-family: var(--display);
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 16px;
}

.new-footer-col ul li {
  margin-bottom: 25px;
}

.new-footer-col {
  position: relative;
}

.new-footer-col:nth-last-child(2)::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 1px;
  background-color: #ffffff36;
  left: -86px;
}

.footer-logo img {
  text-align: center;
  margin-inline: auto;
  width: 100%;
  max-width: 230px !important;
}

.footer-logo p {
  margin-bottom: 14px;
  color: #fff;
  text-align: center !important;
  width: 100%;
  max-width: 300px;
  margin-inline: auto !important;
  margin-top: 19px;
  font-size: 16px !important;
  font-family: sans-serif;
  line-height: 23px;
  padding: 10px 0px;
}

.new-footer-col:nth-last-child(2) a {
  color: #fff;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
  margin-bottom: 10px;
  background: #ce151b;
  width: max-content;
  margin-inline: auto;
  padding: 4px 10px;
  outline: 2px solid #fff;
  font-weight: 700;
  outline-offset: -4px;
  font-size: 17px;
}

.address h6 {
  margin: 0px;
  border-top: 1px solid #ffffff36;
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  font-size: 21px;
  margin-bottom: 10px;
}

.address p {
  color: #fff;
  text-align: center;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: start;
}

.new-footer-col:nth-last-child(2)::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 1px;
  background-color: #ffffff36;
  right: -92px;
  top: 0;
}

.footer-end {
  text-align: end;
  display: flex;
  margin-top: 40px !important;
  border-top: 1px solid #ffffff36;
  padding: 10px 0px !important;
  margin-bottom: 0px !important;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  align-items: center;
  background: #ce151b;
}

.socials {
  display: flex;
  width: 50%;
  justify-content: end;
  gap: 10px;
}


.socials a {
  height: 40px;
  width: 40px;
  background-color: transparent;
  border: 1px solid #ffffff;
  padding: 8px;
}

.new-footer-col ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.new-footer-col ul li a {
  font-family: var(--body) !important;
}



.new-footer-col:nth-last-child(2) {
  width: 100%;
  margin-inline: auto;
  display: block;
  max-width: 392px;
  position: relative;
  left: -37px;
  position: relative;
}

.footer-section-container {
  max-width: var(--maxw) !important;
  width: 100% !important;
  display: flex;
  justify-content: space-between;
  margin-inline: auto !important;
}

.coomaon-parallax {
  height: 450px;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.coomaon-parallax::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background-color: #000000bf;
  inset: 0;
}

.coomaon-parallax .text-block {
  position: relative;
  width: 100%;
  text-align: center;
  max-width: 800px;
}

.coomaon-parallax .text-block .section-header h2 {
  color: #fff;
}

.wash-section .Wash-grid {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.wash-section .Wash-grid::before {
  height: 100%;
  background: #ffffff38;
  width: 1px;
  position: absolute;
  left: 50%;
  content: '';
}

.wash-grid-bx .section-header h2 {
  color: #fff;
}

.site-list {
  padding: 0px;
  margin: 0px;
}

.site-list li {
  position: relative;
  list-style: none;
  padding-left: 25px;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
}

.site-list li::before {
  height: 11px;
  width: 11px;
  background-color: #fde20c;
  position: absolute;
  content: '';
  border-radius: 100px;
  outline: 2px solid #fde20c;
  outline-offset: 2px;
  left: 0px;
  top: 5px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
}

.projects-grid .project-item {
  margin-top: 0;
}

.project-item img {
  height: 350px !important;
  object-fit: cover;
}

.projects-grid .project-item {
  background: #151514;
  padding: 15px;
  border: 1px solid #181717;
}

.project-item h3 {
  font-size: 23px;
  text-align: center;
  margin-top: 22px;
}


.nav .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  background-color: #ce151b;
}


.client-review-sliderr .review-box {
  padding: 30px;
  background-color: #0c0b0b;
  margin-bottom: 35px;
}

.client-review-section .head-bx {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  justify-content: flex-start;
  border-bottom: 1px solid #eeeeee1a;
  padding-bottom: 20px;
  justify-content: space-between;
}

.client-review-section .bottom-bx h2 {
  color: #fff;
  margin: 0px;
  display: none;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
  margin-bottom: 10px;
}

.client-review-section .bottom-bx p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  margin-bottom: 20px;
}

.google-icon {
  height: 40px;
  width: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-review-section .icon {
  display: flex;
  gap: 10px;
  color: orange;
}

.bottom-bx h5 {
  color: red;
}

.bottom-bx h5 {
  color: #fde20c;
  font-size: 18px;
  font-family: var(--tos-body);
  font-weight: 600;
}




.contact-us .main-form {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0px;
  background: #fff;
  /* padding: 25px; */
  border-radius: 0px;
}

.contact-us {
  background: var(--surface);
}

.contact-us .left-bx {
  padding: 3.5rem 16px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp 0.7s 0.25s ease both;
  padding-bottom: 40px;
  background-color: #ce151b;
}

.contact-us .pxl-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border-bottom: 1px solid #ffffff29;
}

.contact-us .pxl-item-inner:last-of-type {
  border: 0px;
}

.contact-us .pxl-item--icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  font-size: 22px;
  color: #fff;
}

.contact-us .pxl-item--icon i {}

.contact-us .pxl-item-title a {
  color: #000;
  font-weight: 500;
  font-size: 16px;
}

.contact-us .pxl-item-title {
  margin: 10px 0px;
  color: #fff !important;
  margin-top: 5px;
  font-weight: 600;
}

.page-template .error {
  color: #fff !important;
  margin-top: 0 !important;
  font-weight: 400;
  background-color: #ce151b;
  padding-left: 5px;
  text-align: left;
}

.page-template .field-group .error {
  position: relative;
  top: -11px;
}

.contact-us .pxl-item-desc {
  color: #fff;
  font-size: 20px;
}

.tos-contact-form-wrap .field-group .root-block,
.tos-page-book-appointment .limit-bx {
  font-size: 15px;
  color: rgb(255 255 255);
  text-transform: capitalize;
}

.tos-contact-form-wrap .button-row .btn {
  padding: 13px 14px;
  font-size: 15px;
}

.form-head p {
  padding-bottom: 15px;
  border-bottom: 1px solid #464646;
  margin-bottom: 15px;
}

.pxl-item--icon i {
  color: #ce151b !important;
}

.contact-us .right {
  padding: 1.5rem 4rem;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  background: #141414;
  margin-top: 0;
}

.fomr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 25px;
}

.contact-us .tos-contact-phone {
  margin: 10px 0px;
  display: block;
  font-weight: 600;
}

.form-head h2 {
  color: #fff;
  line-height: normal;
  margin-bottom: 0px;
}

.tos-footer-address-line i,
.tos-contact-phone i {
  display: none;
}

.form-head p {}

.fomr-grid .fl {
  display: block;
  font-weight: 500;
  letter-spacing: 0px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 7px;
}

.fomr-grid input {
  width: 100%;
  background: #fff;
  border: 1px solid #bebebe;
  padding: 0.75rem 1rem;
  font-family: 'Outfit',
    sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s,
    box-shadow 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  height: 45px;
}

.field-group {
  grid-column: 1/3;
  width: 100%;
}

.field-group textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #bebebe;
  padding: 0.75rem 1rem;
  font-family: 'Outfit',
    sans-serif;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s,
    box-shadow 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  height: 90px;
}

.button-row {
  text-align: end;
  grid-column: 1/3;
}

.contact-us .right button {
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--narrow);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  background-color: #ce151b;
  color: #fff;
}

.pxl-item-inner-last h6 {
  margin-top: 0px !important;
  margin-bottom: 5px !important;
}

.map-block {
  line-height: 0px;
}

.map-block iframe {
  width: 100%;
  max-width: 100%;
  height: 450px;
}



.benefits-section span {
  text-align: center;
  display: block;
  font-size: 16px !important;
  font-weight: 600;
  color: #fde20c;
}

.benefits-section .section-header {
  text-align: center;
}

.about-intro2 .section-header {
  text-align: center;
}

.about-intro2 .section-header span {
  text-transform: capitalize;
}

.about-intro2 .section-header h2 {
  color: #fff;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 25px;
}

.site-list {
  padding: 0px;
  margin: 0px;
  list-style: none;
  position: relative;
}

.site-list li {
  margin: 15px 0px;
  font-weight: 600;
  position: relative;
}

.site-list li::before {

  height: 11px;
  width: 11px;
  background-color: #fde20c;
  position: absolute;
  content: '';
  border-radius: 100px;
  outline: 2px solid #fde20c;
  outline-offset: 2px;
  left: 0px;
  top: 5px;
}

section.Truck-block {
  background: var(--ink-2);
}

.Truck-block .section-header {
  text-align: center;
  width: 100%;
  max-width: 950px;
  margin-inline: auto;
  margin-bottom: 45px;
}

.Truck-block .section-header h2 {
  color: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.info-grid .info-box img {
  height: 300px;
  object-fit: cover;
}

.info-grid .info-box p {
  text-align: center;
  font-size: 22px;
  margin-bottom: 10px 0px !important;
  font-weight: 600 !important;
  margin-top: 2px !important;
}

.info-box {
  background: #1c1c1c;
  padding: 25px !important;
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: end;
  text-align: center;
  margin-top: 0 !important;
}

.types .section-header h2 {
  color: #fff;
}

.intro .section-header {
  text-align: center;
  margin-bottom: 45px;
}

.intro .section-header h2 {
  color: #fff;
}

.flex-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 23px;
}

.flex-list li {
  width: 40%;
  margin: 5px 0px;
}

.wash-section2 .Wash-grid {
  gap: 0px;
  grid-template-columns: 1fr;
}

.wash-section2 .Wash-grid::before {
  display: none;
}

.wash-section2 .info-box h3 {
  margin: 0px;
  color: #fde20c;
  text-transform: capitalize;
  font-size: 24px;
}

.wash-section2 .info-box p {
  font-size: 16px !important;
}

.wash-section2 .icon {
  height: 50px;
  width: 50px;
  background: #ce151b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 29px;
  margin-inline: auto;
  border-radius: 100px;
}

.benefits-section .section-header h2 {
  color: #fff;
  line-height: 70px;
}

.intro-section-6 .section-header-block span {
  color: #fff;
  margin-inline: auto;
}

.intro-section-6 .section-header-block {
  text-align: center;
}

.intro-section-6 .section-header-block h2 {
  color: #fff;
}

.intro-section7 .section-header h2 {
  font-size: 60px;
  color: #fff;
  line-height: 60px;
  text-align: left;
  margin-top: 15px;
}

.intro-section7 .site-list li {
  text-align: left;
}

.intro-badge {
  display: none;
}

.process-section h2 {
  color: #fff;
  line-height: 75px;
  margin-top: 15px;
}

.Truck-block5 p {
  text-align: center !important;
}

.Truck-block5 .info-img {
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.process-section7 .section-header h2 {
  line-height: 65px;
  margin: 20px 0px;
}

.intro-section9 .tag2 {
  font-size: 16px;
  margin-bottom: 15px;
}

.intro-section9 .section-header h2 {
  color: #fff;
  line-height: 70px;
  margin-bottom: 15px;
}

.dropdown-menu a {
  display: block !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  text-align: left !important;
}

body.page-book-appointment .reveal.d1 input::placeholder,
body.page-book-appointment .reveal.d1 textarea::placeholder {
  opacity: 1;
  visibility: hidden;
}

body.page-book-appointment .reveal.d1 input::placeholder,
body.page-book-appointment .reveal.d1 textarea::placeholder {
  color: #000 !important;
}

.page-book-appointment select {
  color: #000 !important;
}

.page-book-appointment select option {
  color: #000 !important;
}

#appointmentForm input,
#appointmentForm select,
#appointmentForm textarea {
  color: #000;
}



.new-time-line {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

.new-time-line .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 90% !important;
}

.new-time-line::before {
  height: 100%;
  width: 100%;
  background-color: #000000c7;
  content: '';
  position: absolute;
  inset: 0;
}

.new-time-line .section-header h2 {
  text-align: center;
  color: #fff;
}

.new-time-line .section-head p {
  text-align: center;
  color: #fff;
}

.grid-card {
  background: #fff;
  position: relative;
  background-image: linear-gradient(to bottom right, #e9eaec, #ffffff);
  border-radius: 20px;
  padding: 20px;
  box-shadow: rgb(149 157 165 / 51%) 0px 8px 24px;
  border: 1px solid #eee;
  width: 22%;
  margin-top: 0;
}

.main-grid-block {
  position: relative;
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 100px;
  position: relative;
}

.main-grid-block::after {
  content: '';
  position: absolute;
  height: 6px;
  background: #ce151b;
  left: 89px;
  right: 0;
  top: calc(50% - -41px);
  transform: translateY(-50%);
  border-radius: 10px;
  width: 100%;
  max-width: calc(100% - 10%);
}

.card-title h2 {
  color: #ce151b;
  font-size: 30px;
}

.grid-card p {
  color: #000;
}

.grid-card::before {
  background: #ce151b;
  height: 44px;
  display: block;
  width: 3px;
  position: absolute;
  bottom: -45px;
  left: 50%;
  content: '';
}

.main-grid-block .grid-card:nth-child(5)::before,
.main-grid-block .grid-card:nth-child(6)::before,
.main-grid-block .grid-card:nth-child(7)::before {
  top: -55px;
  height: 54px;
}

.commercial-image .text-block {
  text-align: left;
  background: #ffffffe6;
  padding: 25px;
  width: 100%;
  max-width: 700px;
}

.commercial-image .text-block p {
  color: #000;
  text-align: left;
}

.commercial-image .text-block h2 {
  color: #000 !important;
}

.commercial-image .section-header h2 {
  text-align: left;
  color: #000 !important;
  line-height: 65px;
}


.commercial-image .section-header {
  margin-bottom: 10px !important;
}


.commercial-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.commercial-image p {
  margin-bottom: 15px;
}

.new-list2 li {
  color: #000;
}

.new-list2 li::before {
  background-color: #000;
  outline: 2px solid #000;
}

.intro-section-9 .section-header-block h2 {
  color: #fff;
  line-height: 68px;
}

.section-header2 h2 {
  margin-bottom: 5px !important;
  line-height: 20px;
}

.intro-section10 .section-head {
  text-align: center;
}

.intro-section10 .section-header h2 {
  text-align: center;
}

.section-header3 {
  margin-bottom: 39px;
}

.has-drop::after {
  display: none;
}


#message {
  width: 100%;
  padding: 25px 20px;
}

#message::placeholder {
  color: #545454;
  font-size: 15px;
  font-family: var(--ff-body);
  text-transform: capitalize;
}


.nav-item-dropdown {
  position: relative;
}

.nav-links a {
  padding: 50px 0px;
}

.nav-inner {
  padding: 0px 20px !important;
}

.mega-menu {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-44%);
  width: 100vw;
  background: transparent;
  background: ;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 999;
  display: flex;
  justify-content: center;
}

/* Show on hover */
.mega-parent:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-container {
  max-width: 100%;
  margin: auto;
  display: flex;
  gap: 40px;
  background: transparent;
}

.mian-inner-menu {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding: 25px !important;
  background: #fff;
  border-top: 4px solid #ce151b;
  justify-content: space-between !important;
  box-shadow: 0px 0 5px 1px rgb(91 86 86 / 75%);
  display: grid;
  grid-template-columns: 52% 1fr;
  gap: 20px;
  align-items: center;
  background: #0A0A0A;
}

.mian-inner-menu::after {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 43%;
  top: -11px;
  z-index: -1;
  transform: rotate(45deg);
  background: transparent;
  border-left: 3px solid #ce151b;
  border-top: 3px solid #ce151b;
  border-right: 0;
  border-bottom: 0;
  content: '';
  background: #000;
}

.nav-links a::after {
  bottom: 31px !important;
}

.left-menu-block a {
  border-bottom: 1px solid #eeeeee24;
  padding: 15px 35px !important;
  position: relative;
  padding-right: 0px !important;
}

.left-menu-block a::after {
  display: none !important;
}

.left-menu-block a::before {
  height: 12px;
  width: 12px;
  outline: 2px solid #f7de0d;
  background-color: #f7de0d;
  position: absolute;
  content: '';
  transform: rotate(45deg);
  outline-offset: 2px;
  left: 7px;
  top: 21px;
}

.left-menu-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 26px;
  grid-row: 20px;
}

.has-drop::after {
  display: none !important;
}

.form-group2 {
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 15px;
}

.inner-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row2 {
  grid-template-columns: 49% 48% !important;
}

section.benefits-section {
  padding-bottom: 100px;
}

@media (max-width: 1366.98px) {
  .mega-menu {
    transform: translateX(-41%);
  }

  .mian-inner-menu {
    max-width: 1250px;
  }

  .new-time-line .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100% !important;
  }
}


/* ===== inner-pages-bridge.css ===== */

/**
 * Bridge WordPress block markup to reference design/class names.
 * Loaded with reference-design.css on internal pages only.
 */

/* ── Scroll reveal (reference .reveal + theme animations.js) ── */
body.inner-pages .reveal,
body.inner-pages .reveal-left,
body.inner-pages .reveal-right {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

body.inner-pages .reveal.in,
body.inner-pages .reveal.is-visible,
body.inner-pages .reveal-left.in,
body.inner-pages .reveal-right.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header: solid bar on inner pages (not hero overlay) ── */
body.inner-pages .tos-header,
body.inner-pages .tos-header.wp-block-group {
  position: relative !important;
  background: #000 !important;
  background-color: #000 !important;
}

body.inner-pages .tos-header.is-scrolled {
  background: #000 !important;
  background-color: #000 !important;
}

/* ── Container alias ── */
body.inner-pages .tos-container.container,
body.inner-pages .container.tos-container {
  max-width: var(--maxw, 1340px);
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ── Slick header (yellow page title band) ── */
body.inner-pages .slick-header,
body.inner-pages .tos-slick-header {
  background: var(--yellow, #fde20c) !important;
  text-align: center;
  padding: 60px 0 !important;
  margin-block-start: 0 !important;
}

body.inner-pages .slick-header .page-title h1,
body.inner-pages .tos-slick-header h1,
body.inner-pages .page-title h1,
body.inner-pages .slick-header .page-title .wp-block-heading,
body.inner-pages .tos-slick-header .page-title .wp-block-heading {
  font-size: 60px !important;
  color: #000 !important;
  font-weight: 400 !important;
  line-height: normal !important;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif) !important;
  margin: 0 0 8px !important;
  text-transform: none;
  letter-spacing: 0.01em;
}

body.inner-pages .slick-header p,
body.inner-pages .tos-slick-header p,
body.inner-pages .page-title p,
body.inner-pages .slick-header .page-title .wp-block-paragraph,
body.inner-pages .tos-slick-header .page-title .wp-block-paragraph {
  margin: 0 auto !important;
  width: 100%;
  max-width: 853px;
  color: #000 !important;
  margin-top: 5px !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--body, "Archivo", system-ui, sans-serif);
}

body.inner-pages .slick-header .page-title .tos-slick-lead,
body.inner-pages .tos-slick-header .page-title .tos-slick-lead,
body.inner-pages .slick-header .page-title .tos-slick-lead strong,
body.inner-pages .tos-slick-header .page-title .tos-slick-lead strong {
  font-weight: 500 !important;
  font-size: 16px;
  color: #000 !important;
}

/* ── Section spacing ── */
body.inner-pages section,
body.inner-pages .tos-section {
  padding: 65px 0;
}

body.inner-pages .alignfull.tos-section {
  padding-left: 0;
  padding-right: 0;
}

/* ── Eyebrow as benefits-section span ── */
body.inner-pages .benefits-section>.tos-container>.tos-eyebrow,
body.inner-pages .benefits-section>.container>.tos-eyebrow,
body.inner-pages .benefits-section .tos-eyebrow--large {
  display: block;
  text-align: center;
  margin-bottom: 12px;
  font-family: var(--tos-narrow, "Archivo Narrow", sans-serif);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow, #fde20c);
}

.page-id-24 .tos-eyebrow,
.page-id-28 .tos-eyebrow,
.page-id-30 .tos-eyebrow,
.page-id-31 .tos-eyebrow,
.page-id-32 .tos-eyebrow,
.page-id-33 .tos-eyebrow {
  font-size: 18px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

body.inner-pages .section-header h2,
body.inner-pages .section-header .wp-block-heading {
  font-size: 58px !important;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}

body.page-about .new-time-line .section-header h2,
body.page-about .new-time-line .section-header .wp-block-heading {
  color: #fff !important;
  text-align: center;
  font-size: 60px !important;
}

body.page-about .new-time-line .section-head p,
body.page-about .new-time-line .section-head .wp-block-paragraph,
body.page-about .new-time-line .has-text-align-center {
  color: #fff !important;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}

body.inner-pages .site-cta,
body.inner-pages .site-cta.tos-section {
  background: var(--ink-2, #141414) !important;
  border-top: 5px solid var(--yellow, #eed50b);
  border-bottom: 0;
  text-align: center;
}

body.inner-pages .site-cta .section-header h2,
body.inner-pages .site-cta .section-header .wp-block-heading {
  color: #fff !important;
  text-transform: uppercase;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 15px !important;
}

body.inner-pages .site-cta p,
body.inner-pages .site-cta .has-text-align-center {
  color: #fff !important;
  max-width: 850px;
  margin-inline: auto;
  margin-bottom: 15px;
}

/* ── WP columns → reference grids ── */
body.inner-pages .benefits-grid.wp-block-columns,
body.inner-pages .wp-block-columns.benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex-wrap: nowrap !important;
}

body.inner-pages .benefits-grid.wp-block-columns>.wp-block-column,
body.inner-pages .benefits-grid>.wp-block-column {
  flex-basis: auto !important;
  width: auto !important;
  margin: 0 !important;
}

body.inner-pages .types__grid.wp-block-columns,
body.inner-pages .projects-grid.wp-block-columns {
  display: grid !important;
  flex-wrap: nowrap !important;
}

body.inner-pages .Truck-block .info-grid.wp-block-columns,
body.inner-pages .wash-section2 .info-grid.wp-block-columns {
  display: grid !important;
}

/* ── Benefit cards reference styling when design CSS loaded ── */
body.inner-pages .benefit-card.wp-block-group {
  height: 100%;
}

/* ── Section background images (inline styles stripped by WP on save) ── */
body.inner-pages .tos-bg-truck,
body.inner-pages .new-time-line.tos-bg-truck,
body.inner-pages .commercial-image.tos-bg-truck {
  background-image: url("https://www.touchofshadetint.com//wp-content/themes/touch-of-shade/assets/images/truck-window-tinting.jpg");
}

body.inner-pages .tos-bg-projects-parallax,
body.inner-pages .coomaon-parallax.tos-bg-projects-parallax {
  background-image: url("https://www.touchofshadetint.com//wp-content/themes/touch-of-shade/assets/images/HEADLIGHT-RESTORATION-TOUCH-OF-SHADE.jpg");
}

/* ── About intro / timeline aliases ── */
body.inner-pages .tos-timeline.new-time-line,
body.inner-pages .new-time-line {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

body.inner-pages .commercial-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

body.inner-pages .wp-block-html {
  margin: 0;
}

body.inner-pages .about-intro .about-intro-grid,
body.inner-pages .about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

body.inner-pages .about-intro .wp-block-columns,
body.inner-pages .about-intro-grid.wp-block-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

body.page-about .about-intro {
  background-color: #000;
}

body.page-about .about-intro .section-header h2,
body.page-about .about-intro .section-header .wp-block-heading {
  color: var(--bone, #f5f0e8) !important;
  font-size: clamp(40px, 5vw, 68px) !important;
  line-height: 1;
  text-transform: uppercase;
}

body.page-about .about-intro .inner-text-block p,
body.page-about .about-intro .wp-block-column p,
body.page-about .about-intro .site-list li,
body.page-about .about-intro ul.site-list li {
  color: #fff;
}

body.page-about .about-intro .wp-block-columns.about-intro-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  flex-wrap: unset !important;
}

body.page-about .about-intro .wp-block-columns.about-intro-grid>.wp-block-column {
  margin: 0;
  min-width: 0;
}

body.page-about .about-intro .wp-block-column.visual {
  flex-basis: 50% !important;
  min-height: 1px;
}

body.page-about .about-intro .visual,
body.page-about .about-intro .tos-about-visual {
  position: relative;
}

body.page-about .about-intro .visual .main-img,
body.page-about .about-intro .wp-block-image.main-img {
  width: 100%;
  margin: 0;
}

body.page-about .about-intro .visual .main-img img,
body.page-about .about-intro .wp-block-image.main-img img {
  width: 100%;
  height: 589px;
  object-fit: cover;
  border: 1px solid var(--line, #2a2a2a);
  display: block;
}

body.inner-pages .new-time-line .main-grid-block,
body.inner-pages .main-grid-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  row-gap: 100px;
  position: relative;
}

/* ── Site list bullets (reference yellow double-ring mark) ── */
body.inner-pages ul.site-list,
body.inner-pages ul.site-list.wp-block-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.inner-pages ul.site-list li,
body.inner-pages ul.site-list.wp-block-list li {
  position: relative !important;
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 25px !important;
  margin: 15px 0;
  font-weight: 600;
  font-size: 16px;
}

body.inner-pages ul.site-list li::marker,
body.inner-pages ul.site-list.wp-block-list li::marker {
  content: none !important;
  font-size: 0 !important;
}

body.inner-pages ul.site-list li::before,
body.inner-pages ul.site-list.wp-block-list li::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  top: 5px !important;
  height: 11px !important;
  width: 11px !important;
  background-color: #fde20c;
  border-radius: 100px !important;
  outline: 2px solid #fde20c;
  outline-offset: 2px !important;
}

body.page-about .about-intro ul.site-list.wp-block-list>li::before,
body.page-about .about-intro ul.site-list li::before {
  background-color: #fde20c !important;
  outline: 2px solid #fde20c !important;
  outline-offset: 2px !important;
}

/* ── Contact page ── */
body.page-contact .contact-us .main-form,
body.page-contact .main-form.wp-block-group {
  display: grid !important;
  grid-template-columns: 400px 1fr;
  background: #fff;
}

body.page-contact .contact-us .left-bx,
body.page-contact .main-form .left-bx {
  display: flex;
  flex-direction: column;
  gap: 2.3rem;
  padding: 3.5rem 30px 40px;
  background-color: #ce151b;
}

body.page-contact .contact-us .pxl-item-inner,
body.page-contact .main-form .pxl-item-inner {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 0 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

body.page-contact .contact-us .pxl-item-inner-last,
body.page-contact .main-form .pxl-item-inner-last {
  border-bottom: none;
  padding-bottom: 0;
}

body.page-contact .contact-us .pxl-item--icon,
body.page-contact .main-form .pxl-item--icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  margin: 0;
  font-size: 22px;
}

body.page-contact .contact-us .pxl-item--icon i,
body.page-contact .main-form .pxl-item--icon i {
  color: #ce151b !important;
}

body.page-contact .contact-us .pxl-item-desc,
body.page-contact .main-form .pxl-item-desc {
  color: #fff;
  font-size: 20px;
  margin: 0;
}

body.page-contact .contact-us .pxl-item-title,
body.page-contact .main-form .pxl-item-title,
body.page-contact .main-form .tos-contact-address,
body.page-contact .main-form .tos-contact-phone {
  color: #fff !important;
  margin: 5px 0 10px;
  font-size: 16px;
}

body.page-contact .contact-us .right,
body.page-contact .main-form .right {
  padding: 1.5rem 4rem !important;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  background: var(--ink-2, #141414) !important;
}

body.page-contact .tos-contact-section {
  padding: 65px 0;
}

/* ── Book appointment page ── */
body.page-book-appointment .appointment-section {
  padding: 85px 0;
  position: relative;
}

body.page-book-appointment .appointment-section.tos-bg-book-appointment,
body.page-book-appointment .tos-bg-book-appointment {
  background-image: url("https://www.touchofshadetint.com/wp-content/themes/touch-of-shade/assets/images/colorado-springs-expert-window-tinting-3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

body.page-book-appointment .form-wrapper,
body.page-book-appointment .form-wrapper.wp-block-group {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.82);
  border: 1px solid var(--line, #2a2a2a);
  padding: 35px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

@media (max-width: 600px) {

  body.page-book-appointment .form-wrapper,
  body.page-book-appointment .form-wrapper.wp-block-group {
    padding: 30px 20px;
  }
}

/* sContact form — override reference-design white text on white inputs */
body.page-book-appointment .tos-appointment-form-wrap .form-input,
body.page-book-appointment .tos-appointment-form-wrap .form-select,
body.page-book-appointment .tos-appointment-form-wrap .form-textarea {
  color: #0a0a0a !important;
  background: #fff !important;
  -webkit-text-fill-color: #0a0a0a !important;
}

body.page-book-appointment .tos-appointment-form-wrap .form-input::placeholder,
body.page-book-appointment .tos-appointment-form-wrap .form-textarea::placeholder {
  color: #6b7280 !important;
  opacity: 1;
  -webkit-text-fill-color: #6b7280 !important;
}

body.page-book-appointment .tos-appointment-form-wrap .form-select option {
  color: #0a0a0a !important;
  background: #fff !important;
}

body.page-book-appointment .tos-appointment-form-wrap .form-input:focus,
body.page-book-appointment .tos-appointment-form-wrap .form-select:focus,
body.page-book-appointment .tos-appointment-form-wrap .form-textarea:focus {
  border-color: #fde20c !important;
  color: #0a0a0a !important;
  -webkit-text-fill-color: #0a0a0a !important;
}

body.page-book-appointment .tos-appointment-form-wrap .form-label,
body.page-book-appointment .tos-appointment-form-wrap label.form-label {
  font-family: "Archivo Narrow", "Archivo", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

body.page-book-appointment .tos-appointment-form-wrap .error,
body.page-book-appointment .tos-appointment-form-wrap .scontact-field-error {
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
  margin-top: 8px !important;
}

body.page-contact .tos-contact-form-wrap .fl {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

body.page-contact .tos-contact-form-wrap .error,
body.page-contact .tos-contact-form-wrap .scontact-field-error {
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;
}

body.page-book-appointment .tos-appointment-form-wrap .form-input,
body.page-book-appointment .tos-appointment-form-wrap .form-select,
body.page-book-appointment .tos-appointment-form-wrap .form-textarea {
  font-family: "Archivo", system-ui, sans-serif !important;
  font-size: 15px !important;
}

body.page-book-appointment .tos-appointment-form-wrap .form-row2 {
  grid-template-columns: 49% 48% !important;
}

body.page-book-appointment .tos-appointment-form-wrap .form-row2 .form-group2 {
  grid-template-columns: 48% 48%;
  gap: 15px;
}

/* ── Projects page ── */
body.page-projects .projects-grid,
body.page-projects .projects-grid.wp-block-group {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

body.page-projects .project-item .wp-block-image img,
body.page-projects .project-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

body.page-projects .project-item h3,
body.page-projects .project-item .wp-block-heading {
  font-size: 23px;
  text-align: center;
  margin-top: 22px;
  color: #fff;
}

body.page-projects .project-item {
  background: #151514;
  padding: 15px;
  border: 1px solid #181717;
}

body.inner-pages .wp-block-group.coomaon-parallax {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 450px;
  height: 450px;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

body.inner-pages .coomaon-parallax::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000bf;
  inset: 0;
  z-index: 0;
}

body.inner-pages .coomaon-parallax .coomaon-parallax-block,
body.inner-pages .coomaon-parallax .tos-container,
body.inner-pages .coomaon-parallax .text-block {
  position: relative;
  z-index: 1;
  width: 100%;
}

body.inner-pages .coomaon-parallax .text-block {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

body.page-projects .coomaon-parallax .text-block h2,
body.page-projects .coomaon-parallax .text-block .wp-block-heading,
body.inner-pages .coomaon-parallax .text-block h2,
body.inner-pages .coomaon-parallax .text-block .wp-block-heading,
body.page-projects .coomaon-parallax .text-block p,
body.inner-pages .coomaon-parallax .text-block p {
  color: #fff !important;
}

body.inner-pages .coomaon-parallax .site-tn {
  margin-top: 16px;
}

body.inner-pages .coomaon-parallax .site-tn .wp-block-buttons {
  justify-content: center;
}

body.inner-pages .coomaon-parallax .site-tn .wp-block-button {
  margin: 0;
}

body.page-projects .coomaon-parallax .site-tn .wp-block-button__link,
body.inner-pages .coomaon-parallax .site-tn .wp-block-button__link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: var(--narrow, "Archivo Narrow", sans-serif) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 13px 14px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  background-color: #ce151b !important;
  color: #fff !important;
  text-decoration: none !important;
}

body.page-projects .coomaon-parallax .site-tn .wp-block-button__link:hover,
body.inner-pages .coomaon-parallax .site-tn .wp-block-button__link:hover {
  background: #a81116 !important;
  transform: translateY(-2px);
  color: #fff !important;
}

/* ── Reviews page ── */
body.page-reviews .client-review-section,
body.inner-pages .client-review-section {
  background-color: #000;
}

body.page-reviews .client-review-section .review-box {
  padding: 30px;
  background-color: #0c0b0b;
  margin-bottom: 35px;
}

body.page-reviews .client-review-section .head-bx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eeeeee1a;
  padding-bottom: 20px;
}

body.page-reviews .client-review-section .google-icon {
  height: 40px;
  width: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.page-reviews .client-review-section .google-icon img {
  max-width: 28px;
  height: auto;
}

body.page-reviews .client-review-section .icon {
  display: flex;
  gap: 6px;
  color: orange;
}

body.page-reviews .client-review-section .bottom-bx p,
body.page-reviews .client-review-section .bottom-bx .wp-block-paragraph {
  color: #fff;
  margin-bottom: 20px;
}

body.page-reviews .client-review-section .bottom-bx h5 {
  color: #fde20c;
  font-size: 18px;
  margin: 0;
}

/* ── Service page grids (block wrappers) ── */
body.inner-pages .benefits-grid.wp-block-group,
body.inner-pages .benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

body.inner-pages .info-grid.wp-block-group,
body.inner-pages .info-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.inner-pages .commercial-image .text-block h2,
body.inner-pages .commercial-image .text-block .wp-block-heading,
body.inner-pages .commercial-image .text-block p,
body.inner-pages .commercial-image .site-list li {
  color: #000;
}

body.inner-pages .Truck-block .section-header h2,
body.inner-pages .Truck-block .section-header p,
body.inner-pages .Truck-block .info-box p {
  color: #fff;
}

body.inner-pages .benefit-card .icon-wrap p {
  margin: 0;
  font-size: 28px;
  color: var(--red, #ce151b);
}

body.inner-pages .tos-contact-section {
  padding: 65px 0;
}

/* ── Buttons on inner pages ── */
body.inner-pages .site-btn .wp-block-button__link,
body.inner-pages .wp-block-button__link.wp-element-button {
  font-family: var(--narrow, "Archivo Narrow", sans-serif) !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

@media (max-width: 980px) {

  body.inner-pages .benefits-grid.wp-block-columns,
  body.inner-pages .about-intro .wp-block-columns,
  body.inner-pages .about-intro-grid {
    grid-template-columns: 1fr 1fr !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 880px) {
  body.inner-pages .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 640px) {

  body.inner-pages .benefits-grid.wp-block-columns,
  body.inner-pages .about-intro .wp-block-columns,
  body.inner-pages .about-intro-grid {
    grid-template-columns: 1fr !important;
  }

  body.inner-pages .slick-header .page-title h1,
  body.inner-pages .tos-slick-header h1 {
    font-size: clamp(2rem, 10vw, 3.25rem);
  }
}



/* ===== service-pages-bridge.css ===== */

/**
 * Service inner pages — bridge WordPress blocks to reference design.
 * Matches: commercial-wraps, window-tinting, vinyl-wraps, paint-protection,
 * headlight-restoration, windshield-replacement.
 */

/* ── Benefits section (commercial-wraps, paint-protection, window-tinting) ── */
body.inner-pages .benefits-section {
  background: var(--black, #000);
  padding-bottom: 100px;
}

body.inner-pages .benefits-section .section-header {
  text-align: center;
  margin-bottom: 45px;
}

body.inner-pages .benefits-section .section-header {
  text-align: center !important;
}

body.inner-pages .benefits-section .section-header h2,
body.inner-pages .benefits-section .section-header .wp-block-heading {
  color: #fff !important;
  line-height: 1.05 !important;
  margin: 14px 0 18px !important;
}

body.inner-pages .benefits-section>.tos-container>.tos-eyebrow,
body.inner-pages .benefits-section>.container>.tos-eyebrow,
body.inner-pages .benefits-section .tos-eyebrow--large {
  color: #fde20c !important;
  font-size: 16px !important;
  text-transform: none;
  letter-spacing: 0.02em;
}

body.inner-pages .benefits-grid.wp-block-group,
body.inner-pages .benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px !important;
}

body.page-window-tinting .benefits-grid.wp-block-group,
body.page-window-tinting .benefits-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 24px !important;
  margin-top: 45px;
}

body.inner-pages .benefit-card.wp-block-group,
body.inner-pages .benefit-card {
  background: var(--ink-2, #141414) !important;
  border: 1px solid var(--line, #2a2a2a) !important;
  border-top: 3px solid var(--yellow, #fde20c) !important;
  padding: 15px 18px !important;
  transition: border-color 0.3s ease, transform 0.3s ease;
  height: 100%;
}

body.page-commercial-wraps .benefit-card.wp-block-group,
body.page-commercial-wraps .benefit-card {
  background: var(--ink-2, #141414) !important;
  padding: 15px !important;
}

body.inner-pages .benefit-card:hover {
  border-color: var(--yellow, #fde20c) !important;
  transform: translateY(-5px);
}

body.inner-pages .benefit-card:not(.benefit-card--has-icon) .icon-wrap {
  display: none !important;
}

body.inner-pages .benefit-card h3,
body.inner-pages .benefit-card h4,
body.inner-pages .benefit-card .wp-block-heading {
  font-family: var(--display, "Bebas Neue", Impact, sans-serif) !important;
  font-size: 24px !important;
  color: #fff !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  margin: 15px 0 12px !important;
  letter-spacing: 0;
}

body.page-window-tinting .benefit-card h3,
body.page-window-tinting .benefit-card h4 {
  font-size: 26px !important;
  color: var(--bone, #f4f1e8) !important;
  letter-spacing: 0.04em;
}

body.inner-pages .benefit-card p,
body.inner-pages .benefit-card .wp-block-paragraph {
  color: #fff !important;
  margin: 0;
}

body.page-window-tinting .benefit-card--has-icon .icon-wrap {
  width: 45px;
  height: 45px;
  background: rgba(253, 226, 12, 0.1);
  border: 1px solid rgba(253, 226, 12, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

body.page-window-tinting .benefit-card--has-icon .icon-wrap p {
  margin: 0;
  font-size: 22px;
  color: #fff;
}

/* ── Commercial image parallax text panel ── */
body.inner-pages .commercial-image>.tos-container.container,
body.inner-pages .commercial-image>.container.tos-container {
  display: flex;
  align-items: center;
  min-height: 420px;
  width: 100%;
}

body.inner-pages .commercial-image .text-block.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)),
body.inner-pages .commercial-image .section-header.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.inner-pages .commercial-image .text-block.wp-block-group,
body.inner-pages .commercial-image .text-block {
  text-align: left !important;
  background: #ffffffe6 !important;
  padding: 25px !important;
  width: 100%;
  max-width: 700px;
  margin-left: 0 !important;
  margin-right: auto !important;
  margin-inline: 0 auto !important;
  position: relative;
  z-index: 1;
}

body.inner-pages .commercial-image .section-header {
  margin-bottom: 10px !important;
  text-align: left !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

body.inner-pages .commercial-image .section-header h2,
body.inner-pages .commercial-image .section-header .wp-block-heading,
body.inner-pages .commercial-image .text-block h2,
body.inner-pages .commercial-image .text-block .wp-block-heading {
  color: #000 !important;
  text-align: left !important;
  line-height: 1.05 !important;
}

body.inner-pages .commercial-image .section-header p,
body.inner-pages .commercial-image .section-header .wp-block-paragraph,
body.inner-pages .commercial-image .text-block p,
body.inner-pages .commercial-image .text-block .wp-block-paragraph,
body.inner-pages .commercial-image .site-list li {
  color: #000 !important;
  text-align: left !important;
}

body.inner-pages .commercial-image .text-block p,
body.inner-pages .commercial-image .text-block .wp-block-paragraph {
  margin-bottom: 15px;
}

body.inner-pages .tos-bg-headlight-process {
  background-image: url("https://www.touchofshadetint.com//wp-content/themes/touch-of-shade/assets/images/automative-apint-protection.jpg");
}

body.inner-pages .process-section.tos-bg-headlight-process {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}

body.inner-pages .process-section.tos-bg-headlight-process::before {
  position: absolute;
  content: "";
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: #000000cf;
  z-index: 0;
}

body.inner-pages .process-section.tos-bg-headlight-process>.tos-container {
  position: relative;
  z-index: 1;
}

/* ── Wash section (commercial-wraps CTA + info boxes) ── */
body.inner-pages .wash-section.wash-section2,
body.inner-pages .wash-section2.tos-section {
  background: #000 !important;
}

body.inner-pages .wash-section2 .section-new-head .section-header {
  text-align: center;
  margin-bottom: 45px;
  max-width: none;
  margin-inline: auto;
}

body.inner-pages .wash-section2 .section-header h2,
body.inner-pages .wash-section2 .section-header .wp-block-heading,
body.inner-pages .wash-section2 .section-header p,
body.inner-pages .wash-section2 .section-header .wp-block-paragraph {
  color: #fff !important;
  text-align: center !important;
}

body.inner-pages .wash-section2 .Wash-grid.wp-block-columns {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  flex-wrap: unset !important;
}

body.inner-pages .wash-section2 .Wash-grid.wp-block-columns::before {
  display: none !important;
}

body.inner-pages .wash-section2 .Wash-grid>.wp-block-column:first-child:empty,
body.inner-pages .wash-section2 .wash-grid-bx:first-child:empty {
  display: none !important;
  min-height: 0 !important;
}

body.inner-pages .wash-section2 .wash-grid-bx .new-root {
  width: 100%;
}

body.inner-pages .wash-section2 .info-grid.wp-block-group,
body.inner-pages .wash-section2 .info-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  width: 100%;
}

body.inner-pages .wash-section2 .info-box {
  background: #1c1c1c !important;
  padding: 15px;
  text-align: center;
  border: none !important;
}

body.inner-pages .wash-section2 .info-box h3,
body.inner-pages .wash-section2 .info-box .wp-block-heading {
  margin: 0 0 8px !important;
  color: #fde20c !important;
  text-transform: capitalize;
  font-size: 24px !important;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif) !important;
  font-weight: 400 !important;
}

body.inner-pages .wash-section2 .info-box p,
body.inner-pages .wash-section2 .info-box .wp-block-paragraph {
  color: #fff !important;
  font-size: 16px !important;
  text-align: center;
}

/* ── Vinyl wraps: types + intro ── */
body.page-vinyl-wraps .types {
  background: var(--black, #000);
}

body.page-vinyl-wraps .types .types__head .section-header,
body.page-vinyl-wraps .types .section-header {
  text-align: center !important;
}

body.page-vinyl-wraps .types .tos-eyebrow--large {
  display: block;
  text-align: center;
}

body.page-vinyl-wraps .intro {
  background: #000 !important;
}

body.page-vinyl-wraps .types__grid.wp-block-group,
body.page-vinyl-wraps .types__grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
}

body.page-vinyl-wraps .types .section-header h2,
body.page-vinyl-wraps .types .section-header .wp-block-heading {
  color: #fff !important;
}

body.page-vinyl-wraps .intro .section-header {
  text-align: center;
  margin-bottom: 45px;
}

body.page-vinyl-wraps .intro .section-header h2,
body.page-vinyl-wraps .intro .section-header .wp-block-heading {
  color: #fff !important;
}

body.page-vinyl-wraps .intro__grid.wp-block-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
  flex-wrap: unset !important;
}

body.page-vinyl-wraps .intro__img img,
body.page-vinyl-wraps .intro__img .wp-block-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

body.page-vinyl-wraps .intro__body p,
body.page-vinyl-wraps .intro__body .wp-block-paragraph {
  color: rgba(244, 241, 232, 0.85) !important;
  margin-bottom: 15px;
}

/* ── About intro (window tinting + shared service intro) ── */
body.inner-pages .about-intro,
body.inner-pages .about-intro2 {
  background: #000 !important;
}

body.inner-pages .about-intro .about-intro-grid.wp-block-columns,
body.inner-pages .about-intro2 .about-intro-grid.wp-block-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
  flex-wrap: unset !important;
}

body.inner-pages .about-intro2 .inner-text-block .section-header,
body.inner-pages .about-intro.about-intro2 .section-header {
  text-align: left !important;
}

body.inner-pages .about-intro .section-header h2,
body.inner-pages .about-intro .section-header .wp-block-heading,
body.inner-pages .about-intro2 .inner-text-block .section-header h2,
body.inner-pages .about-intro2 .section-header .wp-block-heading,
body.inner-pages .about-intro .inner-text-block p,
body.inner-pages .about-intro .wp-block-paragraph {
  color: #fff !important;
  text-align: left !important;
}

body.page-window-tinting .about-intro,
body.page-window-tinting .about-intro2 {
  background: #000 !important;
}

body.page-window-tinting .about-intro .section-header h2,
body.page-window-tinting .about-intro .section-header .wp-block-heading,
body.page-window-tinting .about-intro .inner-text-block p,
body.page-window-tinting .about-intro .wp-block-paragraph {
  color: #fff !important;
  text-align: left !important;
}

body.page-window-tinting .about-intro-grid.wp-block-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
}

body.page-window-tinting .about-intro .main-img img,
body.page-window-tinting .about-intro .wp-block-image img {
  width: 100%;
  height: auto;
  max-height: 589px;
  object-fit: cover;
  border: 1px solid var(--line, #2a2a2a);
}

/* ── Process sections (headlight, windshield) ── */
body.inner-pages .process-section .section-header,
body.inner-pages .process-section .process-header {
  text-align: center !important;
  margin-bottom: 35px;
}

body.page-headlight-restoration .process-section>.tos-container>.section-header.reveal>.tos-eyebrow--large {
  text-align: center !important;
  display: block;
}

body.inner-pages .process-section .section-header h2,
body.inner-pages .process-section .section-header .wp-block-heading,
body.inner-pages .process-section .tos-eyebrow--large {
  color: #fff !important;
}

/* Headlight: vertical timeline */
body.page-headlight-restoration .process-section .process-steps.wp-block-group,
body.page-headlight-restoration .process-section .process-steps {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  max-width: 860px;
  margin-inline: auto;
  position: relative;
}

body.page-headlight-restoration .process-section .process-steps::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line, #2a2a2a);
  z-index: 0;
}

body.page-headlight-restoration .process-section .step.wp-block-group,
body.page-headlight-restoration .process-section .step {
  display: flex !important;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line, #2a2a2a);
  position: relative;
  z-index: 1;
}

body.page-headlight-restoration .process-section .step:last-child {
  border-bottom: none;
}

body.page-headlight-restoration .process-section .step-num,
body.page-headlight-restoration .process-section .step-num.wp-block-paragraph {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: var(--yellow, #fde20c);
  color: var(--black, #000);
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-size: 1.9rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0;
  position: relative;
  z-index: 1;
}

body.page-headlight-restoration .process-section .step h3,
body.page-headlight-restoration .process-section .step .wp-block-heading {
  color: var(--bone, #f4f1e8) !important;
  font-size: 1.5rem !important;
  margin: 0 0 8px !important;
  letter-spacing: 0.04em;
}

body.page-headlight-restoration .process-section .step p,
body.page-headlight-restoration .process-section .step .wp-block-paragraph {
  color: #fff !important;
  margin: 0;
}

/* Windshield: 4-column horizontal steps (reference process-section7) */
body.page-windshield-replacement .process-section.process-section7,
body.page-windshield-replacement .process-section7 {
  background: var(--ink-2, #141414) !important;
}

body.page-windshield-replacement .process-section .process-header {
  margin-bottom: 70px;
}

body.page-windshield-replacement .process-section7 .container,
body.page-windshield-replacement .process-section7 .tos-container {
  max-width: 81% !important;
  width: 100%;
}

body.page-windshield-replacement .process-section .process-steps.wp-block-group,
body.page-windshield-replacement .process-section .process-steps {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  max-width: none;
  margin-inline: auto;
  position: relative;
}

body.page-windshield-replacement .process-section .process-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--line, #2a2a2a);
  z-index: 0;
}

body.page-windshield-replacement .process-step.wp-block-group,
body.page-windshield-replacement .process-step {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 0 16px !important;
  position: relative;
  z-index: 1;
  background: transparent !important;
  border: none !important;
  height: auto !important;
}

body.page-windshield-replacement .process-step .step-num,
body.page-windshield-replacement .process-step .step-num.wp-block-paragraph {
  width: 70px;
  height: 70px;
  background: var(--black, #000);
  border: 2px solid var(--yellow, #fde20c);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif);
  font-size: 1.8rem;
  color: var(--yellow, #fde20c);
  margin: 0 0 22px !important;
  flex-shrink: 0;
}

body.page-windshield-replacement .process-step .step-icon {
  display: none !important;
}

body.page-windshield-replacement .process-step h4,
body.page-windshield-replacement .process-step .wp-block-heading {
  color: #fff !important;
  font-family: var(--display, "Bebas Neue", Impact, sans-serif) !important;
  font-size: 22px !important;
  letter-spacing: 0.06em;
  margin: 0 0 8px !important;
  line-height: 1.1 !important;
}

body.page-windshield-replacement .process-step p:not(.step-num),
body.page-windshield-replacement .process-step .wp-block-paragraph:not(.step-num) {
  color: #fff !important;
  margin: 0;
}

/* ── Intro sections (paint protection, headlight, windshield) ── */
body.inner-pages .intro-section {
  background: #000;
}

body.inner-pages .intro-section .section-header-block,
body.inner-pages .intro-section .section-head {
  text-align: center;
  margin-bottom: 45px;
}

body.inner-pages .intro-section-6 .section-header-block,
body.inner-pages .intro-section.intro-section-6 .section-header-block {
  text-align: center !important;
  margin-bottom: 45px;
}

body.inner-pages .intro-section-6 .section-header-block h2,
body.inner-pages .intro-section-6 .section-header-block .section-header h2,
body.inner-pages .intro-section-6 .section-header-block .wp-block-heading {
  color: #fff !important;
  text-align: center !important;
}

body.inner-pages .intro-section10 .section-head,
body.inner-pages .intro-section.intro-section10 .section-head {
  text-align: center !important;
}

body.inner-pages .intro-section10 .section-head .tos-eyebrow--large {
  text-align: center !important;
  display: block;
}

body.inner-pages .intro-section10 .section-head .section-header h2,
body.inner-pages .intro-section10 .section-head .section-header .wp-block-heading {
  color: #fff !important;
  text-align: center !important;
  line-height: 1.05 !important;
}

body.inner-pages .intro-section7 .intro-text .section-header p,
body.inner-pages .intro-section7 .intro-text .section-header .wp-block-paragraph,
body.inner-pages .intro-section7 .site-list li {
  text-align: left !important;
}

body.inner-pages .intro-section9 .intro-left .section-header,
body.inner-pages .intro-section.intro-section9 .section-header {
  text-align: left !important;
}

body.inner-pages .intro-section9 .intro-left .section-header h2,
body.inner-pages .intro-section.intro-section9 .intro-left .section-header .wp-block-heading {
  color: #fff !important;
  text-align: left !important;
  line-height: 1.05 !important;
  margin-bottom: 15px !important;
}

body.inner-pages .intro-section .section-header h2,
body.inner-pages .intro-section .section-header .wp-block-heading,
body.inner-pages .intro-section .intro-text p,
body.inner-pages .intro-section .intro-left p,
body.inner-pages .intro-section .intro-text .wp-block-paragraph,
body.inner-pages .intro-section .intro-left .wp-block-paragraph {
  color: #fff !important;
}

body.inner-pages .intro-section7 .section-header h2,
body.inner-pages .intro-section9 .intro-left .section-header h2,
body.inner-pages .intro-section .intro-text p,
body.inner-pages .intro-section .intro-left p,
body.inner-pages .intro-section .intro-text .wp-block-paragraph,
body.inner-pages .intro-section .intro-left .wp-block-paragraph {
  text-align: left !important;
}

body.inner-pages .intro-section .intro-grid.wp-block-columns,
body.inner-pages .intro-section .intro-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center;
  flex-wrap: unset !important;
}

body.inner-pages .intro-section .intro-img-container img,
body.inner-pages .intro-section .intro-image-wrap img,
body.inner-pages .intro-section .intro-img-wrap img,
body.inner-pages .intro-section .intro-right img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

body.inner-pages .intro-section .site-list li {
  color: #fff !important;
}

/* ── Truck-block gallery ── */
body.inner-pages .Truck-block {
  background: var(--ink-2, #141414) !important;
}

body.inner-pages .Truck-block .section-header {
  text-align: center !important;
  max-width: 950px;
  margin-inline: auto !important;
  margin-bottom: 45px;
}

body.inner-pages .Truck-block .section-header h2,
body.inner-pages .Truck-block .section-header .wp-block-heading,
body.inner-pages .Truck-block .section-header p {
  color: #fff !important;
}

body.inner-pages .Truck-block .info-grid.wp-block-group,
body.inner-pages .Truck-block .info-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

body.inner-pages .Truck-block .info-box {
  background: #1c1c1c !important;
  padding: 15px;
}

body.inner-pages .Truck-block .info-box img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  display: block;
}

body.inner-pages .Truck-block .info-box p {
  color: #fff !important;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0 0 !important;
}

body.inner-pages .Truck-block5 .info-box {
  padding: 0;
  background: transparent !important;
}

body.inner-pages .Truck-block5 .info-img img,
body.inner-pages .Truck-block5 .info-box .wp-block-image img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  display: block;
}

body.inner-pages .Truck-block5 .info-box p {
  display: none;
}

/* ── Site list on dark sections ── */
body.inner-pages .site-list.flex-list.wp-block-list,
body.inner-pages ul.site-list.flex-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 23px;
}

body.inner-pages ul.site-list.flex-list li {
  width: 40%;
}

@media (max-width: 980px) {

  body.inner-pages .benefits-grid.wp-block-group,
  body.inner-pages .benefits-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.inner-pages .wash-section2 .info-grid.wp-block-group,
  body.inner-pages .wash-section2 .info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.page-vinyl-wraps .types__grid.wp-block-group,
  body.page-vinyl-wraps .types__grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.page-vinyl-wraps .intro__grid.wp-block-columns,
  body.inner-pages .intro-section .intro-grid.wp-block-columns,
  body.inner-pages .about-intro .about-intro-grid.wp-block-columns,
  body.inner-pages .about-intro2 .about-intro-grid.wp-block-columns {
    grid-template-columns: 1fr !important;
  }

  body.inner-pages .Truck-block .info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 1100px) {
  body.page-windshield-replacement .process-section .process-steps {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
  }

  body.page-windshield-replacement .process-section .process-steps::before {
    display: none;
  }
}

@media (max-width: 680px) {
  body.page-windshield-replacement .process-section .process-steps {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {

  body.inner-pages .benefits-grid.wp-block-group,
  body.inner-pages .benefits-grid,
  body.page-vinyl-wraps .types__grid,
  body.inner-pages .wash-section2 .info-grid {
    grid-template-columns: 1fr !important;
  }

  body.inner-pages ul.site-list.flex-list li {
    width: 100%;
  }

  body.inner-pages .Truck-block .info-grid {
    grid-template-columns: 1fr !important;
  }

  body.page-windshield-replacement .process-section .process-steps {
    grid-template-columns: 1fr !important;
  }
}



/* ===== footer.css ===== */

/* Touch of Shade — Footer (single source of truth: homepage + all internal pages) */

/* Undo reference-design per-page `footer` wrapper rules (padding, double border). */
body footer.wp-block-template-part,
body.is-home footer.wp-block-template-part,
body.inner-pages footer.wp-block-template-part,
body[class*="page-"] footer.wp-block-template-part {
  border-top: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.tos-footer,
.tos-footer.wp-block-group,
.tos-footer.has-background {
  background: var(--tos-black) !important;
  background-color: #000000 !important;
  border-top: 5px solid var(--tos-yellow) !important;
  margin-block-start: 0 !important;
  padding: 75px 0 0 !important;
  position: relative;
  z-index: 2;
}

.tos-footer__wrap {
  max-width: var(--tos-maxw);
  margin-inline: auto;
  padding: 0 15px !important;
}

.tos-footer__grid {
  display: grid;
  grid-template-columns: 20% 28% 20%;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 0;
}

.tos-footer__col h2,
.tos-footer__col .wp-block-heading {
  color: #fff !important;
  font-size: 30px !important;
  margin: 0 0 35px !important;
  font-family: var(--tos-display) !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  line-height: 1 !important;
  text-transform: none !important;
}

.tos-footer__col .wp-block-navigation {
  background: transparent !important;
}

.tos-footer__col .wp-block-navigation,
.tos-footer__col .wp-block-navigation .wp-block-navigation__container,
.tos-footer__col .wp-block-navigation .wp-block-navigation-item,
.tos-footer__col .wp-block-navigation .wp-block-navigation-item__label,
.tos-footer__col .wp-block-navigation .wp-block-navigation-item__content,
.tos-footer__col .wp-block-navigation a {
  color: #fff !important;
  text-transform: capitalize !important;
  font-family: var(--tos-display) !important;
  letter-spacing: 1px !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  text-align: left !important;
}

.tos-footer__col {
  text-align: left !important;
}

.tos-footer__col:last-child .wp-block-navigation,
.tos-footer__col:last-child .wp-block-navigation .wp-block-navigation__container {
  align-items: flex-start !important;
  justify-content: flex-start !important;
  width: 100% !important;
}

.tos-footer__col:last-child .wp-block-navigation .wp-block-navigation-item {
  align-self: flex-start !important;
  width: 100% !important;
}

.tos-footer__col .wp-block-navigation .wp-block-navigation-item__content:hover,
.tos-footer__col .wp-block-navigation a:hover {
  color: var(--tos-yellow) !important;
}

.tos-footer__col .wp-block-navigation .wp-block-navigation-item {
  margin-bottom: 25px !important;
  list-style: none !important;
}

.tos-footer__col .wp-block-navigation .wp-block-navigation__container {
  gap: 0 !important;
  align-items: flex-start !important;
}

.tos-footer__col .wp-block-navigation ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tos-footer__center {
  width: 100%;
  max-width: 392px;
  margin-inline: auto;
  position: relative;
  left: -37px;
  text-align: center;
}

.tos-footer__center::before,
.tos-footer__center::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.21);
  top: 0;
}

.tos-footer__center::before {
  left: -86px;
}

.tos-footer__center::after {
  right: -92px;
}

.tos-footer__logo {
  width: 100%;
  margin-bottom: 0;
}

.tos-footer__logo .wp-block-site-logo,
.tos-footer__logo .custom-logo-link {
  display: block;
  width: 280px !important;
  max-width: 100%;
  margin-inline: auto;
}

.button:focus {
  outline: none !important;
}

.tos-footer__logo img,
.tos-footer__logo .wp-block-site-logo img,
.tos-footer__logo .custom-logo {
  display: block;
  width: 120px !important;
  max-width: 230px !important;
  height: auto !important;
  margin-inline: auto;
}

.tos-footer__tagline,
.tos-footer__tagline p {
  color: #fff !important;
  text-align: center;
  max-width: 300px;
  margin: 19px auto 14px !important;
  padding: 10px 0;
  font-size: 16px !important;
  line-height: 23px !important;
  font-family: sans-serif !important;
}

.tos-footer__phone {
  text-align: center;
  margin-bottom: 10px;
}

.tos-footer__phone a,
.tos-footer__phone .tos-contact-phone {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  color: #fff !important;
  background: var(--tos-red) !important;
  width: max-content !important;
  margin-inline: auto !important;
  padding: 4px 10px !important;
  outline: 2px solid #fff !important;
  outline-offset: -4px !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  text-decoration: none !important;
  line-height: 1.4 !important;
  font-family: var(--tos-body) !important;
  border-radius: 0 !important;
}

.tos-footer__phone .fa-phone {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.tos-footer__phone a:hover,
.tos-footer__phone .tos-contact-phone:hover {
  color: #fff !important;
  opacity: 0.92 !important;
}

.tos-footer__address h6,
.tos-footer__address .wp-block-heading {
  color: #fff !important;
  font-size: 21px !important;
  margin: 0 0 10px !important;
  margin-top: 24px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.21) !important;
  text-transform: none !important;
  letter-spacing: 0.05em !important;
  font-family: var(--tos-display) !important;
  font-weight: 400 !important;
  text-align: center !important;
}

.tos-footer__address .tos-footer-address-line {
  color: #fff !important;
  text-align: center;
  display: flex !important;
  gap: 5px !important;
  justify-content: center !important;
  align-items: flex-start !important;
  margin: 0 !important;
  line-height: 1.5 !important;
  font-size: 16px !important;
  font-family: sans-serif !important;
}

.tos-footer__address .tos-footer-address-line .fa-location-dot {
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1;
}

.tos-footer__address .tos-contact-address,
.tos-footer__address p {
  color: #fff !important;
  text-align: center !important;
  line-height: 1.5 !important;
  font-size: 16px !important;
  font-family: sans-serif !important;
}

.tos-footer__bar {
  width: 100%;
  margin-top: 40px;
  background: var(--tos-red) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.21);
  padding: 10px 20px;
}

.tos-footer__bar-inner {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  max-width: var(--tos-maxw);
  margin-inline: auto;
  width: 100%;
  gap: 16px;
}

.tos-footer__bar p {
  margin: 0 !important;
  color: #fff !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.tos-footer__socials,
.tos-footer__bar .socials {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  padding: 0 !important;
  width: auto;
  flex-shrink: 0;
}

.tos-footer__socials a,
.tos-footer__bar .socials a {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 40px !important;
  width: 40px !important;
  background: transparent !important;
  border: 1px solid #fff !important;
  padding: 8px !important;
  color: #fff !important;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
  border-radius: 0 !important;
}

.tos-footer__socials a:hover,
.tos-footer__bar .socials a:hover {
  opacity: 0.85 !important;
  color: #fff !important;
}

.tos-footer__socials a i,
.tos-footer__bar .socials a i {
  font-size: 18px !important;
  line-height: 1;
  color: #fff !important;
  display: block;
}

.tos-footer__socials svg,
.tos-footer__bar .socials svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor !important;
  color: #fff !important;
}

.tos-footer__bar .wp-block-html {
  margin: 0 !important;
  padding: 0 !important;
}

/* Beat theme.json global navigation + reference-design on every page. */
body .tos-footer .tos-footer__col h2,
body .tos-footer .tos-footer__col .wp-block-heading,
body.inner-pages .tos-footer .tos-footer__col h2,
body[class*="page-"] .tos-footer .tos-footer__col h2 {
  text-transform: none !important;
}

body .tos-footer .wp-block-navigation,
body .tos-footer .wp-block-navigation .wp-block-navigation__container,
body .tos-footer .wp-block-navigation .wp-block-navigation-item,
body .tos-footer .wp-block-navigation .wp-block-navigation-item__label,
body .tos-footer .wp-block-navigation .wp-block-navigation-item__content,
body .tos-footer .wp-block-navigation a,
body.inner-pages .tos-footer .wp-block-navigation a,
body[class*="page-"] .tos-footer .wp-block-navigation a {
  text-transform: capitalize !important;
  font-family: var(--tos-body) !important;
  font-weight: 400 !important;
  letter-spacing: 1px !important;
  font-size: 16px !important;
  text-align: left !important;
}

body[class*="page-"] footer.wp-block-template-part,
body.inner-pages footer.wp-block-template-part {
  border-top: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

/* Inner pages: keep last content section separated from footer yellow rule */
body.inner-pages main .wash-section2.tos-section,
body.inner-pages main .commercial-image.tos-section,
body.inner-pages main .types.tos-section,
body.inner-pages main .intro.tos-section {
  padding-bottom: 65px !important;
}

body.inner-pages main .site-cta.tos-section {
  padding-bottom: 65px !important;
}

body.inner-pages footer.wp-block-template-part .tos-footer,
body[class*="page-"] footer.wp-block-template-part .tos-footer {
  padding-top: 75px !important;
}

body.inner-pages footer.wp-block-template-part .tos-footer__wrap,
body[class*="page-"] footer.wp-block-template-part .tos-footer__wrap {
  padding-top: 0 !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.new-time-line .main-grid-block {
  max-width: 100% !important;
}

.about-intro .visual .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #000;
  height: 589px;
}

.tos-page-window-tinting .benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px;
}

.tos-page-window-tinting .benefit-card::before {
  background: #fde20c;
}

.tos-page-window-tinting .benefit-card {
  margin-top: 0 !important;
}

.tos-page-window-tinting .icon-wrap .wp-block-paragraph {
  width: 45px;
  height: 45px;
  background: rgba(253, 226, 12, .1);
  border: 1px solid rgba(253, 226, 12, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px !important;
  margin-left: 0% !important;
}

.types__head {
  margin-bottom: 35px;
}

.type-card {
  transition: 35s cubic-bezier(.4, 0, .2, 1);
}

.type-card:hover {
  transform: translateY(-28px) !important;
  border-color: rgba(253, 226, 12, .25);
}

.tos-page-vinyl-wraps .intro {
  border-bottom: 1px solid #2A2A2A;
}

body.tos-page-vinyl-wraps .flex-list li {
  margin: 15px 0 0 !important;
}

body.inner-pages .intro-section-6 {
  background: #0a0a0a;
}

.tos-page-paint-protection .intro-image-wrap {
  position: relative;
  overflow: hidden;
}

.tos-page-paint-protection .intro-img-container .size-large img {
  transition: transform 0.6s ease;
}

.tos-page-paint-protection .intro-img-container .size-large img:hover {
  transform: scale(1.04);
}

.tos-page-headlight-restoration .process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.tos-page-headlight-restoration .step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 36px 0;
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
  border-bottom: 1px solid #2a2a2a;
  position: relative;
  background-color: transparent;
  margin-top: 0;
}

.tos-page-headlight-restoration .step:last-child {
  border-bottom: none !important;
}

.tos-page-headlight-restoration .process-steps::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #2a2a2a;
}

.tos-page-headlight-restoration .step-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 8px;
}

.tos-page-headlight-restoration .step-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: #fde20c;
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.tos-page-headlight-restoration .intro-image img {
  width: 100%;
  height: 575px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.tos-page-headlight-restoration .flex-list li {
  margin-bottom: 0 !important;
}

.Truck-block5 .info-box .info-img a {
  background: #1c1c1c;
  padding: 15px !important;
}

.tos-page-headlight-restoration .Truck-block5 .info-box {
  padding: 0 !important;
}

.tos-page-windshield-replacement .process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0;
  position: relative;
}

.tos-page-windshield-replacement .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.tos-page-windshield-replacement .process-step .step-num {
  width: 70px;
  height: 70px;
  background: #000;
  border: 2px solid #fde20c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #fde20c;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.tos-page-windshield-replacement .process-step h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0px;
}

.tos-page-windshield-replacement .step-icon {
  display: none;
}

.tos-page-windshield-replacement .process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #2a2a2a;
  z-index: 0;
}

.tos-page-windshield-replacement .process-section {
  background: #141414;
}

.tos-page-windshield-replacement .intro-img-wrap img {
  width: 100% !important;
  height: 515px !important;
  object-fit: cover !important;
}

.tos-page-windshield-replacement .flex-list li {
  margin-bottom: 0 !important;
}

.pxl-meta-content,
.tos-footer-address-line {
  margin-top: 0;
}

.contact-us .tos-footer-address-line {
  margin: 10px 0px;
  color: #fff !important;
  margin-top: 5px;
}

.contact-us .tos-footer-address-line a {
  font-weight: 600;
  font-size: 16px;
}

.tos-page-vinyl-wraps .types {
  background: #141414 !important;
}

.policy_text :is(h1, h2, h3, h4, h5, h6) {
  background-color: #ffffff;
  display: flex;
  font-size: 30px !important;
  padding: 12px 12px 12px 10px;
  border-left: 5px solid #ce151b;
  margin: 25px 0px 10px 0px !important;
  color: #000;
}

.tos-privacy {
  padding: 0 !important;
}

.policy_text {
  padding: clamp(60px, 8vw, 50px);
}

.tos-page-window-tinting .new-list2 li::before {
  background-color: #000000 !important;
  outline: 2px solid #000000 !important;
}

body.tos-page-book-appointment #datepicker {
  background-image: url(https://www.touchofshadetint.com/wp-content/uploads/2026/06/calender.png) !important;
  background-repeat: no-repeat !important;
  background-position: 95% 54% !important;
}

.min-heit {
  min-height: 75px;
}

.page-id-32 .Truck-block5 .info-img {
  height: 100%;
}

.page-id-32 .Truck-block .info-box {
  padding: 0 !important;
}

body.page-id-136 .slick-header,
body.inner-pages .tos-slick-header {
  background: var(--yellow, #fde20c) !important;
  text-align: center;
  padding: 60px 0 !important;
  margin-block-start: 0 !important;
}

body.page-id-136 .slick-header .page-title h1,
body.page-id-136 .tos-slick-header h1,
body.page-id-136 .page-title h1,
body.page-id-136 .slick-header .page-title .wp-block-heading,
body.page-id-136 .tos-slick-header .page-title .wp-block-heading {
  font-size: 60px !important;
  color: #000 !important;
  font-weight: 400 !important;
  line-height: normal !important;
  font-family: var(--tos-display) !important;
  margin: 0 0 8px !important;
  text-transform: none;
  letter-spacing: 0.01em;
}

.limit-bx i {
  font-style: inherit;
}

footer .wp-block-paragraph a {
      font-weight: 800;
}
  .is-active span{
    color: rgb(250, 234, 71)!important;
  }
.page-id-16 .tos-header__inner {
  top: 2px;
}
@media (max-width: 1366px) {
  .page-id-34 .intro-grid {
    align-items: inherit !important;
  }

  .page-id-34 .process-section7 .container {

    max-width: 100% !important;
  }

  .tos-header__inner {
    top: 9px;
  }

  .tos-front-page .tos-header,
  body:has(.tos-hero) .tos-header {
    padding: 10px 0 !important;
  }
}

@media (max-width: 1269px) {
  #mobmenuright .current_page_item a {
        background-color: rgb(250, 234, 71);
    color: #000 !important;
  }

 /* .wp-block-paragraph a {
    display: none;
  } */
  .bookanap {
    display: block;
  }
  .mob-menu-logo-holder {
    display: none !important;
  }

  /* .mobmenu-right-bt {
            padding-left: 42px !important;
  } */
  .mob-menu-header-holder {
    height: auto !important;
    position: inherit !important;
  }

  body.mob-menu-overlay,
  body.mob-menu-slideout,
  body.mob-menu-slideout-over,
  body.mob-menu-slideout-top {
    padding-top: 0 !important;
  }

  .mobmenu-right-bt {
    width: 41px !important;
    height: 36px !important;
    display: block;
    background-color: #ce151b;
  }

  .mobmenur-container i {
    line-height: 39px !important;
  }

  .mobmenur-container {
    top: 84px !important;
    margin-right: 14px !important;
  }


  .mobmenu-right-panel {
    background-color: #000000 !important;
    width: 300px !important;
  }

  .mobmenur-container {
    z-index: 999;
  }

  .mobmenu-right-panel li,
  .rightmbottom,
  .rightmtop {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #mobmenuright {
    margin-top: 45px !important
  }

  #mobmenuright li a,
  #mobmenuright li a:visited,
  .show-nav-right .mob-menu-copyright,
  .show-nav-right .mob-expand-submenu i {
    color: #ffffff !important;
    font-family: var(--tos-display) !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.22em !important;
  }

  .mobmenu-content #mobmenuright li:hover,
  .mobmenu-content #mobmenuright>li>a:hover,
  .mobmenu-content #mobmenuright .sub-menu {
    background-color: #212222 !important;
  }

  .mobmenu-right-panel .mob-cancel-button {
    background-color: rgb(196, 8, 8);
    color: #fff !important;
    font-size: 22px !important;
    padding: 3px 5px 0px;
  }

}

@media (max-width: 1024px) {
  .main-grid-block::after {
    display: none;
  }
  .tos-hero .wp-block-cover__inner-container {
    padding: 115px 20px 84px;
    min-height: 100%;
  }

  .tos-hero.wp-block-cover {
    min-height: 100% !important;
  }

  .tos-llumar-left,
  .tos-llumar .left-bx {
    padding-left: 0;
    text-align: center;
  }

  .tos-llumar-ctas {
    align-items: center;
  }

  .tos-llumar-desc {
    margin: auto;
  }

  .tos-section {
    text-align: center;
  }

  .page-id-12 .tos-team .wp-block-column {
    padding: 0 12px;
  }

  .tos-team .wp-block-buttons {
    justify-content: center;
  }

  .page-template .tos-header__inner {
    top: 10px;
  }

  .site-list li {
    text-align: left;
  }

  body.inner-pages .section-header h2,
  body.inner-pages .section-header .wp-block-heading {
    font-size: 46px !important;
  }

  .main-grid-block::after {
    left: 58px;
  }

  .grid-card::before {
    height: 37px;
    bottom: -37px;
  }

  .main-grid-block .grid-card:nth-child(5)::before,
  .main-grid-block .grid-card:nth-child(6)::before,
  .main-grid-block .grid-card:nth-child(7)::before {
    top: -66px;
    height: 66px;
  }

  .grid-card {
    width: 100%;
  }

  .grid-card::before {
    display: none !important;
  }

  body.inner-pages .new-time-line .main-grid-block,
  body.inner-pages .main-grid-block {
    row-gap: 32px;
  }

  .tos-page-window-tinting .icon-wrap .wp-block-paragraph {
    margin-left: inherit !important;
  }

  body.tos-page-vinyl-wraps .type-card__icon {
    margin: auto !important;
  }

  .tos-section .intro__body {
    text-align: left;
  }

  .intro__img-wrap,
  .intro .intro__grid .intro__img {
    height: 100%;
  }

  .intro .intro__grid .intro__img img {
    height: 100%;
    object-fit: cover;
  }

  body.inner-pages footer.wp-block-template-part .tos-footer,
  body[class*="page-"] footer.wp-block-template-part .tos-footer {
    padding-top: 35px !important;
  }

  body.inner-pages main .wash-section2.tos-section,
  body.inner-pages main .commercial-image.tos-section,
  body.inner-pages main .types.tos-section,
  body.inner-pages main .intro.tos-section {
    padding-bottom: 24px !important;
  }

  .tos-page-headlight-restoration .step-body h3,
  .tos-page-headlight-restoration .step-body p {
    text-align: left;
  }

  .tos-page-headlight-restoration .intro-image img {
    height: 695px;
  }

  .contact-us .pxl-item-desc,
  .contact-us .pxl-item-title {
    text-align: left;
  }

  #contact-form .form-head {
    text-align: left;
  }

  .tos-contact-form-wrap .fomr-grid .fl {
    text-align: left;
  }

  .contact-us .right {
    padding: 1.5rem 2rem;
  }

  .page-id-16 header {
    border-bottom: none !important;
  }

  body.tos-page-book-appointment .form-label {
    text-align: left !important;
  }

  .tos-appointment-form-wrap .form-row2 .form-group2 {
    grid-template-columns: 48% 48% !important;
  }

  .tos-section {
    background-attachment: inherit !important;
  }

  .tos-header__logo .wp-block-site-logo,
  .tos-header__logo .custom-logo-link {
    max-width: 135px;
  }

  .mobmenur-container {
    top: 79px !important;
  }

  .page-template .mobmenur-container {
        top: 71px !important;
    }
  body.tos-page-book-appointment .form-row {
        grid-template-columns: 100% !important;
  }
  .tos-appointment-form-wrap .form-row2 .form-group2 {
        grid-template-columns: 48% 50% !important;
    }
      .home .tos-header__inner {
        top: 0px;
    }
   .home  .mobmenur-container {
        top: 71px !important;
    }
}

@media (max-width:768px) {

  .tos-footer__col:first-child,
  .tos-footer__col:last-child {
    display: none;
  }

  .page-id-30 .section-header-block .wp-block-heading {
    text-align: left !important;
  }

  .tos-page-windshield-replacement .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    position: relative;
  }

  .tos-page-windshield-replacement .process-steps::before {
    display: none;
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-us .main-form {
    grid-template-columns: 1fr;
  }

  .tos-contact-form-wrap .field-group .root-block,
  .tos-page-book-appointment .limit-bx {
    flex-wrap: wrap;
  }

  .page-id-20 .project-item img {
    height: 350px !important;
  }
}

@media (max-width: 980px) {
  .tos-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tos-footer__center {
    left: 0;
    max-width: 100%;
  }

  .tos-footer__center::before,
  .tos-footer__center::after {
    display: none;
  }

  .tos-footer__col .wp-block-navigation .wp-block-navigation__container {
    align-items: center !important;
  }

  .tos-footer__bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .tos-footer__socials,
  .tos-footer__bar .socials {
    justify-content: center !important;
  }

  body.inner-pages .Truck-block .info-grid.wp-block-group,
  body.inner-pages .Truck-block .info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  body.inner-pages .slick-header .page-title h1,
  body.inner-pages .tos-slick-header h1,
  body.inner-pages .page-title h1,
  body.inner-pages .slick-header .page-title .wp-block-heading,
  body.inner-pages .tos-slick-header .page-title .wp-block-heading {
    font-size: 48px !important;
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;

  }

}

@media (max-width: 767px) {

  body .tos-midcta-sub,
  .tos-midcta-sub.wp-block-columns {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .tos-midcta.tos-section {
    padding: 34px 0 !important;
  }

  .tos-hero .wp-block-cover__inner-container {
    padding: 52px 1px 93px;
  }

  .tos-stats .wp-block-column {
    border-left: none !important;
  }

  .tos-llumar-left,
  .tos-llumar .left-bx {
    padding: 54px 4px;
  }

  .tos-testi-head {
    justify-content: center;
  }

  .main-img img {
    height: 100% !important;
  }

  body.inner-pages .Truck-block .info-grid.wp-block-group,
  body.inner-pages .Truck-block .info-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  body.inner-pages .wash-section2 .info-grid.wp-block-group,
  body.inner-pages .wash-section2 .info-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  body.inner-pages .wash-section2 .section-new-head .section-header {
    margin-bottom: 0px;
  }

  .tos-page-windshield-replacement .process-steps {
    grid-template-columns: 1fr;
    gap: 22px;
    position: relative;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .tos-appointment-form-wrap .form-row2 {
    grid-template-columns: 100% !important;
    gap: 20px !important;
  }

  body.tos-page-book-appointment .submit-btn-container {
    max-width: 100%;
  }

  body.tos-page-book-appointment .submit-btn-container {
    text-align: left;
  }

  .policy_text {
    padding: clamp(5px, 4vw, 50px);
  }

  .page-id-20 .project-item img {
    height: 100% !important;
  }

  body.inner-pages .Truck-block .info-box img {
    height: 100%;
  }

  body.inner-pages .section-header h2,
  body.inner-pages .section-header .wp-block-heading {
    font-size: 35px !important;
  }

  .mobmenur-container {
    top: 78px !important;
  }

.page-template .mobmenur-container {
        top: 72px !important;
    }

  .tos-contact-form-wrap .button-row {
    text-align: left;
  }

  .tos-llumar-visual {
    min-height: 100% !important;
    height: 100% !important;
  }

  .tos-llumar-visual img {
    height: 100% !important;
  }

  .tos-llumar-visual figure {
    height: 100% !important;
  }

  .tos-site-time-block dl dt:not(:first-child) {
    margin-left: 0;
    padding-left: 0;
  }

  .tos-site-time-block dl dt:not(:first-child)::before {
    display: none;
  }

  body.tos-page-book-appointment .form-row {
    gap: 18px;
  }

  .tos-review-card .tos-stars,
  .tos-review-card .tos-who {
    justify-content: center;
  }

  .tos-site-time-block dl {
    flex-direction: column;
  }

  .tos-appointment-form-wrap .form-row2 .form-group2 {
    grid-template-columns: 100% !important;
  }
  .home .tos-header__inner {
        top: 0px;
    }
   .home  .mobmenur-container {
        top: 71px !important;
    }
}

@media (max-width: 320px) {
  .tos-mobile-bar a, .tos-mobile-bar p a {
    font-size: 13px !important;
  }
}