/* ============================================================
   Iron Horse Rentals — styles.css
   Western Industrial Theme
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Warm dark backgrounds */
  --bg:       #0d0c08;
  --bg2:      #131008;
  --bg3:      #1a1508;
  --bg4:      #201a0a;

  /* Amber / copper accent */
  --accent:   #c47818;
  --accent-l: #d48c28;
  --accent-d: #8a5210;

  /* Parchment (fleet section) */
  --parchment:  #c8b882;
  --parchment2: #baa86e;
  --parchment3: #d4c898;

  /* Text */
  --text:       #f0e6c8;
  --text2:      #7a6a50;
  --text-p:     #1c1608;   /* text on parchment */
  --text2-p:    #5a4e32;   /* secondary text on parchment */
  --text-head:  #f4ecd4;

  /* Borders */
  --border:   #2a2010;
  --border-a: rgba(196,120,24,0.30);

  /* Shadows */
  --shadow:    0 8px 48px rgba(0,0,0,0.8);

  /* Typography */
  --ff-display: 'Oswald', 'Impact', Arial Narrow, sans-serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h: 88px;
}

/* ── RESET ── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-l); }

/* ── LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
section { padding: 84px 0; }

/* ── SHARED TYPOGRAPHY ── */
.label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}
.h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-head);
  margin-bottom: 14px;
}
.h2 em { color: var(--accent); font-style: normal; }
.sub {
  font-family: var(--ff-body);
  font-size: .92rem;
  color: var(--text2);
  line-height: 1.8;
  max-width: 520px;
}
.rule {
  width: 52px;
  height: 3px;
  background: var(--accent);
  margin: 16px 0;
}

/* ── SECTION HEADING WITH STARS ── */
.star-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.star-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-p);
  white-space: nowrap;
}
.star-head .star {
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
.star-head .line {
  flex: 1;
  height: 1px;
  background: var(--parchment2);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--ff-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: #0d0c08;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-l);
  border-color: var(--accent-l);
  color: #0d0c08;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,120,24,.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(240,230,200,.35);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-dark {
  background: rgba(13,12,8,.9);
  color: var(--text-head);
  border-color: rgba(240,230,200,.2);
}
.btn-dark:hover {
  background: var(--bg3);
  color: var(--accent);
  border-color: var(--border-a);
}

/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,9,5,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--border-a);
  box-shadow: 0 2px 24px rgba(0,0,0,.8);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 16px;
}

/* LOGO */
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 76px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
  transition: filter .2s;
}
.nav-logo:hover img { filter: drop-shadow(0 2px 16px rgba(196,120,24,.4)); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links li.active > a { color: var(--accent); }

/* Dropdown */
.has-dd > a::after { content: ' ▾'; font-size: .6em; opacity: .7; }
.dropdown {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  min-width: 220px;
  background: #131008;
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  padding: 6px 0;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s;
}
.has-dd:hover .dropdown,
.has-dd.open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  padding: 10px 18px;
  font-size: .76rem;
  text-transform: none;
  letter-spacing: .02em;
  color: var(--text2);
  border-left: 2px solid transparent;
}
.dropdown a:hover { color: var(--accent); border-left-color: var(--accent); background: rgba(196,120,24,.06); }

/* CTA side */
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0d0c08;
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 11px 18px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s;
  text-decoration: none;
}
.nav-phone-btn:hover { background: var(--accent-l); color: #0d0c08; }
.nav-phone-btn .ph-icon { font-size: 1rem; }

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: all .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(10,9,5,.94) 0%,
    rgba(10,9,5,.82) 45%,
    rgba(10,9,5,.38) 75%,
    rgba(10,9,5,.15) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 620px; }
.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 700;
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--text-head);
  margin-bottom: 24px;
}
.hero-title em {
  color: var(--accent);
  font-style: normal;
  display: block;
}
.hero-desc {
  font-family: var(--ff-body);
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.78;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btns .btn { gap: 12px; }
.btn-arrow::after { content: '→'; font-size: 1.1em; }

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: stretch;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(196,120,24,.22);
  gap: 0;
}
.hero-stat { padding: 0 28px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(196,120,24,.2); }
.hero-stat .n {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: .02em;
}
.hero-stat .l {
  font-family: var(--ff-body);
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text2);
  margin-top: 5px;
}

/* ══════════════════════════════════════════════
   FEATURE STRIP
   ══════════════════════════════════════════════ */
.features { padding: 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feat-card {
  background: var(--bg2);
  padding: 36px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background .22s;
}
.feat-card:hover { background: var(--bg3); }
.feat-icon-wrap {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-a);
  color: var(--accent);
}
.feat-icon-wrap svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.feat-body {}
.feat-title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-head);
  margin-bottom: 6px;
}
.feat-desc {
  font-family: var(--ff-body);
  font-size: .81rem;
  color: var(--text2);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   FLEET SECTION (PARCHMENT)
   ══════════════════════════════════════════════ */
.fleet-sec {
  background: var(--parchment);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(0,0,0,.03) 30px, rgba(0,0,0,.03) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(0,0,0,.02) 30px, rgba(0,0,0,.02) 31px);
}
.fleet-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.fleet-head-row .view-all {
  font-family: var(--ff-body);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s;
}
.fleet-head-row .view-all:hover { gap: 14px; color: var(--accent); }
.fleet-head-row .view-all::after { content: '→'; font-size: 1.05em; }

.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* Fleet overlay card */
.fc {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.fc-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.fc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.fc:hover .fc-img img { transform: scale(1.06); }
.fc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,9,5,.90) 0%, rgba(10,9,5,.35) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 18px 18px;
  transition: background .3s;
}
.fc:hover .fc-overlay { background: linear-gradient(to top, rgba(10,9,5,.95) 0%, rgba(10,9,5,.45) 60%, rgba(10,9,5,.1) 100%); }
.fc-info {}
.fc-name {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  display: block;
  margin-bottom: 2px;
}
.fc-size {
  font-family: var(--ff-body);
  font-size: .72rem;
  letter-spacing: .06em;
  color: rgba(255,255,255,.6);
}
.fc-btn {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #0d0c08;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.fc:hover .fc-btn { background: var(--accent-l); transform: scale(1.08); }

/* ══════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #9a5e0e 0%, var(--accent) 40%, #c88428 70%, #9a6010 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 4px, rgba(255,255,255,.03) 4px, rgba(255,255,255,.04) 5px);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #0d0c08;
  margin-bottom: 10px;
  position: relative;
}
.cta-banner p {
  font-family: var(--ff-body);
  color: rgba(0,0,0,.6);
  font-size: .93rem;
  margin-bottom: 26px;
  position: relative;
}
.cta-banner .phone-big {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: #0d0c08;
  display: block;
  margin: 0 0 28px;
  line-height: 1;
  position: relative;
}
.cta-banner .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ══════════════════════════════════════════════
   PAGE HERO (inner pages)
   ══════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,9,5,.98) 0%, rgba(10,9,5,.7) 60%, transparent 100%);
  z-index: 1;
}
.page-hero-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  overflow: hidden;
}
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--bg2) 0%, transparent 60%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .label { margin-bottom: 10px; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-head);
  margin-bottom: 14px;
}
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p {
  font-family: var(--ff-body);
  font-size: .92rem;
  color: var(--text2);
  max-width: 500px;
  line-height: 1.78;
}

/* ══════════════════════════════════════════════
   TRAILER DETAIL
   ══════════════════════════════════════════════ */
.trailers-list { display: flex; flex-direction: column; gap: 2px; }
.td {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg2);
  transition: border-color .25s;
}
.td:hover { border-color: var(--border-a); }
.td:nth-child(even) { direction: rtl; }
.td:nth-child(even) > * { direction: ltr; }
.td-img { position: relative; overflow: hidden; min-height: 360px; }
.td-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.td:hover .td-img img { transform: scale(1.03); }
.td-body { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.td-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196,120,24,.1);
  border: 1px solid rgba(196,120,24,.25);
  padding: 4px 12px;
  margin-bottom: 14px;
}
.td-name {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-head);
  margin-bottom: 6px;
  line-height: 1.05;
}
.td-price {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
  line-height: 1;
  letter-spacing: .02em;
}
.td-price small { font-family: var(--ff-body); font-size: .78rem; color: var(--text2); font-weight: 400; }
.td-desc { font-family: var(--ff-body); font-size: .88rem; color: var(--text2); line-height: 1.78; margin-bottom: 22px; }
.td-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 26px; }
.spec { display: flex; align-items: flex-start; gap: 8px; font-family: var(--ff-body); font-size: .81rem; color: var(--text2); }
.spec::before { content: '✦'; color: var(--accent); font-size: .58rem; margin-top: 4px; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   RESERVATION FORM
   ══════════════════════════════════════════════ */
.res-sec { background: var(--bg2); }
.res-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start; }
.res-info h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text-head);
  margin-bottom: 14px;
}
.res-info p { font-family: var(--ff-body); font-size: .87rem; color: var(--text2); line-height: 1.78; margin-bottom: 20px; }
.res-contact a {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-size: .92rem; font-weight: 600;
  color: var(--text); margin-bottom: 10px; transition: color .2s;
}
.res-contact a:hover { color: var(--accent); }

/* FORMS */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg.full { grid-column: 1/-1; }
.fg label {
  font-family: var(--ff-body);
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}
.fg input, .fg select, .fg textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: .88rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a6a50' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; cursor: pointer;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--accent); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--text2); opacity: .45; }
.fg select option { background: #131008; }
.fg textarea { resize: vertical; min-height: 90px; }
.form-note { font-family: var(--ff-body); font-size: .73rem; color: var(--text2); margin-top: 10px; }
.form-success {
  display: none; margin-top: 14px; padding: 16px 20px;
  background: rgba(196,120,24,.1); border: 1px solid var(--border-a);
  color: var(--accent); font-family: var(--ff-body); font-size: .87rem; text-align: center;
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; margin-top: 48px; }
.step-n {
  width: 46px; height: 46px;
  background: var(--accent); color: #0d0c08;
  font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(196,120,24,.35);
}
.step-title {
  font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--text-head); margin-bottom: 8px;
}
.step-desc { font-family: var(--ff-body); font-size: .83rem; color: var(--text2); line-height: 1.7; }

/* ── REQUIREMENTS ── */
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.req-card { background: var(--bg3); border: 1px solid var(--border); padding: 26px; }
.req-card h3 {
  font-family: var(--ff-display); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--text-head); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.req-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.req-list li { display: flex; gap: 10px; font-family: var(--ff-body); font-size: .84rem; color: var(--text2); line-height: 1.55; }
.req-list li::before { content: '✦'; color: var(--accent); font-size: .58rem; flex-shrink: 0; margin-top: 4px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border: 1px solid var(--border); border-bottom: none; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  color: var(--text); font-family: var(--ff-body); font-size: .92rem; font-weight: 500;
  text-align: left; gap: 14px; transition: background .2s;
}
.faq-q:hover { background: rgba(196,120,24,.04); }
.faq-q span { flex: 1; }
.faq-icon {
  width: 22px; height: 22px; border: 1px solid var(--border-a);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--accent); flex-shrink: 0; transition: transform .25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .32s ease; }
.faq-a-in {
  padding: 0 22px 18px; padding-top: 16px;
  font-family: var(--ff-body); font-size: .85rem; color: var(--text2); line-height: 1.78;
  border-top: 1px solid var(--border);
}

/* ── T&C ── */
.tc-box {
  background: var(--bg3); border: 1px solid var(--border); border-left: 3px solid var(--accent);
  padding: 30px 34px; margin-top: 36px;
}
.tc-box h3 {
  font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--text-head); margin-bottom: 18px;
}
.tc-list { list-style: none; counter-reset: tc; display: flex; flex-direction: column; gap: 12px; }
.tc-list li { display: flex; gap: 14px; font-family: var(--ff-body); font-size: .83rem; color: var(--text2); line-height: 1.65; counter-increment: tc; }
.tc-list li::before {
  content: counter(tc); min-width: 22px; height: 22px;
  background: rgba(196,120,24,.15); color: var(--accent); font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════ */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-wrap::after {
  content: ''; position: absolute; bottom: -14px; right: -14px;
  width: 55%; height: 55%; border: 2px solid var(--accent); z-index: -1;
}
.about-lead { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; color: var(--text-head); line-height: 1.5; margin-bottom: 18px; }
.about-p { font-family: var(--ff-body); font-size: .88rem; color: var(--text2); line-height: 1.82; margin-bottom: 14px; }

.vals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.val-card { padding: 30px; background: var(--bg2); border: 1px solid var(--border); border-top: 3px solid var(--accent); }
.val-icon { font-size: 1.8rem; margin-bottom: 14px; }
.val-title { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-head); margin-bottom: 9px; }
.val-desc { font-family: var(--ff-body); font-size: .83rem; color: var(--text2); line-height: 1.7; }

.photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 44px; }
.photo-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: grayscale(15%) contrast(1.08) brightness(.92); transition: filter .3s, transform .3s; }
.photo-grid img:hover { filter: grayscale(0) contrast(1.05); transform: scale(1.02); }
.photo-grid .span2 { grid-column: span 2; }
.photo-grid .span2 img { aspect-ratio: 16/9; }

/* ══════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.c-card { background: var(--bg2); border: 1px solid var(--border); padding: 20px; display: flex; gap: 14px; transition: border-color .2s; }
.c-card:hover { border-color: var(--border-a); }
.c-icon { width: 42px; height: 42px; background: rgba(196,120,24,.1); border: 1px solid rgba(196,120,24,.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.c-card h3 { font-family: var(--ff-body); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.c-card p, .c-card a { font-family: var(--ff-body); font-size: .92rem; color: var(--text); }
.c-card small { display: block; font-family: var(--ff-body); font-size: .74rem; color: var(--text2); margin-top: 3px; }
.phone-box {
  background: linear-gradient(135deg, #9a5e0e 0%, var(--accent) 50%, #a06010 100%);
  padding: 26px 22px; text-align: center;
}
.phone-box .pb-label { font-family: var(--ff-body); font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(0,0,0,.6); margin-bottom: 6px; }
.phone-box a { font-family: var(--ff-display); font-size: 2.1rem; font-weight: 700; letter-spacing: .04em; color: #0d0c08; display: block; line-height: 1.1; }
.phone-box small { font-family: var(--ff-body); font-size: .74rem; color: rgba(0,0,0,.55); display: block; margin-top: 5px; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.site-footer { background: #080702; border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid var(--border); }
.footer-brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
}
.footer-brand p { font-family: var(--ff-body); font-size: .83rem; color: var(--text2); line-height: 1.78; margin-bottom: 20px; }
.footer-tagline {
  font-family: var(--ff-display);
  font-size: .88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text2);
  font-style: italic;
  margin-bottom: 16px;
}
.footer-h { font-family: var(--ff-body); font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-family: var(--ff-body); font-size: .83rem; color: var(--text2); transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--text); padding-left: 4px; }
.footer-ci { display: flex; align-items: flex-start; gap: 9px; font-family: var(--ff-body); font-size: .83rem; color: var(--text2); margin-bottom: 10px; }
.footer-ci a { color: var(--text2); }
.footer-ci a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: center; align-items: center; padding: 18px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom p { font-family: var(--ff-body); font-size: .73rem; color: var(--text2); text-align: center; }

/* ── FLOAT PHONE ── */
.float-phone {
  display: none; position: fixed; bottom: 22px; right: 22px; z-index: 999;
  background: var(--accent); color: #0d0c08;
  width: 54px; height: 54px; border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 24px rgba(196,120,24,.55);
  transition: transform .2s;
}
.float-phone:hover { transform: scale(1.1); color: #0d0c08; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
  .td { grid-template-columns: 1fr; direction: ltr !important; }
  .td:nth-child(even) > * { direction: ltr; }
  .td-img { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .about-story { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap::after { display: none; }
  .res-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-logo img { height: 56px; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,9,5,.98); border-bottom: 1px solid var(--border);
    padding: 12px 0; gap: 0; z-index: 999;
  }
  .nav-links.open a { padding: 12px 22px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: #1a1508; border: none; border-left: 2px solid var(--accent); margin-left: 22px; display: none; }
  .has-dd.open .dropdown { display: block; }
  .fleet-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .fleet-head-row { flex-direction: column; align-items: flex-start; }
  .td-body { padding: 28px 22px; }
  .td-specs { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid .span2 { grid-column: span 2; }
  .float-phone { display: flex; }
  .page-hero-img { display: none; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(196,120,24,.2); padding-top: 16px; }
  .feat-card { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid .span2 { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .nav-logo img { height: 48px; }
  .hero-bg img { object-position: 65% center; }
}

/* ══════════════════════════════════════════════
   TRIONN-INSPIRED ANIMATION SYSTEM
   ══════════════════════════════════════════════ */

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--accent);
  z-index: 2000; pointer-events: none;
  transition: width .05s linear;
}

/* ── PAGE LOADER ── */
.page-loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .75s cubic-bezier(0.4, 0, 0.2, 1), visibility .75s ease;
}
.page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }

/* ── Loader scene ── */
.loader-scene {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
}

/* Top amber line grows outward from center */
.loader-line-top {
  width: 0; height: 1px;
  background: var(--accent);
  margin-bottom: 28px;
  animation: ld-hline .3s .08s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes ld-hline { to { width: 88px; } }

/* Logo clip-rise: logo rises up from below the container edge */
.loader-logo-wrap {
  overflow: hidden;
  height: 84px;
  display: flex; align-items: flex-start;
  position: relative;
}
.loader-logo {
  height: 84px; width: auto; display: block;
  transform: translateY(100%);
  filter: drop-shadow(0 4px 20px rgba(196,120,24,.35));
  animation: ld-rise .5s .2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform;
}
@keyframes ld-rise { to { transform: translateY(0); } }

/* Shine sweep across logo after rise */
.loader-logo-wrap::after {
  content: '';
  position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,220,120,.18) 50%, transparent 80%);
  animation: ld-shine .5s .75s ease forwards;
  pointer-events: none;
}
@keyframes ld-shine { to { left: 160%; } }

/* Bottom divider line */
.loader-line-bottom {
  width: 0; height: 1px;
  background: var(--border-a);
  margin-top: 20px; margin-bottom: 14px;
  animation: ld-hline .3s .52s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Wordmark — blurs in with wide letter-spacing */
.loader-word {
  font-family: var(--ff-display);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--text-head);
  padding-right: .45em;
  opacity: 0; filter: blur(6px);
  animation: ld-word .38s .56s ease forwards;
}
@keyframes ld-word {
  from { opacity: 0; filter: blur(6px); letter-spacing: .7em; }
  to   { opacity: 1; filter: blur(0);   letter-spacing: .45em; }
}

/* City label in amber */
.loader-city {
  font-family: var(--ff-body);
  font-size: .57rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--accent);
  margin-top: 5px;
  opacity: 0; transform: translateY(5px);
  animation: ld-city .28s .72s ease forwards;
}
@keyframes ld-city {
  to { opacity: 1; transform: translateY(0); }
}

/* Progress bar */
.loader-bar-wrap {
  width: 88px; height: 1px;
  background: var(--border);
  margin-top: 22px; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0%;
  background: var(--accent);
  animation: ld-bar .85s .1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes ld-bar { to { width: 100%; } }

/* ── CUSTOM CURSOR ── */
@media (pointer: fine) {
  body, a, button, [role="button"] { cursor: none !important; }
}
.c-ring {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(196,120,24,.65);
  border-radius: 50%; pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .22s, height .22s, border-color .22s, background .18s;
}
.c-dot {
  position: fixed; top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
}
.c-ring.on-link {
  width: 52px; height: 52px;
  background: rgba(196,120,24,.07);
  border-color: var(--accent);
}

/* ── MARQUEE TICKER ── */
.marquee-strip {
  overflow: hidden;
  background: var(--bg4);
  border-top: 1px solid var(--border-a);
  border-bottom: 1px solid var(--border-a);
}
.marquee-track {
  display: flex;
  width: fit-content;
  animation: mq-scroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.m-item {
  display: inline-flex; align-items: center;
  padding: 24px 32px;
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(240,230,200,.55);
  white-space: nowrap; flex-shrink: 0;
  transition: color .2s;
}
.m-item:hover { color: var(--text); }
.m-sep { color: var(--accent); padding: 0 6px; font-size: .8em; opacity: .9; }
@keyframes mq-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SPLIT TEXT LINE REVEAL ── */
.t-line {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}
.t-inner {
  display: block;
  transform: translateY(108%);
  transition: transform .9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.t-line:nth-child(2) .t-inner { transition-delay: .13s; }
.t-line:nth-child(3) .t-inner { transition-delay: .26s; }
.hero-title .t-line { margin-bottom: .06em; }

/* Trigger class – parent gets .txt-revealed */
.txt-revealed .t-inner { transform: translateY(0); }

/* Amber line in hero */
.t-inner.amber { color: var(--accent); font-style: normal; }

/* ── FADE-UP UTILITY ── */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.is-in { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .22s; }
.fade-up.d3 { transition-delay: .34s; }
.fade-up.d4 { transition-delay: .46s; }

/* ── CARD STAGGER (existing cards get fade animation) ── */
.feat-card,
.step-item,
.val-card,
.req-card {
  opacity: 0;
  transform: translateY(22px);
}
.feat-card   { transition: background .22s, opacity .6s ease, transform .6s ease; }
.step-item,
.val-card,
.req-card    { transition: opacity .6s ease, transform .6s ease; }

.feat-card.is-in,
.step-item.is-in,
.val-card.is-in,
.req-card.is-in { opacity: 1; transform: translateY(0); }

/* .td and .fc keep their own transitions; JS just adds opacity */
.td { opacity: 0; transform: translateY(18px); transition: border-color .25s, opacity .65s ease, transform .65s ease; }
.td.is-in { opacity: 1; transform: translateY(0); }

.fc { opacity: 0; }
.fc.is-in { opacity: 1; transition: opacity .5s ease; }

.c-card { opacity: 0; transform: translateY(20px); transition: border-color .2s, opacity .6s ease, transform .6s ease; }
.c-card.is-in { opacity: 1; transform: translateY(0); }

/* ── HERO PARALLAX ── */
.hero-bg img { will-change: transform; transform: scale(1.08); }

/* ── LARGE BREAKOUT TEXT (Trionn section feel) ── */
.breakout-text {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.0;
  color: var(--text-head);
}
.breakout-text em { color: var(--accent); font-style: normal; }
