/* STRIVE Dirt Works — site styles. Built on the SDW design-system tokens. */
@import url('_ds/strive-design-works-design-system-019e299f-3d6e-7f0f-acad-36b453294e43/colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--strive-navy-deep); color: var(--fg-1); font-family: var(--font-body); }

.dw { background: var(--bg-canvas); overflow-x: clip; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 104px 0; }

.eyebrow {
  font-family: var(--font-body); font-size: 13px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--strive-blue);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow.on-dark { color: var(--strive-sky); }
.eyebrow::before { content: "\25B2"; font-size: 9px; transform: translateY(-1px); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.012em; line-height: 0.92; margin: 0; color: var(--strive-navy); }
h1 { font-size: clamp(56px, 8.5vw, 120px); }
h2 { font-size: clamp(40px, 5.5vw, 72px); }
h3 { font-size: 30px; font-weight: 800; }
.on-dark h1, .on-dark h2, .on-dark h3 { color: #fff; }
.lead { font-size: 20px; line-height: 1.55; color: var(--fg-2); }
.on-dark .lead { color: #C2D0E8; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 700; font-size: 16px; padding: 16px 28px; border-radius: 6px; border: 1px solid transparent; cursor: pointer; transition: all 160ms var(--ease-out); text-decoration: none; }
.btn .arrow { transition: transform 160ms var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--strive-blue); color: #fff; }
.btn-primary:hover { background: var(--strive-blue-bright); transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-outline-light:hover { background: rgba(255,255,255,0.10); border-color: #fff; text-decoration: none; }
.btn-lg { padding: 18px 34px; font-size: 18px; }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; transition: background var(--dur-base) var(--ease-out), padding var(--dur-base), border-color var(--dur-base); background: var(--strive-navy-deep); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav.scrolled { background: rgba(6,21,54,0.94); backdrop-filter: saturate(130%) blur(8px); padding: 11px 40px; border-bottom-color: rgba(255,255,255,0.08); }
.nav .brand { display: flex; align-items: center; gap: 13px; color: #fff; text-decoration: none; }
.nav .brand img { height: 40px; width: auto; display: block; }
.nav .brand .brand-sub { font-family: var(--font-display); font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--strive-sky); padding-left: 13px; border-left: 1px solid rgba(255,255,255,0.28); line-height: 1; }
.nav ul { list-style: none; display: flex; gap: 30px; padding: 0; margin: 0; }
.nav ul a { color: #fff; font-weight: 600; font-size: 15px; opacity: .82; text-decoration: none; transition: opacity 140ms; }
.nav ul a:hover { opacity: 1; }
.nav .cta { background: var(--strive-blue); color: #fff; padding: 11px 20px; border-radius: 6px; font-weight: 700; font-size: 15px; text-decoration: none; transition: background 140ms; }
.nav .cta:hover { background: var(--strive-blue-bright); }
.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: transparent; border: 1px solid rgba(255,255,255,0.28); border-radius: 8px; cursor: pointer; padding: 0; }
.nav-toggle .bar { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 220ms var(--ease-out), opacity 160ms; }
.menu-cta { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; padding: 160px 0 80px; }
.hero .hero-bg { position: absolute; inset: 0; background: url("assets/photos/skid-steer-clearing.jpeg") center 42% / cover no-repeat; transform: scale(1.04) scaleX(-1); }
.hero .hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,21,54,0.72) 0%, rgba(6,21,54,0.40) 38%, rgba(6,21,54,0.78) 78%, rgba(6,21,54,0.96) 100%); }
.hero .hero-stripes { position: absolute; inset: 0; background-image: repeating-linear-gradient(58deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 42px); pointer-events: none; }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero h1 { max-width: 14ch; }
.hero h1 .blue { color: var(--strive-sky); }
.hero .hero-grid { margin-top: 36px; display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: end; }
.hero .mission { border-left: 3px solid var(--strive-blue); padding: 4px 0 4px 22px; color: #D4DFF2; font-size: 19px; line-height: 1.5; max-width: 46ch; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .scrolldown { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.6); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero .scrolldown span { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,0.6), transparent); animation: dwline 1.8s var(--ease-in-out) infinite; }
@keyframes dwline { 0%,100% { opacity: .25; } 50% { opacity: .9; } }

/* ---------- Focus band (skid steer + dump trailer) ---------- */
.focus { background: var(--strive-navy); color: #fff; position: relative; overflow: hidden; }
.focus::after { content: ""; position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 520px; height: 520px; background: url("assets/logo-strive-mark.png") center/contain no-repeat; opacity: 0.05; pointer-events: none; }
.focus .container { position: relative; z-index: 1; }
.focus-head { max-width: 760px; }
.focus-head h2 { margin-top: 14px; color: #fff; }
.focus-head .lead { margin-top: 18px; color: #C2D0E8; }
.focus-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
.focus-card { border-radius: 14px; padding: 0; position: relative; overflow: hidden; min-height: 360px; display: flex; flex-direction: column; }
.focus-card.steer { background: linear-gradient(160deg, #0E2A5C, #081E48); border: 1px solid rgba(111,168,255,0.22); }
.focus-card.trailer { background: linear-gradient(160deg, var(--strive-blue), #143CBF); border: 1px solid rgba(255,255,255,0.16); }
.focus-card .fc-photo { position: relative; height: 210px; background-size: cover; background-position: center; }
.focus-card .fc-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,21,54,0) 38%, rgba(6,21,54,0.88) 100%); }
.focus-card.trailer .fc-photo::after { background: linear-gradient(180deg, rgba(8,24,64,0) 38%, rgba(8,24,64,0.85) 100%); }
.focus-card .fc-num { position: absolute; left: 36px; bottom: 16px; z-index: 1; font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; }
.focus-card .fc-inner { padding: 28px 36px 36px; display: flex; flex-direction: column; flex: 1; }
.focus-card h3 { color: #fff; font-size: 38px; }
.focus-card .fc-sub { color: #C2D0E8; font-size: 16px; line-height: 1.55; margin-top: 12px; max-width: 42ch; }
.focus-card.trailer .fc-sub { color: rgba(255,255,255,0.88); }
.focus-card .fc-specs { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 11px; }
.focus-card .fc-specs li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.4; color: #E4ECF8; }
.focus-card .fc-specs .b { color: var(--strive-sky); flex-shrink: 0; font-size: 10px; line-height: 1.8; }
.focus-card.trailer .fc-specs .b { color: #fff; }

/* ---------- Services ---------- */
.services-sec { background: var(--bg-canvas); }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; }
.services-head h2 { margin-top: 14px; max-width: 16ch; }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.svc { background: #fff; border: 1px solid var(--border-1); border-radius: 12px; padding: 30px 28px 28px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow-sm); transition: transform 200ms var(--ease-out), box-shadow 200ms; position: relative; overflow: hidden; }
.svc::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--strive-blue); transform: scaleY(0); transform-origin: top; transition: transform 220ms var(--ease-out); }
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc:hover::before { transform: scaleY(1); }
.svc.lead { background: var(--strive-navy); border-color: var(--strive-navy); }
.svc.lead::before { background: var(--strive-sky); }
.svc .svc-ico { width: 48px; height: 48px; border-radius: 9px; background: var(--strive-sky-soft); color: var(--strive-blue); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-xs); }
.svc.lead .svc-ico { background: rgba(111,168,255,0.18); color: var(--strive-sky); }
.svc .svc-ico svg { width: 26px; height: 26px; stroke-width: 1.85; }
.svc .svc-tag { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--strive-blue); }
.svc.lead .svc-tag { color: var(--strive-sky); }
.svc h3 { font-size: 27px; font-weight: 900; }
.svc.lead h3 { color: #fff; }
.svc .desc { font-size: 15px; line-height: 1.55; color: var(--fg-2); flex: 1; }
.svc.lead .desc { color: #C2D0E8; }
.svc .more { font-size: 14px; color: var(--strive-blue); font-weight: 700; display: inline-flex; gap: 7px; align-items: center; }
.svc.lead .more { color: var(--strive-sky); }
.svc .more .arrow { transition: transform 160ms var(--ease-out); }
.svc:hover .more .arrow { transform: translateX(4px); }

/* ---------- Before / After ---------- */
.work { background: #fff; border-top: 1px solid var(--border-1); border-bottom: 1px solid var(--border-1); }
.work-head { max-width: 760px; }
.work-head h2 { margin-top: 14px; }
.work-head .lead { margin-top: 18px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
.ba-card { position: relative; border-radius: 12px; overflow: hidden; height: 440px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-1); }
.ba-photo { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba-card .ba-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,21,54,0) 60%, rgba(6,21,54,0.45) 100%); }
.ba-label { position: absolute; top: 16px; left: 16px; z-index: 2; font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; background: rgba(6,21,54,0.82); padding: 7px 14px; border-radius: 4px; }
.ba-label.after { background: var(--strive-blue); }
.ba-card.after-empty { background: linear-gradient(160deg, #0E2A5C, #081E48); display: flex; align-items: center; justify-content: center; }
.ba-empty { text-align: center; color: #8FA6CC; padding: 28px; display: flex; flex-direction: column; align-items: center; gap: 13px; max-width: 320px; }
.ba-empty svg { width: 40px; height: 40px; color: var(--strive-sky); opacity: .65; }
.ba-empty .t { font-family: var(--font-display); font-weight: 800; font-size: 22px; text-transform: uppercase; color: #fff; letter-spacing: .01em; line-height: 1; }
.ba-empty .s { font-size: 14px; line-height: 1.5; }
.ba-cap { margin-top: 22px; font-size: 15px; color: var(--fg-3); }

/* ---------- Mission page ---------- */
.mhero { background: var(--strive-navy); color: #fff; position: relative; overflow: hidden; padding: 184px 0 104px; }
.mhero::before { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(58deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 42px); pointer-events: none; }
.mhero::after { content: ""; position: absolute; right: -120px; bottom: -150px; width: 560px; height: 560px; background: url("assets/logo-strive-mark.png") center/contain no-repeat; opacity: 0.06; pointer-events: none; }
.mhero .container { position: relative; z-index: 1; }
.mhero h1 { max-width: 15ch; }
.mhero h1 .blue { color: var(--strive-sky); }
.mhero .vision { margin-top: 30px; border-left: 3px solid var(--strive-blue); padding: 6px 0 6px 22px; max-width: 56ch; }
.mhero .vision .v-label { font-family: var(--font-body); font-weight: 700; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--strive-sky); }
.mhero .vision .v-text { margin-top: 8px; font-size: 24px; line-height: 1.35; color: #fff; font-weight: 600; }

.mission-sec { background: var(--bg-canvas); }
.mission-head { max-width: 760px; }
.mission-head h2 { margin-top: 14px; }
.mission-head .lead { margin-top: 18px; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.principle { background: #fff; border: 1px solid var(--border-1); border-radius: 12px; padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.principle::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--strive-blue); }
.principle .pn { font-family: var(--font-display); font-weight: 900; font-size: 14px; letter-spacing: 0.2em; color: var(--strive-blue); }
.principle h3 { font-size: 28px; margin-top: 12px; }
.principle p { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--fg-2); }

.mcta { background: var(--strive-navy-deep); color: #fff; position: relative; overflow: hidden; }
.mcta::after { content: ""; position: absolute; left: -80px; top: 50%; transform: translateY(-50%); width: 340px; height: 340px; background: url("assets/logo-strive-mark.png") center/contain no-repeat; opacity: 0.07; pointer-events: none; }
.mcta .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; position: relative; z-index: 1; flex-wrap: wrap; }
.mcta h2 { color: #fff; }

/* ---------- Estimate CTA ---------- */
.estimate { background: var(--strive-navy-deep); color: #fff; }
.est-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.est-photo { position: relative; min-height: 460px; background: url("assets/photos/demo-breaker.jpg") center 35% / cover no-repeat; }
.est-photo .est-badge { position: absolute; left: 28px; bottom: 28px; background: rgba(6,21,54,0.82); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.14); border-radius: 10px; padding: 16px 20px; }
.est-photo .est-badge .eb-name { font-family: var(--font-display); font-weight: 900; font-size: 22px; text-transform: uppercase; color: #fff; line-height: 1; }
.est-photo .est-badge .eb-role { font-size: 13px; color: var(--strive-sky); margin-top: 6px; letter-spacing: 0.04em; }
.est-body { background: var(--strive-navy); padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; }
.est-body h2 { color: #fff; }
.est-body .lead { color: #C2D0E8; margin-top: 18px; max-width: 42ch; }
.est-contact { display: flex; flex-direction: column; gap: 14px; margin: 32px 0 30px; }
.est-contact a { display: flex; align-items: center; gap: 14px; color: #fff; text-decoration: none; font-size: 19px; font-weight: 600; }
.est-contact a:hover { color: var(--strive-sky); }
.est-contact .ec-ico { width: 42px; height: 42px; border-radius: 8px; background: rgba(111,168,255,0.16); color: var(--strive-sky); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.est-contact .ec-ico svg { width: 21px; height: 21px; stroke-width: 1.9; }
.est-contact .ec-note { font-size: 13px; color: #93A8CB; font-weight: 500; }
.est-body .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--strive-navy-deep); color: #C2D0E8; padding: 72px 0 36px; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.07); }
.footer::after { content: ""; position: absolute; right: -100px; bottom: -120px; width: 460px; height: 460px; background: url("assets/logo-strive-mark.png") center/contain no-repeat; opacity: 0.05; }
.footer .grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; position: relative; z-index: 1; }
.footer .brand-block { display: flex; flex-direction: column; gap: 18px; }
.footer .brand-stack { display: flex; align-items: center; gap: 13px; }
.footer .brand-stack img { height: 46px; width: auto; }
.footer .brand-sub-footer { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--strive-sky); padding-left: 13px; border-left: 1px solid rgba(255,255,255,0.25); line-height: 1; }
.footer .brand-block p { font-size: 14px; max-width: 340px; line-height: 1.6; color: #93A8CB; }
.footer h4 { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: 14px; letter-spacing: 0.14em; color: #fff; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer ul a, .footer ul li { color: #C2D0E8; font-size: 14px; text-decoration: none; }
.footer ul a:hover { color: #fff; }
.footer .legal { margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: #6E84AB; position: relative; z-index: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .nav { padding: 14px 24px; }
  .nav .brand .brand-sub { white-space: normal; max-width: 5ch; line-height: 1.04; }
  .nav ul { display: none; }
  .nav { flex-wrap: wrap; }
  .nav.menu-open { background: rgba(6,21,54,0.97); backdrop-filter: saturate(130%) blur(8px); }
  .nav-toggle { display: inline-flex; }
  .nav .cta { display: none; }
  .nav.menu-open ul { display: flex; flex-direction: column; position: absolute; top: calc(100% + 8px); right: 24px; width: max-content; min-width: 180px; max-width: calc(100vw - 48px); gap: 4px; padding: 8px; background: rgba(6,21,54,0.97); border: 1px solid rgba(255,255,255,0.09); border-radius: 10px; box-shadow: var(--shadow-lg); }
  .nav ul li { width: 100%; }
  .nav.menu-open ul li a { padding-left: 24px; }
  .nav ul li a { display: block; padding: 14px; font-size: 16px; opacity: 1; border-radius: 6px; text-align: right; }
  .nav ul li a:hover { background: rgba(255,255,255,0.07); }
  .menu-cta { display: block; }
  .menu-cta a { background: var(--strive-blue); color: #fff; text-align: center; font-weight: 700; }
  .menu-cta a:hover { background: var(--strive-blue-bright); }
  .nav.menu-open .nav-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.menu-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
  .nav.menu-open .nav-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 130px 0 64px; }
  .hero .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .focus-pair { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-card { height: 320px; }
  .est-wrap { grid-template-columns: 1fr; }
  .est-photo { min-height: 300px; }
  .est-body { padding: 40px 30px; }
  .principles { grid-template-columns: 1fr; }
  .mhero { padding: 140px 0 72px; }
  .footer .grid { grid-template-columns: 1fr; gap: 32px; }
}
