/* ============================================================
   TNT RENTAL SITE STYLES
   Brand: black + construction yellow, stencil and utility flavor.
   The two colors below come straight from the logo. Change them
   here and the whole site follows.
   ============================================================ */

@font-face {
  font-family: "Saira Stencil One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/saira-stencil-one-400.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/barlow-400.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-700.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
}

:root {
  --yellow: #FDCF03;
  --black: #0E0E0E;
  --ink: #141414;
  --paper: #F4F1E7;      /* warm work-paper white */
  --paper-deep: #EAE6D8;
  --white: #FFFFFF;
  --gray: #5C5A52;
  --stencil: "Saira Stencil One", "Arial Black", sans-serif;
  --body: "Barlow", Arial, sans-serif;
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

body {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.wrap.narrow { max-width: 820px; }
.center { text-align: center; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* Hazard stripe divider, the yellow and black tape line */
.hazard-strip {
  height: 12px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow) 0 14px,
    var(--black) 14px 28px
  );
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 22px;
  border: 3px solid var(--black);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn-big { font-size: 1.3rem; padding: 14px 28px; }
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.9);
}
.dark .btn-yellow, .hero .btn-yellow, .header-cta {
  box-shadow: 5px 5px 0 var(--yellow-shadow, rgba(253, 207, 3, 0.35));
}
.btn-yellow:hover { transform: translate(-2px, -2px); }
.btn-yellow:active { transform: translate(2px, 2px); box-shadow: none; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-ghost:hover { color: var(--yellow); border-color: var(--yellow); }
.btn-dark {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.25);
}
.btn-dark:hover { transform: translate(-2px, -2px); }
a:focus-visible, summary:focus-visible {
  outline: 3px dashed var(--yellow);
  outline-offset: 3px;
}
.paper a:focus-visible, .yellow a:focus-visible, .paper summary:focus-visible,
.board-row a:focus-visible, .addon a:focus-visible, .policy-plate a:focus-visible {
  outline-color: var(--black);
}

/* Keep anchor jumps clear of the sticky header */
section[id], main[id] { scroll-margin-top: 90px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  margin-left: -8px;
}
.header-logo img { height: 44px; width: auto; }
.header-cta { font-size: 1.05rem; padding: 9px 18px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px;
  align-items: center;
}
.kicker {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--yellow);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--stencil);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title .line { display: block; }
.hero-title .yell { color: var(--yellow); }
.hero-sub {
  max-width: 34em;
  color: #D8D5CC;
  margin-bottom: 30px;
  font-size: 1.12rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: #D8D5CC;
}
.hero-tags li { display: flex; align-items: center; gap: 9px; }
.hero-tags li::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--yellow);
  flex: none;
}

/* The framed panel that holds the spec drawing now, a photo later */
.photo-slot { margin: 0; }
.hero-slot {
  background: var(--paper);
  border: 3px solid var(--yellow);
  padding: 20px 20px 12px;
  box-shadow: 10px 10px 0 rgba(253, 207, 3, 0.28);
}
.spec-svg { width: 100%; height: auto; display: block; }
.spec-label {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  fill: var(--ink);
}
.spec-block {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: var(--ink);
}
.slot-tag {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.85rem;
  color: var(--gray);
  padding-top: 10px;
  border-top: 2px dashed var(--ink);
  margin-top: 6px;
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding: 78px 0; }
.section.paper { background: var(--paper); }
.section.deep { background: var(--paper-deep); }
.section.dark { background: var(--black); color: var(--white); }
.section.yellow { background: var(--yellow); color: var(--black); }

.sec-label {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 10px;
}
.sec-label.on-dark { color: var(--yellow); }
.sec-label.on-yellow { color: var(--black); }
.sec-title {
  font-family: var(--stencil);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 16px;
}
.sec-title.on-dark { color: var(--white); }
.sec-lede { max-width: 42em; margin-bottom: 40px; font-size: 1.1rem; }
.sec-lede.on-dark { color: #D8D5CC; }

/* ============================================================
   HOW IT WORKS: numbered manifest rows
   ============================================================ */
.steps { list-style: none; margin-top: 44px; }
.step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 26px;
  align-items: start;
  padding: 30px 4px;
  border-top: 2px dashed var(--ink);
}
.step:last-child { border-bottom: 2px dashed var(--ink); }
.step-num {
  font-family: var(--stencil);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 0.9;
  color: var(--black);
}
@supports (-webkit-text-stroke: 2px black) {
  .step-num {
    color: var(--yellow);
    -webkit-text-stroke: 2px var(--black);
    paint-order: stroke fill;
  }
}
.step-body h3 {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.step-body p { max-width: 56em; color: #33312B; }
.step-icon { width: 52px; height: 52px; color: var(--ink); margin-top: 4px; }

/* ============================================================
   FIELD PHOTOS: the real-fleet proof grid
   Four framed job photos. On wide screens: a wide shot over two
   small ones on the left, one tall shot on the right. On small
   screens they stack two across.
   ============================================================ */
/* Column widths are tuned so every photo sits at (or within a hair
   of) its natural shape: nothing important gets cropped away. */
.fleet-grid {
  display: grid;
  grid-template-columns: 23fr 33fr 48fr;
  grid-template-areas:
    "a a c"
    "b d c";
  gap: 22px;
}
.fleet-a { grid-area: a; }
.fleet-b { grid-area: b; }
.fleet-c { grid-area: c; }
.fleet-d { grid-area: d; }

.field-shot {
  margin: 0;
  background: var(--paper);
  border: 3px solid var(--black);
  box-shadow: 7px 7px 0 rgba(14, 14, 14, 0.16);
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
}
.field-shot img {
  width: 100%;
  object-fit: cover;
}
/* Natural shape for the lead photo on every screen size, so heads
   and feet stay in frame */
.fleet-a img { aspect-ratio: 4 / 3; }
.fleet-b img { aspect-ratio: 7 / 10; }
/* These two fill whatever height their row gets, so they always
   land at nearly their natural shape with no visible crop */
.fleet-c img, .fleet-d img { flex: 1 1 0; min-height: 0; height: auto; }
.field-shot .slot-tag { margin-top: 8px; }
.board { display: grid; gap: 22px; margin-bottom: 30px; }
.board-row {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--yellow);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 3fr);
  gap: 26px;
  align-items: center;
}
.board-row.flagged {
  border-width: 3px;
  box-shadow: 10px 10px 0 rgba(253, 207, 3, 0.3);
}
.board-flag {
  position: absolute;
  top: -16px;
  left: 26px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  padding: 4px 14px;
  border: 3px solid var(--black);
}
.board-name h3 {
  font-family: var(--stencil);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.55rem;
  line-height: 1.1;
}
.board-fits {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 6px;
}
.board-specs { list-style: none; font-size: 1rem; }
.board-specs li {
  padding: 5px 0 5px 26px;
  position: relative;
}
.board-specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  background: var(--yellow);
  border: 2px solid var(--black);
}
.board-buy { text-align: center; }
.board-price {
  font-family: var(--stencil);
  font-size: 3.4rem;
  line-height: 1;
  margin-bottom: 12px;
}
.board-price .dollar { font-size: 1.9rem; vertical-align: 14px; }
.board-note { font-size: 0.9rem; color: var(--gray); margin-top: 10px; }
.board-note a { color: inherit; font-weight: 600; }

/* Hand truck add-on strip */
.addon {
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}
.addon-icon { width: 54px; height: 54px; flex: none; }
.addon-copy { flex: 1 1 320px; }
.addon-copy h3 {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
}
.addon-price {
  font-family: var(--stencil);
  font-size: 1.6rem;
  margin-left: 8px;
}
.addon-copy p { font-size: 1rem; }

.booking-note {
  border: 2px dashed rgba(244, 241, 231, 0.55);
  padding: 18px 24px;
  color: #D8D5CC;
  font-size: 1rem;
  max-width: 62em;
}
.booking-note a { color: var(--yellow); }

/* ============================================================
   RATE CARD TABLE
   ============================================================ */
.table-scroll { overflow-x: auto; }
.rate-card {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 3px solid var(--black);
  font-size: 1.05rem;
}
.rate-card th, .rate-card td {
  padding: 13px 20px;
  text-align: left;
  border-bottom: 2px solid var(--paper-deep);
}
.rate-card thead th {
  background: var(--black);
  color: var(--yellow);
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
}
.rate-card tbody tr:last-child td { border-bottom: none; }
.rate-card td:nth-child(2), .rate-card td:nth-child(3),
.rate-card th:nth-child(2), .rate-card th:nth-child(3) {
  text-align: right;
  font-weight: 600;
}

/* ============================================================
   TOTES VS CARDBOARD
   ============================================================ */
.versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  border: 3px solid var(--black);
}
.versus-col { padding: 34px 34px 38px; }
.versus-col h3 {
  font-family: var(--stencil);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.versus-col ul { list-style: none; }
.versus-col li {
  padding: 9px 0 9px 34px;
  position: relative;
  font-size: 1.02rem;
}
.versus-col.totes {
  background: var(--black);
  color: var(--white);
}
.versus-col.totes h3 { color: var(--yellow); }
.versus-col.totes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 16px;
  height: 16px;
  background: var(--yellow);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 84% 4%, 38% 72%);
}
.versus-col.cardboard {
  background: var(--paper-deep);
  color: var(--gray);
}
.versus-col.cardboard h3 { color: var(--gray); }
.versus-col.cardboard li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 14px;
  width: 14px;
  height: 14px;
  background: var(--gray);
  clip-path: polygon(20% 5%, 5% 20%, 35% 50%, 5% 80%, 20% 95%, 50% 65%, 80% 95%, 95% 80%, 65% 50%, 95% 20%, 80% 5%, 50% 35%);
}
.versus-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  font-family: var(--stencil);
  font-size: 1.3rem;
  padding: 10px 14px;
  z-index: 2;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.section.yellow .sec-title { color: var(--black); }
.area-copy { font-size: 1.15rem; max-width: 34em; font-weight: 600; margin-bottom: 30px; }
.area-map {
  height: 440px;
  border: 3px solid var(--black);
  box-shadow: 10px 10px 0 rgba(14, 14, 14, 0.18);
  background: var(--paper);
  /* keeps the map's own layers underneath the sticky header */
  position: relative;
  z-index: 0;
}
.map-star { background: none; border: none; }
.map-caption {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-top: 16px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq details {
  border: 3px solid var(--black);
  background: var(--white);
  margin-bottom: 14px;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  padding: 16px 3.2em 16px 20px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
/* The plus and minus marks are drawn as bars, not text, so screen
   readers do not read them out and they scale with text zoom */
.faq summary::after {
  content: "";
  position: absolute;
  right: 0.8em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  background-color: var(--yellow);
  border: 2px solid var(--black);
  background-image:
    linear-gradient(var(--black), var(--black)),
    linear-gradient(var(--black), var(--black));
  background-size: 0.8em 0.15em, 0.15em 0.8em;
  background-position: center center;
  background-repeat: no-repeat;
}
.faq details[open] summary::after {
  background-image: linear-gradient(var(--black), var(--black));
  background-size: 0.8em 0.15em;
}
.faq details p { padding: 0 20px 18px; color: #33312B; max-width: 60em; }

/* ============================================================
   POLICIES
   ============================================================ */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.policy-plate {
  background: var(--paper);
  color: var(--ink);
  border-top: 10px solid var(--yellow);
  padding: 28px 30px;
}
.policy-plate h3 {
  font-family: var(--stencil);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.35rem;
  margin-bottom: 16px;
}
.policy-plate ul { list-style: none; }
.policy-plate li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 1rem;
  border-bottom: 1px solid var(--paper-deep);
}
.policy-plate li:last-child { border-bottom: none; }
.policy-plate li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border: 2px solid var(--black);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 52px;
  align-items: center;
}
.about-copy p { max-width: 36em; margin-bottom: 16px; }
.tnt-title span { color: var(--black); }
@supports (-webkit-text-stroke: 2px black) {
  .tnt-title span {
    color: var(--yellow);
    -webkit-text-stroke: 2px var(--black);
    paint-order: stroke fill;
  }
}
.about-slot {
  background: var(--black);
  border: 3px solid var(--black);
  box-shadow: 10px 10px 0 var(--yellow);
}
.about-badge {
  padding: 44px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.about-badge img { margin-bottom: 18px; }
.badge-line {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--paper);
  font-size: 1rem;
  padding: 3px 0;
}
.badge-line:first-of-type { color: var(--yellow); }

/* ============================================================
   CONTACT + FOOTER
   ============================================================ */
.contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
}
.site-footer {
  background: var(--black);
  color: #A7A49B;
  text-align: center;
  padding: 34px 22px 40px;
  font-size: 0.95rem;
}
.site-footer img { margin: 0 auto 14px; height: 40px; width: auto; }
.site-footer a { color: var(--paper); }
.footer-fine { font-size: 0.85rem; margin-top: 6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-slot { max-width: 560px; }
  .fleet-grid {
    grid-template-columns: 7fr 10fr;
    grid-template-areas:
      "a a"
      "b d"
      "c c";
    gap: 16px;
  }
  .fleet-c img { flex: none; aspect-ratio: 3 / 5; height: auto; }
  /* On mid-size screens the tall shot gets its own centered frame
     instead of blowing up to full width */
  .fleet-c { max-width: 480px; width: 100%; justify-self: center; }
  .board-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .board-buy { grid-column: 1 / -1; text-align: left; }
  .board-price { margin-bottom: 8px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .area-map { height: 340px; }
}
@media (max-width: 680px) {
  .section { padding: 58px 0; }
  .step { grid-template-columns: auto minmax(0, 1fr); }
  .step-icon { display: none; }
  /* On phones every field photo runs full width at its natural
     shape, so nothing in the picture gets cropped away */
  .fleet-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "d" "c";
  }
  .fleet-b img { aspect-ratio: 5 / 7; }
  .fleet-d img { flex: none; aspect-ratio: 21 / 20; height: auto; }
  .fleet-c { max-width: none; }
  .board-row { grid-template-columns: 1fr; gap: 18px; padding: 24px 20px; }
  .versus { grid-template-columns: 1fr; }
  .versus-badge { display: none; }
  .versus-col { padding: 26px 22px 30px; }
  .policy-grid { grid-template-columns: 1fr; }
  .header-logo img { height: 36px; }
  .hero { padding: 46px 0 56px; }
  .contact-btns .btn { width: 100%; text-align: center; }
}
