/* ============================================================================
   MAINLINE TRAILER RENTALS — v4  ·  Crafted by Sileon · www.sileonweb.design
   Direction: DARK CINEMATIC heavy-equipment. Near-black ground, photos kept
   crisp in clean frames, oversized condensed display type, safety-orange as a
   hard graphic accent, stamped badge. High contrast, contemporary, muscular —
   the danabros/farmerexc register, not a bright editorial template.

   Type:  Anton / Archivo (condensed display) · Inter Tight (body) · mono labels
   ============================================================================ */

:root {
  /* Dark cinematic palette (brand orange preserved) */
  --bg:       #0E0F12;   /* near-black page */
  --bg-2:     #15171B;   /* raised panels */
  --bg-3:     #1D2026;   /* cards / borders-base */
  --line:     #2A2E36;   /* hairlines on dark */
  --steel:    #3A404A;   /* mid steel detail */
  --txt:      #F3F1EC;   /* primary text on dark */
  --txt-2:    #B7BAC1;   /* secondary text */
  --txt-3:    #7E838D;   /* tertiary / labels */
  --accent:   #FF5C28;   /* safety orange — hard accent */
  --accent-2: #FF7A4D;
  --bone:     #F5F1EA;   /* rare light panel */

  --f-disp: 'Archivo', system-ui, sans-serif;   /* heavy condensed-ish display */
  --f-anton:'Anton', system-ui, sans-serif;       /* ultra display for hero */
  --f-body: 'Inter Tight', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --max: 1400px;
  --gutter: clamp(20px, 4.5vw, 72px);
  --radius: 3px;
  --radius-lg: 6px;
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 17px; line-height: 1.6;
  color: var(--txt); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* Display type — heavy, tight, uppercase energy */
h1, h2, h3 { font-family: var(--f-disp); font-weight: 800; letter-spacing: -0.02em; line-height: 0.98; color: var(--txt); }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(64px, 7.5vw, 116px) 0; }

/* Mono label / eyebrow */
.eyebrow { font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.label { font-family: var(--f-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--txt-3); }

/* Section head */
.head { max-width: 820px; }
.head__rule { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.head__rule::after { content:""; flex:1; height:1px; background: var(--line); }
.head__rule .eyebrow { white-space: nowrap; }
.head h2 { font-family: var(--f-anton); font-weight: 400; font-size: clamp(42px, 7vw, 96px); letter-spacing: -0.01em; line-height: 0.92; text-transform: uppercase; }
.head h2 .accent { color: var(--accent); }
.head__sub { margin-top: 22px; font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55; color: var(--txt-2); max-width: 58ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 30px; min-height: 54px;
  background: var(--accent); color: #140a06;
  font-family: var(--f-body); font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  text-transform: uppercase;
  border-radius: var(--radius); border: 1px solid var(--accent); cursor: pointer;
  transition: background .16s ease, border-color .16s ease, transform .12s ease;
}
.btn:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn--lg { min-height: 58px; padding: 18px 36px; font-size: 16px; }
.btn--ghost { background: transparent; color: var(--txt); border-color: var(--steel); }
.btn--ghost:hover { background: var(--txt); color: var(--bg); border-color: var(--txt); }

/* Arrow link */
.link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt); padding-bottom: 4px; border-bottom: 1.5px solid var(--accent); transition: gap .16s ease, color .16s ease; }
.link:hover { gap: 12px; color: var(--accent); }

/* Stamped badge (farmerexc-style ribbon mark) */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--txt); padding: 9px 16px;
  border: 1px solid var(--steel); border-radius: 999px;
}
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(255,92,40,0.25); }

/* ============================================================================
   HEADER
   ============================================================================ */
.hdr { position: sticky; top: 0; z-index: 50; background: rgba(14,15,18,0.8); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s ease, background .2s ease; }
.hdr.is-stuck { border-bottom-color: var(--line); background: rgba(14,15,18,0.94); }
.hdr__bar { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.hdr__logo img { height: 30px; width: auto; }
.hdr__nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 38px); }
.hdr__nav a { font-family: var(--f-mono); font-weight: 500; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-2); transition: color .15s ease; }
.hdr__nav a:hover { color: var(--accent); }
.hdr__right { display: flex; align-items: center; gap: 20px; }
.hdr__phone { font-family: var(--f-mono); font-size: 14px; font-weight: 600; color: var(--txt); white-space: nowrap; }
.hdr__phone:hover { color: var(--accent); }
.hdr__burger { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--steel); border-radius: var(--radius); cursor: pointer; }
.hdr__burger span, .hdr__burger span::before, .hdr__burger span::after { display:block; width: 20px; height: 2px; background: var(--txt); content:""; position: relative; }
.hdr__burger span::before { position:absolute; top:-6px; } .hdr__burger span::after { position:absolute; top:6px; }
@media (max-width: 940px) {
  .hdr__nav { display: none; }
  .hdr__burger { display: flex; }
  .hdr__right { gap: 12px; }
  /* drop the redundant oversized Reserve in the bar; the menu carries it.
     keep the phone tappable — high value for a trades business. */
  .hdr__right > .btn { display: none; }
  .hdr__phone { display: inline-flex; font-size: 13px; }
}
@media (max-width: 420px) {
  .hdr__phone { display: none; }  /* very narrow: logo + burger only, no crowding */
}

/* Mobile nav */
/* Mobile nav — gated with visibility/opacity so a CLOSED panel is fully gone
   even when iOS Safari mis-measures 100vh for the transform. */
.mnav { position: fixed; inset: 0; z-index: 60; background: var(--bg);
  transform: translateY(-100%); visibility: hidden; opacity: 0; pointer-events: none;
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .2s ease, visibility 0s linear .32s;
  display: flex; flex-direction: column; padding: 20px var(--gutter) 40px;
  overflow-y: auto; -webkit-overflow-scrolling: touch; }
.mnav.is-open { transform: translateY(0); visibility: visible; opacity: 1; pointer-events: auto;
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .2s ease, visibility 0s; }
.mnav__top { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; }
.mnav__top img { height: 28px; }
.mnav__close { width: 46px; height: 46px; background: transparent; border: 1px solid var(--steel); border-radius: var(--radius); font-size: 20px; cursor: pointer; color: var(--txt); }
.mnav nav { display: flex; flex-direction: column; gap: 2px; margin-top: 24px; }
.mnav nav a { font-family: var(--f-anton); font-size: 34px; font-weight: 400; text-transform: uppercase; letter-spacing: -0.01em; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mnav__book { margin-top: 28px; }
.mnav__foot { margin-top: auto; padding-top: 24px; font-family: var(--f-mono); font-size: 12px; color: var(--txt-3); display: flex; flex-direction: column; gap: 6px; }
.mnav__foot a { color: var(--txt); font-weight: 600; }

/* Reveal */
.anim .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.22,.61,.2,1), transform .7s cubic-bezier(.22,.61,.2,1); will-change: opacity, transform; }
.anim .reveal.in { opacity: 1; transform: none; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--accent); color: #140a06; padding: 10px 16px; border-radius: var(--radius); }

/* ============================================================================
   HERO — dark cinematic, full-bleed. The graded trailer photo IS the hero;
   headline sits over the dark upper zone, trailer reveals lower-right.
   Sized so photo + headline + CTA all live in the first viewport.
   ============================================================================ */
.hero { position: relative; overflow: hidden; background: var(--bg);
  min-height: clamp(620px, 92vh, 940px); display: flex; }
.hero__bg { position: absolute; inset: 0;
  background-image: url('images/greg/dump-trailer-rental-jobsite-hudson-valley.webp');
  background-size: cover; background-position: center 58%; background-repeat: no-repeat; background-color: var(--bg-3); }
/* Legibility + cinematic fade: heavy near-black top & left (headline lives here),
   easing toward the lower-right where the trailer sits; plus a floor gradient so
   the section melts into the page below. */
.hero__scrim { position: absolute; inset: 0; background:
    linear-gradient(180deg, rgba(14,15,18,0.34) 0%, rgba(14,15,18,0.64) 30%, rgba(14,15,18,0.36) 52%, rgba(14,15,18,0.20) 70%, var(--bg) 100%),
    linear-gradient(75deg, rgba(14,15,18,0.82) 0%, rgba(14,15,18,0.42) 40%, rgba(14,15,18,0) 70%),
    radial-gradient(130% 80% at 16% 78%, rgba(14,15,18,0.55), rgba(14,15,18,0) 58%);
  pointer-events: none; }
.hero__inner { position: relative; z-index: 1; width: 100%; display: flex; flex-direction: column;
  padding-top: clamp(28px, 4vw, 52px); padding-bottom: clamp(40px, 5vw, 72px); }
.hero__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.hero__body { margin-top: 0; padding-top: clamp(36px, 8vh, 110px); }   /* headline rides higher, trailer reads clean below */
.hero__h1 { font-family: var(--f-anton); font-weight: 400; text-transform: uppercase;
  font-size: clamp(56px, 9.5vw, 150px); line-height: 0.86; letter-spacing: -0.015em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5); }
.hero__line { display: block; }
.hero__h1 .accent { color: var(--accent); }

.hero__bottom { margin-top: clamp(22px, 2.6vw, 38px); display: grid; grid-template-columns: minmax(0,1fr) auto;
  gap: clamp(24px, 4vw, 56px); align-items: end; }
.hero__sub { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.5; color: var(--txt); max-width: 46ch;
  text-shadow: 0 1px 16px rgba(0,0,0,0.6); }
.hero__cta { display: flex; align-items: center; gap: 24px; }
.hero__est { color: var(--txt-2); text-shadow: 0 1px 12px rgba(0,0,0,0.7); }
.hero .link { text-shadow: 0 1px 12px rgba(0,0,0,0.7); }
.hero__cap { position: absolute; right: clamp(16px, 3vw, 40px); bottom: clamp(14px, 2vw, 24px);
  color: rgba(243,241,236,0.72); text-shadow: 0 1px 12px rgba(0,0,0,0.8); z-index: 1; }

@media (max-width: 760px) {
  .hero { min-height: clamp(480px, 66vh, 560px); }
  .hero__body { padding-top: clamp(18px, 3vh, 38px); }
  .hero__bg { background-position: center 60%; }
  .hero__h1 { font-size: clamp(52px, 15vw, 92px); }
  .hero__sub { font-size: 16px; }
  .hero__bottom { grid-template-columns: 1fr; gap: 20px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero__cta .btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 14px; white-space: nowrap; }
  .hero__cta .link { align-self: center; }
  .hero__cap { display: none; }
}

/* ============================================================================
   SPEC STRIP
   ============================================================================ */
.strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip__grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.strip__cell { padding: 26px 0 26px 26px; display: flex; flex-direction: column; gap: 8px; border-left: 1px solid var(--line); }
.strip__cell:first-child { border-left: none; padding-left: 0; }
.strip__v { font-family: var(--f-disp); font-size: clamp(20px, 2vw, 28px); font-weight: 800; color: var(--txt); letter-spacing: -0.01em; }
.strip__v small { font-family: var(--f-mono); font-size: 12px; font-weight: 500; color: var(--txt-3); letter-spacing: 0; }
@media (max-width: 900px) {
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .strip__cell { padding: 18px 0 18px 20px; border-top: 1px solid var(--line); }
  .strip__cell:nth-child(odd) { border-left: none; padding-left: 0; }
  .strip__cell:nth-child(-n+2) { border-top: none; }
  .strip__cell:last-child { grid-column: 1/-1; border-left: none; padding-left: 0; }
}

/* ============================================================================
   FLEET — dark rows, crisp framed photos + steel-panel spec card
   ============================================================================ */
.fleet { background: var(--bg); }
.fleet .head { margin-bottom: clamp(48px, 7vw, 96px); }
.fleet__list { display: flex; flex-direction: column; gap: clamp(64px, 9vw, 130px); }

.unit { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px, 4vw, 64px); align-items: stretch; }
.unit--flip { grid-template-columns: 0.9fr 1.1fr; }
.unit--flip .unit__media { order: 2; }

.unit__media { display: flex; flex-direction: column; gap: 12px; }
.unit__big {
  position: relative; width: 100%; aspect-ratio: 16 / 11;
  background-size: cover; background-position: center; background-color: var(--bg-3);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
/* Uniform edge-nest: darkens only the very top/bottom edges so every photo seats
   into the page identically — true color stays in the center (no "filter" look). */
.unit__big::after, .unit__thumb::after, .field__photo::after, .about__photo::after {
  content:""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background: linear-gradient(180deg, rgba(14,15,18,0.22) 0%, rgba(14,15,18,0) 22%, rgba(14,15,18,0) 72%, rgba(14,15,18,0.34) 100%);
}
.unit__strip { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.unit__thumb { position: relative; width: 100%; aspect-ratio: 16 / 10; background-size: cover; background-position: center; background-color: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }

.unit__panel {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
  display: flex; flex-direction: column; justify-content: center;
}
.unit__no { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.unit__no span:first-child { font-family: var(--f-anton); font-size: 40px; color: var(--accent); line-height: 0.8; }
.unit__name { font-family: var(--f-disp); font-weight: 800; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.02; margin-bottom: 12px; }
.unit__line { font-size: 15px; line-height: 1.55; color: var(--txt-2); margin-bottom: 24px; }

.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); margin-bottom: 24px; }
.specs > div { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.specs > div:nth-child(odd) { padding-right: 18px; border-right: 1px solid var(--line); }
.specs > div:nth-child(even) { padding-left: 18px; }
.specs dt { font-family: var(--f-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--txt-3); }
.specs dd { font-family: var(--f-mono); font-size: 13px; font-weight: 600; color: var(--txt); font-variant-numeric: tabular-nums; }
@media (max-width: 480px) {
  .specs { grid-template-columns: 1fr; }
  .specs > div:nth-child(odd) { padding-right: 0; border-right: none; }
  .specs > div:nth-child(even) { padding-left: 0; }
}

.feat { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; margin-bottom: 28px; }
.feat li { position: relative; padding-left: 16px; font-size: 13.5px; line-height: 1.4; color: var(--txt-2); }
.feat li::before { content:""; position: absolute; left: 0; top: 8px; width: 7px; height: 2px; background: var(--accent); }

.unit__foot { margin-top: 4px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--line); }
.price { display: flex; flex-direction: column; gap: 3px; }
.price__v { font-family: var(--f-anton); font-size: 36px; color: var(--txt); line-height: 0.85; }

@media (max-width: 900px) {
  .unit { grid-template-columns: 1fr; gap: 18px; }
  .unit--flip .unit__media { order: 0; }
  .feat { grid-template-columns: 1fr; }
}

/* Fleet photo map */
.unit__big[data-photo="u1-main"] { background-image: url('images/greg/car-hauler-trailer-rental-storm-king-ny.webp'); }
.unit__thumb[data-photo="u1-ramps"] { background-image: url('images/greg/car-hauler-trailer-rental-cold-spring-ny.webp'); }
.unit__thumb[data-photo="u1-box"] { background-image: url('images/greg/car-hauler-trailer-winch-hudson-valley.webp'); }
.unit__big[data-photo="u2-main"] { background-image: url('images/webp/lamar-tilt-deck-hauler-hudson-valley-1.webp'); }
.unit__thumb[data-photo="u2-deck"] { background-image: url('images/webp/lamar-tilt-deck-hauler-deck-poughquag-ny.webp'); }
.unit__thumb[data-photo="u2-hitch"] { background-image: url('images/webp/lamar-tilt-deck-hauler-hitch-poughquag-ny.webp'); }
.unit__big[data-photo="u3-main"] { background-image: url('images/greg/residential-pavers.webp'); background-position: center 60%; }
.unit__thumb[data-photo="u3-doors"] { background-image: url('images/greg/dump-trailer-rental-cold-spring-ny.webp'); }
.unit__thumb[data-photo="u3-bed"] { background-image: url('images/greg/dump-trailer-rental-storm-king-hudson-valley.webp'); }

/* ============================================================================
   RAIL MOMENT — dark, the caboose shot earns full drama here
   ============================================================================ */
.rail { position: relative; min-height: clamp(380px, 52vw, 600px); display: flex; align-items: flex-end; overflow: hidden; }
.rail__photo { position: absolute; inset: 0; background-image: url('images/webp/lamar-dump-trailer-railway-caboose-hudson-valley.webp'); background-size: cover; background-position: center 38%; }
.rail::after { content:""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,15,18,0.92) 0%, rgba(14,15,18,0.35) 45%, rgba(14,15,18,0.15) 100%); }
.rail__overlay { position: relative; z-index: 1; padding-bottom: clamp(40px, 6vw, 72px); }
.rail__txt { font-family: var(--f-anton); font-size: clamp(30px, 5vw, 64px); line-height: 0.95; text-transform: uppercase; color: var(--txt); margin-top: 16px; max-width: 18ch; }
.rail__txt .accent { color: var(--accent); }
.rail__cap { display: block; margin-top: 18px; color: rgba(243,241,236,0.75); }

/* ============================================================================
   FIELD LOG
   ============================================================================ */
.field { background: var(--bg); }
.field__head { display: flex; align-items: baseline; gap: clamp(16px, 3vw, 40px); margin-bottom: clamp(34px, 5vw, 56px); padding-bottom: 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.field__head .eyebrow { white-space: nowrap; }
.field__lead { font-size: clamp(17px, 1.5vw, 22px); line-height: 1.4; color: var(--txt); max-width: 60ch; font-weight: 500; }
.field__muted { color: var(--txt-3); }
.field__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 2.6vw, 34px); }
.field__job { display: flex; flex-direction: column; gap: 16px; }
.field__job .field__cap { gap: 8px; }
.field__photo { position: relative; width: 100%; aspect-ratio: 3 / 2; background-size: cover; background-position: center; background-color: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.field__cap { display: flex; flex-direction: column; gap: 14px; }
.field__cap .label { color: var(--accent); }
.field__desc { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: var(--txt-2); max-width: 40ch; }
.field__more { font-family: var(--f-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-3); margin-top: 4px; }
.field__photo[data-photo="job-tearoff"] { background-image: url('images/greg/job-tearoff.webp'); }
.field__photo[data-photo="job-topsoil"] { background-image: url('images/greg/dump-trailer-topsoil-load-hudson-valley.webp'); }
.field__photo[data-photo="job-dump"] { background-image: url('images/greg/dump-trailer-rental-dumping-poughquag-ny.webp'); }
.field__photo[data-photo="job-equip"] { background-image: url('images/greg/car-hauler-equipment-transport-hudson-valley.webp'); }
.field__photo[data-photo="job-vehicle"] { background-image: url('images/greg/car-hauler-vehicle-transport-hudson-valley.webp'); }
.field__photo[data-photo="job-quarry"] { background-image: url('images/greg/dump-trailer-rental-quarry-hudson-valley.webp'); }
@media (max-width: 980px) { .field__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .field__grid { grid-template-columns: 1fr; } .field__photo { aspect-ratio: 16 / 10; } }

/* ============================================================================
   QUIET SECTION HEAD — used by Field/How/About/Area/FAQ so only Hero + CTA shout
   ============================================================================ */
.qhead { display: flex; align-items: baseline; gap: clamp(16px, 3vw, 40px); margin-bottom: clamp(34px, 5vw, 56px); padding-bottom: 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.qhead .eyebrow { white-space: nowrap; }
.qlead { font-size: clamp(18px, 1.7vw, 26px); line-height: 1.34; color: var(--txt); max-width: 46ch; font-weight: 500; letter-spacing: -0.01em; }

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */
.how { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how__head { display: flex; align-items: baseline; gap: clamp(16px, 3vw, 40px); margin-bottom: clamp(40px, 6vw, 72px); padding-bottom: 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.how__head .eyebrow { white-space: nowrap; }
.how__lead { font-size: clamp(20px, 2.2vw, 34px); line-height: 1.18; color: var(--txt); max-width: 22ch; font-weight: 500; letter-spacing: -0.015em; }
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 52px); list-style: none; }
.how__steps li { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 34px); overflow: hidden; transition: border-color .3s ease; }
.how__steps li::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); }
.how__steps li:hover { border-color: var(--steel); }
.how__no { font-family: var(--f-anton); font-size: 30px; color: var(--accent); }
.how__h3 { font-family: var(--f-disp); font-weight: 800; font-size: clamp(20px, 2vw, 26px); margin: 12px 0 10px; }
.how__steps p { font-size: 15px; line-height: 1.55; color: var(--txt-2); }
@media (max-width: 760px) { .how__steps { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================================
   ABOUT
   ============================================================================ */
.about { background: var(--bg); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about__copy .eyebrow { display: block; margin-bottom: 22px; }
.about__lead { font-family: var(--f-disp); font-weight: 700; font-size: clamp(22px, 2.4vw, 34px); line-height: 1.2; letter-spacing: -0.015em; color: var(--txt); margin-bottom: 22px; max-width: 24ch; }
.about__copy p { color: var(--txt-2); margin-bottom: 18px; max-width: 52ch; }
.about__sign { margin-top: 28px; display: flex; flex-direction: column; gap: 5px; padding-top: 22px; border-top: 1px solid var(--line); }
.about__name { font-family: var(--f-disp); font-weight: 800; font-size: 22px; }
.about__photo { position: relative; width: 100%; aspect-ratio: 4 / 3; background-image: url('images/greg/mainstreet.webp'); background-size: cover; background-position: center; background-color: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 900px) { .about__grid { grid-template-columns: 1fr; gap: 30px; } .about__photo { aspect-ratio: 3/2; } }

/* ============================================================================
   SERVICE AREA
   ============================================================================ */
.area { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.area__head { display: flex; align-items: baseline; gap: clamp(16px, 3vw, 40px); margin-bottom: clamp(34px, 5vw, 56px); padding-bottom: 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.area__head .eyebrow { white-space: nowrap; }
.area__lead { font-size: clamp(18px, 1.9vw, 28px); line-height: 1.25; color: var(--txt); max-width: 30ch; font-weight: 500; letter-spacing: -0.015em; }
.area__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); }
.area__col { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 38px); }
.area__col .head__rule { margin-bottom: 20px; }
.area__note { font-size: 15px; color: var(--txt-2); line-height: 1.55; margin-bottom: 16px; }
.area__towns { display: grid; grid-template-columns: 1fr; }
.area__towns li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.area__towns li span:first-child { font-family: var(--f-disp); font-weight: 700; font-size: 17px; }
@media (max-width: 760px) { .area__grid { grid-template-columns: 1fr; } }

/* ============================================================================
   FAQ
   ============================================================================ */
.faq { background: var(--bg); }
.faq__head { display: flex; align-items: baseline; gap: clamp(16px, 3vw, 40px); margin-bottom: clamp(36px, 5vw, 56px); padding-bottom: 22px; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.faq__head .eyebrow { white-space: nowrap; }
.faq__lead { font-size: clamp(18px, 1.9vw, 28px); line-height: 1.25; color: var(--txt); max-width: 30ch; font-weight: 500; letter-spacing: -0.015em; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(20px, 4vw, 64px); padding: clamp(22px, 3vw, 34px) 0; border-bottom: 1px solid var(--line); }
.faq__q { font-family: var(--f-disp); font-weight: 700; font-size: clamp(18px, 1.8vw, 23px); }
.faq__a { font-size: 16px; line-height: 1.6; color: var(--txt-2); }
@media (max-width: 760px) { .faq__item { grid-template-columns: 1fr; gap: 10px; } }

/* ============================================================================
   CLOSING CTA
   ============================================================================ */
.cta { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(72px, 9vw, 128px) 0; text-align: center; }
.cta__inner { display: flex; flex-direction: column; align-items: center; }
.cta__h2 { font-family: var(--f-anton); font-weight: 400; font-size: clamp(56px, 10vw, 140px); text-transform: uppercase; line-height: 0.86; }
.cta__h2 .accent { color: var(--accent); }
.cta__sub { font-family: var(--f-mono); font-size: 13px; letter-spacing: 0.08em; color: var(--txt-3); margin-top: 20px; }
.cta__actions { margin-top: 36px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ============================================================================
   INTERACTION POLISH — subtle, considered hover states (agency detail)
   ============================================================================ */
.unit__big, .unit__thumb, .field__photo, .about__photo {
  transition: transform .4s cubic-bezier(.22,.61,.2,1), border-color .3s ease;
}
.unit__media:hover .unit__big { transform: translateY(-3px); border-color: var(--steel); }
.field__job:hover .field__photo { transform: translateY(-3px); border-color: var(--steel); }
.unit__panel { transition: border-color .3s ease; }
.unit:hover .unit__panel { border-color: var(--steel); }
.area__col { transition: border-color .3s ease, transform .4s cubic-bezier(.22,.61,.2,1); }
.area__col:hover { border-color: var(--steel); }
.strip__cell { transition: background .3s ease; }
@media (hover: none) {
  .unit__media:hover .unit__big, .field__job:hover .field__photo, .unit:hover .unit__panel { transform: none; }
}

/* ============================================================================
   JUNK REMOVAL PAGE + SUCCESS — v4 dark system
   ============================================================================ */
.jr { padding: clamp(48px, 7vw, 104px) 0 clamp(64px, 8vw, 120px); }
.jr__head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.jr__eyebrow { font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.jr__title { font-family: var(--f-anton); font-weight: 400; font-size: clamp(40px, 7vw, 88px); line-height: 0.92; text-transform: uppercase; letter-spacing: -0.01em; margin-top: 18px; }
.jr__title .accent { color: var(--accent); }
.jr__lead { margin-top: 20px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: var(--txt-2); max-width: 60ch; }

.jr__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }

/* Form — dark steel fields */
.jform { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); }
.jform__hp { position: absolute; left: -9999px; }
.jform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.jfield { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.jfield label { font-family: var(--f-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--txt-2); }
.jfield .req { color: var(--accent); }
.jfield input, .jfield textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--steel); border-radius: var(--radius);
  color: var(--txt); font-family: var(--f-body); font-size: 16px; padding: 13px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.jfield input::placeholder, .jfield textarea::placeholder { color: var(--txt-3); }
.jfield input:focus, .jfield textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,92,40,0.18); }
.jfield textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.jform__submit { margin-top: 8px; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* Aside — what we haul */
.jr__aside { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); }
.jr__aside h3 { font-family: var(--f-disp); font-weight: 800; font-size: 20px; margin-bottom: 18px; }
.jr__list { display: flex; flex-direction: column; gap: 0; margin-bottom: 22px; }
.jr__list li { position: relative; padding: 11px 0 11px 18px; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--txt-2); }
.jr__list li::before { content:""; position: absolute; left: 0; top: 18px; width: 7px; height: 2px; background: var(--accent); }
.jr__note { font-size: 14px; line-height: 1.6; color: var(--txt-3); }
.jr__note a { color: var(--txt); font-weight: 600; border-bottom: 1.5px solid var(--accent); }

@media (max-width: 820px) { .jr__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .jform__row { grid-template-columns: 1fr; gap: 0; } }

/* Success / thank-you page */
.thanks { min-height: 64vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: clamp(64px, 10vw, 140px) var(--gutter); }
.thanks__mark { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; color: var(--accent); border: 2px solid var(--accent); margin-bottom: 26px; }
.thanks h1 { font-family: var(--f-anton); font-weight: 400; font-size: clamp(44px, 8vw, 92px); text-transform: uppercase; line-height: 0.9; }
.thanks p { margin: 22px 0 32px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: var(--txt-2); max-width: 52ch; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.ftr { background: var(--bg); border-top: 1px solid var(--line); padding-top: clamp(56px, 7vw, 88px); }
.ftr__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: clamp(48px, 6vw, 72px); }
.ftr__logo { height: 30px; margin-bottom: 18px; }
.ftr__brand p { font-size: 14px; line-height: 1.55; color: var(--txt-3); max-width: 40ch; }
.ftr__col { display: flex; flex-direction: column; gap: 10px; }
.ftr__col .label { margin-bottom: 6px; }
.ftr__col a, .ftr__col span:not(.label) { font-size: 14px; color: var(--txt-2); }
.ftr__col a { font-weight: 500; transition: color .15s ease; }
.ftr__col a:hover { color: var(--accent); }
.ftr__base { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; padding-bottom: 28px; border-top: 1px solid var(--line); }
.ftr__base a { color: var(--txt); }
.ftr__base a:hover { color: var(--accent); }
@media (max-width: 760px) { .ftr__grid { grid-template-columns: 1fr 1fr; } .ftr__base { flex-direction: column; align-items: flex-start; } }

/* Promoted section leads: rendered as semantic <h2>, body-font appearance preserved (no visual change) */
.field__lead, .how__lead, .area__lead, .faq__lead { font-family: var(--f-body); }
.field__lead, .how__lead { letter-spacing: normal; }

/* ── Rental Accessories page ───────────────────────────────── */
.acc { padding-top: clamp(118px, 15vh, 188px); padding-bottom: clamp(64px, 7.5vw, 116px); }
.acc__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.acc__eyebrow { font-family: var(--f-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.acc__title { font-family: var(--f-anton); font-weight: 400; font-size: clamp(40px, 7vw, 84px); line-height: 0.95; text-transform: uppercase; letter-spacing: 0.01em; margin: 18px 0 20px; }
.acc__lead { font-size: clamp(16px, 1.5vw, 20px); line-height: 1.5; color: var(--txt-2); max-width: 56ch; }
.acc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 30px); }
.acc__card { display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: border-color .3s ease, transform .4s cubic-bezier(.22,.61,.2,1); }
.acc__card:hover { border-color: var(--steel); transform: translateY(-3px); }
.acc__photo { aspect-ratio: 4 / 3; background: #f3f4f6; background-size: contain; background-repeat: no-repeat; background-position: center; }
.acc__photo[data-acc="straps"] { background-image: url('images/greg/car-tie-down-straps-rental-hudson-valley.webp'); }
.acc__photo[data-acc="binders"] { background-image: url('images/greg/chain-binders-rental-hudson-valley.webp'); }
.acc__photo[data-acc="hitch"] { background-image: url('images/greg/adjustable-drop-hitch-rental-hudson-valley.webp'); }
.acc__photo--text { background: var(--bg-3); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); }
.acc__photo--text span { font-family: var(--f-anton); font-size: clamp(38px, 4.6vw, 60px); text-transform: uppercase; letter-spacing: 0.03em; color: var(--steel); }
.acc__body { padding: clamp(22px, 2.6vw, 30px); display: flex; flex-direction: column; gap: 10px; }
.acc__body .label { color: var(--accent); }
.acc__name { font-family: var(--f-disp); font-weight: 800; font-size: clamp(20px, 2vw, 26px); }
.acc__body p { font-size: 15px; line-height: 1.55; color: var(--txt-2); }
.acc__cta { margin-top: clamp(34px, 4vw, 52px); padding: clamp(26px, 3vw, 40px); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); border-top: 3px solid var(--accent); display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.acc__cta p { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.5; color: var(--txt); max-width: 62ch; }
.acc__cta a:not(.btn) { color: var(--accent); }
.acc__cta-btns { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
@media (max-width: 860px) { .acc__grid { grid-template-columns: 1fr; } .acc__photo { aspect-ratio: 16 / 9; } }

/* ── Service-area map ──────────────────────────────────────── */
.area__map { margin-top: clamp(28px, 3.5vw, 48px); }
.area__mapframe { margin-top: 16px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21 / 7; background: var(--bg-3); }
.area__mapframe iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 600px) { .area__mapframe { aspect-ratio: 4 / 3; } }

/* v23 · SEO heading retrofit — badge/eyebrow elements promoted to <h1> keep their exact styling */
h1.badge, h1.jr__eyebrow, h1.acc__eyebrow { margin: 0; }
