:root {
  --ink: #18221d;
  --muted: #66736d;
  --navy: #21372d;
  --navy-deep: #101b16;
  --lime: #a8efb7;
  --lime-dark: #47a76a;
  --green: #147947;
  --safety: #d8b84a;
  --line: #dfe8dc;
  --paper: #f7f8f1;
  --warehouse: #ebe9dc;
  --sky: #dff4fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 38, 30, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(17, 28, 23, 0.78);
  backdrop-filter: blur(14px);
}

.site-header.solid {
  position: sticky;
  background: var(--navy-deep);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--lime), #d9ffe1);
  font-weight: 900;
}

.brand-logo {
  padding: 7px;
  background: rgba(255, 255, 255, 0.94);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.2;
}

.nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--lime);
}

.nav-entry {
  padding: 10px 15px;
  border: 1px solid rgba(139, 220, 101, 0.78);
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 27, 22, 0.88), rgba(16, 27, 22, 0.58) 42%, rgba(16, 27, 22, 0.08) 78%),
    linear-gradient(180deg, rgba(16, 27, 22, 0.24), rgba(16, 27, 22, 0.1) 45%, rgba(16, 27, 22, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 40px));
  padding: 25vh 0 12vh clamp(20px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(42px, 6.5vw, 84px);
  line-height: 1.1;
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(26px, 3.6vw, 46px);
  line-height: 1.26;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.35;
}

.lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: var(--navy-deep);
  background: var(--lime);
}

.button.primary:hover {
  background: #c6ffd0;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 6vw, 88px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content,
.page-hero > * {
  animation: heroFade 760ms ease both;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.intro-text {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.business-lead,
.bases-intro,
.president,
.work-message {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
}

.business-lead p,
.bases-intro p,
.work-message p,
.message-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.message-copy p + p {
  margin-top: 18px;
}

.message-copy {
  display: grid;
  gap: 14px;
}

.message-copy article {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.message-copy h3 {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 18px;
}

.skim-summary,
.work-skim {
  background: var(--white);
}

.skim-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.skim-cards article {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.skim-cards span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.skim-cards h3 {
  margin: 8px 0 8px;
  font-size: 22px;
}

.skim-cards p {
  margin: 0;
  color: var(--muted);
}

.total-copy p + p {
  margin-top: 18px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper), #eef6ed);
}

.metrics div {
  min-height: 164px;
  padding: 28px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics span,
.metrics small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.metrics strong {
  display: inline-block;
  margin: 8px 4px 0 0;
  color: var(--lime-dark);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1;
  font-weight: 900;
}

.card-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.service-detail article,
.company-grid article,
.work-grid article,
.interview-list article,
.contact-grid article {
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-card {
  min-height: 310px;
  padding: 32px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card,
.service-detail article,
.base-card,
.company-grid article,
.work-grid article,
.fleet-cards article,
.opening-list article,
.interview-list article,
.news-list article,
.quality-points article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-detail article:hover,
.base-card:hover,
.company-grid article:hover,
.work-grid article:hover,
.fleet-cards article:hover,
.opening-list article:hover,
.interview-list article:hover,
.news-list article:hover,
.quality-points article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(71, 167, 106, 0.35);
}

.feature-card span,
.company-grid span,
.contact-grid span,
.map-card span,
.interview-list span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.feature-card p,
.service-detail p,
.company-grid p,
.work-grid p,
.interview-list p,
.contact-grid p,
.map-card p,
.message-band p,
.entry p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  padding: 8px 12px;
  background: var(--paper);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.message-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: linear-gradient(90deg, var(--paper), var(--warehouse));
}

.message-points {
  display: grid;
  gap: 18px;
}

.mini-point-grid,
.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-point-grid span,
.entry-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.entry-tags {
  margin-top: 18px;
}

.entry-tags span {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--navy-deep);
  background: var(--lime);
}

.logistics-flow {
  background: var(--paper);
}

.flow-header {
  width: min(820px, 100%);
  margin-bottom: 32px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.flow-steps article {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.flow-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -13px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-top: 3px solid var(--lime-dark);
  border-right: 3px solid var(--lime-dark);
  background: var(--paper);
  transform: rotate(45deg);
}

.flow-steps span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy-deep);
  background: var(--lime);
  font-weight: 900;
}

.flow-steps h3 {
  margin-bottom: 10px;
}

.flow-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.flow-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.flow-benefits div {
  padding: 22px 24px;
  border-left: 6px solid var(--green);
  background: var(--white);
}

.flow-benefits strong,
.flow-benefits span {
  display: block;
}

.flow-benefits strong {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 18px;
}

.flow-benefits span {
  color: var(--muted);
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: linear-gradient(90deg, var(--paper), var(--warehouse));
}

.quality-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.quality-visuals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quality-visuals img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #d9e2d4;
}

.quality-visuals img.face-focus {
  object-fit: cover;
}

.quality-visuals img.forklift-photo {
  object-position: 44% 38%;
}

.quality-visuals img.lifting-photo {
  object-position: 52% 38%;
}

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

.quality-points article {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.quality-points span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.quality-points h3 {
  margin-bottom: 10px;
}

.quality-points p {
  margin-bottom: 0;
  color: var(--muted);
}

.news-section {
  background: var(--white);
}

.news-list {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.news-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(280px, 0.58fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.news-list img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  object-position: center;
  background: #d9e2d4;
}

.news-list time {
  display: inline-block;
  margin-right: 10px;
  color: var(--muted);
  font-weight: 800;
}

.news-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 10px;
  color: var(--green);
  background: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.news-list p {
  margin: 14px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.entry {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(48px, 7vw, 80px) clamp(20px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 28, 23, 0.97), rgba(28, 66, 48, 0.94)),
    linear-gradient(90deg, var(--lime), transparent);
}

.entry div {
  width: min(760px, 100%);
}

.entry p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.recruit-notice {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(44px, 6vw, 70px) clamp(20px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 27, 22, 0.96), rgba(20, 121, 71, 0.86)),
    url("./assets/fleet-real.png") center / cover;
}

.recruit-notice div {
  width: min(760px, 100%);
}

.recruit-notice h2 {
  margin-bottom: 12px;
}

.recruit-notice p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.recruit-button {
  min-width: 240px;
  color: var(--navy-deep);
  background: var(--safety);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.recruit-button:hover {
  background: #f2cf54;
}

.recruit-button::after {
  content: "→";
  margin-left: 10px;
  font-weight: 900;
}

.page-hero {
  padding: clamp(86px, 12vw, 150px) clamp(20px, 6vw, 88px) clamp(64px, 8vw, 104px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 27, 22, 0.95), rgba(27, 90, 54, 0.82)),
    url("./assets/fleet-real.png") center / cover;
}

.page-hero h1 {
  width: min(920px, 100%);
  font-size: clamp(36px, 5vw, 68px);
}

.page-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.service-detail {
  display: grid;
  gap: 18px;
}

.service-detail article {
  position: relative;
  padding: 34px 34px 34px 96px;
}

.service-number {
  position: absolute;
  top: 38px;
  left: 34px;
  color: var(--lime-dark);
  font-weight: 900;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 22px;
}

.map-card {
  padding: 34px;
  color: var(--white);
  background: var(--navy);
}

.map-card p {
  color: rgba(255, 255, 255, 0.78);
}

.base-list {
  display: grid;
  gap: 12px;
}

.base-list p {
  margin: 0;
  padding: 20px 24px;
  border-left: 6px solid var(--lime);
  background: linear-gradient(90deg, var(--paper), var(--white));
  font-weight: 800;
}

.base-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  background: var(--paper);
}

.base-sales-guide {
  background:
    linear-gradient(135deg, rgba(247, 248, 241, 0.92), rgba(236, 245, 233, 0.72)),
    #f7f8f1;
}

.base-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.base-guide-grid a {
  display: grid;
  gap: 8px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.base-guide-grid span {
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
}

.base-guide-grid strong {
  font-size: 24px;
}

.base-guide-grid p {
  margin: 0;
  color: var(--muted);
}

.office-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.office-table-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.office-table-wrap th,
.office-table-wrap td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.office-table-wrap thead th {
  color: var(--white);
  background: var(--navy);
}

.office-table-wrap tbody th {
  color: var(--green);
}

.office-table-wrap tr:last-child th,
.office-table-wrap tr:last-child td {
  border-bottom: 0;
}

.base-map-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: center;
}

.base-map-intro img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  background: #d9e2d4;
}

.base-map-intro p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 18px;
}

.base-function-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.base-function-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.network-overview {
  background: var(--white);
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-top: 28px;
}

.network-map-image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #c7edf5;
}

.network-map-image img {
  display: block;
  width: 100%;
  height: auto;
}

.network-summary {
  padding: clamp(26px, 4vw, 42px);
  background: var(--paper);
  border-left: 6px solid var(--lime-dark);
}

.network-summary h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.network-summary p {
  color: var(--muted);
}

.office-link-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.office-link {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.office-link strong {
  color: var(--green);
}

.office-link span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.region-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.region-list span {
  padding: 13px 15px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.base-card {
  display: grid;
  grid-template-rows: 220px auto 240px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.base-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #d9e2d4;
}

.base-body {
  padding: 26px;
}

.base-body span {
  color: var(--lime-dark);
  font-size: 12px;
  font-weight: 900;
}

.base-body h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.base-body p {
  margin-bottom: 8px;
  color: var(--muted);
}

.base-body dl,
.outline-table dl {
  margin: 18px 0 0;
}

.base-body dt,
.outline-table dt {
  color: var(--green);
  font-weight: 900;
}

.base-body dd,
.outline-table dd {
  margin: 0 0 12px;
  color: var(--muted);
}

.base-card iframe {
  width: 100%;
  height: 240px;
  border: 0;
  filter: saturate(0.86);
}

.company-grid,
.work-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.company-grid article,
.work-grid article,
.contact-grid article {
  padding: 32px;
}

.philosophy-section {
  background: var(--paper);
}

.philosophy-lead {
  width: min(900px, 100%);
  color: var(--muted);
  font-size: 18px;
}

.client-link-band {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
}

.client-link-band p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.clients-overview p {
  width: min(880px, 100%);
  color: var(--muted);
  font-size: 18px;
}

.client-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.client-index a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.client-groups {
  display: grid;
  gap: 22px;
}

.client-groups.reveal {
  opacity: 1;
  transform: none;
}

.client-group {
  scroll-margin-top: 108px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.client-group-heading {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.client-group-heading h2 {
  margin: 0;
  font-size: 26px;
}

.client-group-heading span {
  color: var(--green);
  font-weight: 900;
}

.client-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.client-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.interview {
  background: var(--paper);
}

.interview .section-heading {
  width: min(840px, 100%);
}

.interview-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.interview-list article {
  padding: 30px;
}

.contact-grid article {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.contact-detail-copy p:not(.eyebrow) {
  color: var(--muted);
}

.contact-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-topic-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.sales-route {
  padding-top: 0;
}

.sales-route-lead {
  width: min(820px, 100%);
  color: var(--muted);
  font-size: 18px;
}

.sales-route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.route-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.route-card span {
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 900;
}

.route-card h3 {
  margin: 0;
  font-size: 19px;
}

.route-card p {
  margin: 0;
  color: var(--muted);
}

.sales-route-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 24px;
  border-left: 6px solid var(--safety);
  background: var(--paper);
}

.sales-route-cta p {
  margin: 0;
  color: var(--muted);
}

.sample-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
}

.sample-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.sample-form .full,
.sample-form button {
  grid-column: 1 / -1;
}

.sample-form input,
.sample-form select,
.sample-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.forms-panel {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(31, 120, 76, 0.2);
  background:
    linear-gradient(135deg, rgba(209, 245, 215, 0.78), rgba(255, 255, 255, 0.96) 48%),
    var(--white);
  box-shadow: 0 18px 46px rgba(28, 75, 54, 0.1);
}

.forms-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

.forms-panel p:not(.eyebrow) {
  color: var(--muted);
}

.forms-checklist {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}

.forms-checklist li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
  color: var(--ink);
}

.forms-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(166, 226, 46, 0.18);
}

.forms-button::after {
  content: "↗";
  margin-left: 0.55em;
  font-size: 0.9em;
}

.text-link.dark {
  display: inline-block;
  margin-top: 24px;
  color: var(--green);
}

.outline-table {
  background: var(--paper);
}

.outline-table dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.outline-table dt,
.outline-table dd {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.outline-table dt {
  padding-right: 24px;
}

.trust-list {
  background: var(--white);
}

.history-section {
  background: var(--paper);
}

.history-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.history-timeline article {
  position: relative;
  padding: 28px 28px 28px 84px;
  border: 1px solid var(--line);
  background: var(--white);
}

.history-timeline article::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 34px;
  width: 18px;
  height: 18px;
  border: 5px solid rgba(168, 239, 183, 0.7);
  border-radius: 50%;
  background: var(--green);
}

.history-timeline time {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.history-timeline h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.history-timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.approach-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.approach-grid img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
  background: var(--white);
}

.approach-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.approach-grid h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.approach-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.pill-list,
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.pill-list span,
.benefit-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), var(--paper));
  color: var(--ink);
  font-weight: 800;
}

.benefits {
  background: var(--paper);
}

.vehicle-story {
  background: var(--paper);
}

.workplace-media {
  display: grid;
  gap: 28px;
  align-items: start;
}

.workplace-media img {
  width: 100%;
  min-height: 0;
  object-fit: cover;
  background: #d9e2d4;
}

.workplace-media img.people-safe-image {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: var(--warehouse);
}

.workplace-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.workplace-media p + p {
  margin-top: 0;
}

.fleet-lead {
  width: min(840px, 100%);
  color: var(--muted);
  font-size: 18px;
}

.vehicle-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 28px;
}

.vehicle-photo-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: #d9e2d4;
}

.fleet-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.fleet-cards article {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.fleet-cards span {
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 900;
}

.fleet-cards h3 {
  margin-bottom: 0;
  font-size: 19px;
}

.fleet-cards p {
  margin-bottom: 0;
  color: var(--muted);
}

.fleet-cards strong {
  margin-top: 8px;
  color: var(--green);
  font-size: 22px;
}

.vehicle-type-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.vehicle-type-list article {
  padding: 22px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--white) 86%, var(--paper));
}

.vehicle-type-list span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.vehicle-type-list h3 {
  margin: 8px 0 8px;
  font-size: 18px;
}

.vehicle-type-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.driver-note {
  margin-top: 18px;
  padding: 28px;
  border-left: 6px solid var(--safety);
  background: var(--white);
}

.driver-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.recruit-faq {
  background: var(--paper);
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.openings {
  background: var(--white);
}

.openings-lead {
  width: min(820px, 100%);
  color: var(--muted);
  font-size: 18px;
}

.opening-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.opening-list article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.opening-list article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.status,
.place {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 900;
}

.status.open {
  color: var(--navy-deep);
  background: var(--lime);
}

.status.consider {
  color: var(--green);
  background: #e7f6df;
}

.status.closed {
  color: var(--muted);
  background: #e9efeb;
}

.place {
  color: var(--white);
  background: var(--navy);
}

.opening-list h3 {
  margin-bottom: 0;
}

.opening-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.opening-list a {
  margin-top: 8px;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.position-details {
  background:
    linear-gradient(135deg, rgba(247, 248, 241, 0.92), rgba(236, 245, 233, 0.72)),
    #f7f8f1;
}

.position-detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.position-detail-list article {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid var(--line);
  background: var(--white);
}

.position-detail-list article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.position-detail-list h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.position-detail-list p {
  margin: 0;
  color: var(--muted);
}

.position-detail-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.2em;
}

.position-detail-list li {
  color: var(--ink);
  font-weight: 700;
}

.job-conditions {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.job-conditions dt,
.job-conditions dd {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.job-conditions dt {
  color: var(--green);
  font-weight: 900;
}

.job-conditions dd {
  color: var(--muted);
}

.selection-flow {
  background: var(--white);
}

.flow-lite {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.flow-lite article {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.flow-lite span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--navy-deep);
  background: var(--lime);
  font-weight: 900;
}

.flow-lite h3 {
  margin-bottom: 8px;
}

.flow-lite p {
  margin: 0;
  color: var(--muted);
}

.recruit-summary {
  background:
    linear-gradient(135deg, rgba(247, 248, 241, 0.92), rgba(236, 245, 233, 0.72)),
    #f7f8f1;
}

.recruit-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.recruit-summary-grid article {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.recruit-summary-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.recruit-summary-grid h3 {
  margin-bottom: 0;
}

.recruit-summary-grid p {
  margin: 0;
  color: var(--muted);
}

.recruit-summary-grid a {
  margin-top: 8px;
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.secondary-light {
  border-color: rgba(20, 121, 71, 0.3);
  color: var(--green);
  background: var(--white);
}

.secondary-light:hover {
  border-color: var(--green);
  background: var(--paper);
}

.vehicle-table {
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.vehicle-table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--white);
}

.vehicle-table th,
.vehicle-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.vehicle-table thead th {
  color: var(--white);
  background: var(--navy);
}

.vehicle-table tbody th {
  color: var(--green);
}

.vehicle-table tbody tr:last-child th,
.vehicle-table tbody tr:last-child td {
  border-bottom: 0;
}

.table-note {
  margin: 18px 0 0;
  color: var(--muted);
}

.interview-list.photo article {
  padding: 0;
  overflow: hidden;
}

.interview-list.photo img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: #d9e2d4;
}

.interview-list.photo img.staff-photo {
  object-fit: contain;
  object-position: center;
  background: var(--warehouse);
}

.interview-list.photo span,
.interview-list.photo h3,
.interview-list.photo p {
  display: block;
  margin-right: 28px;
  margin-left: 28px;
}

.interview-list.photo span {
  margin-top: 26px;
}

.interview-list.photo p {
  margin-bottom: 30px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 24px clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(34px, 5vw, 56px) clamp(20px, 6vw, 88px) 26px;
  color: var(--muted);
  background: var(--warehouse);
  font-size: 14px;
}

.footer-main {
  display: grid;
  gap: 8px;
}

.footer strong {
  color: var(--ink);
  font-size: 20px;
}

.footer address {
  font-style: normal;
}

.footer p {
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  font-weight: 800;
}

.footer-nav a {
  color: var(--ink);
}

.footer-nav a:hover {
  color: var(--green);
}

.footer small {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 121, 71, 0.18);
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .site-header.solid {
    position: sticky;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 190px;
  }

  .intro,
  .business-lead,
  .bases-intro,
  .president,
  .work-message,
  .workplace-media,
  .quality-section,
  .base-map-intro,
  .network-layout,
  .contact-detail,
  .message-band,
  .map-layout {
    grid-template-columns: 1fr;
  }

  .metrics,
  .card-links,
  .skim-cards,
  .base-guide-grid,
  .base-grid,
  .sales-route-grid,
  .fleet-cards,
  .vehicle-type-list,
  .faq-grid,
  .opening-list,
  .position-detail-list,
  .flow-lite,
  .recruit-summary-grid,
  .approach-grid,
  .vehicle-photo-grid,
  .flow-steps,
  .flow-benefits,
  .quality-points,
  .history-timeline,
  .sample-form,
  .company-grid,
  .work-grid,
  .interview-list,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .sales-route-cta {
    display: grid;
  }

  .client-link-band {
    display: grid;
  }

  .entry {
    align-items: flex-start;
    flex-direction: column;
  }

  .recruit-notice {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 160px 0 70px 16px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 25, 37, 0.92), rgba(7, 25, 37, 0.72)),
      linear-gradient(180deg, rgba(7, 25, 37, 0.32), rgba(7, 25, 37, 0.5));
  }

  h1 {
    font-size: 42px;
  }

  .lead,
  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .news-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-list img {
    height: 190px;
  }

  .metrics,
  .card-links,
  .skim-cards,
  .base-guide-grid,
  .base-grid,
  .sales-route-grid,
  .fleet-cards,
  .vehicle-type-list,
  .faq-grid,
  .opening-list,
  .position-detail-list,
  .flow-lite,
  .recruit-summary-grid,
  .approach-grid,
  .vehicle-photo-grid,
  .flow-steps,
  .flow-benefits,
  .quality-visuals,
  .quality-points,
  .network-layout,
  .history-timeline,
  .company-grid,
  .work-grid,
  .interview-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .client-list {
    grid-template-columns: 1fr;
  }

  .sales-route-cta {
    display: grid;
  }

  .client-link-band {
    display: grid;
  }

  .metrics div {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .feature-card {
    min-height: 0;
  }

  .service-detail article {
    padding: 28px;
  }

  .service-number {
    position: static;
    display: block;
    margin-bottom: 10px;
  }

  .flow-steps article {
    min-height: 0;
  }

  .flow-steps article:not(:last-child)::after {
    display: none;
  }

  .office-link-list {
    grid-template-columns: 1fr;
  }

  .workplace-copy {
    grid-template-columns: 1fr;
  }

  .outline-table dl {
    grid-template-columns: 1fr;
  }

  .outline-table dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .outline-table dd {
    padding-top: 0;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer strong {
    display: block;
    margin-bottom: 8px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .history-timeline article {
    padding: 26px;
  }

  .history-timeline article::before {
    position: static;
    display: block;
    margin-bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Modern refresh layer */
:root {
  --radius: 8px;
  --soft-shadow: 0 24px 70px rgba(13, 42, 29, 0.12);
  --hairline: rgba(24, 34, 29, 0.09);
}

body {
  background:
    linear-gradient(90deg, rgba(24, 34, 29, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(24, 34, 29, 0.035) 1px, transparent 1px),
    #fbfcf7;
  background-size: 72px 72px;
}

.site-header {
  top: 16px;
  right: clamp(14px, 2vw, 28px);
  left: clamp(14px, 2vw, 28px);
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(14, 25, 20, 0.78);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.site-header.solid {
  top: 12px;
  background: rgba(14, 25, 20, 0.9);
}

.brand-mark,
.nav-entry,
.button,
.feature-card,
.service-detail article,
.base-card,
.company-grid article,
.work-grid article,
.fleet-cards article,
.opening-list article,
.interview-list article,
.news-list article,
.quality-points article,
.contact-grid article,
.forms-panel,
.map-card,
.driver-note,
.approach-grid article,
.history-timeline article {
  border-radius: var(--radius);
}

.nav-entry {
  background: rgba(168, 239, 183, 0.1);
}

.hero {
  min-height: 96vh;
  border-bottom-right-radius: 48px;
  border-bottom-left-radius: 48px;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 16, 12, 0.9), rgba(12, 48, 30, 0.7) 42%, rgba(12, 48, 30, 0.08) 76%),
    linear-gradient(180deg, rgba(8, 16, 12, 0.2), rgba(8, 16, 12, 0.02) 42%, rgba(8, 16, 12, 0.44));
}

.hero-content {
  width: min(880px, calc(100% - 40px));
}

.hero-content h1 {
  font-size: clamp(48px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section {
  position: relative;
}

.section-heading h2 {
  max-width: 820px;
}

.metrics {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #102119, #1c4a32);
  box-shadow: var(--soft-shadow);
}

.modern-split + .metrics {
  margin-top: -38px;
}

.metrics div {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics span,
.metrics small {
  color: rgba(255, 255, 255, 0.68);
}

.metrics strong {
  color: var(--lime);
}

.feature-card,
.service-detail article,
.company-grid article,
.work-grid article,
.interview-list article,
.contact-grid article,
.quality-points article,
.news-list article,
.fleet-cards article,
.opening-list article,
.approach-grid article,
.history-timeline article,
.base-card {
  border-color: var(--hairline);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.feature-card,
.company-grid article,
.work-grid article,
.contact-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 241, 0.72)),
    var(--white);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.feature-card::after {
  content: "→";
  position: absolute;
  right: 28px;
  bottom: 22px;
  color: rgba(20, 121, 71, 0.34);
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.modern-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  padding: clamp(58px, 8vw, 98px) clamp(20px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 27, 22, 0.98), rgba(31, 120, 76, 0.9)),
    url("./assets/fleet-real.png") center / cover;
}

.modern-split h2 {
  max-width: 680px;
}

.modern-split-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.modern-split-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.modern-split-grid span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.modern-split-grid strong {
  font-size: 24px;
}

.modern-split-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(118px, 13vw, 170px);
  border-bottom-right-radius: 36px;
  border-bottom-left-radius: 36px;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 7vw, 90px);
  bottom: clamp(22px, 5vw, 72px);
  width: min(34vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  transform: rotate(8deg);
}

.company-snapshot {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
}

.company-snapshot article {
  display: grid;
  gap: 8px;
  padding: 26px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.company-snapshot span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.company-snapshot strong {
  color: var(--navy-deep);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.company-snapshot p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.outline-table dl,
.table-wrap,
.news-list article,
.quality-visuals img,
.vehicle-photo-grid img,
.workplace-media img,
.approach-grid img,
.base-card img,
.base-card iframe {
  border-radius: var(--radius);
}

.outline-table dl,
.table-wrap {
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.history-section,
.benefits,
.vehicle-story,
.logistics-flow,
.outline-table {
  background:
    linear-gradient(135deg, rgba(247, 248, 241, 0.92), rgba(236, 245, 233, 0.72)),
    #f7f8f1;
}

.history-timeline article {
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.68);
  background: linear-gradient(135deg, #101b16, #1a3225);
}

.footer strong,
.footer-nav a {
  color: var(--white);
}

.footer small {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.advice-hero {
  background:
    linear-gradient(135deg, rgba(16, 27, 22, 0.96), rgba(31, 120, 76, 0.84)),
    url("./assets/warehouse-overview.png") center / cover;
}

.advice-overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1.18fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.advice-lead {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.advice-lead p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.first-step-list {
  display: grid;
  gap: 14px;
}

.first-step-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 18px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.first-step-list span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--navy-deep);
  background: var(--lime);
  font-weight: 900;
}

.first-step-list h3 {
  margin: 0;
  font-size: 20px;
}

.first-step-list p {
  margin: 0;
  color: var(--muted);
}

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

.advice-grid article,
.forms-design-grid article,
.operation-list article,
.position-detail-list article {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 241, 0.74)),
    var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.advice-grid article {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 30px;
}

.advice-grid span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.advice-grid h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
}

.advice-grid p,
.operation-list p {
  margin: 0;
  color: var(--muted);
}

.advice-grid ul,
.forms-design-grid ol {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding-left: 1.2em;
}

.advice-grid li,
.forms-design-grid li {
  color: var(--ink);
  font-weight: 700;
}

.forms-design {
  background:
    linear-gradient(135deg, rgba(247, 248, 241, 0.92), rgba(236, 245, 233, 0.72)),
    #f7f8f1;
}

.forms-design-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.forms-design-grid article {
  padding: clamp(28px, 4vw, 42px);
}

.forms-design-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(22px, 3vw, 30px);
}

.operation-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.operation-list article {
  padding: 26px;
}

.operation-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 22px;
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
  }

  .modern-split,
  .modern-split-grid,
  .company-snapshot,
  .advice-overview,
  .advice-grid,
  .forms-design-grid,
  .operation-list {
    grid-template-columns: 1fr;
  }

  .metrics {
    margin-top: 0;
  }

  .modern-split + .metrics {
    margin-top: -24px;
  }
}

@media (max-width: 640px) {
  .site-header {
    right: 10px;
    left: 10px;
    border-radius: var(--radius);
  }

  .hero,
  .page-hero {
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
  }

  .metrics {
    width: calc(100% - 28px);
  }

  .company-snapshot {
    width: calc(100% - 28px);
    margin-top: -24px;
  }

  .page-hero::after {
    display: none;
  }
}

/* Design pattern: clean minimal */
:root {
  --ink: #161616;
  --muted: #727272;
  --navy: #2a2a2a;
  --navy-deep: #111111;
  --lime: #e8e8e8;
  --lime-dark: #4d4d4d;
  --green: #303030;
  --safety: #111111;
  --line: #e2e2e2;
  --paper: #fafafa;
  --warehouse: #f1f1ee;
  --sky: #f5f5f5;
  --white: #ffffff;
  --radius: 0;
  --shadow: none;
  --soft-shadow: none;
  --hairline: #e2e2e2;
}

body {
  background: var(--white);
}

.site-header,
.site-header.solid {
  top: 0;
  right: 0;
  left: 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  border-radius: 0;
  background: rgba(17,17,17,.9);
  box-shadow: none;
}

.brand-mark {
  color: var(--white);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255,255,255,.42);
}

.nav-entry {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.hero,
.page-hero {
  border-radius: 0;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.52) 48%, rgba(0,0,0,.08) 80%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.44));
}

.hero-content {
  max-width: 900px;
}

.eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.entry .eyebrow,
.modern-split .eyebrow {
  color: currentColor;
  opacity: .74;
}

.button,
.feature-card,
.service-detail article,
.base-card,
.company-grid article,
.work-grid article,
.fleet-cards article,
.opening-list article,
.interview-list article,
.news-list article,
.quality-points article,
.forms-panel,
.skim-cards article,
.base-guide-grid a,
.position-detail-list article,
.flow-lite article,
.recruit-summary-grid article {
  border-radius: 0;
  box-shadow: none;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.primary:hover {
  background: #333;
}

.button.secondary {
  border-color: rgba(255,255,255,.58);
  background: transparent;
}

.metrics {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: #111;
  box-shadow: none;
}

.modern-split + .metrics {
  margin-top: 0;
}

.metrics strong {
  color: var(--white);
}

.feature-card,
.service-detail article,
.company-grid article,
.work-grid article,
.interview-list article,
.contact-grid article,
.quality-points article,
.news-list article,
.fleet-cards article,
.opening-list article,
.approach-grid article,
.history-timeline article,
.base-card,
.forms-panel,
.skim-cards article,
.base-guide-grid a,
.position-detail-list article,
.flow-lite article,
.recruit-summary-grid article {
  background: var(--white);
  border: 1px solid var(--line);
}

.feature-card:hover,
.service-detail article:hover,
.base-card:hover,
.company-grid article:hover,
.work-grid article:hover,
.fleet-cards article:hover,
.opening-list article:hover,
.interview-list article:hover,
.news-list article:hover,
.quality-points article:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--ink);
}

.feature-card::after {
  color: #d8d8d8;
}

.modern-split,
.entry,
.recruit-notice,
.page-hero {
  background:
    linear-gradient(135deg, rgba(0,0,0,.88), rgba(40,40,40,.72)),
    url("./assets/fleet-real.png") center / cover;
}

.message-band,
.quality-section,
.history-section,
.benefits,
.vehicle-story,
.logistics-flow,
.outline-table,
.forms-design,
.position-details,
.recruit-summary,
.base-sales-guide {
  background: var(--paper);
}

.status.open,
.flow-lite span,
.first-step-list span,
.flow-steps span,
.entry-tags span {
  color: var(--white);
  background: var(--ink);
}

.service-points li,
.mini-point-grid span,
.base-function-list span,
.pill-list span,
.benefit-list span {
  color: var(--ink);
  background: #f3f3f3;
}

.footer {
  background: #111;
}

/* Shared link hover feedback */
a,
.feature-card h2,
.feature-card p,
.office-link strong,
.base-guide-grid strong,
.opening-list a,
.recruit-summary-grid a,
.text-link {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

a:not(.button):hover,
.feature-card:hover h2,
.feature-card:hover p,
.office-link:hover strong,
.base-guide-grid a:hover strong,
.opening-list a:hover,
.recruit-summary-grid a:hover,
.text-link:hover {
  color: #777;
}

.footer-nav a:hover {
  color: #cfcfcf;
}
