/* ═══════════════════════════════════════════════
   HIRAKOU — TOP Page & Opening Animation
═══════════════════════════════════════════════ */

/* ══════════════════════════════════════
   OPENING ANIMATION v4
   Cinema: Highway → Headlights → H(metal) → K(energy) → Flash
══════════════════════════════════════ */
#opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#opening.exit {
  opacity: 0;
  transition: opacity 1.8s 0.5s ease;
}

/* Stage: large logo + name.
   Starts zoomed out → JS adds .stage-zoom (zoom in) → .stage-exit (to header) */
.op-stage {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: scale(0.78);
}
.op-stage.stage-zoom {
  transform: scale(1.14);
  transition: transform 4.0s cubic-bezier(0.22, 0.10, 0.22, 1);
}
.op-stage.stage-exit {
  transform: scale(0.24) translateY(-44vh);
  opacity: 0;
  transition: transform 2.2s cubic-bezier(0.40, 0, 0.60, 1),
              opacity 0.9s 1.3s ease;
}

/* ── Ambient: 6 warm-yellow looping highway lanes ── */
.op-amb {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.op-a {
  position: absolute;
  left: 0;
  will-change: transform, opacity;
}
.op-a-1 { top: 20%; height: 1px; width: 18vw;
  background: linear-gradient(90deg, transparent, rgba(255,228,168,0.45) 42%, rgba(255,218,148,0.20), transparent); }
.op-a-2 { top: 30%; height: 1px; width: 30vw;
  background: linear-gradient(90deg, transparent, rgba(255,232,172,0.62) 36%, rgba(255,222,152,0.32), transparent); }
.op-a-3 { top: 40%; height: 2px; width: 40vw;
  background: linear-gradient(90deg, transparent, rgba(255,236,176,0.75) 30%, rgba(255,226,156,0.44), transparent);
  box-shadow: 0 0 3px 1px rgba(255,210,100,0.18); }
.op-a-4 { top: 60%; height: 2px; width: 38vw;
  background: linear-gradient(90deg, transparent, rgba(255,234,174,0.70) 32%, rgba(255,224,154,0.40), transparent);
  box-shadow: 0 0 3px 1px rgba(255,205,95,0.16); }
.op-a-5 { top: 70%; height: 1px; width: 28vw;
  background: linear-gradient(90deg, transparent, rgba(255,228,168,0.56) 38%, rgba(255,215,142,0.26), transparent); }
.op-a-6 { top: 80%; height: 1px; width: 18vw;
  background: linear-gradient(90deg, transparent, rgba(255,222,158,0.38) 45%, transparent); }
.op-amb.active .op-a-1 { animation: ambPass 1.75s linear 0.00s infinite; }
.op-amb.active .op-a-2 { animation: ambPass 2.15s linear 0.40s infinite; }
.op-amb.active .op-a-3 { animation: ambPass 1.60s linear 0.85s infinite; }
.op-amb.active .op-a-4 { animation: ambPass 1.65s linear 1.30s infinite; }
.op-amb.active .op-a-5 { animation: ambPass 2.35s linear 0.18s infinite; }
.op-amb.active .op-a-6 { animation: ambPass 2.55s linear 1.65s infinite; }
@keyframes ambPass {
  0%   { transform: translateX(-140%); opacity: 0; }
  7%   { opacity: 1; }
  87%  { opacity: 1; }
  100% { transform: translateX(120vw); opacity: 0; }
}

/* ── Truck headlights: two dots zoom from horizon ── */
.op-hl-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.op-hl-pair {
  position: absolute;
  left: 50%;
  top: 57%;
  transform: translate(-50%, -50%) scale(0.10);
  opacity: 0;
  will-change: transform, opacity;
}
.op-hl-pair::before,
.op-hl-pair::after {
  content: '';
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,252,238,0.98);
  box-shadow:
    0 0 20px  8px rgba(255,248,224,0.75),
    0 0 65px 24px rgba(255,238,192,0.40),
    0 0 150px 56px rgba(255,225,158,0.20);
}
.op-hl-pair::before { left: -22px; }
.op-hl-pair::after  { left:  16px; }
.op-hl-pair.show {
  animation: hlApproach 2.0s cubic-bezier(0.20, 0, 0.44, 1) forwards;
}
@keyframes hlApproach {
  0%   { transform: translate(-50%, -50%) scale(0.08); opacity: 0; }
  8%   { opacity: 0.50; }
  60%  { opacity: 0.92; }
  88%  { opacity: 0.35; }
  100% { transform: translate(-50%, -50%) scale(4.8); opacity: 0; }
}

/* ── Main burst: 6 white+orange lanes ── */
.op-lights {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.op-l {
  position: absolute;
  left: 0;
  will-change: transform, opacity;
  opacity: 0;
}
.op-l-1 { top: 24%; height: 1px; width: 26vw;
  background: linear-gradient(90deg, transparent, rgba(255,242,202,0.72) 38%, rgba(255,232,178,0.36), transparent); }
.op-l-2 { top: 34%; height: 2px; width: 42vw;
  background: linear-gradient(90deg, transparent, rgba(255,238,192,0.90) 30%, rgba(255,228,172,0.65), transparent);
  box-shadow: 0 0 6px 2px rgba(244,112,0,0.28); }
.op-l-3 { top: 43%; height: 3px; width: 54vw;
  background: linear-gradient(90deg, transparent, rgba(244,112,0,0.92) 18%, rgba(255,244,218,0.96) 52%, rgba(244,112,0,0.62), transparent);
  box-shadow: 0 0 14px 5px rgba(244,112,0,0.48); }
.op-l-4 {
  top: calc(50% - 3px); height: 6px; width: 72vw;
  background: linear-gradient(90deg,
    transparent 0%, rgba(244,112,0,0.94) 7%,
    rgba(255,250,220,1) 26%, rgba(255,255,255,1) 50%,
    rgba(255,250,220,1) 74%, rgba(244,112,0,0.90) 93%, transparent 100%);
  box-shadow:
    0 0 32px 13px rgba(244,112,0,0.72),
    0 0 120px 48px rgba(244,112,0,0.28),
    0 0 240px 90px rgba(244,112,0,0.12);
  filter: blur(0.4px);
}
.op-l-5 { top: 57%; height: 3px; width: 50vw;
  background: linear-gradient(90deg, transparent, rgba(244,112,0,0.90) 20%, rgba(255,242,210,0.84) 56%, rgba(244,112,0,0.48), transparent);
  box-shadow: 0 0 12px 4px rgba(244,112,0,0.42); }
.op-l-6 { top: 67%; height: 1px; width: 32vw;
  background: linear-gradient(90deg, transparent, rgba(255,234,182,0.66) 40%, rgba(255,222,162,0.34), transparent); }
.op-lights.fire .op-l-1 { animation: lightPass 0.44s cubic-bezier(0.28,0,0.50,1)  0ms forwards; }
.op-lights.fire .op-l-2 { animation: lightPass 0.54s cubic-bezier(0.24,0,0.46,1) 20ms forwards; }
.op-lights.fire .op-l-3 { animation: lightPass 0.62s cubic-bezier(0.20,0,0.42,1) 40ms forwards; }
.op-lights.fire .op-l-4 { animation: lightPass 0.72s cubic-bezier(0.16,0,0.38,1) 55ms forwards; }
.op-lights.fire .op-l-5 { animation: lightPass 0.58s cubic-bezier(0.22,0,0.44,1) 35ms forwards; }
.op-lights.fire .op-l-6 { animation: lightPass 0.44s cubic-bezier(0.30,0,0.52,1) 78ms forwards; }
@keyframes lightPass {
  0%   { transform: translateX(calc(-100% - 10vw)); opacity: 0; }
  5%   { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(118vw); opacity: 0; }
}

/* ── Center glow (main burst peak) ── */
.op-flash {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 95vw; max-width: 1100px; height: 44vh;
  background: radial-gradient(ellipse at center,
    rgba(255,240,210,0.24) 0%,
    rgba(244,112,0,0.09)   36%,
    transparent 68%);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.op-flash.burst { animation: flashBurst 2.0s ease forwards; }
@keyframes flashBurst {
  0%   { opacity: 0; }
  15%  { opacity: 1; }
  100% { opacity: 0.08; }
}

/* ── K burst: pure orange, max intensity ── */
.op-burst {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.op-b {
  position: absolute;
  left: 0;
  will-change: transform, opacity;
  opacity: 0;
}
.op-b-1 { top: 42%; height: 3px; width: 60vw;
  background: linear-gradient(90deg, transparent, rgba(244,112,0,1.00) 24%, rgba(255,172,62,0.90), transparent);
  box-shadow: 0 0 16px 6px rgba(244,112,0,0.58); }
.op-b-2 {
  top: calc(50% - 4px); height: 8px; width: 70vw;
  background: linear-gradient(90deg,
    transparent 0%, rgba(244,112,0,1) 10%,
    rgba(255,202,88,1) 32%, rgba(255,255,215,1) 50%,
    rgba(255,202,88,1) 68%, rgba(244,112,0,1) 90%, transparent 100%);
  box-shadow:
    0 0 44px 18px rgba(244,112,0,0.85),
    0 0 150px 60px rgba(244,112,0,0.36),
    0 0 300px 110px rgba(244,112,0,0.14);
  filter: blur(0.2px);
}
.op-b-3 { top: 58%; height: 3px; width: 60vw;
  background: linear-gradient(90deg, transparent, rgba(244,112,0,0.98) 22%, rgba(255,158,50,0.88), transparent);
  box-shadow: 0 0 14px 5px rgba(244,112,0,0.55); }
.op-burst.fire .op-b-1 { animation: burstPass 0.60s cubic-bezier(0.14,0,0.32,1)  0ms forwards; }
.op-burst.fire .op-b-2 { animation: burstPass 0.70s cubic-bezier(0.11,0,0.28,1) 14ms forwards; }
.op-burst.fire .op-b-3 { animation: burstPass 0.56s cubic-bezier(0.16,0,0.34,1)  7ms forwards; }
@keyframes burstPass {
  0%   { transform: translateX(calc(-100% - 8vw)); opacity: 0; }
  5%   { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(118vw); opacity: 0; }
}

/* K center flash */
.op-kflash {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw; max-width: 1000px; height: 40vh;
  background: radial-gradient(ellipse at center,
    rgba(244,112,0,0.46) 0%,
    rgba(244,112,0,0.16) 32%,
    transparent 66%);
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.op-kflash.burst { animation: kFlashBurst 1.6s ease forwards; }
@keyframes kFlashBurst {
  0%   { opacity: 0; }
  18%  { opacity: 1; }
  100% { opacity: 0.16; }
}

/* ── Logo complete: full-screen white flash ── */
.op-white-flash {
  position: absolute;
  inset: 0;
  z-index: 15;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.op-white-flash.burst { animation: whiteFlash 1.8s ease forwards; }
@keyframes whiteFlash {
  0%   { opacity: 0; }
  12%  { opacity: 0.95; }
  100% { opacity: 0; }
}

/* ── Logo SVG (2x larger) ── */
.op-mark-svg {
  height: clamp(130px, 24vh, 200px);
  width: auto;
  display: block;
  overflow: visible;
}

/* H: materializes like heavy metal being illuminated */
#op-h-group {
  opacity: 0;
  will-change: opacity, filter;
}
#op-h-group.show {
  animation: hMetal 1.20s cubic-bezier(0.10, 0, 0.28, 1) forwards;
}
@keyframes hMetal {
  0%   { opacity: 0;   filter: brightness(6) blur(2px); }
  10%  { opacity: 1;   filter: brightness(4) blur(0.5px); }
  35%  { filter: brightness(2.2) blur(0); }
  68%  { filter: brightness(1.35); }
  100% { opacity: 1;   filter: brightness(1); }
}

/* K: slams in with orange energy */
#op-k-group {
  opacity: 0;
  will-change: opacity, filter;
}
#op-k-group.show {
  animation: kSlam 0.85s cubic-bezier(0.07, 0, 0.20, 1) forwards;
}
@keyframes kSlam {
  0%   { opacity: 0; filter: brightness(8); }
  14%  { opacity: 1; filter: brightness(5.5); }
  48%  { filter: brightness(2.8); }
  100% { opacity: 1; filter: brightness(1); }
}

/* Combined HK glow after logo completes */
.op-mark-svg.logo-glow {
  filter: drop-shadow(0 0 28px rgba(244,112,0,0.55))
          drop-shadow(0 0 10px rgba(210,210,210,0.22));
  transition: filter 1.4s ease;
}

/* ── Company name: Great Vibes script ── */
.op-name-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.op-name-rule {
  width: 0;
  height: 1px;
  background: rgba(244,112,0,0.58);
  margin-bottom: 18px;
  transition: width 0.70s cubic-bezier(0.4, 0, 0.2, 1) 0.08s;
}
.op-name-wrap.show .op-name-rule { width: 60px; }
.op-name-text {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: clamp(42px, 8.5vw, 82px);
  color: rgba(255,255,255,0.90);
  line-height: 1.05;
  letter-spacing: 0.04em;
  overflow: hidden;
  padding-bottom: 6px;
}
.op-name-write {
  display: inline-block;
  clip-path: inset(0 104% 0 0);
  will-change: clip-path;
}
.op-name-wrap.show .op-name-write {
  clip-path: inset(0 0% 0 0);
  transition: clip-path 0.95s cubic-bezier(0.30, 0.10, 0.52, 0.94);
}
.op-name-sub {
  font-family: 'Times New Roman', Times, Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(9px, 1.1vw, 11px);
  letter-spacing: .40em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  padding-right: .40em;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 1.0s ease 0.7s;
}
.op-name-wrap.show .op-name-sub { opacity: 1; }

/* ══════════════════════════════════════
   HERO / FV
   Cinematic dark — cinema without photos
══════════════════════════════════════ */
.fv {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--black);
}

/* Cinematic dark gradient — orange horizon glow from road lights */
.fv-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 110%, rgba(244,112,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%,  rgba(244,112,0,0.04) 0%, transparent 50%),
    linear-gradient(175deg, #0B0B0B 0%, #080808 50%, #0C0908 100%);
  background-size: cover;
  background-position: center;
}

/* Horizontal rules creating road perspective depth */
.fv-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      transparent 0%,
      rgba(244,112,0,0.015) 60%,
      rgba(244,112,0,0.04) 100%);
  pointer-events: none;
}

.fv-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.fv-label {
  font-family: var(--ff-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .36em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.fv-label::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.fv-title {
  font-family: var(--ff-jp-s);
  font-weight: 300;
  font-size: clamp(34px, 5.5vw, 68px);
  letter-spacing: .06em;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 28px;
}

.fv-rule {
  width: 52px;
  height: 1px;
  background: rgba(244,112,0,0.55);
  margin-bottom: 24px;
}

.fv-sub {
  font-size: 13px;
  letter-spacing: .06em;
  color: var(--muted);
  line-height: 2.1;
  max-width: 480px;
}

/* Scroll indicator — right side, vertical */
.fv-scroll {
  position: absolute;
  bottom: 44px;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.fv-scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: fvScrollPulse 2.2s ease infinite;
}
@keyframes fvScrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.6); transform-origin: top; }
  50%       { opacity: 1;    transform: scaleY(1);   transform-origin: top; }
}
.fv-scroll-text {
  font-family: var(--ff-en);
  font-size: 9px;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--dim);
  writing-mode: vertical-rl;
}

/* ══════════════════════════════════════
   BRAND STATEMENT
   Single powerful line — full width
══════════════════════════════════════ */
.stmt-section {
  padding: 140px 0;
  background: var(--dark);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.stmt-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.stmt-eyebrow {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: .36em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.stmt-eyebrow::before,
.stmt-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--orange);
}
.stmt-quote {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 4vw, 46px);
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 40px;
}
.stmt-text {
  font-family: var(--ff-jp);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .08em;
  line-height: 2.2;
}

/* ══════════════════════════════════════
   NUMBERS / STATS
   Massive Cormorant type on dark
══════════════════════════════════════ */
.stat-section {
  padding: 100px 0;
  background: var(--black);
  border-bottom: 1px solid var(--rule);
}
.stat-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 0 48px;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.stat-item:first-child { padding-left: 0; text-align: left; }
.stat-item:last-child  { border-right: none; padding-right: 0; text-align: right; }
.stat-num {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 88px);
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-num-unit {
  font-size: .40em;
  color: var(--orange);
  vertical-align: super;
  font-weight: 400;
}
.stat-num.todo-val {
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--rule);
}
.stat-label {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: .30em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   SERVICES
   Numbered list — horizontal, industrial
══════════════════════════════════════ */
.svc-section {
  padding: var(--sec-v) 0;
  background: var(--dark);
}
.svc-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.svc-head-left {}
.svc-head-link {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.22s;
}
.svc-head-link::after { content: '→'; color: var(--orange); }
.svc-head-link:hover  { color: var(--white); }

.svc-list { list-style: none; }
.svc-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
  transition: opacity 0.28s;
}
.svc-item:hover { opacity: 0.75; }
.svc-num {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 42px;
  color: var(--orange);
  letter-spacing: -.02em;
  line-height: 1;
}
.svc-body {}
.svc-name {
  font-family: var(--ff-jp-s);
  font-weight: 300;
  font-size: clamp(16px, 2.2vw, 22px);
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 560px;
}
.svc-arrow {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: .20em;
  color: var(--orange);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.24s;
}
.svc-arrow::after { content: '→'; }
.svc-item:hover .svc-arrow { gap: 16px; }

/* ══════════════════════════════════════
   PHILOSOPHY / ABOUT
   Two column — text + image
══════════════════════════════════════ */
.phil-section {
  padding: var(--sec-v) 0;
  background: var(--black);
  border-top: 1px solid var(--rule);
}
.phil-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.phil-left {}
.phil-heading {
  font-family: var(--ff-jp-s);
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 30px);
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}
.phil-rule {
  width: 32px;
  height: 1px;
  background: var(--orange);
  margin-bottom: 32px;
}
.phil-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 2.2;
  margin-bottom: 40px;
}
.phil-body p + p { margin-top: 20px; }
.phil-right {
  position: relative;
}
.phil-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--dark-2);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--dim);
  font-size: 10px;
  font-family: var(--ff-en);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.phil-img-icon { font-size: 28px; opacity: .2; }

/* Orange corner accent */
.phil-right::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 56px;
  height: 56px;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
  pointer-events: none;
}

/* ══════════════════════════════════════
   FLEET / VEHICLES
   Grid of vehicle cards
══════════════════════════════════════ */
.fleet-section {
  padding: var(--sec-v) 0;
  background: var(--dark);
  border-top: 1px solid var(--rule);
}
.fleet-head {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.fleet-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  margin-top: 0;
}
.fleet-card {
  background: var(--dark);
  padding: 36px 32px;
  transition: background 0.28s;
}
.fleet-card:hover { background: var(--dark-2); }
.fleet-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark-3);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--dim);
  font-size: 10px;
  font-family: var(--ff-en);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.fleet-thumb-icon { font-size: 24px; opacity: .2; }
.fleet-type {
  font-family: var(--ff-en);
  font-size: 9px;
  letter-spacing: .28em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.fleet-name {
  font-family: var(--ff-jp-s);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--white);
  margin-bottom: 6px;
}
.fleet-spec {
  font-size: 12px;
  color: var(--muted);
}
.fleet-cta {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 0 var(--gutter);
}

/* ══════════════════════════════════════
   RECRUIT
   Full-width dark, one powerful line
══════════════════════════════════════ */
.recruit-section {
  padding: 140px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.recruit-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,112,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.recruit-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.recruit-title {
  font-family: var(--ff-jp-s);
  font-weight: 300;
  font-size: clamp(26px, 4.5vw, 52px);
  letter-spacing: .04em;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 48px;
  margin-top: 24px;
}
.recruit-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 2.0;
  margin-bottom: 44px;
  max-width: 520px;
}

/* ══════════════════════════════════════
   CONTACT CTA
   Centered, minimal
══════════════════════════════════════ */
.contact-cta-section {
  padding: 110px 0;
  background: var(--black);
  border-top: 1px solid var(--rule);
}
.contact-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.contact-cta-title {
  font-family: var(--ff-jp-s);
  font-weight: 300;
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: 20px;
  margin-top: 24px;
}
.contact-cta-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 2.1;
  margin-bottom: 44px;
}
.contact-cta-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.contact-cta-tel-label {
  font-family: var(--ff-en);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--muted);
  text-transform: uppercase;
}
.contact-cta-tel-num {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--orange);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .phil-grid { gap: 64px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-item { grid-template-columns: 60px 1fr; gap: 32px; }
  .svc-arrow { display: none; }
}

@media (max-width: 768px) {
  .fv { padding-bottom: 60px; }
  .fv-scroll { display: none; }
  .stmt-section { padding: 96px 0; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat-item {
    padding: 32px 0;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child  { border-bottom: none; padding-right: 0; text-align: left; }
  .svc-item { grid-template-columns: 52px 1fr; gap: 24px; padding: 32px 0; }
  .phil-grid { grid-template-columns: 1fr; gap: 48px; }
  .phil-right::before { display: none; }
  .fleet-grid { grid-template-columns: 1fr; }
  .recruit-section { padding: 96px 0; }
  .contact-cta-section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .svc-num { font-size: 30px; }
  .stat-num { font-size: clamp(44px, 14vw, 72px); }
}
