:root {
  --ink: #202326;
  --muted: #5d6369;
  --paper: #f7f8f6;
  --white: #ffffff;
  --line: #dfe4e1;
  --blush: #c86f7d;
  --sage: #607c6b;
  --gold: #b49459;
  --graphite: #30343a;
  --bluegray: #e7edf0;
  --shadow: 0 20px 50px rgba(31, 35, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", "Malgun Gothic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
  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;
  height: 72px;
  padding: 0 32px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 18px rgba(30, 32, 34, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-weight: 800;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 46px;
  object-fit: contain;
}

.brand-text {
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 84svh;
  display: grid;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("./assets/kbeauty-paperbox-supermarket-shelf.png?v=20260716");
  background-size: cover;
  background-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(25, 27, 29, 0.88) 0%, rgba(25, 27, 29, 0.68) 38%, rgba(25, 27, 29, 0.2) 74%),
    linear-gradient(0deg, rgba(25, 27, 29, 0.42), rgba(25, 27, 29, 0.05));
}

.hero-inner {
  width: min(1180px, calc(100% - 64px));
  margin: 72px auto 36px;
  padding: 56px 0 30px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: 4.2rem;
  line-height: 1.06;
  font-weight: 850;
}

.hero-copy {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 48px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-facts div {
  min-height: 86px;
  padding: 18px;
  background: rgba(20, 22, 24, 0.22);
}

.hero-facts dt {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.35;
}

.subpage .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 18px rgba(30, 32, 34, 0.08);
  backdrop-filter: blur(14px);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("./assets/kbeauty-paperbox-supermarket-shelf.png?v=20260716");
  background-position: center right;
  background-size: cover;
  filter: saturate(0.9);
  transform: scale(1.02);
}

.about-page .page-hero-media {
  background-image: url("./assets/factory-floor.png?v=20260716");
}

.products-page .page-hero-media {
  background-image: url("./assets/kbeauty-paperbox-supermarket-shelf.png?v=20260716");
}

.equipment-page .page-hero-media {
  background-image: url("./assets/equipment-printing.png?v=20260716");
}

.process-page .page-hero-media {
  background-image: url("./assets/process-samples.png?v=20260716");
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(25, 27, 29, 0.9), rgba(25, 27, 29, 0.58) 54%, rgba(25, 27, 29, 0.22)),
    linear-gradient(0deg, rgba(25, 27, 29, 0.3), rgba(25, 27, 29, 0.1));
}

.page-hero-inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 154px 0 86px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: 3.45rem;
  line-height: 1.12;
  font-weight: 850;
}

.page-hero p:last-child {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  line-height: 1.75;
}

.section {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.6fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head.narrow {
  display: block;
  max-width: 720px;
}

.section h2,
.contact h2 {
  font-size: 2.45rem;
  line-height: 1.22;
  font-weight: 850;
}

.section-head p:last-child,
.capability-copy p:last-child,
.contact p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.quick-finder {
  padding-bottom: 46px;
}

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

.finder-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(35, 38, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.finder-card:hover,
.finder-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(96, 124, 107, 0.45);
  box-shadow: 0 18px 42px rgba(35, 38, 42, 0.12);
}

.finder-card span {
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 850;
}

.finder-card h3 {
  margin-top: 34px;
  font-size: 1.3rem;
}

.finder-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.finder-card.strong {
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}

.finder-card.strong span,
.finder-card.strong p {
  color: rgba(255, 255, 255, 0.72);
}

.showcase {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 92px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.66fr);
  gap: 42px;
  align-items: center;
}

.showcase-media,
.wide-image,
.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(35, 38, 42, 0.12);
}

.showcase-media img,
.wide-image img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-media {
  aspect-ratio: 1.28;
}

.showcase-copy h2 {
  font-size: 2.45rem;
  line-height: 1.22;
  font-weight: 850;
}

.showcase-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 24px;
  color: var(--sage);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.wide-image {
  aspect-ratio: 2.2;
  margin-bottom: 28px;
}

.image-card {
  aspect-ratio: 1.28;
}

.visual-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 46px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.visual-feature h2 {
  font-size: 2.35rem;
  line-height: 1.24;
}

.visual-feature p:last-child {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.video-section {
  border-top: 1px solid var(--line);
}

.video-frame {
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: 0 18px 46px rgba(35, 38, 42, 0.12);
}

.factory-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--graphite);
}

.need-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin: 0 0 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(35, 38, 42, 0.06);
}

.need-panel h2 {
  font-size: 2rem;
  line-height: 1.24;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.need-grid div {
  min-height: 150px;
  padding: 20px;
  background: var(--paper);
}

.need-grid strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.need-grid p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.62;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-section h2 {
  margin-top: 0;
}

.prose {
  display: grid;
  gap: 18px;
}

.prose p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

.banded {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-grid,
.detail-grid,
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-card,
.detail-card,
.machine-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(35, 38, 42, 0.06);
}

.metric-card span,
.detail-card span,
.machine-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 5px;
  color: var(--white);
  background: var(--sage);
  font-size: 0.78rem;
  font-weight: 850;
}

.metric-card strong,
.detail-card h2,
.machine-card h2 {
  display: block;
  margin-top: 32px;
  font-size: 1.35rem;
  line-height: 1.28;
}

.metric-card p,
.detail-card p,
.machine-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.68;
}

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

.mini-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.5;
}

.mini-list li {
  position: relative;
  padding-left: 14px;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

.card-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--sage);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.quote-ready {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(96, 124, 107, 0.28);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(35, 38, 42, 0.06);
}

.quote-ready h2 {
  font-size: 1.65rem;
  line-height: 1.28;
}

.quote-ready ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.5;
}

.quote-ready li {
  position: relative;
  padding-left: 16px;
}

.quote-ready li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blush);
}

.detail-card:nth-child(2n) span,
.machine-card:nth-child(2n) span {
  background: var(--blush);
}

.machine-card.featured {
  grid-column: span 2;
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}

.machine-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.machine-card.featured span {
  color: var(--graphite);
  background: var(--white);
}

.feature-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-list div {
  padding: 24px;
  background: var(--white);
}

.feature-list strong {
  display: block;
  font-size: 1.1rem;
}

.feature-list p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.68;
}

.quality-band,
.page-cta {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.quality-band {
  padding: 64px 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-band h2,
.page-cta h2 {
  font-size: 2.2rem;
  line-height: 1.24;
}

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

.quality-grid p {
  min-height: 92px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  line-height: 1.55;
}

.steps-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.steps-list li {
  display: grid;
  grid-template-columns: 84px minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  color: var(--white);
  background: var(--sage);
  font-weight: 850;
}

.steps-list h2 {
  font-size: 1.22rem;
}

.steps-list p {
  color: var(--muted);
  line-height: 1.68;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.light-panel {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(35, 38, 42, 0.06);
}

.light-panel .contact-link {
  border-bottom-color: var(--line);
}

.light-panel .contact-link strong {
  color: var(--ink);
}

.contact-button {
  width: 100%;
  margin-top: 18px;
}

.inquiry-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.inquiry-list li {
  padding: 17px 18px;
  border-left: 4px solid var(--sage);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  line-height: 1.55;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.quote-template-section {
  border-top: 1px solid var(--line);
}

.quote-template {
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(35, 38, 42, 0.06);
}

.quote-template p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.quote-template p:first-child {
  color: var(--ink);
  font-weight: 850;
}

.faq-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  font-size: 1.15rem;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.7;
}

.page-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 58px 0 92px;
}

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

.button.dark-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

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

.product-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(35, 38, 42, 0.06);
}

.product-card h3 {
  margin-top: 40px;
  font-size: 1.35rem;
}

.product-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.card-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--graphite);
  font-size: 0.82rem;
  font-weight: 850;
}

.accent-blush .card-mark {
  background: var(--blush);
}

.accent-sage .card-mark {
  background: var(--sage);
}

.accent-graphite {
  color: var(--white);
  background: var(--graphite);
  border-color: var(--graphite);
}

.accent-graphite p {
  color: rgba(255, 255, 255, 0.72);
}

.accent-graphite .card-mark {
  color: var(--graphite);
  background: var(--white);
}

.capabilities {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.capability-copy {
  position: sticky;
  top: 104px;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.spec-row span {
  color: var(--sage);
  font-weight: 850;
}

.spec-row p {
  color: var(--muted);
  line-height: 1.72;
}

.process {
  border-top: 1px solid var(--line);
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 36px 0 0;
}

.timeline li {
  min-height: 236px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--bluegray));
}

.timeline span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--white);
  background: var(--sage);
  font-weight: 850;
}

.timeline h3 {
  margin-top: 38px;
  font-size: 1.22rem;
}

.timeline p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.contact {
  color: var(--white);
  background: var(--graphite);
}

.contact-inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 86px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: center;
}

.contact p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-link {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-link:first-child {
  padding-top: 0;
}

.contact-link span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-link strong {
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.note {
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.92rem;
}

.floating-inquiry {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 13px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blush);
  box-shadow: 0 18px 42px rgba(35, 38, 42, 0.2);
}

.floating-inquiry span {
  font-size: 0.82rem;
  font-weight: 850;
}

.floating-inquiry strong {
  font-size: 1rem;
}

@media (max-width: 980px) {
  .site-header {
    height: 64px;
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 10px;
  }

  .site-nav .nav-cta {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 10px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-media {
    background-position: 68% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(25, 27, 29, 0.92), rgba(25, 27, 29, 0.58));
  }

  .hero-inner,
  .section,
  .contact-inner,
  .page-hero-inner,
  .quality-band,
  .page-cta,
  .showcase {
    width: min(100% - 40px, 760px);
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .page-hero h1 {
    font-size: 2.85rem;
  }

  .section-head,
  .capabilities,
  .contact-inner,
  .split-section,
  .quality-band,
  .contact-layout,
  .showcase,
  .visual-feature,
  .need-panel,
  .quote-ready {
    grid-template-columns: 1fr;
  }

  .quote-ready {
    align-items: flex-start;
  }

  .showcase {
    padding: 72px 0 16px;
  }

  .showcase-media,
  .image-card {
    aspect-ratio: 1.58;
  }

  .wide-image {
    aspect-ratio: 1.75;
  }

  .capability-copy {
    position: static;
  }

  .product-grid,
  .timeline,
  .metric-grid,
  .detail-grid,
  .equipment-grid,
  .finder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .machine-card.featured {
    grid-column: span 2;
  }

  .steps-list li,
  .faq-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

@media (max-width: 640px) {
  .brand-mark {
    width: 36px;
    height: 40px;
  }

  .brand-text {
    font-size: 0.82rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-inner {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .page-hero-inner {
    padding: 124px 0 66px;
  }

  .page-hero h1 {
    font-size: 2.18rem;
  }

  .page-hero p:last-child {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-points {
    display: grid;
  }

  .hero-points li {
    min-height: 42px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-facts div {
    min-height: 72px;
  }

  .section {
    padding: 66px 0;
  }

  .section h2,
  .contact h2 {
    font-size: 2rem;
  }

  .showcase-copy h2,
  .visual-feature h2,
  .quality-band h2,
  .page-cta h2 {
    font-size: 1.92rem;
  }

  .product-grid,
  .timeline,
  .metric-grid,
  .detail-grid,
  .equipment-grid,
  .quality-grid,
  .finder-grid,
  .need-grid {
    grid-template-columns: 1fr;
  }

  .machine-card.featured {
    grid-column: auto;
  }

  .product-card,
  .timeline li,
  .metric-card,
  .detail-card,
  .machine-card,
  .finder-card {
    min-height: 220px;
  }

  .need-panel {
    padding: 20px;
  }

  .need-panel h2 {
    font-size: 1.8rem;
  }

  .need-grid div {
    min-height: 132px;
  }

  .quote-ready {
    padding: 20px;
  }

  .quote-ready h2 {
    font-size: 1.45rem;
  }

  .quote-ready ul {
    grid-template-columns: 1fr;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-inner {
    padding: 66px 0;
  }

  .quality-band {
    padding: 52px 0;
  }

  .steps-list li {
    padding: 20px;
  }

  .page-cta {
    padding: 46px 0 70px;
  }

  .page-cta .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
    padding: 24px 20px 92px;
  }

  .floating-inquiry {
    left: 20px;
    right: 20px;
    bottom: 16px;
    min-width: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
