:root {
  --ink: #151515;
  --ink-soft: #34332f;
  --muted: #706f69;
  --paper: #f7f5ef;
  --panel: #fffdf8;
  --panel-2: #efede6;
  --line: #ded8cb;
  --sage: #66745e;
  --rust: #9f6a4f;
  --mist: #f1eee6;
  --radius: 8px;
  --type-loader: 9rem;
  --type-hero: 6.4rem;
  --type-section: 3.7rem;
  --type-detail: 4.8rem;
  --type-service: 1.8rem;
  --type-product: 1.55rem;
  --type-modal: 2.45rem;
  --type-lead: 1.02rem;
  --type-body: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo,
    Arial, sans-serif;
}

body.is-loading,
body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

main section {
  scroll-margin-top: 96px;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: #f8f6ef;
  transition:
    opacity 0.65s ease,
    visibility 0.65s ease,
    transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-inner {
  position: relative;
  width: min(1120px, calc(100vw - 36px));
  padding: 28px 0;
}

.preloader-inner p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.preloader-word {
  overflow: hidden;
}

.preloader-word span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-loader);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  animation: loaderWord 1.35s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.preloader-line {
  position: relative;
  height: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(21, 21, 21, 0.16);
}

.preloader-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--ink);
  transform-origin: left center;
  animation: loaderLine 1.35s cubic-bezier(0.77, 0, 0.175, 1) both;
}

body.is-ready .preloader {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
}

body.is-ready .hero-copy {
  animation: heroReveal 0.9s ease 0.25s both;
}

@keyframes loaderWord {
  0% {
    opacity: 0;
    transform: translateX(-105%) skewX(-7deg);
  }
  42% {
    opacity: 1;
    transform: translateX(0) skewX(0deg);
  }
  100% {
    opacity: 0.72;
    transform: translateX(105%) skewX(-3deg);
  }
}

@keyframes loaderLine {
  0% {
    transform: scaleX(0);
  }
  55% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: 78px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #151515;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.site-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: stretch;
  gap: clamp(16px, 2.8vw, 38px);
  font-size: 0.9rem;
  font-weight: 760;
}

.nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 38px);
}

.site-nav a,
.nav-contact {
  border: 0;
  color: inherit;
  background: transparent;
  letter-spacing: 0;
}

.nav-products {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-products::after {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 59;
  width: min(520px, calc(100vw - 36px));
  height: 12px;
  content: "";
}

.nav-product-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 60;
  display: grid;
  width: min(520px, calc(100vw - 36px));
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 22px 60px rgba(63, 52, 39, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.nav-products:hover .nav-product-menu,
.nav-products:focus-within .nav-product-menu,
.nav-products.is-open .nav-product-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu-all,
.nav-menu-parent {
  color: var(--rust);
  font-weight: 900;
}

.nav-menu-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.nav-menu-group {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.nav-menu-group a:not(.nav-menu-parent) {
  color: var(--muted);
  font-size: 0.86rem;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #151515;
  background: #f4f1e8;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: contain;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(247, 245, 239, 0.48), rgba(247, 245, 239, 0.1) 62%),
    linear-gradient(0deg, rgba(247, 245, 239, 0.38), rgba(247, 245, 239, 0) 50%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(18px, 5vw, 74px) clamp(72px, 9vw, 128px);
}

.jp-lead {
  margin: 0 0 18px;
  font-size: var(--type-lead);
  font-weight: 700;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-hero);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-note {
  margin: 28px 0 0;
  color: rgba(21, 21, 21, 0.72);
  font-size: 0.85rem;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 42px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.78rem;
  font-weight: 800;
}

.section-panel,
.brand-section,
.recruit,
.csr,
.contact {
  padding: clamp(72px, 10vw, 140px) clamp(18px, 5vw, 76px);
}

[data-reveal].reveal-section {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}

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

.section-title {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 80px);
  align-items: start;
}

.eyebrow {
  margin: 0;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title h2,
.brand-copy h2,
.recruit h2,
.contact h2,
.modal-card h2 {
  margin: 0;
  font-size: var(--type-section);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.intro {
  background: var(--panel);
}

.intro-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  margin-top: clamp(44px, 7vw, 92px);
}

.intro-body p,
.brand-copy p,
.recruit p,
.csr p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 2.05;
}

.image-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 14px;
  align-items: end;
}

.image-strip img {
  width: 100%;
  min-height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-strip img:nth-child(2) {
  min-height: 380px;
}

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

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(40px, 6vw, 84px);
  border: 1px solid var(--line);
  background: var(--line);
}

.service-list article {
  min-width: 0;
  background: var(--panel);
}

.service-list span {
  display: block;
  padding: 24px;
  color: var(--rust);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-list img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-list h3,
.csr h3 {
  margin: 26px 24px 10px;
  font-size: var(--type-service);
  letter-spacing: 0;
}

.service-list p {
  min-height: 128px;
  margin: 0;
  padding: 0 24px 30px;
  color: var(--muted);
  line-height: 1.9;
}

.products {
  background: var(--panel);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(40px, 6vw, 84px);
  border: 1px solid var(--line);
  background: var(--line);
}

.product-pagination button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 900;
}

.product-pagination button[aria-current="page"] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.product-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.product-card {
  display: grid;
  min-width: 0;
  background: var(--panel);
  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

.product-card:hover {
  background: var(--panel-2);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-content {
  display: grid;
  min-height: 300px;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 12px;
  padding: 24px;
}

.product-content > span:not(.product-link-label) {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0;
  font-size: var(--type-product);
  line-height: 1.16;
  letter-spacing: 0;
}

.product-content p,
.empty-products {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.empty-products {
  margin-top: clamp(34px, 5vw, 64px);
}

.product-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-detail strong {
  font-size: 1.18rem;
}

.product-detail em {
  color: var(--sage);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 900;
}

.product-link-label {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-card:hover .product-link-label {
  color: #fff;
  background: var(--ink);
}

.product-page {
  min-height: 100vh;
  padding-top: 78px;
  background: var(--paper);
}

.product-hero-detail,
.related-products,
.product-not-found {
  padding: clamp(46px, 7vw, 96px) clamp(18px, 5vw, 76px);
}

.product-hero-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.product-image-panel {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-thumbnail-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(58px, 1fr));
  gap: 8px;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.product-thumbnail {
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  opacity: 0.62;
  transition:
    border-color 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s ease;
}

.product-thumbnail:hover,
.product-thumbnail.is-active {
  border-color: var(--ink);
  opacity: 1;
}

.product-thumbnail.is-active {
  transform: translateY(-2px);
}

.product-thumbnail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-info-panel {
  min-width: 0;
  padding-top: clamp(8px, 2vw, 28px);
}

.breadcrumb-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-info-panel h1,
.product-not-found h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--type-detail);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.product-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.9;
}

.product-purchase-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-purchase-row strong {
  font-size: 1.8rem;
}

.product-purchase-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(154, 165, 141, 0.42);
  border-radius: 999px;
  color: var(--sage);
  font-weight: 900;
}

.product-copy-block {
  margin-top: 42px;
}

.product-copy-block h2 {
  margin: 0 0 16px;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-copy-block p,
.product-not-found p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 2.05;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.product-actions .solid-link,
.product-actions .outline-link {
  margin-top: 0;
}

.related-products {
  background: var(--panel);
  border-top: 1px solid var(--line);
}

.product-not-found {
  display: grid;
  min-height: 62vh;
  align-content: center;
}

.brand-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: center;
  background: var(--paper);
}

.brand-visual img {
  width: 100%;
  max-height: 760px;
  border-radius: var(--radius);
  object-fit: cover;
}

.brand-copy p {
  margin-top: 28px;
}

.outline-link,
.solid-link,
.submit-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 34px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 900;
}

.outline-link {
  border: 1px solid var(--ink);
  color: var(--ink);
}

.solid-link,
.submit-button {
  border: 0;
  color: #fff;
  background: var(--ink);
}

.recruit {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.75fr) auto;
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
  color: var(--ink);
  background: var(--mist);
}

.recruit .eyebrow,
.contact .eyebrow {
  color: var(--rust);
}

.recruit .solid-link {
  color: #fff;
  background: var(--ink);
}

.company {
  background: var(--panel);
}

.company-table {
  margin: clamp(40px, 6vw, 84px) 0 0;
  border-top: 1px solid var(--line);
}

.company-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: var(--muted);
  font-weight: 900;
}

.company-table dd {
  margin: 0;
  line-height: 1.8;
}

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

.csr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(40px, 6vw, 84px);
}

.csr-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}

.csr-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.csr-grid p {
  padding: 0 24px 30px;
}

.contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  color: var(--ink);
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.contact h2 {
  max-width: 920px;
}

.contact .solid-link {
  background: var(--ink);
  color: #fff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 76px);
  color: var(--muted);
  background: var(--panel);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

.modal {
  width: min(760px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.modal::backdrop {
  background: rgba(17, 21, 19, 0.62);
}

.modal-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(26px, 5vw, 48px);
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.modal-card h2 {
  font-size: var(--type-modal);
}

.modal-company-info {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: var(--mist);
}

.modal-company-info strong,
.modal-company-info p {
  margin: 0;
}

.modal-company-info span {
  margin-left: 16px;
}

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

.modal-card input,
.modal-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

.check-line {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-size: 0.92rem;
}

.check-line input {
  width: 18px;
  height: 18px;
}

.close-button {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 1.3rem;
}

.submit-button {
  margin-top: 4px;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--sage);
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid rgba(169, 103, 69, 0.38);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  :root {
    --type-loader: 6rem;
    --type-hero: 4.7rem;
    --type-section: 2.65rem;
    --type-detail: 3.5rem;
    --type-service: 1.55rem;
    --type-product: 1.42rem;
    --type-modal: 2.1rem;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0;
    max-height: calc(100svh - 78px);
    overflow-y: auto;
    padding: 8px 18px 24px;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 0.24s ease;
  }

  .nav-links {
    display: grid;
    gap: 0;
    justify-content: stretch;
  }

  .site-header.menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a,
  .nav-contact {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .nav-products {
    display: grid;
  }

  .nav-products::after {
    display: none;
  }

  .nav-products > a {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-product-menu {
    position: static;
    width: 100%;
    padding: 10px 0 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-product-menu a {
    padding: 4px 0;
    border-bottom: 0;
  }

  .nav-menu-columns {
    grid-template-columns: 1fr;
  }

  .section-title,
  .intro-body,
  .brand-section,
  .product-hero-detail,
  .recruit {
    grid-template-columns: 1fr;
  }

  .product-image-panel {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit {
    align-items: start;
  }

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

@media (max-width: 720px) {
  :root {
    --type-loader: 4.2rem;
    --type-hero: 3.35rem;
    --type-section: 2rem;
    --type-detail: 2.55rem;
    --type-service: 1.35rem;
    --type-product: 1.28rem;
    --type-modal: 1.85rem;
    --type-lead: 0.95rem;
    --type-body: 0.96rem;
  }

  .hero-copy {
    min-height: auto;
    padding: 28px 18px 86px;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero-image {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1696 / 854;
    object-fit: contain;
    object-position: center center;
  }

  .hero-shade {
    display: none;
  }

  .hero h1 {
    max-width: 92vw;
    line-height: 1;
  }

  .section-title h2,
  .brand-copy h2,
  .recruit h2,
  .contact h2 {
    line-height: 1.18;
  }

  .scroll-cue {
    left: 18px;
    right: auto;
    bottom: 28px;
    writing-mode: horizontal-tb;
  }

  .image-strip,
  .service-list,
  .product-grid,
  .csr-grid {
    grid-template-columns: 1fr;
  }

  .image-strip img,
  .image-strip img:nth-child(2) {
    min-height: 220px;
  }

  .service-list p {
    min-height: auto;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
