:root {
  --ink: #160f0a;
  --ink-soft: #20150e;
  --espresso: #3a2a1e;
  --saddle: #8a5a34;
  --sand: #cbb48c;
  --cream: #f3ece0;
  --paper: #fbf8f2;
  --brass: #a3782f;
  --brass-bright: #cd9d49;
  --stitch-dark: #5a4632;
  --stitch-light: #cbb692;
  --line: rgba(26, 19, 14, 0.11);
  --line-dark: rgba(244, 237, 224, 0.16);
  --text-dim: rgba(26, 19, 14, 0.68);
  --shadow-sm: 0 2px 10px -4px rgba(20, 14, 8, 0.18);
  --shadow: 0 26px 54px -26px rgba(20, 14, 8, 0.42);
  --shadow-lg: 0 40px 80px -30px rgba(10, 7, 4, 0.55);
  --radius: 4px;
  --ease: cubic-bezier(.22, .7, .2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  overflow-x: hidden;
  width: 100%;
  position: relative;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Nanum Myeongjo', 'Noto Serif KR', serif;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.mono {
  font-family: 'Space Mono', monospace;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

::selection {
  background: var(--brass);
  color: var(--paper);
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
}

section {
  position: relative;
}

/* ---------- Stitch Divider Signature ---------- */
.stitch {
  height: 16px;
  width: 100%;
  background-image: repeating-linear-gradient(90deg, var(--stitch-color, var(--stitch-dark)) 0, var(--stitch-color, var(--stitch-dark)) 7px, transparent 7px, transparent 16px);
  background-position: center;
  background-size: 100% 1.5px;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.stitch.on-dark {
  --stitch-color: var(--stitch-light);
}

.stitch-frame {
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.stitch-frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed var(--stitch-dark);
  opacity: 0.32;
  pointer-events: none;
  border-radius: calc(var(--radius) - 2px);
  z-index: 2;
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

header.scrolled {
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

header.theme-dark {
  background: rgba(14, 9, 5, 0.22);
  border-bottom-color: rgba(244, 237, 224, 0.1);
}

header.theme-dark.scrolled {
  background: rgba(13, 9, 5, 0.78);
}

header.theme-light {
  background: rgba(251, 248, 242, 0.3);
  border-bottom-color: rgba(26, 19, 14, 0.06);
}

header.theme-light.scrolled {
  background: rgba(251, 248, 242, 0.88);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  flex-wrap: nowrap;
}

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  width: 184px;
}

.nav-logo img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 40px;
  width: auto;
  max-width: none;
  transition: opacity .3s ease;
}

.nav-logo img.logo-white {
  opacity: 1;
}

.nav-logo img.logo-black {
  opacity: 0;
}

header.theme-light .nav-logo img.logo-white {
  opacity: 0;
}

header.theme-light .nav-logo img.logo-black {
  opacity: 1;
}

header.theme-dark .nav-logo img.logo-white {
  opacity: 1;
}

header.theme-dark .nav-logo img.logo-black {
  opacity: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  color: rgba(244, 237, 224, 0.85);
  letter-spacing: -0.01em;
  transition: color .25s ease;
  white-space: nowrap;
  padding-bottom: 4px;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--brass-bright);
  transition: right .3s var(--ease);
}

.nav-links a:hover::after {
  right: 0;
}

header.theme-light .nav-links a {
  color: rgba(26, 19, 14, 0.78);
}

.nav-links a:hover {
  color: var(--brass-bright);
}

header.theme-light .nav-links a:hover {
  color: var(--brass);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-brass {
  background: var(--brass);
  color: var(--paper);
  border-color: var(--brass);
  box-shadow: 0 10px 24px -12px rgba(163, 120, 47, 0.55);
}

.btn-brass:hover {
  background: var(--brass-bright);
  border-color: var(--brass-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(163, 120, 47, 0.7);
}

.btn-outline-dark {
  border-color: rgba(244, 237, 224, 0.32);
  color: var(--cream);
}

.btn-outline-dark:hover {
  border-color: var(--cream);
  background: rgba(244, 237, 224, 0.08);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(26, 19, 14, 0.24);
  color: var(--ink);
}

.btn-outline-light:hover {
  border-color: var(--ink);
  background: rgba(26, 19, 14, 0.04);
  transform: translateY(-2px);
}

.nav-tel {
  font-size: 14.5px;
  color: var(--brass-bright);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

header.theme-light .nav-tel {
  color: var(--brass);
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

header.theme-light .burger {
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: saturate(0.88) contrast(1.05);
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero:hover .hero-bg {
  transform: scale(1.05);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 9, 5, 0.65) 0%, rgba(13, 9, 5, 0.35) 42%, rgba(11, 7, 4, 0.95) 100%),
    linear-gradient(90deg, rgba(9, 6, 3, 0.85) 0%, rgba(9, 6, 3, 0.15) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 170px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 460px);
  gap: 56px;
  align-items: start;
}

.hero-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.26em;
  color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--sand);
}

.hero h1.hero-headline {
  color: var(--paper);
  font-size: clamp(22px, 2.7vw, 37px);
  line-height: 1.38;
  font-weight: 700;
  margin-bottom: 30px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.015em;
  word-break: keep-all;
}

.hero h1.hero-headline .title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero h1 em {
  font-style: normal;
  color: var(--brass-bright);
}

.hero p.lead {
  color: rgba(244, 237, 224, 0.88);
  font-size: 16px;
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.85;
}

.hero p.lead.lead-mobile {
  display: none;
}

.hero-btns {
  display: flex;
  gap: 14px;
  margin-bottom: 68px;
  flex-wrap: wrap;
}

.hero-info {
  border-top: 1px solid rgba(244, 237, 224, 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-info div {
  padding: 28px 24px 24px 20px;
  border-right: 1px solid rgba(244, 237, 224, 0.12);
  transition: background .25s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.hero-info div:first-child {
  padding-left: 0;
}

.hero-info div:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-info div:hover {
  background: rgba(244, 237, 224, 0.04);
}

.hero-info .k {
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--sand);
  text-transform: uppercase;
  margin-bottom: 11px;
  display: block;
  text-align: left;
  width: 100%;
}

.hero-info .v {
  color: var(--paper);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
  text-align: left;
  width: 100%;
}

.hero-info .sub {
  color: rgba(244, 237, 224, 0.6);
  font-size: 12px;
  margin: 6px 0 0 0;
  padding: 0;
  font-weight: 300;
  line-height: 1.6;
  display: block;
  text-align: left !important;
  width: 100%;
}

/* ---------- Hero Quote Form ---------- */
.hero-quote {
  align-self: start;
  width: 100%;
  background: linear-gradient(165deg, rgba(41, 29, 20, 0.72), rgba(15, 10, 6, 0.84));
  border: 1px solid rgba(244, 237, 224, 0.18);
  border-radius: var(--radius);
  padding: 32px 32px 30px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
}

.hero-quote .eyebrow {
  margin-bottom: 16px;
}

.hero-quote-head h3 {
  font-size: 20px;
  line-height: 1.4;
  color: var(--paper);
  margin-bottom: 9px;
}

.hero-quote-head p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(244, 237, 224, 0.65);
  margin-bottom: 24px;
}

.hero-quote-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-quote-form input[type="text"],
.hero-quote-form input[type="tel"],
.hero-quote-form input[type="email"],
.hero-quote textarea {
  width: 100%;
  border: 1px solid rgba(244, 237, 224, 0.18);
  background: rgba(244, 237, 224, 0.06);
  padding: 12px 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--paper);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-quote textarea {
  resize: vertical;
  min-height: 76px;
  line-height: 1.6;
}

.hero-quote-form input[type="text"]::placeholder,
.hero-quote-form input[type="tel"]::placeholder,
.hero-quote-form input[type="email"]::placeholder,
.hero-quote textarea::placeholder {
  color: rgba(244, 237, 224, 0.4);
}

.hero-quote-form input[type="text"]:focus,
.hero-quote-form input[type="tel"]:focus,
.hero-quote-form input[type="email"]:focus,
.hero-quote textarea:focus {
  outline: none;
  border-color: var(--brass-bright);
  box-shadow: 0 0 0 3px rgba(205, 157, 73, 0.18);
  background: rgba(244, 237, 224, 0.1);
}

.hq-field {
  position: relative;
}

.hq-dropdown {
  position: relative;
}

.hq-dropdown-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(244, 237, 224, 0.18);
  background: rgba(244, 237, 224, 0.06);
  padding: 12px 14px;
  font-size: 13.5px;
  font-family: inherit;
  color: rgba(244, 237, 224, 0.42);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.hq-dropdown-toggle.has-value {
  color: var(--paper);
}

.hq-dropdown-toggle:hover {
  border-color: rgba(244, 237, 224, 0.34);
}

.hq-dropdown.open .hq-dropdown-toggle {
  border-color: var(--brass-bright);
  box-shadow: 0 0 0 3px rgba(205, 157, 73, 0.18);
  background: rgba(244, 237, 224, 0.1);
}

.hq-dropdown-arrow {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-right: 1.5px solid rgba(244, 237, 224, 0.55);
  border-bottom: 1.5px solid rgba(244, 237, 224, 0.55);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.hq-dropdown.open .hq-dropdown-arrow {
  transform: rotate(-135deg);
}

.hq-dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  background: #1d150e;
  border: 1px solid rgba(244, 237, 224, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 2px;
  transition: max-height .28s var(--ease), opacity .2s ease, padding .28s var(--ease);
}

.hq-dropdown.open .hq-dropdown-menu {
  max-height: 280px;
  opacity: 1;
  overflow-y: auto;
  padding: 6px;
}

.hq-dropdown-item {
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(244, 237, 224, 0.78);
  border-radius: 2px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.hq-dropdown-item:hover {
  background: rgba(244, 237, 224, 0.08);
  color: var(--paper);
}

.hq-dropdown-item.selected {
  background: var(--brass);
  color: var(--ink);
  font-weight: 600;
}

.hero-quote .consent {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.6);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  cursor: pointer;
}

.hero-quote .consent input[type="checkbox"] {
  accent-color: var(--brass);
}

.hq-submit {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}

/* ---------- Section Shells ---------- */
.section-pad {
  padding: 132px 0;
}

.section-pad-sm {
  padding: 96px 0;
}

.on-dark {
  background: var(--ink);
  color: var(--paper);
}

.on-dark .text-dim {
  color: rgba(244, 237, 224, 0.62);
}

.on-cream {
  background: var(--cream);
}

.text-dim {
  color: var(--text-dim);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 68px;
}

.section-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.38;
}

.section-head p {
  font-size: 15px;
  max-width: 420px;
  line-height: 1.8;
}

.section-head.wide {
  grid-template-columns: 1fr;
  gap: 22px;
}

.section-head.wide h2 {
  font-size: clamp(21px, 2.5vw, 34px);
  line-height: 1.38;
}

.section-head.wide p {
  max-width: 640px;
}

.oneline {
  white-space: nowrap;
  max-width: none !important;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.about-quote {
  font-family: 'Nanum Myeongjo', 'Noto Serif KR', serif;
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
  border-left: 2px solid var(--brass);
  padding-left: 26px;
  margin: 32px 0 36px;
  font-weight: 600;
}

.about-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-list li {
  padding: 24px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.75;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
  border-radius: var(--radius);
}

.about-list li:hover {
  box-shadow: 0 8px 22px -10px rgba(20, 14, 8, 0.22);
  transform: translateY(-2px);
}

.about-list b {
  color: var(--espresso);
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.about-figure {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}

.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Strengths ---------- */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.strength-card {
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 38px 30px 34px;
  transition: background .3s ease;
}

.strength-card:hover {
  background: rgba(244, 237, 224, 0.04);
}

.strength-num {
  font-family: 'Space Mono', monospace;
  color: var(--brass-bright);
  font-size: 13px;
  margin-bottom: 22px;
  display: block;
}

.strength-card h3 {
  font-size: 17px;
  color: var(--paper);
  margin-bottom: 13px;
  font-weight: 600;
}

.strength-card p {
  font-size: 13.5px;
  color: rgba(244, 237, 224, 0.6);
  line-height: 1.75;
}

/* ---------- Services ---------- */
.svc-list {
  display: flex;
  flex-direction: column;
}

.svc-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  transition: background .3s ease;
}

.svc-item:last-child {
  border-bottom: 1px solid var(--line);
}

.svc-item:hover {
  background: rgba(163, 120, 47, 0.025);
}

.svc-type {
  font-family: 'Nanum Myeongjo', 'Noto Serif KR', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
}

.svc-body h3 {
  font-size: 20px;
  margin-bottom: 11px;
}

.svc-body p.desc {
  font-size: 14.5px;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.svc-tags {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(184px, 1fr));
  gap: 10px;
}

.svc-tags span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--espresso);
  padding: 11px 16px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.svc-tags span:hover {
  border-color: var(--brass);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.svc-tags span::before {
  content: "";
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  background: var(--brass);
  border-radius: 50%;
}

.svc-note {
  margin-top: 18px;
  padding: 16px 20px;
  background: var(--cream);
  font-size: 13px;
  color: var(--espresso);
  border-left: 2px solid var(--brass);
  line-height: 1.7;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---------- Production ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
}

.prod-card {
  background: var(--ink);
  padding: 48px 42px;
}

.prod-card h3 {
  color: var(--paper);
  font-size: 21px;
  margin-bottom: 17px;
}

.prod-card p.desc {
  color: rgba(244, 237, 224, 0.65);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.8;
}

.prod-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.prod-card li {
  font-size: 13.5px;
  color: rgba(244, 237, 224, 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}

.prod-card li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--brass-bright);
  flex-shrink: 0;
}

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
}

.product-card {
  background: var(--paper);
  position: relative;
  transition: transform .3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-media {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius);
  background: var(--cream);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-media .no {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(22, 15, 10, 0.82);
  color: var(--cream);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  padding: 5px 9px;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.product-info {
  padding: 20px 2px 0;
}

.product-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.product-info p.desc {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.7;
}

.product-info .items {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.product-info .items span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--espresso);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 11px;
}

/* ---------- Materials ---------- */
.material-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 76px;
  align-items: stretch;
}

.material-figure {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.material-cats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 52px;
}

.material-cats .row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.material-cats .row h4 {
  font-size: 15px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: -0.01em;
}

.material-cats .row p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.75;
}

.process-tags-title {
  font-size: 14.5px;
  font-weight: 600;
  margin: 38px 0 17px;
}

.materials-mobile-line {
  display: none;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.process-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--espresso);
  color: var(--paper);
  border: 1px solid rgba(244, 237, 224, 0.12);
  transition: background .2s ease, transform .2s ease;
}

.process-tags span:hover {
  background: #4a3626;
  transform: translateY(-2px);
}

.process-tags span::before {
  content: "";
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  background: var(--brass-bright);
  border-radius: 50%;
}

.kirime-box {
  background: var(--espresso);
  color: var(--cream);
  padding: 36px;
  margin-top: 22px;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.kirime-box .eyebrow {
  color: var(--brass-bright);
}

.kirime-box .eyebrow::before {
  background: var(--brass-bright);
}

.kirime-box p {
  font-size: 14px;
  color: rgba(244, 237, 224, 0.84);
  line-height: 1.85;
}

/* ---------- Process ---------- */
.process-list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 66px;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 4px;
  bottom: 4px;
  width: 0;
  border-left: 2px dashed var(--stitch-dark);
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 6px;
  padding: 26px 0;
  transition: transform .25s ease;
}

.process-node {
  position: absolute;
  left: -66px;
  top: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.process-item:last-child .process-node {
  background: var(--brass);
  border-color: var(--brass-bright);
}

.process-num {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 15px;
  color: var(--brass-bright);
}

.process-item:last-child .process-num {
  color: var(--ink);
}

.process-step {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brass);
  text-transform: uppercase;
  display: block;
}

.process-item h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.process-item p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ---------- Mid CTA ---------- */
.midcta {
  background: linear-gradient(120deg, var(--espresso), var(--ink) 78%);
  padding: 74px 0;
  color: var(--paper);
}

.midcta-inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 40px;
  align-items: center;
}

.midcta h3 {
  font-size: clamp(19px, 2.3vw, 26px);
  margin-bottom: 13px;
  color: var(--paper);
  white-space: nowrap;
}

.midcta p {
  font-size: 14.5px;
  color: rgba(244, 237, 224, 0.7);
  max-width: none;
  white-space: nowrap;
  line-height: 1.8;
}

.midcta .btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Clients ---------- */
.client-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.client-marquee::before,
.client-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.client-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(14, 9, 5, 0) 100%);
}

.client-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink) 0%, rgba(14, 9, 5, 0) 100%);
}

.client-track {
  display: flex;
  width: max-content;
  animation: clientScroll 42s linear infinite;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-cell {
  background: var(--ink);
  padding: 28px 14px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 17px;
  min-height: 128px;
  width: 168px;
  flex-shrink: 0;
  border-right: 1px solid var(--line-dark);
  transition: background .25s ease;
}

.client-cell:hover {
  background: var(--ink-soft);
}

.client-logo-slot {
  width: 100%;
  height: 60px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
}

.client-logo-slot img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-name {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244, 237, 224, 0.65);
  text-align: center;
  white-space: nowrap;
}

@keyframes clientScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13.5px;
  color: rgba(244, 237, 224, 0.55);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 840px;
}

.faq-item {
  border-top: 1px solid var(--line);
  transition: background .25s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item:hover {
  background: rgba(163, 120, 47, 0.03);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 4px 14px;
  font-size: 15.5px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.faq-q .q-mark {
  font-family: 'Space Mono', monospace;
  color: var(--brass);
  margin-right: 14px;
}

.faq-toggle-icon {
  font-size: 18px;
  color: var(--brass);
  transition: transform .25s ease;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-a {
  font-size: 14px;
  color: var(--text-dim);
  padding: 0 4px 28px;
  line-height: 1.85;
  display: block;
}

.faq-item:not(.open) .faq-a {
  display: none;
}

/* ---------- Contact Form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  grid-template-areas: "text form" "info form";
  gap: 76px;
}

.contact-side {
  grid-area: text;
}

.contact-side h3 {
  font-size: 24px;
  margin-bottom: 19px;
}

.contact-side p {
  font-size: 14px;
  color: rgba(244, 237, 224, 0.7);
  margin-bottom: 30px;
  line-height: 1.85;
}

.contact-info-row {
  grid-area: info;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 38px;
  align-self: start;
}

.form-card {
  grid-area: form;
}

.contact-info-row .item {
  border-top: 1px solid rgba(244, 237, 224, 0.14);
  padding-top: 15px;
}

.contact-info-row .k {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--sand);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 7px;
}

.contact-info-row .v {
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
}

.form-card {
  background: var(--paper);
  padding: 48px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--espresso);
}

.form-field label .req {
  color: var(--brass);
  margin-left: 3px;
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 13px 15px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(163, 120, 47, 0.14);
  background: #fff;
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.chip-dropdown-toggle {
  display: none;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 12.5px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  cursor: pointer;
  color: var(--espresso);
  background: var(--cream);
  transition: all .2s ease;
  user-select: none;
  border-radius: var(--radius);
}

.chip:hover {
  border-color: var(--brass);
}

.chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  gap: 20px;
  flex-wrap: wrap;
}

.consent {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

/* ---------- Toast Notification ---------- */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--brass-bright);
  padding: 16px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ---------- Right Rail ---------- */
.rail {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 180;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  max-width: calc(100vw - 32px);
}

.rail a {
  width: 84px;
  height: 84px;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1.5px solid var(--brass-bright);
  border-radius: var(--radius);
  transition: background .25s ease, transform .25s ease, color .25s ease;
}

.rail a:hover {
  background: var(--brass);
  color: var(--ink);
  transform: translateX(-3px);
}

.rail a .ic {
  font-size: 22px;
}

/* ---------- Footer ---------- */
footer {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}

.footer-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 7, 4, 0.9) 0%, rgba(10, 7, 4, 0.98) 100%);
}

.footer-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 237, 224, 0.14);
}

.footer-logo {
  margin-bottom: 22px;
}

.footer-logo img {
  height: 30px;
  width: auto;
  max-width: none;
}

.footer-top > div > p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(244, 237, 224, 0.6);
  max-width: 320px;
}

.footer-col h5 {
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col .line {
  font-size: 13.5px;
  color: rgba(244, 237, 224, 0.68);
  line-height: 2;
}

.footer-col .line b {
  color: var(--paper);
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  font-size: 12px;
  color: rgba(244, 237, 224, 0.4);
  letter-spacing: 0.01em;
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media(max-width: 1020px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
  }
  .nav-logo {
    height: 32px;
    width: 148px;
  }
  .nav-logo img {
    height: 32px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
  }
  .material-wrap {
    grid-template-columns: 1fr;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "form" "info";
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .midcta-inner {
    grid-template-columns: 1fr;
  }
  .svc-item {
    grid-template-columns: 1fr;
  }
  header {
    position: sticky;
  }
  header,
  header.theme-dark,
  header.theme-light {
    background: rgba(13, 9, 5, 0.95) !important;
    border-bottom-color: rgba(244, 237, 224, 0.1) !important;
  }
  .nav-logo img.logo-white {
    opacity: 1 !important;
  }
  .nav-logo img.logo-black {
    opacity: 0 !important;
  }
  .nav-tel {
    color: var(--brass-bright) !important;
  }
  .burger {
    color: var(--cream) !important;
  }
  .hero-content {
    padding-top: 28px;
  }
  .hero-quote {
    display: none;
  }
  .oneline {
    white-space: normal !important;
    max-width: 100% !important;
  }
  .midcta h3,
  .midcta p {
    white-space: normal;
  }
}

@media(max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
  .nav-inner {
    height: 76px;
    padding: 0 16px;
    gap: 10px;
  }
  .nav-logo {
    height: 26px;
    width: 118px;
  }
  .nav-logo img {
    height: 26px;
  }
  .nav-tel .tel-num {
    display: none;
  }
  .nav-tel .ic {
    font-size: 14px;
  }
  .nav-cta {
    gap: 8px;
  }
  .nav-cta .btn {
    padding: 9px 14px;
    font-size: 12px;
  }
  .burger {
    font-size: 19px;
  }
  .hero-content {
    padding-top: 20px;
  }
  .hero-info {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-info div {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-info div:nth-child(odd) {
    padding-right: 20px;
  }
  .hero-info div:nth-child(even) {
    padding-left: 20px;
    border-right: none;
  }
  .strength-grid {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .rail {
    right: 14px;
    bottom: 14px;
    gap: 8px;
    max-width: calc(100vw - 28px);
  }
  .rail a {
    width: 60px;
    height: 60px;
    font-size: 9.5px;
  }
  .rail a .ic {
    font-size: 16px;
  }
  .section-pad {
    padding: 64px 0;
  }
  .section-pad-sm {
    padding: 48px 0;
  }
  body {
    line-height: 1.65;
  }
  .section-head {
    margin-bottom: 36px;
    gap: 14px;
  }
  .section-head h2 {
    font-size: clamp(20px, 6.4vw, 26px);
  }
  .section-head p {
    font-size: 13.5px;
    max-width: 100%;
  }
  .hero h1.hero-headline {
    font-size: clamp(20px, 6.4vw, 26px);
    margin-bottom: 20px;
  }
  .hero p.lead {
    font-size: 13.5px;
    margin-bottom: 26px;
  }
  .hero-btns {
    margin-bottom: 8px;
  }
  .about-grid {
    gap: 32px;
  }
  .about-quote {
    font-size: 16px;
    padding-left: 16px;
    margin: 20px 0 22px;
  }
  .about-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 20px;
  }
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strength-card {
    padding: 24px 18px 20px;
  }
  .strength-card h3 {
    font-size: 15.5px;
  }
  .svc-item {
    padding: 26px 0;
    gap: 14px;
  }
  .svc-type {
    font-size: 28px;
  }
  .svc-body h3 {
    font-size: 17px;
  }
  .process-list {
    padding-left: 48px;
  }
  .process-list::before {
    left: 17px;
  }
  .process-node {
    left: -48px;
    width: 34px;
    height: 34px;
  }
  .process-item {
    padding: 18px 0;
  }
  .material-cats {
    margin-top: 28px;
    gap: 16px;
  }
  .material-figure {
    min-height: 220px;
  }
  .midcta {
    padding: 44px 0;
  }
  .midcta h3 {
    font-size: clamp(17px, 5vw, 21px);
  }
  .midcta p {
    font-size: 13px;
  }
  .form-card {
    padding: 26px 20px;
  }
  .contact-side h3 {
    font-size: 20px;
  }
  /* Footer */
  .footer-inner {
    padding: 56px 0 26px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 30px;
  }
  .footer-logo img {
    height: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
  }

  /* ---------- Simplify content on mobile ---------- */
  /* Hero: hide tagline label and the 4 stat boxes (TEL/METHOD/SCOPE/PRODUCTION) */
  .hero-tagline {
    display: none;
  }
  .hero-info {
    display: none;
  }

  /* Hero headline: force the first line onto a single line */
  .hero h1.hero-headline .title-line {
    display: block;
    white-space: nowrap;
    font-size: 4.8vw;
  }

  /* Hero lead: swap in a shorter mobile-only version */
  .lead-desktop {
    display: none;
  }
  .hero p.lead.lead-mobile {
    display: block;
  }

  /* Hide the more verbose first sentence in shortened blocks */
  .hide-mobile {
    display: none;
  }

  /* Strengths: keep title only, hide description */
  .strength-card p {
    display: none;
  }
  .strength-card {
    padding: 20px 16px;
  }

  /* Services: hide tag lists and the extra note box */
  .svc-tags,
  .svc-note {
    display: none;
  }
  .svc-body p.desc {
    margin-bottom: 0;
  }

  /* Products: hide the descriptive sentence, keep the tag list */
  .product-info {
    padding: 14px 0 0;
  }
  .product-info h3 {
    font-size: 14.5px;
    margin-bottom: 6px;
  }
  .product-info p.desc {
    display: none;
  }
  .product-info .items {
    gap: 5px;
    margin-top: 0;
  }
  .product-info .items span {
    font-size: 10.5px;
    padding: 4px 8px;
  }

  /* Production (국내/해외 생산): hide the bullet list inside each box */
  .prod-card ul {
    display: none;
  }
  .prod-card p.desc {
    margin-bottom: 0;
  }

  /* Contact form: collapse product chips into a tap-to-open dropdown */
  .chip-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid var(--line);
    background: var(--cream);
    padding: 12px 14px;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--espresso);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: left;
  }
  .chip-dropdown-toggle .hq-dropdown-arrow {
    border-color: var(--espresso);
  }
  .chip-dropdown.open .chip-dropdown-toggle .hq-dropdown-arrow {
    transform: rotate(-135deg);
  }
  .chip-dropdown .chip-group {
    display: none;
    margin-top: 10px;
  }
  .chip-dropdown.open .chip-group {
    display: flex;
  }

  /* Contact: info block now sits below the form, add spacing above it */
  .contact-info-row {
    margin-top: 8px;
    margin-bottom: 0;
  }

  /* Materials: collapse the 3 material rows into a single line */
  .material-cats {
    display: none;
  }
  .materials-mobile-line {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--espresso);
    margin: -6px 0 4px;
  }

  /* Materials: hide per-row descriptions and the kirime detail box */
  .material-cats .row p,
  .kirime-box {
    display: none;
  }
  .material-cats .row {
    padding-top: 14px;
  }

  /* Materials: condense the logo/processing tag list to ~3 rows */
  .process-tags {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .process-tags span {
    font-size: 10px;
    padding: 6px 4px;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.25;
  }
  .process-tags span::before {
    display: none;
  }

  /* Process: keep step titles, hide long descriptions */
  .process-item p {
    display: none;
  }
  .process-item h4 {
    margin-bottom: 0;
  }

  /* Footer: hide the extra contact note line */
  .footer-extra-note {
    display: none;
  }
}

@media(max-width: 400px) {
  .nav-inner {
    padding: 0 14px;
    gap: 6px;
  }
  .nav-logo {
    width: 100px;
  }
  .nav-cta .btn {
    padding: 8px 10px;
    font-size: 11px;
  }
  .rail {
    right: 10px;
    bottom: 10px;
    gap: 6px;
  }
  .rail a {
    width: 52px;
    height: 52px;
    font-size: 0;
    gap: 0;
  }
  .rail a .ic {
    font-size: 18px;
  }
}

@media(max-width: 540px) {
  .hero h1.hero-headline .title-line {
    white-space: normal;
    word-break: keep-all;
  }
}
