:root {
  --ink: #111614;
  --muted-ink: #5c625f;
  --paper: #ffffff;
  --soft: #f6f4ef;
  --line: #e1ddd3;
  --charcoal: #07100e;
  --charcoal-2: #101714;
  --gold: #d7a22b;
  --gold-dark: #b98417;
  --white-soft: rgba(255, 255, 255, 0.82);
  --shadow: 0 18px 52px rgba(7, 16, 14, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 4.8vw;
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 16, 14, 0.78), rgba(7, 16, 14, 0.1));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 36px;
  border: 3px solid var(--gold);
  transform: skewY(-17deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px -8px -8px 5px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav a {
  color: rgba(255, 255, 255, 0.86);
}

.nav a:hover {
  color: #fff;
}

.nav-contact {
  min-width: 152px;
  padding: 14px 20px;
  color: #fff !important;
  background: var(--gold);
  text-align: center;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image: url("assets/hero-ramen-wholesale.png");
  background-position: center;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 9, 0.94) 0%, rgba(3, 10, 9, 0.82) 34%, rgba(3, 10, 9, 0.28) 68%, rgba(3, 10, 9, 0.1) 100%),
    linear-gradient(180deg, rgba(3, 10, 9, 0.22) 0%, rgba(3, 10, 9, 0.16) 70%, rgba(3, 10, 9, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 90vw);
  margin-left: 6vw;
  padding-top: 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.eyebrow::after,
.section-kicker::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 16px;
  background: var(--gold);
}

h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.7rem, 6vw, 5.55rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--white-soft);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 2;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 18px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  min-width: 168px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
}

.button::after {
  content: ">";
  margin-left: 14px;
  font-size: 1.2rem;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 16px 38px rgba(215, 162, 43, 0.24);
}

.button.line {
  color: #fff;
  background: #06c755;
  box-shadow: 0 16px 38px rgba(6, 199, 85, 0.22);
}

.button.secondary {
  color: var(--gold);
  background: rgba(3, 10, 9, 0.28);
  border-color: rgba(215, 162, 43, 0.72);
}

.hero-facts {
  position: absolute;
  right: 4.6vw;
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  max-width: 760px;
  color: #fff;
  background: rgba(12, 17, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-facts div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  padding: 22px 26px;
  border-right: 1px solid rgba(215, 162, 43, 0.42);
}

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

.fact-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 700;
}

.hero-facts p,
.hero-facts strong {
  margin: 0;
}

.hero-facts p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-facts strong {
  font-size: 0.98rem;
  line-height: 1.45;
}

.section {
  padding: 88px 5vw;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.centered {
  max-width: 760px;
  text-align: center;
}

.centered .section-kicker::after {
  margin-right: auto;
  margin-left: auto;
}

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

.intro h2,
.section-heading h2,
.delivery-grid h2,
.company-grid h2,
.contact h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.45;
}

.intro p:last-child,
.company-copy,
.contact p {
  margin: 22px 0 0;
  color: var(--muted-ink);
}

.business-section,
.product-section,
.company-section {
  background: var(--soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.business-section {
  padding-top: 76px;
}

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

.business-card {
  min-height: 240px;
  padding: 32px;
  background: #fff;
  border-top: 4px solid var(--gold);
  box-shadow: 0 14px 34px rgba(7, 16, 14, 0.08);
}

.business-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.45;
}

.business-card p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.96rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 280px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(7, 16, 14, 0.08);
}

.product-card span {
  color: var(--gold-dark);
  font-weight: 700;
}

.product-card h3 {
  margin: 18px 0 12px;
  font-size: 1.2rem;
  line-height: 1.45;
}

.product-card p {
  margin: 0;
  color: var(--muted-ink);
  font-size: 0.95rem;
}

.dark-band {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 16, 14, 0.96), rgba(7, 16, 14, 0.84)),
    url("assets/hero-ramen-wholesale.png") center / cover;
}

.delivery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

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

.delivery-list p {
  margin: 0;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold);
}

.company-grid,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.company-table {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.company-table div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

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

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

.company-table dd {
  margin: 0;
}

.contact {
  color: #fff;
  background: var(--charcoal);
}

.contact .section-kicker,
.contact p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
  align-items: center;
}

.contact-actions {
  display: grid;
  gap: 14px;
  justify-self: end;
}

.order-template {
  margin-top: 24px;
  padding: 20px 22px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid #06c755;
}

.order-template p,
.order-template ul {
  margin: 0;
}

.order-template p {
  color: #fff;
  font-weight: 700;
}

.order-template ul {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding-left: 1.2em;
}

.contact-panel .button.primary {
  justify-self: end;
  min-width: 238px;
}

.line-qr {
  width: min(260px, 100%);
  padding: 18px;
  justify-self: end;
  color: var(--ink);
  background: #fff;
  text-align: center;
}

.line-qr img {
  display: block;
  width: 100%;
  height: auto;
}

.line-qr p {
  margin: 10px 0 0;
  color: var(--muted-ink);
  font-size: 0.86rem;
  line-height: 1.5;
}

.email-link,
.phone-link {
  display: grid;
  gap: 2px;
  color: #fff;
  text-align: right;
}

.email-link span,
.phone-link span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.email-link strong,
.phone-link strong {
  font-size: 1.15rem;
  line-height: 1.25;
}

.email-link strong {
  font-size: 1rem;
}

.site-footer {
  padding: 28px 5vw;
  background: #030807;
}

.site-footer p {
  width: min(1160px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .hero {
    min-height: 880px;
    align-items: start;
    padding-top: 150px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 10, 9, 0.94) 0%, rgba(3, 10, 9, 0.78) 44%, rgba(3, 10, 9, 0.34) 100%),
      linear-gradient(90deg, rgba(3, 10, 9, 0.86), rgba(3, 10, 9, 0.24));
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 0;
  }

  .hero-facts {
    left: 5vw;
    right: 5vw;
    bottom: 26px;
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    border-right: 0;
    border-bottom: 1px solid rgba(215, 162, 43, 0.34);
  }

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

  .business-grid,
  .product-grid,
  .delivery-grid,
  .company-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .contact-actions,
  .contact-panel .button.primary {
    justify-self: start;
  }

  .line-qr {
    justify-self: start;
  }

  .email-link,
  .phone-link {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
  }

  .brand {
    font-size: 1.12rem;
  }

  .nav-contact {
    min-width: auto;
    padding: 10px 14px;
  }

  .hero {
    min-height: 920px;
    background-position: 58% center;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 68px 5vw;
  }

  .section-heading {
    display: block;
  }

  .business-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

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