/* ========================================
   TOKENS
   ======================================== */
:root {
  --cream:       #FCF6ED;
  --cream-warm:  #F5EEE0;
  --cream-deep:  #EBE3D2;
  --black:       #211F1F;
  --black-soft:  #2A2825;
  --red:         #DA4F3C;
  --red-dark:    #B23E2E;
  --text:        #211F1F;
  --text-muted:  rgba(33, 31, 31, 0.62);
  --hairline:    rgba(33, 31, 31, 0.12);

  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --container: 1200px;
  --gutter-lg: 6rem;
  --gutter-md: 4rem;
  --gutter-sm: 2rem;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--red); color: var(--cream); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

/* TYPE */
.display { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.035em; line-height: 1.0; }
.mono { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.eyebrow { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); font-weight: 500; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.015em; }

/* LAYOUT */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2rem); }
.section { padding: clamp(3.5rem, 8vw, var(--gutter-lg)) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, var(--gutter-md)) 0; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 246, 237, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 2rem; }
.nav__brand img { height: 58px; width: auto; }
.nav__links { display: flex; gap: 2rem; align-items: center; }
.nav__link {
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  transition: color 0.2s; position: relative;
}
.nav__link:hover { color: var(--red); }
.nav__link.is-active { color: var(--red); }
.nav__link.is-active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red);
}
.nav__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.1rem; background: var(--red); color: var(--cream);
  font-weight: 600; font-size: 0.9rem; border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav__mobile-toggle { display: none; padding: 0.5rem; color: var(--text); font-size: 1.5rem; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }
  .nav__links.is-open {
    display: flex; position: absolute; top: 88px; left: 0; right: 0;
    background: var(--cream); flex-direction: column;
    padding: 1.5rem 2rem; gap: 1.25rem;
    border-bottom: 1px solid var(--hairline);
  }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.5rem; font-family: var(--font-body); font-weight: 600;
  font-size: 0.95rem; border-radius: 4px; transition: all 0.2s;
  border: 2px solid transparent;
}
.btn--primary { background: var(--red); color: var(--cream); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--black); }
.btn--outline:hover { background: var(--black); color: var(--cream); }
.btn__phone { font-family: var(--font-mono); letter-spacing: 0.03em; }

/* SECTION HEAD */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.section-head__lead { max-width: 42rem; }
.section-head__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.035em;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; margin-top: 0.75rem;
}
.section-head__aside {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
}

/* PAGE HERO — the "banner" at the top of every non-home page */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--hairline);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('assets/texas-wrench-black.png');
  background-repeat: no-repeat;
  background-position: right -100px center;
  background-size: 500px auto;
  opacity: 0.028; pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__crumbs {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem;
}
.page-hero__crumbs a { color: var(--text-muted); }
.page-hero__crumbs a:hover { color: var(--red); }
.page-hero__crumbs .sep { margin: 0 0.5rem; color: var(--red); }
.page-hero__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.04em;
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1;
  margin-bottom: 1.25rem; max-width: 22ch;
}
.page-hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--text-muted);
  max-width: 40rem; line-height: 1.55;
}

/* HOME HERO */
.hero { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('assets/texas-wrench-black.png');
  background-repeat: no-repeat; background-position: right -80px top 40%;
  background-size: 720px auto; opacity: 0.025; pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero__meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero__meta-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero__headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 1.02;
  letter-spacing: -0.04em; margin-bottom: 1.5rem;
}
.hero__headline .accent { color: var(--red); display: inline-block; }
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--text-muted);
  max-width: 34rem; margin-bottom: 2rem; line-height: 1.55;
}
.hero__ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero__badge {
  width: 100%; max-width: 460px; height: auto;
  filter: drop-shadow(0 8px 24px rgba(33, 31, 31, 0.12));
}
.hero__ticker {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  position: relative; z-index: 1;
}
.ticker__item { display: flex; flex-direction: column; gap: 0.4rem; }
.ticker__val {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--black); line-height: 1;
}
.ticker__label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__meta { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__visual { order: -1; margin-bottom: 1rem; }
  .hero__badge { max-width: 320px; }
  .hero__ticker { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* SERVICES */
.services { background: var(--cream-warm); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--hairline); background: var(--cream);
}
.service {
  padding: 2rem; border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.25s; position: relative;
}
.service:hover { background: var(--cream-warm); }
.service:nth-child(3n) { border-right: none; }
.service:nth-last-child(-n+3) { border-bottom: none; }
.service__code {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--red); margin-bottom: 1rem; display: block;
}
.service__title { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.service__body { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .service:nth-child(2n) { border-right: none; }
  .service:nth-last-child(-n+3) { border-bottom: 1px solid var(--hairline); }
  .service:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .service { border-right: none !important; border-bottom: 1px solid var(--hairline) !important; }
  .service:last-child { border-bottom: none !important; }
}

/* SPECIALTIES */
.specialties__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.spec {
  padding: 2rem; background: var(--black); color: var(--cream);
  border-radius: 6px; position: relative; overflow: hidden;
}
.spec--lead {
  grid-column: 1 / -1;
  padding: 2.5rem 3rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  border: 1px solid rgba(218, 79, 60, 0.35);
}
.spec--lead .spec__title {
  font-size: 2rem;
  max-width: 32ch;
}
.spec--lead .spec__body {
  max-width: 70ch;
  font-size: 1rem;
}
.spec__label {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em;
  color: var(--red); margin-bottom: 1rem;
}
.spec__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: 1.6rem; line-height: 1.1; margin-bottom: 1rem;
}
.spec__body { font-size: 0.92rem; color: rgba(252, 246, 237, 0.7); line-height: 1.55; margin-bottom: 1.25rem; }
.spec__tools { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.spec__tool {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.3rem 0.6rem;
  border: 1px solid rgba(252, 246, 237, 0.25); border-radius: 3px; color: var(--cream);
}
@media (max-width: 900px) { .specialties__grid { grid-template-columns: 1fr; } }

/* GROUND RULES */
.rules {
  background: var(--black); color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem) 0; position: relative; overflow: hidden;
}
.rules::before {
  content: ''; position: absolute; right: -100px; top: 50%;
  transform: translateY(-50%); width: 400px; height: 400px;
  background-image: url('assets/texas-wrench-red.png');
  background-size: contain; background-repeat: no-repeat;
  background-position: center; opacity: 0.08; pointer-events: none;
}
.rules__inner { position: relative; display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: center; }
.rules__eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem;
}
.rules__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.035em;
  font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.05; color: var(--cream);
}
.rules__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2.5rem; list-style: none; }
.rule { display: flex; gap: 1rem; align-items: flex-start; }
.rule__num {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--red); padding-top: 0.15rem; flex-shrink: 0;
}
.rule__body { font-size: 0.95rem; color: var(--cream); line-height: 1.5; }
@media (max-width: 900px) {
  .rules__inner { grid-template-columns: 1fr; gap: 2rem; }
  .rules__list { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* PHOTO PLACEHOLDERS */
.photo {
  position: relative;
  background: linear-gradient(135deg, rgba(218, 79, 60, 0.06) 0%, transparent 50%), linear-gradient(180deg, #E8DFCC 0%, #D8CDB4 100%);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; border: 1px solid var(--hairline); min-height: 200px;
}
.photo::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0, transparent 2px, rgba(33,31,31,0.03) 2px, rgba(33,31,31,0.03) 4px);
  pointer-events: none;
}
.photo::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('assets/texas-wrench-black.png');
  background-size: 45%; background-position: center;
  background-repeat: no-repeat; opacity: 0.035; pointer-events: none;
}
.photo__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem; padding: 1.5rem; text-align: center;
}
.photo__icon { width: 32px; height: 32px; color: rgba(33, 31, 31, 0.35); }
.photo__label {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(33, 31, 31, 0.55); font-weight: 500;
}
.photo__desc {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
  color: rgba(33, 31, 31, 0.42);
}
.photo--wide { aspect-ratio: 16 / 9; }
.photo--square { aspect-ratio: 1 / 1; }
.photo--portrait { aspect-ratio: 3 / 4; }
.photo--tall { aspect-ratio: 4 / 5; }

/* GALLERY */
.gallery { background: var(--cream-warm); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.gallery__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 1rem; margin-top: 2rem; min-height: 500px;
}
.gallery__item--main { grid-column: 1 / 2; grid-row: 1 / 3; }
.gallery__item--a { grid-column: 2 / 3; grid-row: 1 / 2; }
.gallery__item--b { grid-column: 3 / 4; grid-row: 1 / 2; }
.gallery__item--c { grid-column: 2 / 4; grid-row: 2 / 3; }
.gallery__item .photo { height: 100%; min-height: 0; }
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: 0; }
  .gallery__item--main { grid-column: 1 / 3; grid-row: auto; }
  .gallery__item--a, .gallery__item--b, .gallery__item--c { grid-column: auto; grid-row: auto; }
  .gallery__item--c { grid-column: 1 / 3; }
  .gallery__item .photo { min-height: 180px; }
}

/* STORY */
.story { position: relative; overflow: hidden; background: var(--cream); }
.story::before {
  content: ''; position: absolute; top: 50%; right: -280px;
  transform: translateY(-50%); width: 640px; height: 640px;
  background-image: url('assets/texas-wrench-black.png');
  background-size: contain; background-repeat: no-repeat;
  background-position: center; opacity: 0.07; pointer-events: none;
}
.story__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.story__eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1rem;
}
.story__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.035em;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; margin-bottom: 1.5rem;
}
.story__body p { margin-bottom: 1.25rem; font-size: 1.02rem; color: var(--text); line-height: 1.65; }
.story__body p:last-child { margin-bottom: 0; }
.story__crew {
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--hairline);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  font-family: var(--font-mono); font-size: 0.8rem;
}
.story__crew-item { display: flex; flex-direction: column; gap: 0.25rem; }
.story__crew-role {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted);
}
.story__crew-name { color: var(--text); letter-spacing: 0.03em; }
.story__visual { display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
.story__photo { width: 100%; max-width: 420px; aspect-ratio: 4 / 5; }
.story__patch { width: 100%; max-width: 420px; filter: drop-shadow(0 12px 32px rgba(33, 31, 31, 0.18)); }
.story__accent { width: 100%; max-width: 220px; margin-top: 0.5rem; }
@media (max-width: 900px) {
  .story__inner { grid-template-columns: 1fr; }
  .story__visual { order: -1; margin-bottom: 1rem; }
  .story__patch { max-width: 280px; }
}

/* BOOK / CTA */
.book { background: var(--black); color: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0; text-align: center; position: relative; }
.book__eyebrow {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--red); margin-bottom: 1rem;
}
.book__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.035em;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05;
  max-width: 26ch; margin: 0 auto 1.25rem; color: var(--cream);
}
.book__sub { color: rgba(252, 246, 237, 0.7); font-size: 1.05rem; max-width: 40rem; margin: 0 auto 2rem; }
.book__ctas { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.book .btn--outline { color: var(--cream); border-color: rgba(252, 246, 237, 0.4); }
.book .btn--outline:hover { background: var(--cream); color: var(--black); border-color: var(--cream); }
.book__placeholder {
  margin-top: 2rem; padding: 1rem;
  border: 1px dashed rgba(252, 246, 237, 0.25); border-radius: 4px;
  max-width: 42rem; margin-left: auto; margin-right: auto;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(252, 246, 237, 0.5);
}

/* REVIEWS */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.review { padding: 2rem; background: var(--cream-warm); border-radius: 6px; border: 1px solid var(--hairline); display: flex; flex-direction: column; }
.review__stars { color: var(--red); font-size: 1.05rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.review__body { font-size: 0.98rem; line-height: 1.6; margin-bottom: 1.25rem; color: var(--text); flex-grow: 1; }
.review__meta {
  padding-top: 1rem; border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
}
.review__source { color: var(--red); font-weight: 500; }
@media (max-width: 900px) { .reviews__grid { grid-template-columns: 1fr; } }

/* RECENT WORK */
.work { background: var(--cream-warm); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.work__list {
  display: grid; gap: 1px; background: var(--hairline);
  border: 1px solid var(--hairline); margin-top: 2rem;
}
.work__row {
  display: grid; grid-template-columns: 100px 1fr 1fr 90px;
  gap: 1.5rem; padding: 1.25rem 1.5rem;
  background: var(--cream); align-items: center;
}
.work__ro { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--red); font-weight: 500; }
.work__vehicle { font-weight: 600; font-size: 0.95rem; }
.work__desc { font-size: 0.9rem; color: var(--text-muted); }
.work__status { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); text-align: right; }
@media (max-width: 700px) {
  .work__row { grid-template-columns: 1fr; gap: 0.5rem; }
  .work__status { text-align: left; }
}

/* MEET THE CREW */
.crew__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-top: 2rem; }
.crew__card { display: flex; flex-direction: column; gap: 0.75rem; }
.crew__card .photo { min-height: 0; }
.crew__meta { display: flex; flex-direction: column; gap: 0.2rem; }
.crew__role { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); }
.crew__name { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.crew__bio { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 900px) { .crew__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .crew__grid { grid-template-columns: 1fr; } }

/* LOCATION */
.location__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; margin-top: 2rem; align-items: start; }
.location__info { display: flex; flex-direction: column; gap: 2rem; }
.info-block__label {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--red); margin-bottom: 0.5rem;
}
.info-block__body { font-size: 1.02rem; line-height: 1.6; }
.info-block__body a { color: var(--text); }
.info-block__body a:hover { color: var(--red); }
.info-block__phone { font-family: var(--font-mono); font-size: 1.2rem; letter-spacing: 0.02em; font-weight: 500; }
.location__map { aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden; border: 1px solid var(--hairline); }
.location__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.hours-row {
  display: flex; justify-content: space-between; padding: 0.35rem 0;
  font-family: var(--font-mono); font-size: 0.85rem;
  border-bottom: 1px solid var(--hairline);
}
.hours-row:last-child { border-bottom: none; }
.hours-row__day { color: var(--text-muted); letter-spacing: 0.05em; }
.hours-row__time { color: var(--text); }
@media (max-width: 900px) { .location__grid { grid-template-columns: 1fr; } }

/* AREA SERVED */
.area { padding: 2rem; background: var(--cream-warm); border: 1px solid var(--hairline); border-radius: 6px; }
.area__label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 0.75rem; }
.area__list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.area__pill { padding: 0.4rem 0.8rem; background: var(--cream); border: 1px solid var(--hairline); border-radius: 100px; font-size: 0.82rem; letter-spacing: 0.02em; }

/* FLEET */
.fleet { background: var(--cream); position: relative; overflow: hidden; }
.fleet__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; margin-top: 2rem; }
.fleet__lead p { font-size: 1.05rem; line-height: 1.65; margin-bottom: 1.25rem; color: var(--text); }
.fleet__lead p:last-child { margin-bottom: 0; }
.fleet__benefits { display: grid; gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--hairline); }
.fleet__benefit { display: grid; grid-template-columns: 32px 1fr; gap: 1rem; align-items: start; }
.fleet__benefit-num { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--red); padding-top: 0.2rem; }
.fleet__benefit-text { font-size: 0.95rem; line-height: 1.55; }
.fleet__benefit-text strong { display: block; margin-bottom: 0.2rem; letter-spacing: -0.01em; }
.fleet__card { padding: 2.5rem; background: var(--black); color: var(--cream); border-radius: 6px; position: sticky; top: 108px; }
.fleet__card-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--red); margin-bottom: 1rem; }
.fleet__card-title { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; font-size: 1.7rem; line-height: 1.1; margin-bottom: 1rem; color: var(--cream); }
.fleet__card-body { color: rgba(252, 246, 237, 0.7); line-height: 1.55; margin-bottom: 1.75rem; font-size: 0.95rem; }
.fleet__card-contact { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(252, 246, 237, 0.15); }
.fleet__card-line { display: flex; align-items: center; gap: 0.75rem; color: var(--cream); font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.03em; transition: color 0.2s; }
.fleet__card-line:hover { color: var(--red); }
.fleet__card-line svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
.fleet__partners { margin-top: 1.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(252, 246, 237, 0.15); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fleet__partner { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.7rem; border: 1px solid rgba(252, 246, 237, 0.25); border-radius: 3px; color: var(--cream); }
@media (max-width: 900px) { .fleet__inner { grid-template-columns: 1fr; } .fleet__card { position: static; } }

/* CAREERS */
.careers { background: var(--cream-warm); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.careers__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; margin-top: 2rem; }
.careers__lead p { font-size: 1.02rem; line-height: 1.65; margin-bottom: 1.25rem; color: var(--text); }
.careers__perks { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--hairline); display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 2rem; }
.careers__perk { display: flex; gap: 0.75rem; align-items: start; }
.careers__perk-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; margin-top: 0.5rem; flex-shrink: 0; }
.careers__perk-text { font-size: 0.92rem; line-height: 1.5; }
.careers__form { background: var(--cream); padding: 2rem; border-radius: 6px; border: 1px solid var(--hairline); }
.careers__form-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--red); margin-bottom: 0.75rem; }
.careers__form-title { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; font-size: 1.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.form-field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-field label { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.35rem; }
.form-field input, .form-field textarea, .form-field select { padding: 0.7rem 0.9rem; border: 1px solid var(--hairline); border-radius: 4px; background: var(--cream); font-family: var(--font-body); font-size: 0.92rem; color: var(--text); transition: border 0.2s; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--red); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 0.95rem; background: var(--red); color: var(--cream); font-weight: 600; font-size: 0.95rem; border-radius: 4px; transition: background 0.2s; cursor: pointer; margin-top: 0.5rem; border: none; font-family: var(--font-body); }
.form-submit:hover { background: var(--red-dark); }
.form-fallback { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--hairline); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--text-muted); text-align: center; }
.form-fallback a { color: var(--red); }
@media (max-width: 900px) {
  .careers__inner { grid-template-columns: 1fr; }
  .careers__perks { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* TEASER CARDS (on home page pointing to inner pages) */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.teaser {
  padding: 2rem; background: var(--cream); border: 1px solid var(--hairline);
  border-radius: 6px; display: flex; flex-direction: column;
  transition: transform 0.2s, border-color 0.2s; text-decoration: none; color: inherit;
}
.teaser:hover { transform: translateY(-3px); border-color: var(--red); }
.teaser__label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--red); margin-bottom: 1rem; }
.teaser__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; font-size: 1.5rem; line-height: 1.1; margin-bottom: 1rem; }
.teaser__body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1.5rem; flex-grow: 1; }
.teaser__cta { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); font-weight: 500; }
@media (max-width: 900px) { .teaser-grid { grid-template-columns: 1fr; } }

/* FOOTER */
.footer { background: var(--black); color: var(--cream); padding: 4rem 0 2rem; margin-top: 0; }
.footer__inner {
  display: grid; grid-template-columns: 1fr 2fr; gap: 4rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(252, 246, 237, 0.15);
}
.footer__brand img { width: 140px; height: auto; margin-bottom: 1.5rem; }
.footer__tagline {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(252, 246, 237, 0.5); line-height: 1.6;
}
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__col-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.footer__col a { display: block; color: rgba(252, 246, 237, 0.75); font-size: 0.9rem; padding: 0.25rem 0; transition: color 0.2s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(252, 246, 237, 0.4);
  flex-wrap: wrap; gap: 1rem;
}
@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE FLOATING CALL */
.mobile-call {
  display: none; position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 90; padding: 1rem; background: var(--red); color: var(--cream);
  border-radius: 6px; text-align: center; font-weight: 600;
  box-shadow: 0 4px 20px rgba(218, 79, 60, 0.35);
  font-family: var(--font-mono); letter-spacing: 0.05em;
}
@media (max-width: 700px) { .mobile-call { display: block; } body { padding-bottom: 4.5rem; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
