:root {
  --bg: #fbf8f2;
  --bg-soft: #f5ede0;
  --white: #ffffff;
  --ink: #261d17;
  --muted: #6a6158;
  --brown: #4a3328;
  --brown-deep: #2d1f19;
  --tan: #c7a37b;
  --tan-soft: #e7d2bb;
  --line: rgba(74, 51, 40, 0.14);
  --shadow: 0 24px 70px rgba(45, 31, 25, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199,163,123,.16), transparent 28rem),
    linear-gradient(180deg, var(--bg) 0%, #f8f4ec 38%, var(--bg) 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 76px);
  background: rgba(251,248,242,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  flex: 0 1 auto;
}
.brand img {
  width: clamp(220px, 26vw, 360px);
}
.nav {
  display: flex;
  gap: 30px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--tan);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, .94fr);
  gap: 48px;
  align-items: center;
  padding: 72px clamp(20px, 5vw, 76px) 56px;
}
.eyebrow,
.section-label,
.quick-label {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--tan);
}
.hero h1,
.section h2,
.contact h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-size: clamp(50px, 6.2vw, 88px);
  line-height: .98;
  margin-bottom: 24px;
  max-width: 840px;
}
.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 14px 36px rgba(74,51,40,.24);
}
.btn.secondary {
  background: rgba(255,255,255,.72);
  color: var(--brown);
  border: 1px solid var(--line);
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.hero-highlights div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  min-width: 0;
}
.hero-highlights strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}
.hero-highlights span {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.visual-panel {
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(74,51,40,.10);
  background:
    radial-gradient(circle at top right, rgba(199,163,123,.22), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(245,237,224,.9));
  box-shadow: var(--shadow);
}
.visual-panel::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 140px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(74,51,40,.10);
}
.hero-logo {
  width: min(100%, 640px);
  margin-bottom: 28px;
}
.roll-stage {
  position: relative;
  height: 210px;
  margin: 4px 0 18px;
}
.roll {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #65473a 0%, #37231b 100%);
  box-shadow: 0 16px 28px rgba(55,35,27,.18);
}
.roll::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: linear-gradient(180deg, #f1e5d6, #c59e79);
}
.roll span {
  position: absolute;
  left: 62%;
  top: 5%;
  width: 72%;
  height: 88%;
  border-radius: 48% 44% 56% 44%;
  background: linear-gradient(180deg, #ead6be, #cfa981);
  transform: perspective(140px) rotateY(-24deg);
}
.roll-1 { width: 152px; height: 152px; left: 18px; }
.roll-2 { width: 114px; height: 114px; left: 146px; bottom: 18px; }
.roll-3 { width: 84px; height: 84px; left: 236px; bottom: 36px; }
.visual-note {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.visual-note p {
  margin-bottom: 8px;
  color: var(--tan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.visual-note h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  line-height: 1.35;
}

.quick-band {
  margin: 0 clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(255,255,255,.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-band div {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}
.quick-band div:last-child { border-right: 0; }
.quick-band strong { display: block; font-size: 18px; }

.section {
  padding: 108px clamp(20px, 5vw, 76px);
}
.section h2 {
  font-size: clamp(38px, 4.8vw, 68px);
  line-height: 1.03;
  margin-bottom: 18px;
}
.two-column,
.business-layout,
.contact-panel,
.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1fr);
  gap: 68px;
  align-items: start;
}
.body-copy p,
.section-heading p,
.partnership-grid p,
.process-item p,
.contact p {
  color: var(--muted);
  line-height: 1.82;
  font-size: 17px;
}
.ceo-card {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--brown-deep), var(--brown));
  color: #fff;
  box-shadow: var(--shadow);
}
.ceo-title span {
  color: #e1c49f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ceo-title h3 {
  margin: 10px 0 0;
  font-size: 38px;
  font-family: "Cormorant Garamond", Georgia, serif;
}
blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.34;
}

.products {
  background: rgba(255,255,255,.48);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading { max-width: 920px; margin-bottom: 44px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  min-width: 0;
  padding: 28px;
  min-height: 260px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,243,235,.88));
}
.product-card.featured {
  background: linear-gradient(180deg, rgba(79,58,47,.98), rgba(62,43,35,.98));
  color: #fff;
}
.product-card.featured p,
.product-card.featured .number { color: rgba(255,255,255,.82); }
.number {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  color: var(--tan);
}
.product-card h3 { font-size: 22px; margin-bottom: 10px; }
.product-card p { margin-bottom: 0; }

.partnership-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.partnership-grid article {
  min-width: 0;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
}
.partnership-grid h3 { font-size: 20px; margin-bottom: 10px; }
.business-layout { margin-top: 66px; }
.process { border-top: 1px solid var(--line); }
.process-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.process-item span {
  color: var(--tan);
  font-weight: 900;
}
.process-item h3 { margin-bottom: 8px; }
.process-item p { margin-bottom: 0; font-size: 15px; }

.contact {
  padding: 36px clamp(20px, 5vw, 76px) 102px;
}
.contact-panel {
  padding: clamp(34px, 5vw, 64px);
  align-items: end;
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(199,163,123,.30), transparent 18rem),
    linear-gradient(135deg, rgba(45,31,25,.98), rgba(74,51,40,.96));
  box-shadow: var(--shadow);
}
.contact p { color: rgba(255,255,255,.76); }
.contact-list {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.contact-list a,
.contact-list span {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  word-break: break-word;
}
.contact-list a {
  color: #f1d7b5;
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer img { width: clamp(180px, 20vw, 280px); }
.footer p { margin: 0; font-size: 14px; }

@media (max-width: 1180px) {
  .hero,
  .two-column,
  .business-layout,
  .contact-panel,
  .section-heading.split {
    grid-template-columns: 1fr;
  }
  .hero-highlights,
  .quick-band,
  .product-grid,
  .partnership-grid,
  .value-strip {
    grid-template-columns: 1fr;
  }
  .quick-band div { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-band div:last-child { border-bottom: 0; }
  .ceo-card { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .nav {
    width: 100%;
    gap: 20px;
    justify-content: flex-start;
  }
  .brand img { width: min(82vw, 320px); }
  .visual-panel { min-height: 560px; }
  .hero-logo { width: min(100%, 560px); }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 18px; }
  .hero,
  .section,
  .contact,
  .footer { padding-left: 18px; padding-right: 18px; }
  .hero { padding-top: 44px; }
  .hero h1 { font-size: 44px; }
  .visual-panel { padding: 24px; min-height: 520px; }
  .hero-logo { width: 100%; }
  .roll-stage { transform: scale(.88); transform-origin: left bottom; }
  .visual-note { left: 24px; right: 24px; bottom: 24px; }
  .footer { flex-direction: column; align-items: flex-start; }
}


.value-strip {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.value-strip article {
  min-width: 0;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,243,235,.86));
  box-shadow: 0 10px 24px rgba(45,31,25,.05);
}
.value-strip span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--tan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.value-strip h3 {
  margin-bottom: 10px;
  font-size: 21px;
}
.value-strip p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 15px;
}


/* Language switch */
html[data-lang="en"] [data-i18n="ko"] { display: none !important; }
html[data-lang="ko"] [data-i18n="en"] { display: none !important; }

.header-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--brown);
  color: #fff;
}

/* Cleaner hero: remove the broken paper-roll illustration area */
.clean-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
}

.hero-logo-panel {
  min-width: 0;
  border-radius: 34px;
  padding: clamp(26px, 4vw, 48px);
  background:
    radial-gradient(circle at 100% 0%, rgba(199,163,123,.22), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(245,237,224,.88));
  border: 1px solid rgba(74,51,40,.10);
  box-shadow: var(--shadow);
}

.hero-logo-panel img {
  width: min(100%, 720px);
  margin: 0 auto;
}

/* Improve Korean typography spacing */
html[data-lang="ko"] body {
  word-break: keep-all;
}

html[data-lang="ko"] .hero h1,
html[data-lang="ko"] .section h2,
html[data-lang="ko"] .contact h2 {
  letter-spacing: -0.055em;
}

html[data-lang="ko"] .hero-text,
html[data-lang="ko"] .body-copy p,
html[data-lang="ko"] .section-heading p,
html[data-lang="ko"] .partnership-grid p,
html[data-lang="ko"] .process-item p,
html[data-lang="ko"] .contact p {
  line-height: 1.9;
}

/* Responsive fixes */
@media (max-width: 1180px) {
  .clean-hero {
    grid-template-columns: 1fr;
  }
  .hero-logo-panel img {
    width: min(100%, 620px);
  }
}

@media (max-width: 860px) {
  .header-right {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero-logo-panel {
    padding: 22px;
    border-radius: 24px;
  }
  .hero-logo-panel img {
    width: 100%;
  }
  .lang-toggle {
    margin-top: 2px;
  }
}


/* Interactive product section */
.interactive-products .product-card {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  outline: none;
}

.interactive-products .product-card:hover,
.interactive-products .product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(45,31,25,.10);
  border-color: rgba(199,163,123,.48);
}

.product-card em {
  display: inline-flex;
  margin-top: 24px;
  color: var(--tan);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-card.featured em,
.product-card.active em {
  color: rgba(255,255,255,.78);
}

.product-detail-panel {
  margin-top: 22px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(199,163,123,.18), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,243,235,.88));
  box-shadow: 0 16px 36px rgba(45,31,25,.06);
  overflow: hidden;
}

.product-detail {
  display: none;
  grid-template-columns: minmax(260px, .85fr) minmax(320px, 1.15fr);
  gap: 42px;
  padding: clamp(26px, 4vw, 44px);
  align-items: start;
}

.product-detail.active {
  display: grid;
  animation: detailFade .18s ease;
}

.detail-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--tan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-detail h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: -0.035em;
}

.product-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.product-detail li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.72;
}

.product-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--tan);
}

@keyframes detailFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lang-btn .flag {
  font-size: 14px;
  line-height: 1;
}

.lang-btn .label {
  line-height: 1;
}
