/* ============================================================
   ULTIMATE LIFT — Modern Industrial Redesign
   Brand language: safety red + steel black + diamond-plate
   ============================================================ */

:root {
  /* Brand */
  --red:        #E11D2A;
  --red-600:    #C5121E;
  --red-700:    #A30F18;
  --amber:      #F7941E;   /* forklift / pallet-jack orange accent */

  /* Steel neutrals */
  --ink:        #0B0C0F;
  --steel-900:  #111319;
  --steel-850:  #161922;
  --steel-800:  #1C2029;
  --steel-700:  #272C38;
  --steel-600:  #3A4150;
  --silver:     #C7CCD6;

  /* Light surfaces */
  --paper:      #F4F5F7;
  --paper-2:    #ECEEF1;
  --white:      #FFFFFF;
  --text:       #14161B;
  --muted:      #5B616E;
  --line:       #E2E4E9;

  /* System */
  --radius:     14px;
  --radius-sm:  10px;
  --shadow:     0 10px 30px rgba(11, 12, 15, .10);
  --shadow-lg:  0 24px 60px rgba(11, 12, 15, .22);
  --ring:       0 0 0 3px rgba(225, 29, 42, .35);

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; letter-spacing: .2px; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Icons ---------- */
.ico, .ico-sm, .card-ico svg, .why-ico svg, .contact-ico svg {
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.ico { width: 20px; height: 20px; }
.ico-sm { width: 17px; height: 17px; stroke-width: 2.4; }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  letter-spacing: .4px; text-transform: uppercase;
  padding: 13px 22px; border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: transform .12s var(--ease), background .18s var(--ease), color .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(225,29,42,.30); }
.btn-primary:hover { background: var(--red-600); box-shadow: 0 12px 26px rgba(225,29,42,.42); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--steel-800); }

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

/* On light sections, ghost needs dark text */
.section .btn-ghost { color: var(--text); border-color: var(--line); }
.section .btn-ghost:hover { border-color: var(--red); color: var(--red); background: rgba(225,29,42,.04); }
.section-dark .btn-ghost, .section-contact .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.section-dark .btn-ghost:hover, .section-contact .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(11,12,15,.10); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  height: 46px; width: auto; display: block; flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(11, 12, 15, .28));
  transition: transform .2s var(--ease);
}
.brand:hover .brand-mark { transform: scale(1.04); }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: 19px; letter-spacing: .4px; color: var(--ink); }
.brand-sub { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.main-nav { display: flex; gap: 6px; margin-left: auto; }
.main-nav a {
  font-family: var(--font-display); font-weight: 500; font-size: 15px; letter-spacing: .5px; text-transform: uppercase;
  color: var(--text); padding: 9px 13px; border-radius: 8px; position: relative;
  transition: color .15s var(--ease), background .15s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
}
.main-nav a:hover { color: var(--red); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-call { flex-shrink: 0; }
.nav-toggle { display: none; }

.mobile-nav { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding-bottom: clamp(52px, 6vw, 80px); }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(225,29,42,.20), transparent 60%),
    radial-gradient(800px 500px at 0% 110%, rgba(247,148,30,.10), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.022) 0 2px, transparent 2px 16px),
    linear-gradient(180deg, #0B0C0F, #14171F);
}
.hero::after { /* red baseline accent */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; z-index: 2;
  background: linear-gradient(90deg, var(--red), var(--amber));
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(40px, 6vw, 72px);
}

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-bottom: 20px; }
.eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(225,29,42,.22); }

.hero-title { font-size: clamp(40px, 6.4vw, 78px); text-transform: uppercase; letter-spacing: -.5px; }
.hero-title .hl { color: var(--red); }
.hero-lead { font-size: clamp(17px, 2vw, 20px); color: #C4C8D2; max-width: 30ch; margin-top: 22px; line-height: 1.55; }

.tag-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 26px 0 30px; }
.tag-pills li {
  font-family: var(--font-display); font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; padding: 7px 15px; border: 1.5px solid rgba(255,255,255,.18); border-radius: 999px;
  background: rgba(255,255,255,.04);
}
.tag-pills li:nth-child(odd) { border-color: rgba(225,29,42,.5); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 28px; color: #AeB4C0; font-size: 14px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .ico-sm { color: var(--amber); }

.hero-art { position: relative; }
.hero-plate {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 3px solid var(--steel-700);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(0,0,0,.3);
  transform: rotate(-1.4deg);
  transition: transform .4s var(--ease);
}
.hero-art:hover .hero-plate { transform: rotate(0deg); }
.hero-plate::before { /* corner bolt accents via gradient frame */
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.06);
  border-radius: 16px;
}
.hero-plate img { width: 100%; }

/* Stats band */
.stats {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--steel-700); border: 1px solid var(--steel-700);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.stat { background: var(--steel-850); padding: 22px 24px; text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.4vw, 38px); color: var(--red); line-height: 1; }
.stat-label { display: block; margin-top: 7px; font-size: 13px; letter-spacing: .4px; color: var(--silver); text-transform: uppercase; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: clamp(72px, 9vw, 116px) 0; position: relative; }
.section-dark { background: var(--steel-900); color: #fff; }
.section-accent { background: var(--paper); }
.section + .section { } /* keep */

.section-head { max-width: 660px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.kicker { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.kicker-light { color: var(--amber); }
.section-head h2, .section h2 { font-size: clamp(30px, 4.4vw, 50px); text-transform: uppercase; letter-spacing: -.3px; }
.section-sub { margin-top: 16px; color: var(--muted); font-size: clamp(16px, 1.6vw, 19px); }
.section-sub.light { color: #B9BEC9; }

/* ---------- Cards (generic) ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card-ico {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--ink), var(--steel-700)); color: #fff; margin-bottom: 18px;
  border: 1px solid var(--steel-700);
}
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 23px; text-transform: uppercase; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 15.5px; }

/* ---------- Services grid ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; overflow: hidden; }
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--red);
  transform: scaleY(0); transform-origin: top; transition: transform .25s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #d6d9e0; }
.service-card:hover::before { transform: scaleY(1); }
.card-link { display: inline-block; margin-top: 16px; font-family: var(--font-display); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; font-size: 14px; color: var(--red); transition: gap .2s; }
.card-link:hover { color: var(--red-700); letter-spacing: 1px; }
.card-cta { background: linear-gradient(150deg, var(--ink), var(--steel-800)); color: #fff; border-color: var(--steel-700); display: flex; flex-direction: column; justify-content: center; }
.card-cta h3 { color: #fff; }
.card-cta p { color: #C0C5CF; margin-bottom: 18px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.why-copy h2 { font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; }
.why-copy .btn { margin-top: 28px; }
.why-list { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 32px; }
.why-list li { display: flex; gap: 15px; }
.why-ico { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(225,29,42,.14); color: var(--red); border: 1px solid rgba(225,29,42,.3); }
.why-ico svg { width: 21px; height: 21px; stroke-width: 2.6; }
.why-list strong { display: block; font-family: var(--font-display); font-size: 18px; letter-spacing: .3px; text-transform: uppercase; margin-bottom: 4px; }
.why-list p { color: #AeB4C0; font-size: 15px; line-height: 1.5; }

/* ============================================================
   SPLIT (Parts)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.split-media { position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid var(--ink); background: var(--steel-800); aspect-ratio: 4/5; }
.split-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.media-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase; font-size: 13px; padding: 8px 15px; border-radius: 8px; box-shadow: var(--shadow);
}
.split-copy h2 { font-size: clamp(28px, 3.6vw, 44px); text-transform: uppercase; margin-bottom: 4px; }
.check-list { margin: 26px 0 30px; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: .3px; }
.check-list .ico-sm { color: #fff; background: var(--red); border-radius: 50%; padding: 4px; width: 26px; height: 26px; flex-shrink: 0; }

/* ============================================================
   TRAINING
   ============================================================ */
.training-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.training-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.training-card .card-ico { background: linear-gradient(145deg, var(--red), var(--red-700)); border-color: var(--red-700); }
.training-cta {
  margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--red);
  border-radius: var(--radius); padding: 24px 30px;
}
.training-cta p { font-size: 17px; color: var(--text); }

/* ============================================================
   RENTALS / RATES
   ============================================================ */
.rate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.rate-card {
  position: relative; background: var(--steel-850); border: 1px solid var(--steel-700); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.rate-card:hover { transform: translateY(-5px); border-color: var(--steel-600); box-shadow: var(--shadow-lg); }
.rate-featured { background: linear-gradient(165deg, #20242F, #15181F); border-color: var(--red); box-shadow: 0 16px 40px rgba(225,29,42,.18); }
.rate-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 12px; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.rate-cap { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: #fff; text-transform: uppercase; line-height: 1; }
.rate-tag { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-top: 6px; margin-bottom: 22px; }
.rate-rows { display: grid; gap: 12px; margin-bottom: 26px; }
.rate-rows > div { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px dashed var(--steel-700); }
.rate-rows span { color: var(--silver); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.rate-rows strong { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: #fff; font-variant-numeric: tabular-nums; }
.rate-featured .rate-rows strong { color: var(--amber); }
.rate-card .btn { margin-top: auto; }

.rate-terms { margin-top: 40px; background: var(--steel-850); border: 1px solid var(--steel-700); border-radius: var(--radius); padding: 30px clamp(24px, 4vw, 40px); }
.rate-terms h3 { color: #fff; text-transform: uppercase; font-size: 20px; margin-bottom: 18px; letter-spacing: .5px; }
.rate-terms ul { display: grid; gap: 12px; }
.rate-terms li { position: relative; padding-left: 26px; color: #B9BEC9; font-size: 15px; }
.rate-terms li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; background: var(--red); border-radius: 2px; transform: rotate(45deg); }

/* ============================================================
   ABOUT / MISSION
   ============================================================ */
.about-inner { max-width: 880px; margin-inline: auto; text-align: center; }
.about-inner .kicker { margin-bottom: 24px; }
.mission { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3.4vw, 40px); line-height: 1.28; letter-spacing: -.2px; margin: 0; text-transform: none; }
.mission .hl { color: var(--red); }
.mission-by { margin-top: 24px; font-family: var(--font-display); letter-spacing: 1px; text-transform: uppercase; color: var(--muted); font-size: 15px; }

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.section-contact::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(800px 500px at 90% 0%, rgba(225,29,42,.16), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 2px, transparent 2px 16px);
}
.contact-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.contact-copy h2 { font-size: clamp(30px, 4.4vw, 52px); text-transform: uppercase; }
.contact-list { margin-top: 32px; display: grid; gap: 20px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-ico { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--steel-800); border: 1px solid var(--steel-700); color: var(--amber); }
.contact-ico svg { width: 22px; height: 22px; }
.contact-label { display: block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-bottom: 2px; }
.contact-list a, .contact-static { font-family: var(--font-display); font-weight: 500; font-size: 21px; color: #fff; letter-spacing: .3px; }
.contact-list a:hover { color: var(--amber); }

/* Form */
.contact-form-wrap { }
.contact-form { background: #fff; color: var(--text); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.contact-form h3 { font-size: 24px; text-transform: uppercase; }
.form-sub { color: var(--muted); font-size: 15px; margin-top: 8px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-display); font-weight: 500; font-size: 14px; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 8px; }
.field .req { color: var(--red); }
.field input {
  width: 100%; font-family: var(--font-body); font-size: 16px; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.field input::placeholder { color: #9aa0ab; }
.field input:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: var(--ring); }
.field input[aria-invalid="true"] { border-color: var(--red); background: #fff4f4; }
.field-help { display: block; margin-top: 7px; font-size: 13px; color: var(--muted); }
.field-error { display: block; margin-top: 7px; font-size: 13.5px; color: var(--red-600); font-weight: 600; }
.form-success { margin-top: 16px; padding: 13px 16px; border-radius: var(--radius-sm); background: #e9f8ee; color: #137a3a; font-weight: 600; font-size: 15px; }

/* Map */
.map-wrap {
  position: relative; z-index: 1; margin-top: clamp(40px, 6vw, 64px);
  border-radius: var(--radius); overflow: hidden;
  border: 3px solid var(--steel-700); box-shadow: var(--shadow-lg);
}
.map-frame { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(.25) contrast(1.05); }
.map-directions {
  position: absolute; right: 18px; bottom: 18px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase; font-size: 14px;
  padding: 12px 18px; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  transition: transform .12s var(--ease), background .18s var(--ease);
}
.map-directions:hover { transform: translateY(-2px); background: var(--red-600); }
@media (max-width: 460px) { .map-frame { height: 300px; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--steel-900); color: #fff; padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--steel-700); }
.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-sub { color: var(--silver); }
.footer-tag { margin-top: 18px; color: #AeB4C0; font-size: 15px; line-height: 1.6; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-nav h4 { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.footer-nav a { display: block; color: #C4C8D2; font-size: 15px; padding: 6px 0; transition: color .15s var(--ease); }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding-top: 24px; padding-bottom: 28px; }
.footer-bottom p { color: #8b909c; font-size: 14px; }
.back-top { font-family: var(--font-display); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; color: var(--silver); }
.back-top:hover { color: var(--red); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .service-card:hover, .training-card:hover, .rate-card:hover, .hero-art:hover .hero-plate { transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-art { max-width: 560px; }
  .why-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 440px; }
}

@media (max-width: 860px) {
  .main-nav, .header-call { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: 0; padding: 10px; cursor: pointer;
  }
  .nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .mobile-nav {
    display: grid; gap: 4px; overflow: hidden; max-height: 0;
    padding: 0 clamp(20px, 5vw, 40px); border-top: 0 solid var(--line);
    transition: max-height .3s var(--ease), padding .3s var(--ease);
  }
  .mobile-nav.open { max-height: 420px; padding: 14px clamp(20px, 5vw, 40px) 22px; border-top: 1px solid var(--line); }
  .mobile-nav a { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; padding: 12px 6px; border-bottom: 1px solid var(--line); }
  .mobile-nav a.btn { border-bottom: 0; margin-top: 10px; }

  .service-grid, .training-grid, .rate-grid { grid-template-columns: 1fr; }
  .why-list { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .training-cta { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 460px) {
  body { font-size: 16px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-plate { transform: none; }
  .brand-sub { display: none; }
  .btn-lg { width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; }
}
