:root {
  --navy: #081B33;
  --silver: #B9C3CC;
  --red: #BC002D;
  --white: #FFFFFF;
  --ink: #152130;
  --muted: #687482;
  --paper: #F5F6F7;
  --line: rgba(8, 27, 51, .15);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: .035em;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3, .brand, .main-nav, .eyebrow, .contact-button, .site-footer {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}
.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 88px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  transition: background .35s ease, height .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(8,27,51,.08);
}
.brand img {
  width: 176px;
  max-height: 52px;
  filter: brightness(0) invert(1);
  transition: filter .35s ease;
}
.site-header.scrolled .brand img { filter: none; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.main-nav a { opacity: .85; }
.main-nav a:hover { opacity: 1; }
.language {
  padding-left: 18px;
  border-left: 1px solid currentColor;
  opacity: .75;
}
.language span { padding: 0 5px; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("../images/fresh-fish.png") center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,12,24,.78) 0%, rgba(3,12,24,.42) 48%, rgba(3,12,24,.16) 100%),
    linear-gradient(0deg, rgba(3,12,24,.48) 0%, transparent 48%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 92vw);
  margin: 0 auto;
  padding-top: 60px;
}
.eyebrow {
  margin-bottom: 25px;
  color: var(--silver);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #697889; }
.hero h1 {
  max-width: 1100px;
  margin-bottom: 34px;
  font-size: clamp(42px, 5.1vw, 76px);
  line-height: 1.10;
  font-weight: 400;
  letter-spacing: -.04em;
}
.hero-ja {
  margin-bottom: 38px;
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.9;
}
.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
}
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 44px;
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  letter-spacing: .28em;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 64px;
  margin-top: 14px;
  background: rgba(255,255,255,.65);
}

.section {
  width: min(var(--max), 90vw);
  margin: 0 auto;
  padding: 150px 0;
}
.section-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 9vw;
}
.section-heading h2,
.section-title-row h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.035em;
}
.section-copy {
  padding-top: 44px;
  color: var(--muted);
  font-size: 15px;
  line-height: 2.1;
}
.section-copy .lead {
  color: var(--ink);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.9;
}
.wide-image {
  margin: 110px 0 0;
  height: min(54vw, 620px);
  overflow: hidden;
}
.wide-image img {
  height: 100%;
  object-fit: cover;
}

.statement-section {
  padding: 170px 5vw;
  color: var(--white);
  text-align: center;
  background: var(--navy);
}
.statement-inner { max-width: 1000px; margin: 0 auto; }
.statement-section blockquote {
  margin-bottom: 42px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(44px, 7vw, 94px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.045em;
}
.statement-section p:last-child {
  color: var(--silver);
  font-size: 14px;
  line-height: 2;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5vw;
  margin-bottom: 72px;
}
.section-title-row > p {
  max-width: 430px;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}
.tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tech-card { background: var(--paper); }
.card-image { aspect-ratio: 4/3; overflow: hidden; }
.card-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.tech-card:hover img { transform: scale(1.035); }
.card-body { padding: 34px 30px 38px; }
.card-body span {
  color: var(--red);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
}
.card-body h3 {
  margin: 16px 0 16px;
  font-size: 20px;
  font-weight: 500;
}
.card-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.products-section {
  color: var(--white);
  background: #071321;
}
.products-inner { width: min(var(--max), 90vw); }
.section-title-row.light h2,
.section-title-row.light > p { color: var(--white); }
.product-gallery {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.product {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 280px;
}
.product.large { grid-row: 1 / 3; min-height: 640px; }
.product img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.product:hover img { transform: scale(1.035); }
.product::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.product figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
}
.product figcaption span {
  display: block;
  margin-bottom: 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}
.product figcaption small { color: rgba(255,255,255,.75); }

.coming-soon {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.coming-media {
  position: absolute;
  inset: 0;
  background: url("../images/aged-beef.jpg") center/cover no-repeat;
}
.coming-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,10,16,.76), rgba(5,10,16,.18));
}
.coming-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 90vw);
  margin: 0 auto;
}
.coming-content h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -.04em;
}
.coming-content p:last-child { line-height: 1.9; }

.company-list { margin: 0; }
.company-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 25px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.company-list div:first-child { border-top: 1px solid var(--line); }
.company-list dt {
  color: var(--muted);
  font-size: 12px;
}
.company-list dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.contact-section {
  padding: 140px 5vw;
  color: var(--white);
  text-align: center;
  background: var(--navy);
}
.contact-inner { max-width: 850px; margin: 0 auto; }
.contact-section h2 {
  margin-bottom: 26px;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: -.04em;
}
.contact-section p { color: var(--silver); }
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: min(450px, 100%);
  margin-top: 40px;
  padding: 22px 26px;
  border: 1px solid rgba(255,255,255,.55);
  font-size: 13px;
  letter-spacing: .08em;
  transition: background .3s, color .3s;
}
.contact-button:hover {
  color: var(--navy);
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 68px 4vw;
  color: var(--ink);
  background: var(--white);
}
.site-footer img { width: 170px; }
.site-footer p { margin: 0 0 8px; font-size: 11px; letter-spacing: .08em; }
.site-footer small { color: var(--muted); font-size: 10px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.mobile-only { display: none; }

@media (max-width: 960px) {
  .site-header { height: 72px; }
  .brand img { width: 145px; }
  .menu-button {
    display: grid;
    gap: 7px;
    padding: 12px;
    border: 0;
    background: transparent;
  }
  .menu-button span {
    display: block;
    width: 27px;
    height: 1px;
    background: currentColor;
  }
  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 5vw 42px;
    color: var(--ink);
    background: rgba(255,255,255,.98);
    box-shadow: 0 12px 28px rgba(8,27,51,.12);
  }
  .main-nav.open { display: flex; }
  .language { padding: 16px 0 0; border: 0; }
  .section { padding: 105px 0; }
  .section-grid { grid-template-columns: 1fr; gap: 25px; }
  .section-copy { padding-top: 0; }
  .section-title-row { align-items: flex-start; flex-direction: column; margin-bottom: 50px; }
  .tech-cards { grid-template-columns: 1fr; }
  .tech-card { display: grid; grid-template-columns: 1fr 1fr; }
  .product-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .product.large { grid-row: auto; min-height: 480px; }
  .product { min-height: 380px; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 640px) {
  .hero { min-height: 760px; }
  .hero-media { background-position: 58% center; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.6vw, 48px);
    line-height: 1.12;
    letter-spacing: -.035em;
  }
  .mobile-only { display: inline; }
  .scroll-cue { display: none; }
  .section { width: min(88vw, var(--max)); padding: 84px 0; }
  .wide-image { margin-top: 62px; height: 62vw; }
  .statement-section { padding: 105px 6vw; }
  .statement-section blockquote { font-size: 42px; }
  .tech-card { display: block; }
  .product.large, .product { min-height: 360px; }
  .coming-soon { min-height: 560px; }
  .company-list div { grid-template-columns: 1fr; gap: 8px; }
  .contact-section { padding: 105px 6vw; }
  .site-footer { padding: 50px 6vw; }
}

/* Hero headline balance adjustment */
@media (min-width: 961px) {
  .hero h1 span { white-space: nowrap; }
}


.company-list .business-content {
  align-items: start;
}
.company-list ul {
  margin: 0;
  padding-left: 1.25em;
}
.company-list li {
  margin-bottom: 8px;
}
.company-list li:last-child {
  margin-bottom: 0;
}


/* ===== Ver.1.3 Typography & spacing balance ===== */
body {
  font-size: 16px;
  line-height: 1.85;
}

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

.hero h1 {
  max-width: 1120px;
  font-size: clamp(46px, 5.35vw, 82px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.hero-ja {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.85;
}

.section {
  padding-top: 132px;
  padding-bottom: 132px;
}

.section-grid {
  grid-template-columns: minmax(380px, .92fr) minmax(520px, 1.08fr);
  gap: clamp(64px, 8vw, 128px);
}

.section-heading h2,
.section-title-row h2 {
  font-size: clamp(38px, 3.55vw, 56px);
  line-height: 1.28;
}

.story-title {
  white-space: nowrap;
}

.story-title span {
  display: block;
}

.section-copy {
  padding-top: 38px;
  font-size: 17px;
  line-height: 2;
}

.section-copy .lead,
.story-lead {
  margin-bottom: 32px;
  font-size: clamp(21px, 1.5vw, 27px);
  line-height: 1.9;
}

.story-body {
  max-width: 700px;
  color: #617080;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 2.05;
}

.section-title-row {
  margin-bottom: 64px;
}

.section-title-row > p {
  max-width: 470px;
  font-size: 16px;
  line-height: 1.95;
}

.card-body h3 {
  font-size: 21px;
}

.card-body p {
  font-size: 14px;
  line-height: 1.85;
}

.statement-section p:last-child,
.coming-content p:last-child,
.contact-section p {
  font-size: 16px;
  line-height: 1.9;
}

.company-list dt {
  font-size: 13px;
}

.company-list dd {
  font-size: 16px;
  line-height: 1.85;
}

.site-footer p {
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1120px) {
  .story-title {
    white-space: normal;
  }

  .section-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 6vw;
  }
}

@media (max-width: 960px) {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-copy {
    padding-top: 0;
  }

  .story-title {
    white-space: normal;
  }

  .story-title span {
    display: inline;
  }

  .story-title span:first-child::after {
    content: " ";
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(39px, 11vw, 48px);
    line-height: 1.08;
  }

  .hero-ja {
    font-size: 15px;
  }

  .section-heading h2,
  .section-title-row h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.3;
  }

  .section-copy .lead,
  .story-lead {
    font-size: 20px;
    line-height: 1.85;
  }

  .story-body,
  .section-title-row > p {
    font-size: 15px;
    line-height: 1.95;
  }
}

/* v1.4 readability and technology updates */
.technology-section .section-title-row { align-items: flex-start; }
.technology-section .section-title-row h2 { font-size: clamp(34px, 3.7vw, 56px); line-height: 1.18; }
.technology-section .section-title-row > p { max-width: 500px; color: #455463; font-size: 16px; line-height: 2; font-weight: 400; }
.tech-cards { grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card-body { padding: 36px 34px 42px; }
.card-body h3 { font-size: 22px; line-height: 1.35; }
.card-body p { color: #455463; font-size: 16px; line-height: 1.95; font-weight: 400; }
.safety-section { background: var(--navy); color: var(--white); }
.safety-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; }
.safety-inner h2 { margin: 0; font-size: clamp(36px, 4.5vw, 64px); line-height: 1.15; font-weight: 400; letter-spacing: -.04em; }
.safety-copy { padding-top: 44px; color: #d1d8df; font-size: 16px; line-height: 2; }
.safety-copy .lead { color: var(--white); font-size: clamp(19px, 1.8vw, 25px); line-height: 1.8; }
@media (max-width: 820px) {
  .tech-cards, .safety-inner { grid-template-columns: 1fr; }
  .technology-section .section-title-row { display: block; }
  .technology-section .section-title-row > p { margin-top: 30px; max-width: none; }
  .safety-copy { padding-top: 0; }
  .card-body p { font-size: 15px; }
}

/* ===== Ver.1.5 Japanese-first communication & typography refinement ===== */
:root {
  --text-readable: #354454;
}

body {
  font-weight: 400;
  letter-spacing: .025em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hero-title-ja,
.heading-ja,
.statement-ja,
.contact-section h2 {
  font-family: "Noto Sans JP", sans-serif;
}

.hero-title-ja span,
.hero-title-en span,
.bilingual-heading > span {
  display: block;
}

.hero h1.hero-title-ja {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(40px, 4.7vw, 70px);
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: .01em;
}

.hero-title-en {
  max-width: 760px;
  margin: 0 0 38px;
  color: rgba(255,255,255,.82);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: .045em;
}

.story-body,
.section-copy,
.section-title-row > p,
.card-body p,
.safety-copy,
.company-list dd {
  color: var(--text-readable);
}

.statement-section blockquote.statement-ja {
  margin-bottom: 20px;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.28;
  font-weight: 500;
  letter-spacing: .015em;
}

.statement-section .statement-en {
  margin-bottom: 34px;
  color: rgba(255,255,255,.78);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.6;
  letter-spacing: .06em;
}

.bilingual-heading .heading-ja {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.7vw, 55px);
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: .015em;
}

.bilingual-heading .heading-en {
  max-width: 720px;
  color: #718091;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: .02em;
}

.technology-section .section-title-row h2,
.safety-inner h2 {
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.tech-cards {
  align-items: stretch;
}

.tech-card {
  display: flex;
  flex-direction: column;
}

.card-body {
  flex: 1;
}

.card-body h3 {
  overflow-wrap: anywhere;
}

.safety-heading .heading-ja {
  color: var(--white);
}

.safety-heading .heading-en {
  color: #b9c5d0;
}

.safety-copy,
.safety-copy p {
  color: #d8e0e7;
}

.section-heading-en,
.contact-en {
  margin: 16px 0 0;
  color: rgba(255,255,255,.72);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .08em;
}

.contact-section h2 {
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: .02em;
}

.contact-en {
  margin: 0 0 24px;
}

@media (min-width: 961px) {
  .hero h1 span { white-space: normal; }
  .hero-title-ja span,
  .hero-title-en span { white-space: nowrap; }
}

@media (max-width: 960px) {
  .hero h1.hero-title-ja {
    font-size: clamp(38px, 7vw, 58px);
  }

  .bilingual-heading .heading-ja {
    font-size: clamp(34px, 6vw, 48px);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 720px;
  }

  .hero h1.hero-title-ja {
    font-size: clamp(32px, 9.2vw, 43px);
    line-height: 1.4;
  }

  .hero-title-en {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-title-ja span,
  .hero-title-en span {
    white-space: normal;
  }

  .bilingual-heading .heading-ja {
    margin-bottom: 14px;
    font-size: clamp(30px, 8.5vw, 40px);
    line-height: 1.45;
  }

  .bilingual-heading .heading-en {
    font-size: 14px;
    line-height: 1.65;
  }

  .card-body {
    padding: 30px 26px 34px;
  }

  .card-body h3 {
    font-size: 19px;
  }

  .card-body p,
  .safety-copy,
  .section-title-row > p,
  .story-body {
    font-size: 15px;
    line-height: 1.95;
  }
}

/* ===== Ver.1.55 early-review typography adjustments ===== */
/* This interim review version focuses on readability and scale balance. */

/* English secondary copy: slightly larger and clearer */
.hero-title-en {
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.5;
  font-weight: 500;
}

.bilingual-heading .heading-en {
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.55;
  font-weight: 500;
}

.section-heading-en,
.contact-en {
  font-size: 16px;
  line-height: 1.65;
}

/* Technology intro: align the scale of headline and important supporting copy */
.technology-section .section-title-row > p {
  max-width: 540px;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}

/* Technology cards: make numbering and lower descriptions easy to scan */
.card-body span {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .04em;
}

.card-body h3 {
  margin-top: 20px;
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.3;
}

.card-body p {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.9;
  font-weight: 400;
}

/* Products: the right-side copy is a primary sales message, not a caption */
.products-section .section-title-row > p {
  max-width: 560px;
  font-size: clamp(19px, 1.75vw, 25px);
  line-height: 1.9;
  font-weight: 500;
  letter-spacing: .03em;
}

/* Company: enlarge labels and values while preserving the table rhythm */
.company-section .section-heading h2 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.15;
}

.company-list dt {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
}

.company-list dd {
  font-size: 18px;
  line-height: 1.9;
}

.company-list li {
  margin-bottom: 8px;
}

@media (max-width: 960px) {
  .technology-section .section-title-row > p,
  .products-section .section-title-row > p {
    max-width: none;
    font-size: 18px;
  }

  .card-body p {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .hero-title-en {
    font-size: 16px;
  }

  .bilingual-heading .heading-en {
    font-size: 16px;
  }

  .card-body span {
    font-size: 22px;
  }

  .card-body h3 {
    font-size: 22px;
  }

  .card-body p,
  .technology-section .section-title-row > p,
  .products-section .section-title-row > p,
  .company-list dd {
    font-size: 16px;
    line-height: 1.9;
  }

  .company-list dt {
    font-size: 15px;
  }
}

/* v1.56 desktop balance refinements */
.coming-content {
  max-width: 1180px;
}

.coming-content .eyebrow {
  margin-bottom: 34px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.coming-content h2 {
  max-width: 900px;
  margin-bottom: 34px;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 1.08;
}

.coming-content p:last-child {
  max-width: 560px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.95;
  font-weight: 500;
}

.company-section.section-grid {
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(54px, 6vw, 92px);
  align-items: start;
}

.company-section .section-heading h2 {
  max-width: 430px;
  font-size: clamp(48px, 4.7vw, 66px);
  line-height: 1.08;
}

.company-list div {
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  padding: 26px 0;
}

.company-list dt {
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
}

.company-list dd {
  font-size: 17px;
  line-height: 1.85;
}

.company-list ul {
  margin-top: 0;
  padding-left: 1.15em;
}

@media (max-width: 1100px) {
  .company-section.section-grid {
    grid-template-columns: minmax(250px, .68fr) minmax(460px, 1.32fr);
    gap: 48px;
  }

  .company-list div {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 22px;
  }

  .company-list dt { font-size: 15px; }
  .company-list dd { font-size: 16px; }
}

@media (max-width: 960px) {
  .company-section.section-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .company-section .section-heading h2 {
    max-width: none;
  }
}
