:root {
  --navy: #0f172b;
  --navy-deep: #0b1222;
  --orange: #ff8500;
  --white: #f6f7f9;
  --muted: #9da8ba;
  --line: #253047;
  --card: #141d31;
  --container: 1216px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 18, 34, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px #0003;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  transition: padding 0.3s ease;
}

.scrolled .nav {
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 23px/1 Oswald, Arial, sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand strong {
  color: var(--orange);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--orange);
}

.brand-mark svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  transition: color 0.2s;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--orange);
}

.desktop-nav .phone-link {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 7px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 88px;
  overflow: hidden;
}

.hero-image,
.inspection-image {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat url("assets/first_image_1783163499281.jpg");
}

.hero-image {
  opacity: 0.33;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(15, 23, 43, 0.9) 45%, rgba(15, 23, 43, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 80px;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid #ff850066;
  background: #ff850026;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-pill svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero h1 {
  max-width: 760px;
  margin: 25px 0;
  font: 700 clamp(58px, 8vw, 112px)/0.9 Oswald, Arial, sans-serif;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--orange);
}

.hero p {
  max-width: 670px;
  margin: 0 0 40px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--navy);
}

.button-primary:hover {
  border-color: var(--white);
  background: var(--white);
}

.button-outline {
  border: 1px solid var(--orange);
  color: var(--orange);
}

.button-outline:hover {
  background: #ff85001c;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.arrow {
  font-size: 24px;
  line-height: 14px;
}

.trust-section {
  background: var(--card);
  padding: 70px 0;
}

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

.trust-card {
  padding: 9px 24px 8px;
  border-left: 2px solid var(--orange);
}

.feature-icon {
  display: block;
  height: 42px;
  margin-bottom: 15px;
  color: var(--orange);
  font: bold 29px/1 Oswald;
}

.feature-icon.shield {
  width: 34px;
  height: 34px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-size: 22px;
  text-align: center;
}

.feature-icon.wrench {
  font-size: 42px;
  transform: rotate(-35deg);
}

.feature-icon.pin {
  font-size: 37px;
}

.trust-card h3,
.service-card h3,
.detail-row h3 {
  margin: 0 0 8px;
  font: 700 21px/1.1 Oswald, Arial, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trust-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 105px 0;
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.location-details h2,
.inspection-content h2 {
  margin: 0;
  font: 700 clamp(42px, 5vw, 68px)/0.95 Oswald, Arial, sans-serif;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-heading > p,
.split-heading > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.service-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  transition: border-color 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  background: #ff850018;
  color: var(--orange);
  font-size: 25px;
  font-weight: 700;
  transition: background 0.25s, color 0.25s;
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--navy);
}

.service-card h3 {
  font-size: 23px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.65;
}

.gallery-section {
  padding-top: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  background: #080d18;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-feature {
  grid-column: span 2;
  grid-row: span 2;
}

.inspection-banner {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.inspection-image {
  background-image: url("assets/shop9_1783161968442.jpg");
  opacity: 0.24;
}

.inspection-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 43, 0.8);
}

.inspection-content {
  position: relative;
  z-index: 1;
}

.inspection-content p {
  max-width: 650px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: 19px;
}

.phone-symbol {
  font-size: 19px;
}

.location-section {
  background: var(--card);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.location-details h2 {
  margin-bottom: 50px;
}

.detail-list {
  display: grid;
  gap: 34px;
}

.detail-row {
  display: flex;
  gap: 17px;
}

.detail-icon {
  display: grid;
  place-items: center;
  flex: 0 0 50px;
  height: 50px;
  background: #ff850018;
  color: var(--orange);
  font-size: 26px;
}

.detail-row h3 {
  font-size: 20px;
}

.detail-row p,
.detail-link {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.detail-link:hover {
  color: var(--orange);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--orange);
  font-weight: 700;
}

.text-link:hover {
  text-decoration: underline;
}

.hours {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 16px;
}

.hours li {
  display: grid;
  grid-template-columns: 115px auto;
  gap: 15px;
}

.hours b {
  font-weight: 500;
  color: var(--white);
}

.hours .closed {
  color: var(--orange);
  font-weight: 700;
}

.map-frame {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a1020;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: var(--navy-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner .brand {
  font-size: 19px;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 25px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }
  .desktop-nav {
    gap: 18px;
  }
  .desktop-nav .phone-link {
    font-size: 15px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 35px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-grid {
    gap: 45px;
  }
  .gallery-grid {
    grid-auto-rows: 170px;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 32px);
  }
  .nav {
    padding: 18px 0;
  }
  .scrolled .nav {
    padding: 15px 0;
  }
  .brand {
    font-size: 19px;
  }
  .brand-mark,
  .brand-mark svg {
    width: 25px;
    height: 25px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 27px;
    padding: 80px 20px 30px;
    background: var(--navy-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  }
  .menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mobile-menu > a {
    font: 700 31px/1 Oswald;
    text-transform: uppercase;
  }
  .mobile-call {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    width: 100%;
    color: var(--muted);
  }
  .mobile-call a {
    color: var(--orange);
    font-size: 25px;
    font-weight: 700;
  }
  .hero {
    min-height: 780px;
  }
  .hero-content {
    padding-top: 80px;
  }
  .hero h1 {
    font-size: clamp(58px, 17vw, 92px);
  }
  .hero p {
    font-size: 17px;
  }
  .button {
    width: 100%;
    padding: 15px 18px;
  }
  .hero-actions {
    max-width: 390px;
  }
  .trust-section {
    padding: 55px 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .trust-card {
    padding-left: 18px;
  }
  .section {
    padding: 75px 0;
  }
  .split-heading {
    display: block;
  }
  .split-heading > p {
    margin-top: 20px;
    font-size: 16px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 25px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 145px;
  }
  .gallery-feature {
    grid-column: span 2;
    grid-row: span 2;
  }
  .inspection-banner {
    min-height: 440px;
  }
  .inspection-content h2 {
    font-size: 49px;
  }
  .inspection-content p {
    font-size: 17px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .location-details h2 {
    font-size: 49px;
    margin-bottom: 35px;
  }
  .map-frame {
    min-height: 350px;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-inner p {
    order: 3;
  }
  .hours li {
    grid-template-columns: 100px auto;
    gap: 10px;
    font-size: 14px;
  }
}
