:root {
  --navy: #0b234a;
  --navy-2: #14345f;
  --gold: #b9914d;
  --cream: #f7f3ea;
  --paper: #fffdf8;
  --line: #e5e0d7;
  --ink: #152033;
  --muted: #667085;
  --soft: #f5f6f8;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(11, 35, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", "Apple SD Gothic Neo", "Noto Sans KR", "Microsoft YaHei", "PingFang SC", "Hiragino Sans", "Noto Sans CJK SC", "Noto Sans CJK KR", "Noto Sans JP", Arial, sans-serif;
  background: var(--paper);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  min-height: 100vh;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  color: var(--navy);
  font-size: 28px;
  letter-spacing: 0.08em;
}

.brand span {
  margin-top: 7px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.nav a {
  padding: 28px 0 24px;
  border-bottom: 2px solid transparent;
  line-height: 1.35;
  white-space: nowrap;
}

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

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

.nav-item > a {
  display: inline-flex;
}

.mega-toggle,
.nav-toggle {
  display: none;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  width: min(900px, calc(100vw - 48px));
  padding-top: 16px;
  transform: translateX(-38%);
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu,
.nav-item.is-open .mega-menu {
  display: block;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
}

.mega-copy strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.mega-copy p {
  margin: 10px 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

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

.mega-card {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
}

.mega-card img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  display: block;
}

.mega-card span {
  padding: 0 9px 10px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

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

.lang {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--navy);
  padding: 0 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  padding: 0 14px;
  background: white;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.btn.primary {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.btn.gold {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 70px 42px 42px;
  background:
    linear-gradient(90deg, rgba(255,253,248,0.98) 0%, rgba(255,253,248,0.9) 43%, rgba(255,253,248,0.16) 100%),
    url("../public/uploads/media/scenario-workwear.png") center right / cover no-repeat;
}

.hero-inner,
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.hero-copy {
  width: min(620px, 100%);
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.hero p {
  width: min(570px, 100%);
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px;
  width: min(760px, 100%);
}

.trust-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(11, 35, 74, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
}

.trust-icon,
.service-icon,
.reason-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(185, 145, 77, 0.45);
  border-radius: 50%;
  color: var(--gold);
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 13px;
}

.trust-item span {
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 58px 42px;
}

.section.compact {
  padding-top: 38px;
  padding-bottom: 38px;
}

.page-hero {
  padding: 76px 42px;
  background:
    linear-gradient(90deg, rgba(255,253,248,0.96), rgba(255,253,248,0.76)),
    url("../public/uploads/media/bedding-set-photo.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero.about-visual {
  background:
    linear-gradient(90deg, rgba(255,253,248,0.98), rgba(255,253,248,0.86), rgba(255,253,248,0.48)),
    url("../public/uploads/media/factory-quality-photo.png") center right / cover no-repeat;
}

.page-hero h1 {
  width: min(760px, 100%);
  margin-bottom: 18px;
}

.page-hero p {
  width: min(680px, 100%);
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.section.alt {
  background: var(--soft);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(23px, 2.4vw, 30px);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-title .seo-copy {
  display: none;
}

.buyer-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: white;
  box-shadow: 0 8px 26px rgba(11, 35, 74, 0.05);
}

.step-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.step-card strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.45;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.scenario-card,
.proof-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 30px rgba(11, 35, 74, 0.06);
}

.scenario-image,
.proof-image {
  height: 160px;
  background: var(--cream);
}

.scenario-image img,
.proof-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenario-body,
.proof-body {
  padding: 18px;
}

.scenario-body span,
.proof-body span,
.moq-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-body h3,
.proof-body h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.4;
}

.scenario-body p,
.proof-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.scenario-body strong {
  color: var(--navy);
  font-size: 13px;
}

.moq-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(185, 145, 77, 0.34);
  border-radius: var(--radius);
  padding: 30px;
  background: linear-gradient(135deg, #fffaf0 0%, #ffffff 100%);
}

.moq-copy h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.35;
}

.moq-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.moq-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: white;
}

.moq-grid strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.moq-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

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

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

.proof-grid.compact .proof-image {
  height: 118px;
}

.proof-grid.compact .proof-body {
  padding: 14px;
}

.proof-grid.compact .proof-body h3 {
  font-size: 16px;
}

.proof-grid.compact .proof-body p {
  font-size: 13px;
}

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

.service-card,
.category-card,
.reason-card,
.case-card,
.timeline-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 30px rgba(11, 35, 74, 0.06);
}

.service-visual {
  height: 180px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--cream);
}

.service-img,
.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-body {
  position: relative;
  padding: 34px 24px 24px;
  text-align: center;
}

.service-icon {
  position: absolute;
  top: -22px;
  left: 50%;
  width: 46px;
  height: 46px;
  transform: translateX(-50%);
  background: var(--navy);
  color: white;
}

.service-body h3,
.category-card h3,
.reason-card h3 {
  color: var(--navy);
  font-size: 19px;
}

.service-body p,
.reason-card p,
.case-card p {
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  color: var(--navy);
  font-weight: 900;
}

.categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.catalog-section {
  scroll-margin-top: 96px;
}

.catalog-section + .catalog-section {
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

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

.catalog-heading h2,
.feature-split h2 {
  color: var(--navy);
  font-size: 28px;
}

.catalog-heading p,
.feature-split p {
  color: var(--muted);
  line-height: 1.8;
}

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

.catalog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 30px rgba(11, 35, 74, 0.06);
}

.catalog-card:hover,
.case-card:hover,
.service-card:hover,
.category-card:hover,
.reason-card:hover,
.scenario-card:hover,
.proof-card:hover,
.step-card:hover,
.mega-card:hover {
  transform: translateY(-2px);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: var(--shadow);
}

.catalog-image {
  height: 230px;
  background: var(--cream);
}

.catalog-image img,
.feature-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-body {
  padding: 20px;
}

.moq-band + .catalog-grid,
.catalog-grid + .reasons,
.catalog-grid + .process-grid,
.custom-ready-grid {
  margin-top: 28px;
}

.list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.list-header h1 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 42px;
}

.list-header p {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.8;
}

.filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.filter-panel strong,
.filter-panel span {
  display: block;
}

.filter-panel strong {
  color: var(--navy);
}

.filter-panel span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-tags a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.filter-tags a.active {
  border-color: var(--navy);
  color: white;
  background: var(--navy);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-detail-image {
  overflow: hidden;
  height: 520px;
  border-radius: var(--radius);
  background: var(--cream);
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.gallery-thumbs div {
  overflow: hidden;
  height: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.product-detail-body h1 {
  margin-bottom: 0;
}

.product-detail-body h2 {
  color: var(--navy);
  font-size: 22px;
}

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

.spec-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 16px;
}

.spec-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
}

.spec-grid strong {
  color: var(--navy);
  font-size: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  border: 1px solid rgba(185, 145, 77, 0.35);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--navy);
  background: #fffaf0;
  font-size: 12px;
  font-weight: 800;
}

.tag-row.large span {
  padding: 8px 12px;
  font-size: 14px;
}

.sku-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sku-options a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--navy);
  background: white;
  font-size: 13px;
  font-weight: 800;
}

.sku-options a.active {
  border-color: var(--navy);
  color: white;
  background: var(--navy);
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 34px;
}

.feature-split > div:first-child {
  overflow: hidden;
  height: 360px;
  border-radius: var(--radius);
  background: var(--cream);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: white;
}

.process-card span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: white;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.inquiry-note {
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fffaf0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.7;
}

.mail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.category-card {
  overflow: hidden;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 8px;
  background: var(--cream);
}

.product-thumb {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  border-radius: 6px;
  background: white;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
  display: block;
}

.product-thumb span {
  position: absolute;
  right: 6px;
  bottom: 6px;
  left: 6px;
  overflow: hidden;
  border-radius: 5px;
  padding: 4px 6px;
  background: rgba(11, 35, 74, 0.78);
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-body {
  padding: 18px;
}

.category-list {
  margin: 0 0 16px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: center;
}

.metric-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--navy);
  color: white;
}

.metric-panel.metric-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(430px, 0.65fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px 26px;
}

.metric-copy h2 {
  margin: 0 0 6px;
  color: white;
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.35;
}

.metric-copy p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.metric-strip .metric-grid {
  margin-top: 0;
}

.metric {
  border-left: 1px solid rgba(255,255,255,0.22);
  padding-left: 16px;
}

.metric strong {
  display: block;
  font-size: 28px;
}

.metric-strip .metric strong {
  white-space: nowrap;
}

.metric span {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}

.quality-solo > .metric-panel {
  display: none;
}

.quality-solo .section-title {
  margin-bottom: 22px;
}

.proof-grid.home-quality {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid.home-quality .proof-image {
  height: 140px;
}

.quality-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.quality-panel.evidence-note {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.quality-step {
  text-align: center;
}

.quality-step span {
  display: block;
  color: var(--gold);
  font-size: 28px;
}

.quality-step strong {
  color: var(--navy);
  font-size: 13px;
}

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

.client-reference {
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255,250,240,0.86), rgba(255,255,255,0.96)),
    white;
  box-shadow: 0 8px 30px rgba(11, 35, 74, 0.06);
}

.client-reference-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.client-reference-head h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.35;
}

.client-reference-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.client-logo-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: white;
  cursor: default;
}

.client-region {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-logo-mark {
  display: grid;
  place-items: center;
  min-height: 62px;
  color: var(--navy);
  text-align: center;
}

.client-logo-mark img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  display: block;
}

.client-logo-mark strong {
  color: var(--navy);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.15;
}

.client-local-name {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.client-muji .client-logo-mark strong,
.client-nitori .client-logo-mark strong,
.client-tesco .client-logo-mark strong,
.client-walmart .client-logo-mark strong,
.client-target .client-logo-mark strong {
  letter-spacing: 0.02em;
}

.client-cecile .client-logo-mark strong,
.client-nishikawa .client-logo-mark strong,
.client-sussan .client-logo-mark strong,
.client-emart .client-logo-mark strong {
  text-transform: lowercase;
}

.client-disney .client-logo-mark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: 0.03em;
}

.client-kanebo .client-logo-mark strong {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  letter-spacing: 0.08em;
}

.client-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.reason-card,
.case-card {
  padding: 24px;
}

.case-image {
  overflow: hidden;
  height: 132px;
  margin: -4px -4px 18px;
  border-radius: 6px;
  background: var(--cream);
}

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

.timeline:has(.milestone) {
  position: relative;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.timeline:has(.milestone)::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--line);
}

.milestone {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 42px 14px 0;
  text-align: center;
}

.milestone-dot {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 1;
  width: 17px;
  height: 17px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--paper);
  transform: translateX(-50%);
}

.milestone strong {
  color: var(--gold);
  font-size: 15px;
}

.milestone em {
  color: var(--navy);
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
}

.timeline-card {
  overflow: hidden;
}

.timeline-image {
  min-height: 120px;
  background:
    linear-gradient(rgba(11,35,74,0.05), rgba(11,35,74,0.05)),
    url("../public/assets/reference/about-reference.png") center / cover;
}

.timeline-body {
  padding: 20px;
}

.timeline-body span {
  color: var(--gold);
  font-weight: 900;
}

.about-section + .about-section {
  margin-top: 58px;
}

.about-lead {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.about-lead h2,
.about-grid h2 {
  color: var(--navy);
  font-size: 30px;
  line-height: 1.35;
}

.about-copy p,
.about-grid p,
.history-content p {
  color: var(--muted);
  line-height: 1.95;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.about-stat {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: white;
}

.about-stat strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 8px;
}

.about-stat span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.history-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.history-item {
  display: grid;
  grid-template-columns: 150px 28px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.history-year {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.history-dot {
  width: 15px;
  height: 15px;
  margin-top: 9px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: var(--paper);
}

.history-content h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 21px;
}

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

.about-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: white;
  box-shadow: 0 8px 30px rgba(11, 35, 74, 0.06);
}

.about-grid .philosophy-card {
  grid-column: 1 / -1;
  background: var(--navy);
}

.about-grid .philosophy-card h2,
.about-grid .philosophy-card p {
  color: white;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: stretch;
}

.contact-card {
  padding: 28px;
}

.contact-card h2 {
  color: var(--navy);
}

.contact-info {
  display: grid;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
}

[data-contact-email] {
  display: grid;
  gap: 7px;
}

[data-contact-email] a {
  color: var(--navy);
  line-height: 1.35;
}

[data-contact-address] {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-link {
  display: inline-flex;
  border: 1px solid rgba(185, 145, 77, 0.38);
  border-radius: 999px;
  padding: 6px 10px;
  background: #fffaf0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.footer {
  padding: 42px;
  background: var(--navy);
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer a,
.footer p,
.footer-note {
  color: rgba(255,255,255,0.72);
}

.footer-brand p {
  margin: 12px 0 0;
  line-height: 1.5;
}

.footer-note {
  max-width: 240px;
  font-size: 12px;
}

.footer-address {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  line-height: 1.55;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column strong {
  color: white;
  font-size: 15px;
}

.footer-column a {
  line-height: 1.25;
}

.footer-column a:hover {
  color: white;
}

.footer-contact .contact-links {
  margin-top: 6px;
}

.footer .brand strong,
.sidebar .brand strong {
  color: white;
}

.footer .brand span,
.sidebar .brand span {
  color: var(--gold);
}

.admin-link {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

.admin-body {
  background: #f6f7f9;
}

.admin-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.sidebar {
  padding: 28px;
  background: var(--navy);
  color: white;
}

.sidebar a {
  display: block;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.76);
}

.sidebar a.active {
  background: rgba(255,255,255,0.12);
  color: white;
}

.admin-main {
  padding: 30px;
}

.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

.panel {
  border: 1px solid #e6e8ef;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 24px rgba(21,32,51,0.05);
}

.panel-header,
.panel-body {
  padding: 20px;
}

.panel-header {
  border-bottom: 1px solid #e6e8ef;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 16px;
  border-bottom: 1px solid #edf0f5;
  text-align: left;
  font-size: 14px;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  border-radius: 99px;
  padding: 4px 9px;
  background: #edf7ee;
  color: #176b2c;
  font-size: 12px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d7dce5;
  border-radius: var(--radius);
  padding: 11px 12px;
  background: white;
}

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

.media-tile {
  display: grid;
  place-items: center;
  min-height: 88px;
  border: 1px dashed #b8c0cc;
  border-radius: var(--radius);
  background: #f7f9fc;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.media-tile.filled {
  display: block;
  overflow: hidden;
  padding: 0;
  background: white;
  text-align: left;
}

.media-tile.filled img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  display: block;
}

.media-tile.filled strong,
.media-tile.filled span {
  display: block;
  padding: 8px 10px 0;
}

.media-tile.filled span {
  padding-bottom: 10px;
}

@media (max-width: 1080px) {
  .header {
    flex-wrap: wrap;
    gap: 10px 16px;
    min-height: 64px;
    padding: 12px 20px;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    flex-wrap: nowrap;
  }

  .nav a {
    padding: 8px 0;
  }

  .actions {
    margin-left: auto;
  }

  .mega-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    color: var(--navy);
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
  }

  .mega-menu {
    position: static;
    flex-basis: 100%;
    width: 100%;
    padding-top: 6px;
    transform: none;
  }

  .nav-item.has-mega:hover .mega-menu,
  .nav-item.has-mega:focus-within .mega-menu {
    display: none;
  }

  .nav-item.has-mega.is-open .mega-menu {
    display: block;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
    padding: 14px;
  }

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

  .services,
  .categories,
  .catalog-grid,
  .buyer-steps,
  .scenarios,
  .proof-grid,
  .proof-grid.compact,
  .moq-grid,
  .client-logo-grid,
  .about-stats,
  .reasons,
  .cases,
  .timeline,
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .feature-split,
  .about-lead,
  .about-grid,
  .client-reference-head,
  .list-header,
  .product-detail,
  .contact-layout,
  .cta-band,
  .moq-band,
  .admin-layout,
  .admin-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .metric-panel.metric-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    min-height: 56px;
    padding: 9px 12px;
  }

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

  .brand span {
    display: none;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 10px;
    background: white;
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
  }

  .actions {
    grid-column: 3;
    grid-row: 1;
    margin-left: 0;
    gap: 6px;
  }

  .actions .btn {
    display: none;
  }

  .lang {
    width: 82px;
    height: 34px;
    padding: 0 6px;
    font-size: 12px;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    order: initial;
    width: 100%;
    max-height: calc(100vh - 66px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4px 0 0;
  }

  .header.nav-open .nav {
    display: flex;
  }

  .nav > a,
  .nav-item {
    border-top: 1px solid var(--line);
  }

  .nav-item {
    display: flex;
    flex-wrap: wrap;
  }

  .nav-item > a {
    flex: 1;
  }

  .nav a {
    padding: 9px 0;
  }

  .mega-toggle {
    align-self: center;
    margin-left: 8px;
  }

  .mega-menu-inner {
    border-radius: 0;
    padding: 10px;
    box-shadow: none;
  }

  .mega-copy strong {
    font-size: 15px;
  }

  .mega-copy p {
    display: none;
  }

  .mega-copy .text-link {
    display: none;
  }

  .hero,
  .section,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services,
  .categories,
  .catalog-grid,
  .buyer-steps,
  .scenarios,
  .proof-grid,
  .proof-grid.compact,
  .moq-grid,
  .client-reference-head,
  .spec-grid,
  .about-stats,
  .reasons,
  .cases,
  .timeline,
  .trust-bar,
  .quality-panel,
  .metric-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .timeline:has(.milestone)::before {
    display: none;
  }

  .history-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .history-dot {
    display: none;
  }

  .list-header,
  .filter-panel,
  .catalog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-tags {
    justify-content: flex-start;
  }

  .mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mega-card img {
    display: none;
  }

  .mega-card span {
    padding: 9px;
    font-size: 11px;
  }

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

  .client-reference {
    padding: 20px;
  }

  .client-logo-card {
    min-height: 118px;
  }

  .moq-band {
    padding: 22px;
  }

  .metric-panel.metric-strip {
    gap: 18px;
    padding: 20px;
  }

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

  .metric-strip .metric {
    padding-left: 12px;
  }

  .proof-grid.home-quality {
    grid-template-columns: 1fr;
  }

  .list-header h1 {
    font-size: 34px;
  }

  .product-detail-image {
    height: 380px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255,253,248,0.97), rgba(255,253,248,0.8)),
      url("../public/uploads/media/scenario-workwear.png") center / cover no-repeat;
  }
}
