body {
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
.mobile-menu a {
  border: 1px solid rgb(0, 0, 0);
}
.floating-book-btn {
  right: 0px;
}
.hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  padding-bottom: clamp(30px, 4vw, 60px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(200, 16, 46, 0.06) 0%, transparent 60%);
}
.hero-slash {
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 55%;
  background: var(--surface);
  transform: skewX(-8deg);
  overflow: hidden;
}
.hero-slash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><line x1="0" y1="0" x2="60" y2="60" stroke="%23C8102E" stroke-width="0.4" opacity="2"/></svg>');
}
.hero-slash-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skewX(8deg);
  padding: 60px;
}
.hero-slash-img .logo-display {
  width: 100%;
  filter: drop-shadow(0 0 60px rgba(200, 16, 46, 0.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateX(-30px) translateY(0);
  }
  50% {
    transform: translateX(-30px) translateY(-12px);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 50px) 32px clamp(20px, 3vw, 40px);
  max-width: 560px;
  margin-left: max(32px, calc(50vw - 640px));
}
.hero-eyebrow {
  height: auto;
  width: clamp(100px, 80%, 400px);
  padding-bottom: 20px;
  display: block;
}
.hero h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 7vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: clamp(100px, 40vw, 440px);
}
.hero-actions {
  display: flex;
  gap: clamp(10px, 1vw, 16px);
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: clamp(5px, 1vw, 14px) clamp(10px, 2vw, 32px);
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--red);
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--white);
  border-color: var(--red-dark);
  color: var(--red);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: clamp(5px, 1vw, 14px) clamp(10px, 2vw, 32px);
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.hero-stats {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  margin-top: clamp(20px, 3vw, 40px);
  width: clamp(250px, 50vw, 400px);
  padding-top: clamp(15px, 2vw, 30px);
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(8px, 2vw, 16px);
  margin: 0 0 clamp(24px, 3vw, 32px);
  width: 100%;
  max-width: clamp(320px, 40vw, 700px);
}
.hero-info-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  padding: clamp(8px, 1.5vw, 14px);
  background: rgba(33, 33, 33, 0.77);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.25s ease;
}
.hero-info-card:hover {
  border-color: var(--red);
  background: rgba(85, 3, 17, 0.85);
  transform: translateY(-2px);
}
.hero-info-icon {
  width: clamp(32px, 5vw, 42px);
  height: clamp(32px, 5vw, 42px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 2vw, 18px);
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 4px;
}
.hero-info-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-info-text {
  font-size: clamp(10px, 1.3vw, 13px);
  color: var(--text-muted);
}
section {
  padding: 50px 0;
  scroll-margin-top: 75px;
}
section,
#contact {
  scroll-margin-top: calc(var(--nav-height));
}
.section-label {
  font-size: 12px;
  color: var(--red);
}
.section-title {
  color: var(--white);
  letter-spacing: -0.01em;
}
.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}
.slash-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.slash-divider::before,
.slash-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.slash-divider-inner {
  display: flex;
  gap: 4px;
}
.slash-divider-inner span {
  width: 3px;
  height: 20px;
  background: var(--red);
  transform: skewX(-15deg);
}
.slash-divider-inner span:nth-child(2) {
  opacity: 0.5;
}
.slash-divider-inner span:nth-child(3) {
  opacity: 0.25;
}
.about {
  background: var(--surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: top;
}
.page-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--red);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}
.page-link:hover {
  gap: 10px;
  color: var(--white);
}
.specialty-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.specialty-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--black);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 0 4px 4px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.specialty-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(200, 16, 46, 0.12);
  transition: width 0.3s ease;
}
.specialty-item:hover {
  border-color: var(--red);
  background: var(--surface2);
}
.specialty-item:hover::before {
  width: 100%;
}
.specialty-icon {
  font-size: 20px;
}
.about-text h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 48px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.about-text h2 span {
  color: var(--red);
}
.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.badge {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
}
.badge.red {
  border-color: var(--red);
  color: var(--red);
}
.jobs {
  background: var(--surface);
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.job-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.job-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 16, 46, 0.12);
}
.job-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.job-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.job-img-placeholder .car-icon {
  font-size: 48px;
  opacity: 0.3;
}
.job-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.8) 0%, transparent 60%);
}
.job-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.job-body {
  padding: 20px 24px;
}
.job-body h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.job-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  align-items: center;
}
.job-meta-dot {
  color: var(--red);
}
.job-review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}
.job-review-link:hover {
  text-decoration: underline;
}
.review-viewport {
  overflow: hidden;
  width: 100%;
}
.featured-review {
  cursor: pointer;
  flex: 0 0 100%;
  min-width: clamp(200px, 4vh, 400px);
  height: 240px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.review-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
.review-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: 0.25s ease;
}
.review-arrow.prev {
  left: 0;
}
.review-arrow.next {
  right: 0;
}
.review-arrow:hover {
  border-color: var(--red);
  color: var(--red);
}
.featured-review {
  min-width: 80%;
  margin: 0 10%;
  flex-shrink: 0;
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 4px;
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.featured-review.changing {
  opacity: 0;
  transform: translateX(20px);
}
.featured-review .review-text {
  color: var(--text);
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.featured-review .review-title {
  flex: 1;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  line-height: 1.15;
}
.featured-review .review-stars {
  flex-shrink: 0;
  color: #ffd700;
  font-size: 18px;
  letter-spacing: 2px;
  white-space: nowrap;
}
.review-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
}
.review-dot.active {
  background: var(--red);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
.review-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.1);
}
.review-stars {
  color: #ffd700;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.15);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--red);
  flex-shrink: 0;
}
.review-name {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
}
.review-vehicle {
  font-size: 12px;
  color: var(--text-muted);
}
.review-job-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 11px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 5000;
}
.review-modal.open {
  display: flex;
}
.review-modal-content {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--red);
  border-radius: 6px;
  padding: 32px;
  width: min(700px, 90vw);
  max-height: 80vh;
  overflow-y: auto;
}
.review-modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}
.review-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.modal-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
#modalName {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 42px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.modal-vehicle {
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 500;
  padding-left: 20px;
}
.modal-stars {
  color: #ffd700;
  font-size: 28px;
  padding-right: 40px;
}
.review-title {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
#modalText {
  color: var(--white);
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 24px;
}
.review-job-link {
  display: inline-block;
  color: var(--red);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.2s;
}
.review-job-link:hover {
  color: white;
}
.review-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}
.review-close:hover {
  color: var(--red);
}
.modal-stars {
  color: #ffd700;
  font-size: 28px;
  letter-spacing: 2px;
  margin: 12px 0;
  padding-right: 40px;
}
.review-title {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
#modalText {
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}
.modal-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.modal-vehicle {
  color: var(--text-muted);
}
.schedule {
  background: var(--surface);
}
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.schedule-info h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 48px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.schedule-info h2 span {
  color: var(--red);
}
.schedule-info p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}
.info-item:hover {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.06);
  transform: translateX(4px);
}
.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.info-content strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.info-content span {
  color: var(--text-muted);
  font-size: 14px;
}
.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 3px;
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group select option {
  background: var(--surface2);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.radio-group {
  display: flex;
  gap: 16px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  flex: 1;
  justify-content: center;
}
.radio-label input {
  accent-color: var(--red);
}
.radio-label:has(input:checked) {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.1);
  color: var(--red);
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.contact-bar {
  background: var(--red);
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.contact-label {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 4px;
}
.contact-value {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.3;
}
footer {
  background: var(--black);
  padding: 60px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 280px;
  margin-top: 12px;
  line-height: 1.7;
}
.footer-brand h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: 28px;
  text-transform: uppercase;
}
.footer-brand h3 span {
  color: var(--red);
}
.footer-links h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom span {
  color: var(--red);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  max-width: 700px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(24px);
  transition: transform 0.25s;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
}
.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.modal-close:hover {
  color: var(--red);
}
.modal-body {
  padding: 28px;
}
.modal-job-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 2px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.modal-job-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--red);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s;
}
.modal-job-link:hover {
  color: white;
}
.modal-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 72px;
  opacity: 0.3;
}
.modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.modal-detail {
  background: var(--black);
  padding: 12px 16px;
  border-radius: 3px;
  border: 1px solid var(--border);
}
.modal-detail label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.modal-detail strong {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.modal-review-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.modal-review-section h4 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--white);
}
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 3000;
  background: var(--surface);
  border: 1px solid var(--red);
  border-radius: 4px;
  padding: 16px 24px;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.toast-body {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .hero {
    padding-top: 40px;
    min-height: auto;
    padding-bottom: 20px;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(200, 16, 46, 0.22) 0%, transparent 75%);
  }
  .hero-slash {
    inset: 0;
    width: 100%;
    right: 0;
    transform: none;
    z-index: 0;
    background: transparent;
  }
  .hero-slash::after {
    opacity: 0.6;
  }
  .hero-slash-img {
    position: absolute;
    inset: -3%;
    overflow: hidden;
    background-image: url("../images/GG.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: clamp(450px, 100vw, 1000px);
    opacity: 0.2;
  }
  .hero-slash-img .logo-display {
    display: none;
    width: clamp(900px, 150vw, 1600px);
    max-width: none;
    height: auto;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: none;
  }
  .hero-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 32px 80px;
    padding-bottom: 20px;
  }
  .hero-sub {
    max-width: 100%;
    font-weight: 500;
    margin-bottom: 40px;
    color: rgba(240, 240, 240, 0.82);
  }
  .hero-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, 2vw, 16px);
    margin: 0 0 clamp(24px, 3vw, 32px);
    width: 100%;
    max-width: clamp(320px, 40vw, 700px);
  }
  .btn-outline {
    border-color: var(--text-muted);
  }
  .hero-stats {
    border-color: var(--white);
    width: 100%;
    max-width: 500px;
    gap: clamp(12px, 4vw, 24px);
  }
  .stat-num {
    font-size: clamp(24px, 7vw, 40px);
  }
  .stat-label {
    font-size: clamp(12px, 3vw, 16px);
  }
  .about-grid,
  .schedule-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal-details {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .specialty-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .specialty-item {
    min-height: 72px;
    padding: 14px;
    font-size: 15px;
    line-height: 1.2;
  }
}

/* Mobile polish for 390px layouts */
@media (max-width: 800px) {
  .review-carousel {
    width: min(100%, 390px);
    max-width: 100%;
    gap: clamp(8px, 3vw, 16px);
  }

  .review-viewport {
    width: 100%;
  }

  .featured-review {
    flex: 0 0 100%;
    min-width: 100%;
    height: auto;
    min-height: clamp(210px, 58vw, 280px);
    margin: 0;
    padding: clamp(18px, 5vw, 28px);
  }

  .featured-review-header {
    gap: clamp(10px, 3vw, 18px);
  }

  .featured-review .review-title {
    font-size: clamp(17px, 5vw, 22px);
  }

  .featured-review .review-stars {
    font-size: clamp(14px, 4vw, 18px);
    letter-spacing: clamp(1px, 0.5vw, 2px);
  }

  .featured-review .review-text {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.55;
    -webkit-line-clamp: 4;
  }

  .review-arrow {
    width: clamp(40px, 11vw, 48px);
    height: clamp(40px, 11vw, 48px);
    font-size: clamp(20px, 6vw, 24px);
  }

  .jobs-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, clamp(260px, 86vw, 340px)), 1fr));
    gap: clamp(16px, 4vw, 24px);
  }

  .job-body {
    padding: clamp(16px, 4.5vw, 22px);
  }

  .job-body h3 {
    font-size: clamp(18px, 5.4vw, 22px);
  }

  .job-meta {
    gap: clamp(8px, 3vw, 16px);
    font-size: clamp(12px, 3.4vw, 13px);
    flex-wrap: wrap;
  }

  .job-img-placeholder .car-icon {
    font-size: clamp(36px, 12vw, 48px);
  }

  .footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(18px, 6vw, 32px);
    align-items: start;
  }

  .footer-brand p {
    max-width: none;
    font-size: clamp(12px, 3.4vw, 14px);
  }

  .footer-brand h3 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1;
  }

  .footer-links h4 {
    font-size: clamp(12px, 3.4vw, 14px);
  }

  .footer-links a {
    font-size: clamp(12px, 3.4vw, 14px);
  }
}

@media (max-width: 430px) {
  .review-carousel {
    width: 100%;
  }

  .featured-review {
    min-height: clamp(230px, 68vw, 300px);
  }

  .jobs-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
