/* ==========================================================================
   Transport Equipment Hire (TEH) — Global Stylesheet
   Design system: industrial, clean, premium. Brand red drawn from TEH logo.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --red: #d6221f;
  --red-dark: #b01916;
  --red-tint: #fdeeee;
  --amber: #f5a800;

  /* Neutrals */
  --ink: #12181e;
  --charcoal: #1b232b;
  --charcoal-2: #232d37;
  --steel: #4b5761;
  --slate: #6b7680;
  --line: #e4e9ed;
  --mist: #f4f6f8;
  --white: #ffffff;

  /* Type */
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(18, 24, 30, 0.08);
  --shadow-md: 0 6px 24px -6px rgba(18, 24, 30, 0.14);
  --shadow-lg: 0 18px 48px -12px rgba(18, 24, 30, 0.22);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 96px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.35rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

p { margin: 0 0 1em; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

ul { padding-left: 1.2em; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--mist { background: var(--mist); }
.section--dark { background: var(--charcoal); color: #d9e0e6; }
.section--dark h2 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--steel); font-size: 1.125rem; margin: 0; }
.section--dark .section-head p { color: #aeb9c2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.section--dark .eyebrow { color: #ff6f6c; }
.section--dark .eyebrow::before { background: #ff6f6c; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
}
.btn svg { flex: none; }

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(214, 34, 31, 0.55);
}
.btn--primary:hover { background: var(--red-dark); color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(18, 24, 30, 0.25);
}
.btn--outline:hover { border-color: var(--ink); color: var(--ink); background: rgba(18, 24, 30, 0.04); }

.btn--inverse {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
}
.btn--inverse:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--white {
  background: #fff;
  color: var(--red);
}
.btn--white:hover { background: var(--ink); color: #fff; }

.btn--sm { padding: 0.7rem 1.3rem; font-size: 0.97rem; }
.btn--lg { padding: 1.2rem 2.4rem; font-size: 1.125rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.topbar {
  background: var(--ink);
  color: #c6cfd6;
  font-size: 0.9rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  padding: 0.3rem 0;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: #ff8a87; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}
.topbar__item svg { flex: none; opacity: 0.75; }
.topbar__group { display: flex; gap: 1.6rem; align-items: center; min-width: 0; }
@media (max-width: 720px) {
  .topbar__hours, .topbar__addr { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.brand img { height: 46px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.nav__links a:hover { background: var(--mist); color: var(--ink); }
.nav__links a[aria-current="page"] { color: var(--red); }
.nav__cta { margin-left: 0.6rem; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 8px;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 920px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.25rem 1.5rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.9rem 1rem; font-size: 1.1rem; border-radius: var(--radius-sm); }
  .nav__cta { margin: 0.5rem 0 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: min(88vh, 760px);
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(78deg, rgba(10, 14, 18, 0.88) 0%, rgba(10, 14, 18, 0.62) 44%, rgba(10, 14, 18, 0.18) 78%, rgba(10, 14, 18, 0.05) 100%),
    linear-gradient(to top, rgba(10, 14, 18, 0.55) 0%, rgba(10, 14, 18, 0) 30%);
}
.hero__content { max-width: 720px; }
.hero .eyebrow { color: #ffb3b1; }
.hero .eyebrow::before { background: var(--red); }
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero p.lede {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* Sub-hero (interior pages) */
.page-hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.page-hero__media,
.page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(80deg, rgba(10, 14, 18, 0.9) 10%, rgba(10, 14, 18, 0.55) 60%, rgba(10, 14, 18, 0.28) 100%);
}
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 0.3em; }
.page-hero p { color: rgba(255, 255, 255, 0.88); max-width: 62ch; font-size: 1.15rem; margin: 0; }
.page-hero .eyebrow { color: #ffb3b1; }

/* Stat strip */
.statbar { background: var(--ink); color: #fff; }
.statbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.09);
}
.statbar__item {
  background: var(--ink);
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.statbar__item svg { flex: none; color: var(--red); }
.statbar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.statbar__item small { color: #97a3ad; font-size: 0.9rem; }
@media (max-width: 920px) { .statbar__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .statbar__grid { grid-template-columns: 1fr; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: #d3dae0; }
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--red-tint);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}
.feature-card h3 { margin-bottom: 0.35em; }
.feature-card p { color: var(--steel); margin: 0; font-size: 1rem; }

/* Fleet preview cards (home) */
.fleet-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s ease;
}
.fleet-card:hover { box-shadow: var(--shadow-lg); color: #fff; }
.fleet-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  transition: transform 0.4s ease;
}
.fleet-card:hover img { transform: scale(1.04); }
.fleet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(10, 14, 18, 0.86) 8%, rgba(10, 14, 18, 0.25) 55%, rgba(10, 14, 18, 0.06) 100%);
}
.fleet-card__body { padding: 1.6rem; width: 100%; }
.fleet-card h3 { color: #fff; margin-bottom: 0.2em; }
.fleet-card p { color: rgba(255, 255, 255, 0.82); font-size: 0.98rem; margin: 0 0 0.9rem; }
.fleet-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
}
.fleet-card__link svg { transition: transform 0.2s ease; }
.fleet-card:hover .fleet-card__link svg { transform: translateX(4px); }

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
@media (max-width: 1080px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
.industry {
  background: var(--charcoal-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.industry:hover { border-color: rgba(255, 255, 255, 0.22); background: #28323d; }
.industry svg { color: #ff6f6c; margin-bottom: 0.7rem; }
.industry span {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #fff;
}

/* CTA banner */
.cta-banner {
  position: relative;
  isolation: isolate;
  color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  padding: clamp(2.6rem, 5vw, 4rem);
  background: linear-gradient(100deg, var(--red-dark), var(--red) 55%, #e8433f);
  box-shadow: var(--shadow-lg);
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(600px 300px at 90% -20%, rgba(255, 255, 255, 0.16), transparent 70%),
    radial-gradient(400px 260px at 5% 120%, rgba(0, 0, 0, 0.18), transparent 70%);
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.25em; }
.cta-banner p { color: rgba(255, 255, 255, 0.9); margin: 0; max-width: 52ch; font-size: 1.1rem; }
.cta-banner__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Fleet page ---------- */
.fleet-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fleet-nav__inner {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem 0;
  white-space: nowrap;
}
.fleet-nav a {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--steel);
  border: 1px solid transparent;
}
.fleet-nav a:hover { background: var(--mist); color: var(--ink); }

.trailer-card {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}
.trailer-card:hover { box-shadow: var(--shadow-md); }
.trailer-card + .trailer-card { margin-top: 2rem; }
.trailer-card__media {
  position: relative;
  min-height: 300px;
  background: var(--mist);
}
.trailer-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* show the complete trailer — no cropping */
  padding: 1rem;
}
.trailer-card__media img.is-illustration {
  padding: 2.2rem;
}
.trailer-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
.trailer-card__body { padding: 2rem 2.2rem; }
.trailer-card__body > p { color: var(--steel); }
.trailer-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  margin: 1.4rem 0 1.6rem;
}
.trailer-card__meta h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.5em;
}
.trailer-card__meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.98rem;
  color: var(--ink);
}
.trailer-card__meta li {
  padding-left: 1.3em;
  position: relative;
  margin-bottom: 0.35em;
}
.trailer-card__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.trailer-card__specs {
  background: var(--mist);
  border: 1px dashed #cdd6dd;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  color: var(--steel);
  margin-bottom: 1.6rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.trailer-card__specs svg { flex: none; margin-top: 0.15rem; color: var(--slate); }
.trailer-card__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }
@media (max-width: 860px) {
  .trailer-card { grid-template-columns: 1fr; }
  .trailer-card__media { min-height: 240px; }
  .trailer-card__body { padding: 1.6rem 1.4rem; }
  .trailer-card__meta { grid-template-columns: 1fr; }
}

/* ---------- Forms ---------- */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 960px) { .form-layout { grid-template-columns: 1fr; } }

.form-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.4rem;
}
.form-grid .form-field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.form-field label .req { color: var(--red); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #cfd7dd;
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(214, 34, 31, 0.14);
}
.form-field .hint { font-size: 0.85rem; color: var(--slate); margin-top: 0.3rem; }
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: var(--red); }
.form-field .error-msg {
  display: none;
  color: var(--red-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.3rem;
}
.form-field.has-error .error-msg { display: block; }

fieldset.form-field {
  border: 0;
  padding: 0;
  margin: 0;
}
fieldset.form-field legend {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0;
  margin-bottom: 0.5rem;
}
.radio-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.radio-pill { position: relative; }
.radio-pill input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.radio-pill span {
  display: inline-block;
  padding: 0.55rem 1.1rem;
  border: 1.5px solid #cfd7dd;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--steel);
  transition: all 0.15s ease;
}
.radio-pill input:checked + span {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.radio-pill input:focus-visible + span { outline: 3px solid var(--red); outline-offset: 2px; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f6ee;
  color: #1e8e4e;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
}

/* Sidebar (enquiry page) */
.aside-card {
  background: var(--charcoal);
  color: #d9e0e6;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow-md);
}
.aside-card h3 { color: #fff; }
.aside-card ul.ticks {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}
.aside-card ul.ticks li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
}
.aside-card ul.ticks li:last-child { border-bottom: 0; }
.aside-card ul.ticks svg { flex: none; color: #ff6f6c; margin-top: 0.2rem; }

.aside-contact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.aside-contact p { margin: 0 0 0.3rem; color: var(--steel); font-size: 0.98rem; }
.aside-contact a.phone {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  display: inline-block;
  margin: 0.2rem 0 0.4rem;
}
.aside-contact a.phone:hover { color: var(--red); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1000px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-tile__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red-tint);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.contact-tile h3 { font-size: 1.25rem; margin-bottom: 0.35em; }
.contact-tile p { margin: 0; color: var(--steel); font-size: 0.98rem; }
.contact-tile a { font-weight: 600; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 7.5;
  background: var(--mist);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 720px) { .map-wrap { aspect-ratio: 4 / 3; } }

.directions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.8rem;
}
@media (max-width: 900px) { .directions { grid-template-columns: 1fr; } }
.direction h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
}
.direction h3 svg { color: var(--red); flex: none; }
.direction p { color: var(--steel); font-size: 0.98rem; margin: 0; }

/* ---------- Image break ---------- */
.img-break {
  position: relative;
  isolation: isolate;
  min-height: 380px;
  display: flex;
  align-items: center;
  color: #fff;
}
.img-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.img-break::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(80deg, rgba(10, 14, 18, 0.82) 0%, rgba(10, 14, 18, 0.35) 60%, rgba(10, 14, 18, 0.1) 100%);
}
.img-break h2 { color: #fff; }
.img-break p { color: rgba(255, 255, 255, 0.85); max-width: 56ch; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #aeb9c2;
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  font-size: 0.98rem;
}
.site-footer a { color: #dde4e9; }
.site-footer a:hover { color: #ff8a87; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.4fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand__logo {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  margin-bottom: 1.1rem;
}
.footer-brand__logo img { height: 44px; width: auto; }
.footer-brand p { max-width: 40ch; }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer ul li { margin-bottom: 0.55rem; }
.footer-contact li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.footer-contact svg { flex: none; margin-top: 0.25rem; color: var(--red); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #dde4e9;
  transition: background-color 0.18s ease, border-color 0.18s ease;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #7f8b95;
}
.footer-bottom nav { display: flex; gap: 1.4rem; }
.footer-bottom a { color: #aeb9c2; }

/* ---------- Legal pages ---------- */
.legal { max-width: 780px; }
.legal h2 { font-size: 1.6rem; margin-top: 2em; }
.legal p, .legal li { color: var(--steel); }

/* ---------- Image crop helpers ---------- */
.crop-lower { object-position: center 68% !important; }
.crop-low { object-position: center 80% !important; }

/* ---------- Utility ---------- */
.mt-2 { margin-top: 2rem; }
.center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

@media print {
  .site-header, .topbar, .site-footer, .cta-banner, .fleet-nav { display: none; }
}
