:root {
  --bg: #090909;
  --bg-soft: #111111;
  --bg-0: #050505;
  --bg-1: #0a0a0a;
  --bg-2: #101010;
  --bg-3: #151515;

  --panel: rgba(18, 18, 18, 0.92);
  --panel-2: rgba(20, 20, 20, 0.92);
  --panel-soft: rgba(24, 24, 24, 0.88);

  --text: #f5f5f5;
  --muted: #c8c8c8;
  --line: rgba(255, 255, 255, 0.08);

  --accent: #f28a1a;
  --accent-dark: #d9720f;

  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1240px;
  --header-height: 90px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(242, 138, 26, 0.08), transparent 30%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section-dark {
  position: relative;
  padding: 90px 0;
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.02), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0));
  pointer-events: none;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-text span:first-child,
.brand-text span:last-child {
  font-size: 1.35rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ededed;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  margin: 6px 0;
  transition: 0.25s ease;
}

/* =========================
   BUTTONS
========================= */

.phone-btn,
.quote-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
}

.phone-btn {
  border: 1px solid rgba(242, 138, 26, 0.35);
  color: var(--accent);
  background: rgba(242, 138, 26, 0.08);
}

.phone-btn:hover {
  background: rgba(242, 138, 26, 0.15);
}

.quote-btn,
.btn-primary {
  background: var(--accent);
  color: #111111;
  border: 1px solid var(--accent);
}

.quote-btn:hover,
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.wide-btn {
  min-width: 220px;
}

/* =========================
   HOME HERO
========================= */

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.90) 0%, rgba(5, 5, 5, 0.72) 34%, rgba(5, 5, 5, 0.28) 68%, rgba(5, 5, 5, 0.12) 100%),
    url("../images/hero-bike.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at center, rgba(242, 138, 26, 0.06), transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 60px 0;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(3.2rem, 5.5vw, 5.4rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  color: #fff3e6;
  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(242, 138, 26, 0.25);
}

.hero-content p {
  font-size: 1.35rem;
  font-weight: 500;
  color: #e5e5e5;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.hero-content p span {
  color: var(--accent);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================
   SHARED SECTIONS
========================= */

.section-heading {
  margin-bottom: 52px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-heading-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-left {
  text-align: left;
}

.heading-line {
  display: inline-block;
  width: 120px;
  height: 3px;
  background: var(--accent);
  margin-top: 14px;
  border-radius: 999px;
}

.center-btn {
  text-align: center;
  margin-top: 42px;
}

.center-btn .btn {
  min-width: 240px;
  min-height: 56px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(242, 138, 26, 0.18);
}

.section-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 138, 26, 0.25),
    transparent
  );
  opacity: 0.6;
}

.section-divider-soft {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 138, 26, 0.18),
    transparent
  );
  opacity: 0.7;
}

/* =========================
   HOME SERVICES
========================= */

.services-intro {
  position: relative;
  padding: 120px 0 95px;
  background: var(--bg-1);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.services-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 30%),
    radial-gradient(circle at top center, rgba(242, 138, 26, 0.04), transparent 45%);
  pointer-events: none;
}

.services-intro .container {
  max-width: 1320px;
}

.section-heading.section-heading-center {
  margin-bottom: 56px;
}

.section-heading.section-heading-center h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.03em;
}

.section-heading.section-heading-center .heading-line {
  width: 110px;
  height: 4px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 32px;
  align-items: start;
}

.service-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(16, 16, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 34px 28px 30px;
  min-height: 280px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(242, 138, 26, 0.12), transparent 35%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(242, 138, 26, 0.35);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(242, 138, 26, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.small-card {
  min-height: 280px;
  padding: 32px 28px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  background: rgba(242, 138, 26, 0.08);
  border: 1px solid rgba(242, 138, 26, 0.18);
}

.service-icon span {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.service-card h3 {
  font-size: 1.55rem;
  line-height: 1.08;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.service-card p {
  color: #d0d0d0;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 26ch;
}

/* =========================
   HOME ABOUT / WHY
========================= */

.about-why {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
}

.about-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(242, 138, 26, 0.05), transparent 50%);
  pointer-events: none;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 560px));
  justify-content: center;
  align-items: start;
  gap: 38px;
}

.about-panel,
.why-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 44px 40px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.about-panel::before,
.why-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(242, 138, 26, 0.10), transparent 35%);
  pointer-events: none;
}

.about-lead {
  font-size: 1.18rem;
  line-height: 1.75;
  color: #f1f1f1;
  margin-bottom: 16px;
}

.about-panel p {
  color: #d1d1d1;
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 30px;
}

.highlight-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 18px 16px;
}

.highlight-number {
  display: block;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.highlight-label {
  display: block;
  color: #d8d8d8;
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-list {
  display: grid;
  gap: 20px;
  margin: 8px 0 28px;
  padding-top: 4px;
}

.why-list li {
  position: relative;
  padding-left: 34px;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #f0f0f0;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.05rem;
}

.why-cta-card {
  margin-top: 30px;
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(242, 138, 26, 0.08), rgba(242, 138, 26, 0.03)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(242, 138, 26, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-copy span {
  display: block;
  font-size: 0.9rem;
  color: #cfcfcf;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.cta-copy a {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.panel-btn {
  margin-top: 4px;
}

/* =========================
   HOME GALLERY
========================= */

.gallery-preview {
  position: relative;
  padding: 90px 0 110px;
  background: linear-gradient(180deg, #060606 0%, #0c0c0c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  min-height: 300px;
  background: #111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0.8;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* =========================
   CONTACT STRIP
========================= */

.contact-strip {
  padding: 105px 0;
  background:
    radial-gradient(circle at center, rgba(242, 138, 26, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(0, 0, 0, 0)),
    #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-strip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 42px 46px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(16, 16, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-strip-copy {
  max-width: 760px;
}

.contact-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.contact-strip h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-strip p {
  color: #d1d1d1;
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 62ch;
}

.contact-strip-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.contact-strip-buttons .btn {
  min-width: 170px;
  min-height: 56px;
  border-radius: 14px;
}

.contact-strip-buttons .btn-primary {
  box-shadow: 0 18px 36px rgba(242, 138, 26, 0.18);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 50px;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 138, 26, 0.4),
    transparent
  );
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  align-items: start;
  gap: 50px;
  padding-bottom: 36px;
}

.footer-brand h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-brand p {
  color: #bfbfbf;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #d4d4d4;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  color: #bfbfbf;
  margin-bottom: 6px;
}

.footer-contact a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #8c8c8c;
}

.footer-credit {
  color: #8c8c8c;
  font-size: 0.85rem;
  transition: color 0.25s ease;
}

.footer-credit:hover {
  color: var(--accent);
}

.footer-hours h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-nav-inline {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-nav-inline a {
  font-size: 0.9rem;
  color: #bfbfbf;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-nav-inline a:hover {
  color: var(--accent);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
  color: #cfcfcf;
  margin-bottom: 4px;
}

.hours-row span:first-child {
  color: #bdbdbd;
}

.hours-row.closed span:last-child {
  color: #888;
}

/* =========================
   TYRE MARKS
========================= */

.tyre-marks {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("../images/tyre-marks.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%;
  mix-blend-mode: overlay;
  opacity: 0.9;
  transform: scale(1.1);
  animation: tyreReveal 2.2s ease forwards;
}

@keyframes tyreReveal {
  0% {
    opacity: 0;
    transform: scale(1.15);
  }

  20% {
    opacity: 0.7;
  }

  60% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* =========================
   SERVICES HERO
========================= */

.services-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.76) 35%, rgba(5, 5, 5, 0.42) 70%, rgba(5, 5, 5, 0.24) 100%),
    url("../images/services-hero.jpg") center center / cover no-repeat;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at center, rgba(242, 138, 26, 0.05), transparent 34%);
}

.services-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 90px 0 60px;
  display: flex;
  justify-content: center;
}

.services-hero-content {
  width: 100%;
  max-width: 980px;
  text-align: center;
}

.services-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-hero h1 {
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 auto 20px;
  max-width: 20ch;
  color: #fff3e6;
}

.services-hero p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #e5e5e5;
  max-width: 62ch;
  margin: 0 auto 26px;
}

.services-hero .hero-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.services-hero .btn {
  min-height: 46px;
  padding: 0 20px;
}

.services-hero-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.services-hero-point {
  padding: 18px 16px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
    rgba(14, 14, 14, 0.86);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

.services-hero-point strong {
  display: block;
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.services-hero-point span {
  display: block;
  color: #cfcfcf;
  font-size: 0.86rem;
  line-height: 1.45;
}

/* =========================
   SERVICES PAGE
========================= */

.services-showcase {
  position: relative;
  padding: 105px 0 100px;
  background:
    radial-gradient(circle at top center, rgba(242, 138, 26, 0.05), transparent 40%),
    linear-gradient(180deg, #060606 0%, #0b0b0b 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 34px 30px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(242,138,26,0.05), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008)),
    rgba(12, 12, 12, 0.82);
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow:
    0 20px 46px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.025);
  backdrop-filter: blur(8px);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.02), transparent 45%);
  pointer-events: none;
}

.showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242,138,26,0.14);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.40),
    0 0 0 1px rgba(242,138,26,0.04);
}

.showcase-card-featured {
  grid-column: span 2;
  min-height: 280px;
  padding: 38px 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(242,138,26,0.09), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.024), rgba(255,255,255,0.008)),
    rgba(14, 12, 10, 0.88);
  border: 1px solid rgba(242,138,26,0.12);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.showcase-number {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 18px;
  background: rgba(242,138,26,0.07);
  border: 1px solid rgba(242,138,26,0.14);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.showcase-tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.showcase-card h3 {
  font-size: 1.62rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  max-width: 13ch;
}

.showcase-card-featured h3 {
  font-size: 1.95rem;
  max-width: 12ch;
}

.showcase-card p {
  color: #d5d5d5;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 34ch;
}

.showcase-grid .showcase-card:nth-child(6) {
  grid-column: 2;
}

.services-split {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #0e0e0e 0%, #090909 100%);
}

.services-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(242,138,26,0.05), transparent 52%);
  pointer-events: none;
}

.services-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 440px);
  gap: 40px;
  align-items: start;
}

.split-lead {
  font-size: 1.14rem;
  color: #f1f1f1;
  line-height: 1.75;
  margin-bottom: 16px;
}

.services-split-copy p {
  color: #d1d1d1;
  line-height: 1.8;
  max-width: 62ch;
}

.split-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.split-point {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}

.split-point strong {
  display: block;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.split-point span {
  display: block;
  color: #d7d7d7;
  font-size: 0.93rem;
  line-height: 1.5;
}

.services-split-panel {
  position: relative;
}

.split-panel-inner {
  padding: 30px 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.44),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.split-panel-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-list {
  display: grid;
  gap: 14px;
}

.split-list li {
  position: relative;
  padding-left: 28px;
  color: #ececec;
  font-size: 1rem;
  line-height: 1.55;
}

.split-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.process-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #080808 0%, #0c0c0c 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  padding: 30px 28px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(16, 16, 16, 0.94);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}

.process-step {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.process-card p {
  color: #d1d1d1;
  line-height: 1.75;
}

.standards-section {
  position: relative;
  padding: 110px 0;
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.standard-card {
  padding: 32px 28px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(14, 14, 14, 0.94);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
}

.standard-card h3 {
  font-size: 1.42rem;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.standard-card p {
  color: #d1d1d1;
  line-height: 1.75;
}

.service-faq {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #0d0d0d 0%, #090909 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.faq-wrap {
  max-width: 1120px;
}

.faq-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.faq-card-premium {
  padding: 28px 24px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(255,255,255,0.06);
}

.faq-card-premium h3 {
  font-size: 1.16rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.faq-card-premium p {
  color: #d1d1d1;
  line-height: 1.7;
}

/* =========================
   PAGE INTRO
========================= */

.page-intro {
  padding: 82px 0 42px;
  text-align: center;
}

.page-intro-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-intro h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: #fff3e6;
}

.page-intro p {
  color: #d6d6d6;
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================
   GALLERY PAGE
========================= */

.gallery-intro {
  padding-bottom: 28px;
}

.gallery-page-section {
  position: relative;
  padding: 28px 0 100px;
  background:
    radial-gradient(circle at top center, rgba(242, 138, 26, 0.04), transparent 34%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 34px;
}

.gallery-filter {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: #ededed;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
  border-color: rgba(242,138,26,0.25);
  background: rgba(242,138,26,0.08);
  color: var(--accent);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.gallery-page-item,
.gallery-page-item-large,
.gallery-page-item-wide {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: #111;
  aspect-ratio: 4 / 3;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.gallery-page-item::before,
.gallery-page-item-large::before,
.gallery-page-item-wide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,0.56) 100%);
  z-index: 1;
  pointer-events: none;
}

.gallery-page-item img,
.gallery-page-item-large img,
.gallery-page-item-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-page-item:hover img,
.gallery-page-item-large:hover img,
.gallery-page-item-wide:hover img {
  transform: scale(1.04);
}

.gallery-page-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff3e6;
  letter-spacing: -0.01em;
}

.gallery-page-item.hidden {
  display: none;
}

.gallery-note-section {
  padding: 0 0 100px;
  background: #0b0b0b;
}

.gallery-note-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 38px 40px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(16,16,16,0.92);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.gallery-note-copy {
  max-width: 760px;
}

.gallery-note-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.gallery-note-copy p {
  color: #d2d2d2;
  line-height: 1.8;
  max-width: 60ch;
}

.gallery-note-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 220px;
}

.gallery-note-point {
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.gallery-note-point strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.gallery-note-point span {
  display: block;
  color: #d0d0d0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-inner {
  max-width: min(1100px, 100%);
  max-height: min(88vh, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.gallery-lightbox-close:hover {
  border-color: rgba(242,138,26,0.3);
  color: var(--accent);
}

/* =========================
   FAQ ACCORDION
========================= */

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffffff;
  text-align: left;
  padding: 20px 0;
  font-size: 1.08rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.faq-question span {
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  color: #cccccc;
  padding: 0 0 18px;
  line-height: 1.75;
}

/* =========================
   REVIEWS PAGE
========================= */

.reviews-intro {
  padding-bottom: 30px;
}

.reviews-summary-section {
  padding: 20px 0 90px;
  background:
    radial-gradient(circle at top center, rgba(242, 138, 26, 0.04), transparent 35%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
}

.reviews-summary-card {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) minmax(220px, 260px);
  gap: 30px;
  align-items: center;
  padding: 34px 36px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(16,16,16,0.92);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.reviews-summary-score {
  text-align: center;
}

.reviews-score-number {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff3e6;
  margin-bottom: 8px;
}

.reviews-stars,
.review-stars {
  color: var(--accent);
  letter-spacing: 0.12em;
}

.reviews-stars {
  font-size: 1rem;
  margin-bottom: 10px;
}

.reviews-summary-score p {
  color: #cfcfcf;
  font-size: 0.92rem;
  line-height: 1.5;
}

.reviews-summary-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.reviews-summary-copy p {
  color: #d2d2d2;
  line-height: 1.8;
  max-width: 62ch;
}

.reviews-summary-points {
  display: grid;
  gap: 12px;
}

.reviews-summary-point {
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.reviews-summary-point strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.reviews-summary-point span {
  display: block;
  color: #d0d0d0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.reviews-grid-section {
  padding: 0 0 100px;
  background: #0b0b0b;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  padding: 28px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
}

.review-card-featured {
  grid-column: span 2;
  padding: 34px 30px;
  background:
    radial-gradient(circle at top right, rgba(242,138,26,0.08), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
    rgba(16,15,13,0.94);
  border: 1px solid rgba(242,138,26,0.12);
}

.review-stars {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.review-card h3 {
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  max-width: 16ch;
}

.review-card p {
  color: #d4d4d4;
  line-height: 1.8;
  font-size: 1rem;
}

.review-meta {
  margin-top: 18px;
  display: grid;
  gap: 3px;
}

.review-meta strong {
  font-size: 0.92rem;
  color: #ffffff;
}

.review-meta span {
  font-size: 0.86rem;
  color: #bdbdbd;
}

.reviews-note-section {
  padding: 0 0 100px;
  background: #0b0b0b;
}

.reviews-note-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 36px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(16,16,16,0.92);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.reviews-note-copy {
  max-width: 760px;
}

.reviews-note-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.reviews-note-copy p {
  color: #d2d2d2;
  line-height: 1.8;
  max-width: 60ch;
}

/* =========================
   CONTACT PAGE
========================= */

.contact-intro {
  padding-bottom: 30px;
}

.contact-page-section {
  padding: 20px 0 100px;
  background:
    radial-gradient(circle at top center, rgba(242, 138, 26, 0.04), transparent 35%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}

.contact-page-main,
.contact-page-sidebar {
  min-width: 0;
}

.contact-form-intro {
  color: #d2d2d2;
  line-height: 1.8;
  max-width: 62ch;
  margin-top: -8px;
  margin-bottom: 26px;
}

.contact-form-card,
.contact-info-card,
.contact-hours-card,
.contact-service-card {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(16,16,16,0.92);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.contact-form-card {
  padding: 32px 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f1f1f1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.form-group textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9f9f9f;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(242,138,26,0.3);
  background: rgba(255,255,255,0.03);
}

.form-submit {
  margin-top: 22px;
}

.contact-page-sidebar {
  display: grid;
  gap: 20px;
}

.contact-info-card,
.contact-hours-card,
.contact-service-card {
  padding: 26px 24px;
}

.contact-info-card h3,
.contact-hours-card h3,
.contact-service-card h3 {
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info-item a {
  font-size: 1.06rem;
  font-weight: 700;
  color: #fff3e6;
}

.contact-info-item p {
  color: #d0d0d0;
  line-height: 1.7;
}

.contact-service-list {
  display: grid;
  gap: 14px;
}

.contact-service-list li {
  position: relative;
  padding-left: 28px;
  color: #ececec;
  font-size: 1rem;
  line-height: 1.55;
}

.contact-service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.map-section {
  padding: 0 0 100px;
  background: #0b0b0b;
}

.map-card {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(16,16,16,0.92);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.map-copy {
  padding: 14px 8px 14px;
}

.map-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.map-copy p {
  color: #d2d2d2;
  line-height: 1.8;
  max-width: 42ch;
}

.map-embed {
  overflow: hidden;
  border-radius: 20px;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.06);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* =========================
   ABOUT PAGE
========================= */

.about-main {
  padding: 40px 0 100px;
  background:
    radial-gradient(circle at top center, rgba(242,138,26,0.04), transparent 35%),
    linear-gradient(180deg, #070707 0%, #0b0b0b 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 480px);
  gap: 36px;
  align-items: center;
}

.about-copy {
  min-width: 0;
}

.about-copy p {
  color: #d2d2d2;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.about-highlights strong {
  display: block;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.about-highlights span {
  font-size: 0.95rem;
  color: #cfcfcf;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.why-card {
  padding: 26px 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(16,16,16,0.92);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.03);
  transform: translateY(0);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  will-change: transform;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,138,26,0.25);
  box-shadow:
    0 24px 56px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.why-card p {
  color: #d2d2d2;
  line-height: 1.7;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #08110b;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.32),
    0 8px 20px rgba(37, 211, 102, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.38),
    0 10px 24px rgba(37, 211, 102, 0.28);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .about-why-grid,
  .services-split-grid,
  .contact-page-grid,
  .map-card,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-why-grid {
    max-width: 700px;
    margin: 0 auto;
  }

  .services-hero-inner {
    gap: 22px;
    padding: 82px 0 54px;
  }

  .services-hero-card {
    max-width: 420px;
  }

  .services-hero h1 {
    max-width: 11ch;
  }

  .showcase-grid,
  .process-grid,
  .standards-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-card-featured {
    grid-column: span 2;
  }

  .gallery-note-card,
  .reviews-note-card {
    flex-direction: column;
  }

  .gallery-note-points,
  .reviews-summary-points {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    min-width: 0;
  }

  .reviews-summary-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reviews-summary-copy p {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
    min-height: 82px;
  }

  .header-inner {
    min-height: 82px;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(12, 12, 12, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 18px;
    margin-top: 10px;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a.active::after,
  .main-nav a:hover::after {
    display: none;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(6, 6, 6, 0.72), rgba(6, 6, 6, 0.8)),
      linear-gradient(90deg, rgba(6, 6, 6, 0.88), rgba(6, 6, 6, 0.35)),
      url("../images/hero-bike.jpg") center center / cover no-repeat;
  }

  .hero-content {
    max-width: 100%;
    padding: 90px 0 70px;
  }

  .hero-content p {
    font-size: 1.08rem;
  }

  .gallery-grid,
  .showcase-grid,
  .faq-grid-premium,
  .process-grid,
  .standards-grid,
  .gallery-page-grid,
  .reviews-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card-featured,
  .review-card-featured,
  .gallery-page-item-large,
  .gallery-page-item-wide {
    grid-column: span 1;
  }

  .split-points,
  .gallery-note-points,
  .reviews-summary-points {
    grid-template-columns: 1fr;
  }

  .contact-strip-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 26px;
  }

  .contact-strip-copy {
    max-width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
  }

  .footer-hours {
    max-width: 240px;
  }

  .services-hero {
    min-height: auto;
  }

  .services-hero h1 {
    font-size: 2.7rem;
    max-width: 11ch;
  }

  .services-hero-inner {
    padding: 82px 0 54px;
  }

  .form-group-full {
    grid-column: span 1;
  }
}

@media (max-width: 700px) {
  .footer-main {
    gap: 26px;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand-text span:first-child,
  .brand-text span:last-child {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hero-buttons,
  .services-hero .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .phone-btn,
  .quote-btn,
  .services-hero .btn,
  .contact-strip-buttons .btn {
    width: 100%;
  }

  .service-grid,
  .about-highlights,
  .why-grid,
  .hero-card-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .section-dark,
  .about-main,
  .about-why {
    padding: 70px 0;
  }

  .about-panel,
  .why-panel {
    padding: 30px 22px;
    border-radius: 18px;
  }

  .why-cta-card {
    padding: 20px;
  }

  .cta-copy a {
    font-size: 2rem;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 220px;
  }

  .contact-strip {
    padding: 70px 0;
  }

  .contact-strip h2 {
    font-size: 2rem;
  }

  .contact-strip-buttons {
    width: 100%;
  }

  .services-hero-inner {
    padding: 76px 0 46px;
  }

  .services-hero h1 {
    font-size: 2.15rem;
  }

  .services-hero p {
    font-size: 0.96rem;
  }

  .services-hero-card,
  .showcase-card,
  .process-card,
  .standard-card,
  .faq-card-premium,
  .split-panel-inner,
  .gallery-note-card,
  .reviews-summary-card,
  .reviews-note-card,
  .contact-form-card,
  .contact-info-card,
  .contact-hours-card,
  .contact-service-card,
  .map-card {
    padding: 22px 18px;
  }

  .page-intro {
    padding: 72px 0 34px;
  }

  .page-intro h1 {
    font-size: 2.2rem;
  }

  .gallery-page-section {
    padding: 24px 0 80px;
  }

  .gallery-page-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 0.92rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 18px 0;
  }

  .reviews-score-number {
    font-size: 2.7rem;
  }

  .review-card,
  .review-card-featured {
    padding: 24px 20px;
  }

  .review-card h3 {
    font-size: 1.45rem;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 300px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 16px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 460px) {
  .brand {
    gap: 10px;
  }

  .brand-text span:first-child,
  .brand-text span:last-child {
    font-size: 1rem;
  }

  .hero-content h1,
  .services-hero h1 {
    font-size: 2rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* keeps it left aligned */
  gap: 12px;
}

.footer-logo {
  width: 90px;   /* adjust size here */
  height: auto;
  opacity: 0.7;
}

.custom-select {
  position: relative;
}

.custom-select-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger {
  width: 100%;
  min-height: 60px;
  border: 1px solid rgba(255, 145, 0, 0.35);
  border-radius: 18px;
  background: #111;
  color: #fff;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-select-trigger:hover {
  border-color: rgba(255, 145, 0, 0.6);
}

.custom-select-trigger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 145, 0, 0.15);
}

.custom-select-value {
  color: #fff;
  text-align: left;
}

.custom-select-arrow {
  color: #d9d9d9;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #111;
  border: 1px solid rgba(255, 145, 0, 0.25);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  z-index: 40;
  display: none;
}

.custom-select.is-open .custom-select-dropdown {
  display: block;
}

.custom-select-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  text-align: left;
  padding: 14px 14px;
  border-radius: 12px;
  font: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.custom-select-option:hover,
.custom-select-option:focus {
  background: rgba(255, 145, 0, 0.12);
  outline: none;
}

.custom-select-option.is-selected {
  background: rgba(255, 145, 0, 0.18);
  color: #ffb24a;
}

.form-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.form-popup.is-open {
  display: block;
}

.form-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(4px);
}

.form-popup-card {
  position: relative;
  width: min(92vw, 460px);
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #121212, #0d0d0d);
  border: 1px solid rgba(255, 145, 0, 0.2);
  border-radius: 24px;
  padding: 28px 24px 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  text-align: center;
  color: #fff;
}

.form-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.form-popup-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.form-popup-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 800;
  background: rgba(255, 145, 0, 0.14);
  color: #ffae42;
  border: 1px solid rgba(255, 145, 0, 0.25);
}

.form-popup-icon.is-error {
  background: rgba(255, 70, 70, 0.14);
  color: #ff6b6b;
  border-color: rgba(255, 70, 70, 0.24);
}

.form-popup-card h3 {
  margin: 0 0 10px;
  font-size: 1.75rem;
  line-height: 1.1;
}

.form-popup-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.form-popup-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.form-popup-actions .btn {
  min-width: 160px;
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 680px) {
  .form-popup-card {
    width: min(94vw, 460px);
    padding: 24px 18px 20px;
    border-radius: 20px;
  }

  .form-popup-card h3 {
    font-size: 1.45rem;
  }

  .form-popup-icon {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
}