:root {
  --black: #0a0a09;
  --charcoal: #141310;
  --panel: #1c1a16;
  --gold: #c99a5c;
  --gold-light: #e0bc83;
  --cream: #f2ede4;
  --muted: #afa89c;
  --line: rgba(201, 154, 92, 0.26);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "DM Sans", "Noto Sans KR", sans-serif;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(10, 10, 9, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center 38%;
  border-radius: 50%;
}
.brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  letter-spacing: 0.12em;
  font-size: 17px;
}
.brand small {
  display: block;
  margin-top: 7px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.34em;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.site-nav a {
  color: #d0cbc3;
  font-size: 13px;
  font-weight: 600;
}
.site-nav a:hover { color: var(--gold-light); }
.language-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.lang {
  padding: 6px 8px;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.lang.active {
  background: var(--gold);
  color: var(--black);
}
.menu-toggle { display: none; }

.hero {
  min-height: 850px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px max(28px, calc((100vw - var(--max)) / 2)) 120px;
}
.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-art {
  background-image: url("hero-crop.jpg");
  background-size: cover;
  background-position: center 48%;
  transform: scale(1.015);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5,5,4,.97) 0%, rgba(5,5,4,.89) 34%, rgba(5,5,4,.4) 66%, rgba(5,5,4,.68) 100%),
    linear-gradient(0deg, var(--black) 0%, transparent 28%, rgba(0,0,0,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 68vw);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; }
h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
}
h1 {
  margin-bottom: 26px;
  font-size: clamp(56px, 6.2vw, 92px);
  letter-spacing: -0.035em;
}
.hero-copy {
  max-width: 620px;
  margin: 0;
  color: #d2ccc3;
  font-size: 19px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
.button-primary {
  background: var(--gold);
  color: var(--black);
}
.button-primary:hover { background: var(--gold-light); }
.button-ghost { background: rgba(8, 8, 7, 0.45); }
.button-ghost:hover { background: rgba(201,154,92,.12); }
.b2b-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  color: #c8c1b6;
  font-size: 12px;
}
.b2b-mark {
  padding: 5px 9px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: .12em;
}
.hero-facts {
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 48px;
  display: flex;
  border-top: 1px solid var(--line);
}
.hero-facts div {
  width: 150px;
  padding: 18px 18px 0;
  border-left: 1px solid var(--line);
}
.hero-facts strong {
  display: block;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 25px;
}
.hero-facts span {
  color: var(--muted);
  font-size: 11px;
}

.section {
  position: relative;
  padding: 130px max(28px, calc((100vw - var(--max)) / 2));
}
.section-number {
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 18px;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 62px;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.025em;
}
.section-heading > p:last-child { color: var(--muted); }

.about { background: var(--charcoal); }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 76px;
  align-items: center;
}
.about-copy > p { color: var(--muted); }
.about-copy .lead {
  color: var(--cream);
  font-family: "Playfair Display", serif;
  font-size: 27px;
  line-height: 1.4;
}
.detail-list { margin-top: 38px; }
.detail-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}
.detail-list span { color: var(--gold); font-size: 12px; }
.detail-list p { margin: 0; color: #ded8ce; }
.image-frame {
  position: relative;
  margin: 0;
  min-height: 520px;
  overflow: hidden;
}
.image-frame::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  border: 1px solid var(--gold);
}
.image-frame img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% 55%;
  filter: saturate(.86);
}
.image-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.9), transparent 50%);
}
.image-frame figcaption {
  position: absolute;
  z-index: 3;
  inset: auto 28px 24px;
  color: #e5ded3;
  font-size: 14px;
}

.products { background: #0e0d0b; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  min-height: 520px;
  padding: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 8%, rgba(201,154,92,.19), transparent 30%),
    linear-gradient(135deg, #211e19, #11100e);
}
.product-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 45%;
  aspect-ratio: 1;
  border: 1px solid rgba(201,154,92,.2);
  border-radius: 50%;
}
.product-icon {
  position: absolute;
  top: 36px;
  right: 38px;
  color: rgba(201,154,92,.18);
  font-family: "Playfair Display", serif;
  font-size: 120px;
  line-height: 1;
}
.card-kicker {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.product-card h3 {
  margin-bottom: 22px;
  font-family: "Playfair Display", serif;
  font-size: 48px;
}
.product-card > p:not(.card-kicker) {
  max-width: 450px;
  color: var(--muted);
}
.product-card ul {
  padding: 0;
  margin: 34px 0;
  list-style: none;
}
.product-card li {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.product-card li::before {
  content: "+";
  margin-right: 12px;
  color: var(--gold);
}
.product-card > a {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 13px;
}
.product-card > a span { margin-left: 8px; }

.market {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  padding: 0;
  background: #191713;
}
.market-image { min-height: 740px; overflow: hidden; }
.market-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(.78) brightness(.72);
}
.market-copy {
  align-self: center;
  padding: 100px max(50px, calc((100vw - var(--max)) / 2));
  padding-left: 76px;
}
.market-copy > p:not(.eyebrow) { color: var(--muted); }
.buyer-types { margin-top: 38px; }
.buyer-types div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.buyer-types span { color: var(--gold); font-size: 12px; }
.buyer-types strong { font-size: 16px; }

.logistics { background: #0d0c0a; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid article {
  min-height: 260px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}
.process-grid article:last-child { border-right: 0; }
.process-grid span { color: var(--gold); font-size: 12px; }
.process-grid h3 {
  margin: 45px 0 15px;
  font-family: "Playfair Display", serif;
  font-size: 23px;
}
.process-grid p { color: var(--muted); font-size: 14px; }
.logistics-banner {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px;
}
.logistics-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: brightness(.42);
}
.logistics-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.2));
}
.logistics-banner > div {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.logistics-banner h3 {
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.1;
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  background: var(--charcoal);
}
.contact-info > p:not(.eyebrow) { color: var(--muted); }
.contact-links { margin-top: 48px; }
.contact-links a,
.contact-links div {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-links span {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-links strong { font-size: 15px; overflow-wrap: anywhere; }
.inquiry-form {
  padding: 44px;
  background: #0d0c0a;
  border: 1px solid var(--line);
}
.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.inquiry-form label {
  display: block;
  margin-bottom: 20px;
}
.inquiry-form label > span {
  display: block;
  margin-bottom: 7px;
  color: #c8c1b6;
  font-size: 12px;
}
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 0;
  outline: none;
  background: #171511;
  color: var(--cream);
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; }
.inquiry-form .button { width: 100%; border: 0; }
.form-note {
  margin: 14px 0 0;
  color: #837d73;
  font-size: 11px;
  text-align: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 45px max(28px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #080807;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong {
  font-family: "Playfair Display", serif;
  letter-spacing: .08em;
}
.footer-brand span, .footer-meta { color: var(--muted); font-size: 12px; }
.footer-meta { display: flex; flex-direction: column; text-align: right; }

html[lang="ko"] body { word-break: keep-all; }
html[lang="ko"] h1,
html[lang="ko"] h2,
html[lang="ko"] h3,
html[lang="ko"] .about-copy .lead { font-family: "Noto Sans KR", sans-serif; letter-spacing: -.04em; }
html[lang="ko"] .eyebrow { letter-spacing: .1em; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto 1fr auto auto; }
  .menu-toggle {
    display: block;
    width: 38px;
    height: 38px;
    padding: 8px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 1px;
    margin: 7px 0;
    background: var(--cream);
  }
  .site-nav {
    position: fixed;
    inset: 86px 0 0;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 30px;
    background: rgba(10,10,9,.98);
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }
  .hero-facts { display: none; }
  .hero-content { width: min(720px, 85vw); }
  .about-grid, .contact { gap: 48px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .site-header {
    height: 72px;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 0 18px;
  }
  .brand img { width: 39px; height: 39px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 7px; margin-top: 5px; }
  .language-switcher { gap: 1px; }
  .lang { padding: 5px; font-size: 9px; }
  .site-nav { inset: 72px 0 0; }
  .hero {
    min-height: 760px;
    padding: 130px 22px 80px;
    align-items: flex-end;
  }
  .hero-art { background-position: 55% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5,5,4,.98) 0%, rgba(5,5,4,.72) 65%, rgba(5,5,4,.45) 100%),
      linear-gradient(90deg, rgba(5,5,4,.7), transparent);
  }
  .hero-content { width: 100%; }
  h1 { font-size: clamp(45px, 14vw, 65px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .section { padding: 88px 22px; }
  .section-heading { margin-bottom: 42px; }
  h2 { font-size: 39px; }
  .about-grid, .product-grid, .market, .contact {
    grid-template-columns: 1fr;
  }
  .image-frame { min-height: 390px; margin: 12px 12px 12px 0; }
  .product-card { min-height: auto; padding: 34px 28px; }
  .product-icon { font-size: 80px; }
  .market-image { min-height: 460px; }
  .market-copy { padding: 80px 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-grid article:last-child { border-bottom: 0; }
  .process-grid h3 { margin-top: 25px; }
  .logistics-banner { min-height: 480px; padding: 30px; align-items: flex-end; }
  .inquiry-form { padding: 28px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  footer { flex-direction: column; }
  .footer-meta { text-align: left; }
}
