@import url('https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700,900&display=swap');

:root {
  --paper: #fafbfb;
  --paper-soft: #eef2f5;
  --ink: #101820;
  --steel: #6b7580;
  --line: #e4e7ea;
  --deep: #12314f;
  --deep-2: #1c3a52;
  --aqua: #0ea8b7;
  --white: #ffffff;
  --radius: 3px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto Sans KR', 'Malgun Gothic', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* offset anchored sections so the sticky header doesn't cover the title */
#about, #history, #products, #shower, #contact {
  scroll-margin-top: 118px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 600;
}

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,251,251,0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 28px 14px;
}

.logo img { height: 30px; }

.header-utility {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12.5px;
  letter-spacing: .2px;
  color: var(--steel);
}

.header-utility .search-box {
  display: flex;
  align-items: center;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 4px 2px;
  gap: 8px;
}
.header-utility .search-box input {
  border: none;
  outline: none;
  font-size: 13px;
  width: 120px;
  background: transparent;
  color: var(--ink);
}
.header-utility .search-box button {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--steel);
}
.header-utility .search-box:focus-within { border-color: var(--aqua); }
.header-utility .search-box:focus-within button { color: var(--aqua); }
.header-utility a:hover { color: var(--ink); }

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 19px;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}

nav.main-nav {
  border-top: 1px solid var(--line);
}
.nav-list {
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 28px;
}
.nav-list > li {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
}
.nav-list > li > a, .nav-list > li > span { padding: 6px 2px; }
.nav-list > li:hover > a { color: var(--aqua); }

.nav-toggle {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .2px;
  padding: 6px 2px;
  cursor: pointer;
  color: var(--ink);
}
.has-dropdown:hover .nav-toggle,
.has-dropdown.open .nav-toggle { color: var(--aqua); }

.dropdown {
  display: none;
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(16,24,32,0.09);
  padding: 14px 0;
  border-radius: var(--radius);
  z-index: 200;
}
.has-dropdown.open .dropdown { display: block; }
@media (hover: hover) and (pointer: fine) {
  .has-dropdown:hover .dropdown { display: block; }
}
.dropdown a {
  display: block;
  padding: 9px 22px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--steel);
  white-space: nowrap;
}
.dropdown a:hover { color: var(--ink); background: var(--paper-soft); }

.nav-mobile-utility { display: none; }

/* ---------- Hero Slider ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/6.2;
  overflow: hidden;
  background: var(--deep);
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slider .slide.active { opacity: 1; }
.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--deep);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(9,16,23,0.82) 0%, rgba(9,16,23,0.32) 42%, rgba(9,16,23,0.05) 68%);
  z-index: 2;
  pointer-events: none;
}
.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 44px;
  z-index: 3;
  color: #fff;
}
.hero-copy .eyebrow { color: #86e3ea; margin-bottom: 16px; }
.hero-copy h1 {
  margin: 0;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -.3px;
  max-width: 620px;
}
.hero-copy h1 b { font-weight: 700; }
.hero-copy p {
  margin: 18px 0 26px;
  font-size: 14.5px;
  color: #c3d3de;
  max-width: 420px;
}
.hero-copy .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--deep);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .2px;
}
.hero-copy .btn-hero:hover { background: var(--aqua); color: #fff; }
.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.hero-dots span.active { background: #fff; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-tight { padding: 60px 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.feature-card figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.feature-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform .7s ease;
}
.feature-card:hover img { transform: scale(1.045); }
.feature-card figcaption {
  position: absolute;
  left: 26px;
  bottom: 22px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .2px;
}
.feature-card figcaption i { margin-left: 6px; font-style: normal; }
.feature-card figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,16,23,.55) 0%, rgba(9,16,23,0) 55%);
}
.feature-card p.caption-text {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--steel);
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-bottom: 44px;
  text-align: center;
}
.section-title .kr {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.section-title .en {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 600;
}
.section-title-wrap { text-align: center; margin-bottom: 44px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.section-head .section-title { text-align: left; justify-content: flex-start; margin-bottom: 0; flex-direction: column; align-items: flex-start; gap: 8px; }
.view-all {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--steel);
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}
.view-all:hover { color: var(--aqua); border-color: var(--aqua); }

/* ---------- About stats (홈 회사소개) ---------- */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap;
  text-align: center;
}
.about-stat .en {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 600;
  margin-bottom: 8px;
}
.about-stat b {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.about-stat span {
  display: block;
  font-size: 12.5px;
  color: var(--steel);
}

/* ---------- Flagship spotlight ---------- */
.spotlight { background: var(--paper-soft); }
.spotlight-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}
.spotlight-visual { position: relative; min-height: 420px; overflow: hidden; }
.spotlight-visual img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-body { padding: 56px 60px; display: flex; flex-direction: column; justify-content: center; }
.spotlight-body .eyebrow { margin-bottom: 16px; }
.spotlight-body h3 { margin: 0 0 6px; font-size: 30px; font-weight: 700; }
.spotlight-body .en { color: var(--steel); font-size: 13.5px; margin-bottom: 20px; }
.spotlight-body p { color: var(--steel); font-size: 15px; max-width: 400px; margin-bottom: 28px; }
.spotlight-body .price { font-size: 24px; font-weight: 700; font-variant-numeric: tabular-nums; margin-bottom: 26px; color: var(--deep); }
.spotlight-body .price small { font-size: 13px; font-weight: 400; color: var(--steel); margin-left: 6px; }
.spotlight-body .btn-dark {
  display: inline-flex;
  align-self: flex-start;
  padding: 14px 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
}
.spotlight-body .btn-dark:hover { background: var(--deep); }

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.product-card figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  transition: box-shadow .35s ease, transform .35s ease;
}
.product-card:hover figure { box-shadow: 0 20px 36px -14px rgba(16,24,32,0.22); transform: translateY(-3px); }
.product-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover img { transform: scale(1.06); }
.product-card .name {
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 600;
}
.product-card .spec {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--steel);
}
.product-card .spec span { display: block; }

/* ---------- Promo Slider ---------- */
.promo-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/5;
  overflow: hidden;
}
.promo-slider .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.promo-slider .slide.active { opacity: 1; }
.promo-slider .slide img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CS Banner ---------- */
.cs-banner {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 52px 20px;
}
.cs-banner h5 {
  font-size: 20px;
  margin: 0 0 14px;
  font-weight: 300;
  letter-spacing: .3px;
}
.cs-banner h5 i { margin-right: 10px; color: var(--aqua); }
.cs-banner p { font-size: 13.5px; color: #97a3ac; margin: 0; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: #0d1013;
  color: #8b95a0;
  padding: 64px 0 30px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr .8fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-wordmark { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: .2px; }
.footer-wordmark span { color: var(--aqua); }
.footer-grid p.desc { font-size: 13px; max-width: 300px; margin: 0; color: #8b95a0; }
.footer-grid h4 { color: #fff; font-size: 12.5px; letter-spacing: .8px; margin: 0 0 18px; font-weight: 600; }
.footer-grid ul { display: flex; flex-direction: column; gap: 11px; font-size: 13px; }
.footer-grid ul a:hover { color: #fff; }
.footer-legal { padding-top: 26px; }
.footer-legal p { margin: 4px 0; }
footer.site-footer a.escrow {
  display: inline-block;
  margin-top: 14px;
  color: #6d7882;
  border-bottom: 1px solid #2a2e33;
  font-size: 12.5px;
}

/* ---------- Back to top ---------- */
.site-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 50;
}
.site-btn a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(16,24,32,0.25);
}
.site-btn a:hover { background: var(--aqua); }

/* ---------- Sub-page banner & breadcrumb ---------- */
.page-banner {
  background: linear-gradient(150deg, var(--deep), #0a1c2e);
  color: #fff;
  text-align: center;
  padding: 68px 20px 48px;
}
.page-banner h1 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: .2px;
}
.page-banner p {
  margin: 0;
  color: #86e3ea;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.breadcrumb {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 0 28px;
  font-size: 13px;
  color: var(--steel);
}
.breadcrumb a { color: var(--steel); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span.sep { margin: 0 6px; color: #c7ccd1; }
.breadcrumb span.current { color: var(--ink); font-weight: 500; }

/* ---------- Prose / content blocks ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 {
  font-size: 22px;
  margin: 40px 0 14px;
  font-weight: 700;
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--steel); font-size: 15px; margin: 0 0 14px; }
.prose blockquote {
  margin: 0 0 24px;
  padding: 20px 24px;
  background: var(--paper-soft);
  border-left: 3px solid var(--aqua);
  font-size: 17px;
  font-weight: 500;
  color: var(--deep);
  border-radius: 0 4px 4px 0;
}
.map-embed {
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 20px 0 30px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 30px;
  font-size: 14px;
}
.info-table th, .info-table td {
  border: 1px solid var(--line);
  padding: 12px 16px;
  text-align: left;
}
.info-table th {
  width: 160px;
  background: var(--paper-soft);
  color: var(--steel);
  font-weight: 500;
}

/* ---------- Category cards (제품소개) ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 30px 0 10px;
}
.category-card {
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  background: var(--paper-soft);
  transition: box-shadow .3s ease, transform .3s ease;
}
.category-card:hover { box-shadow: 0 20px 36px -14px rgba(16,24,32,0.2); transform: translateY(-4px); }
.category-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.category-card .cc-body { padding: 18px 12px 22px; background: var(--paper); }
.category-card .cc-en { font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--aqua); }
.category-card .cc-kr { font-size: 16px; font-weight: 600; margin: 5px 0 6px; }
.category-card .cc-desc { font-size: 12.5px; color: var(--steel); }

/* ---------- Certificate gallery ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.cert-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: box-shadow .3s ease, transform .3s ease;
}
.cert-card:hover { box-shadow: 0 20px 36px -14px rgba(16,24,32,0.2); transform: translateY(-4px); }
.cert-card img { width: 100%; aspect-ratio: 3/4; object-fit: contain; background: var(--paper-soft); padding: 10px; }
.cert-card .cert-name {
  padding: 12px 14px 16px;
  font-size: 13.5px;
  font-weight: 500;
  text-align: center;
  border-top: 1px solid var(--line);
}

/* ---------- Catalog ---------- */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.catalog-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s ease, transform .3s ease;
}
.catalog-card:hover { box-shadow: 0 20px 36px -14px rgba(16,24,32,0.2); transform: translateY(-4px); }
.catalog-card img { width: 100%; display: block; }
.catalog-card .catalog-name {
  padding: 12px 14px;
  font-size: 13.5px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--steel);
}

/* ---------- Category listing (shop) ---------- */
.list-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
  font-size: 13.5px;
  color: var(--steel);
}
.category-tabs {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.category-tabs a {
  padding: 0 0 14px;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  color: var(--steel);
  margin-bottom: -1px;
}
.category-tabs a:hover { color: var(--ink); }
.category-tabs a.active { color: var(--ink); border-color: var(--aqua); font-weight: 700; }

.price { color: var(--deep); font-weight: 700; margin-top: 8px; font-size: 14px; font-variant-numeric: tabular-nums; }

/* ---------- Product detail ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.product-detail figure { margin: 0; background: var(--paper-soft); border-radius: var(--radius); overflow: hidden; }
.product-detail img { width: 100%; display: block; }
.pd-figure-wrap {
  position: relative;
  padding: 28px;
  transition: background-color .3s ease;
}
.pd-figure-wrap img { border-radius: calc(var(--radius) - 2px); }
.pd-finish { margin: 22px 0; }
.pd-finish label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 12px;
}
.pd-finish-selected { color: var(--steel); font-weight: 400; }
.finish-chips { display: flex; gap: 10px; }
.finish-chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--chip-color);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
  cursor: pointer;
  padding: 0;
  transition: box-shadow .2s ease, transform .2s ease;
}
.finish-chip:hover { transform: scale(1.1); }
.finish-chip.active { box-shadow: 0 0 0 2px var(--ink); }
.product-detail .pd-category { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--aqua); font-weight: 600; margin-bottom: 10px; }
.product-detail h1 { font-size: 25px; margin: 0 0 6px; font-weight: 700; }
.product-detail .pd-en { color: var(--steel); font-size: 14px; margin-bottom: 20px; }
.product-detail .pd-price { font-size: 26px; font-weight: 700; color: var(--deep); margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.pd-actions { display: flex; gap: 10px; margin-top: 28px; }
.pd-actions button {
  flex: 1;
  padding: 15px 0;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  letter-spacing: .2px;
}
.pd-actions button.primary { background: var(--ink); color: #fff; }
.pd-actions button:hover.primary { background: var(--deep); border-color: var(--deep); }
.pd-actions button:hover:not(.primary) { background: var(--paper-soft); }
.pd-notfound { text-align: center; padding: 80px 20px; color: var(--steel); }

/* ---------- Custom cursor ---------- */
:root.has-custom-cursor,
:root.has-custom-cursor a,
:root.has-custom-cursor button,
:root.has-custom-cursor .product-card,
:root.has-custom-cursor .lookbook-tag,
:root.has-custom-cursor .finish-chip {
  cursor: none;
}
:root.has-custom-cursor input,
:root.has-custom-cursor textarea,
:root.has-custom-cursor select {
  cursor: auto;
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.custom-cursor.visible { opacity: 1; }
.custom-cursor-dot {
  position: absolute;
  top: 0; left: 0;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--ink);
  transition: width .25s ease, height .25s ease, margin .25s ease, background .25s ease, border-color .25s ease;
}
.custom-cursor.active .custom-cursor-dot {
  width: 60px; height: 60px;
  margin: -30px 0 0 -30px;
  background: rgba(16,24,32,0.05);
  border: 1px solid var(--ink);
}
.custom-cursor-label {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s ease;
}
.custom-cursor.active .custom-cursor-label { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .custom-cursor { display: none; }
}

/* ---------- Lookbook (Shop the Look styling concept) ---------- */
.lookbook-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--paper-soft);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--steel);
  line-height: 1.7;
  margin-bottom: 60px;
}
.lookbook-notice i { color: var(--aqua); margin-top: 2px; }
.lookbook-scene { margin-bottom: 70px; }
.lookbook-scene:last-child { margin-bottom: 0; }
.lookbook-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-soft);
}
.lookbook-frame svg { width: 100%; display: block; }
.lookbook-tag {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  color: var(--ink);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(16,24,32,0.25);
  transform: translate(-50%, -50%);
  animation: lookbook-pulse 2.2s ease-in-out infinite;
}
.lookbook-tag:hover { background: var(--aqua); color: #fff; }
@keyframes lookbook-pulse {
  0%, 100% { box-shadow: 0 6px 16px rgba(16,24,32,0.25), 0 0 0 0 rgba(14,168,183,0.4); }
  50% { box-shadow: 0 6px 16px rgba(16,24,32,0.25), 0 0 0 8px rgba(14,168,183,0); }
}
@media (prefers-reduced-motion: reduce) {
  .lookbook-tag { animation: none; }
}
.lookbook-popover {
  position: absolute;
  z-index: 700;
  display: none;
  align-items: center;
  gap: 12px;
  width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 20px 40px -14px rgba(16,24,32,0.3);
  padding: 12px;
}
.lookbook-popover.show { display: flex; }
.lookbook-popover img { width: 54px; height: 54px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.lookbook-popover-name { font-size: 13px; font-weight: 700; margin: 0 0 3px; }
.lookbook-popover-price { font-size: 12.5px; color: var(--deep); font-weight: 700; margin: 0 0 4px; }
.lookbook-popover a { font-size: 12px; color: var(--aqua); font-weight: 600; }
@media (max-width: 640px) {
  .lookbook-popover { width: 200px; }
}

/* ---------- Technology scrollytelling ---------- */
.tech-scrolly {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 0 100px;
}
.tech-visual-pin {
  position: sticky;
  top: 130px;
  height: 420px;
  align-self: start;
}
.tech-visual {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--paper-soft);
  border-radius: 8px;
  overflow: hidden;
}
.tech-stage {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 46%;
  height: 46%;
  opacity: 0;
  transition: opacity .6s ease;
}
.tech-stage.active { opacity: 1; }
.tech-visual-caption {
  margin-top: 14px;
  font-size: 11.5px;
  letter-spacing: 2px;
  color: var(--aqua);
  font-weight: 600;
  text-align: center;
}
.tech-water line {
  stroke-dasharray: 10 6;
  animation: tech-water-flow 1.1s linear infinite;
}
.tech-water circle {
  animation: tech-water-bubble 1.6s ease-in-out infinite;
}
@keyframes tech-water-flow { to { stroke-dashoffset: -32; } }
@keyframes tech-water-bubble {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50% { transform: translateY(-6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .tech-water line, .tech-water circle { animation: none !important; }
}
.tech-steps { display: flex; flex-direction: column; gap: 0; }
.tech-step {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: .35;
  transition: opacity .4s ease;
}
.tech-step.active { opacity: 1; }
.tech-step h3 { font-size: 22px; font-weight: 700; margin: 14px 0 14px; line-height: 1.4; }
.tech-step p { color: var(--steel); font-size: 15px; max-width: 460px; }
@media (max-width: 900px) {
  .tech-scrolly { grid-template-columns: 1fr; gap: 24px; }
  .tech-visual-pin { position: static; height: 300px; }
  .tech-step { min-height: 0; opacity: 1; padding: 20px 0; }
}

/* ---------- 3D viewer / AR panel ---------- */
.pd-3d-panel { margin: 0 0 40px; }
.pd-3d-panel model-viewer { position: relative; }
.pd-3d-ar-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.pd-3d-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 260px;
  background: var(--paper-soft);
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
  padding: 20px;
}
.pd-3d-placeholder i { font-size: 30px; color: var(--steel); }
.pd-3d-placeholder p { margin: 0; font-size: 13.5px; color: var(--steel); line-height: 1.7; }

/* ---------- B2B document center (도면/BIM/매뉴얼/인증서) ---------- */
.doc-downloads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 24px 0;
}
.doc-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.doc-btn i { color: var(--aqua); font-size: 15px; width: 18px; text-align: center; flex-shrink: 0; }
.doc-btn:hover { border-color: var(--aqua); background: var(--paper-soft); }
.doc-btn.disabled {
  color: var(--steel);
  cursor: not-allowed;
  pointer-events: none;
  opacity: .6;
}
.doc-btn.disabled i { color: var(--steel); }
.doc-btn.disabled em {
  margin-left: auto;
  font-style: normal;
  font-size: 10px;
  background: var(--paper-soft);
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.doc-hover-panel {
  position: fixed;
  z-index: 600;
  width: 230px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 20px 40px -14px rgba(16,24,32,0.28);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease;
  pointer-events: none;
}
.doc-hover-panel.show { opacity: 1; visibility: visible; transform: translateY(0); }
.doc-hover-title { font-size: 12px; font-weight: 700; margin-bottom: 10px; }
.doc-hover-body .doc-downloads { grid-template-columns: 1fr; gap: 6px; margin: 0; }
.doc-hover-body .doc-btn { padding: 8px 10px; font-size: 11.5px; }
@media (max-width: 860px) {
  .doc-hover-panel { display: none; }
}

/* ---------- Forms (login / join / contact) ---------- */
.form-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 44px 40px;
  box-shadow: 0 30px 60px -30px rgba(16,24,32,0.15);
}
.form-card.wide { max-width: 680px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: var(--paper);
  color: var(--ink);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--aqua); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 15px 0;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
  cursor: pointer;
  margin-top: 8px;
}
.form-submit:hover { background: var(--deep); }
.form-foot {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  color: var(--steel);
}

/* ---------- Empty state (orders / cart) ---------- */
.empty-state {
  text-align: center;
  padding: 90px 20px;
  color: var(--steel);
}
.empty-state i { font-size: 40px; color: var(--line); margin-bottom: 18px; display: block; }
.empty-state p { margin: 0 0 20px; font-size: 15px; }
.empty-state a.btn {
  display: inline-block;
  padding: 13px 28px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
}
.empty-state a.btn:hover { background: var(--deep); }

/* ---------- Orders / Cart list ---------- */
.order-list { display: flex; flex-direction: column; gap: 14px; max-width: 720px; margin: 0 auto; }
.order-row {
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 20px;
}
.order-row .order-thumb {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--paper-soft);
}
.order-row .order-info { flex: 1; min-width: 0; }
.order-row .order-name { font-weight: 700; font-size: 14.5px; margin-bottom: 4px; }
.order-row .order-meta { font-size: 12.5px; color: var(--steel); }
.order-row .order-price { font-weight: 700; color: var(--deep); white-space: nowrap; font-variant-numeric: tabular-nums; }
.order-row .order-actions { display: flex; gap: 8px; flex-shrink: 0; }
.order-row .order-actions button {
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: 12.5px;
  cursor: pointer;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--steel);
}
.order-row .order-actions button.primary { border-color: var(--ink); background: var(--ink); color: #fff; }
.order-status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 30px;
  font-size: 11.5px;
  background: var(--paper-soft);
  color: var(--deep);
  margin-left: 8px;
}
@media (max-width: 520px) {
  .order-row { flex-wrap: wrap; }
  .order-row .order-actions { width: 100%; justify-content: flex-end; }
}

/* ---------- Lightbox (인증서 큰 화면 보기) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 40px;
  background: rgba(9,16,23,0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease;
}
.lightbox.show { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 78vh;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
}
.lightbox-caption { color: #fff; font-size: 14.5px; }
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ---------- Toast (준비중 안내) ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(16,24,32,0.94);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 13.5px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .product-grid, .category-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-visual { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .section-tight { padding: 40px 0; }
}

/* Mobile: switch to a hamburger-driven nav drawer */
@media (max-width: 860px) {
  .hamburger-btn { display: block; }

  .header-top { gap: 10px; }
  .header-utility { gap: 12px; flex: 1; min-width: 0; }
  .header-utility > a { display: none; }
  .header-utility .search-box { flex: 1; min-width: 0; }
  .header-utility .search-box input { width: 100%; min-width: 0; }

  nav.main-nav { border-top: none; }
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    max-width: none;
  }
  #mainNav.nav-open .nav-list {
    display: flex;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(16,24,32,0.1);
    max-height: calc(100vh - 100%);
    overflow-y: auto;
  }
  #mainNav { position: relative; }

  .nav-mobile-utility {
    display: flex;
    background: var(--paper-soft);
    border-bottom: 1px solid var(--line);
  }
  .nav-mobile-utility a {
    flex: 1;
    text-align: center;
    padding: 14px 4px;
    font-size: 11.5px;
    white-space: nowrap;
    color: var(--deep);
    border-right: 1px solid rgba(0,0,0,0.06);
  }
  .nav-mobile-utility a:last-child { border-right: none; }
  .nav-mobile-utility a i { display: block; margin-bottom: 4px; font-size: 15px; }

  .nav-list > li { width: 100%; }
  .nav-list > li > a,
  .nav-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 15.5px;
  }
  .nav-toggle { justify-content: space-between; }
  .nav-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 13px;
    color: #bbb;
    transition: transform .2s ease;
  }
  .has-dropdown.open .nav-toggle::after { transform: rotate(180deg); }

  .dropdown {
    display: none;
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: var(--paper-soft);
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 4px 0;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown a {
    padding: 13px 20px 13px 36px;
    font-size: 14.5px;
    border-bottom: 1px solid var(--line);
  }

  /* offset anchors for the shorter mobile header */
  #about, #history, #products, #shower, #contact { scroll-margin-top: 70px; }
}

@media (max-width: 640px) {
  .page-banner { padding: 46px 20px 34px; }
  .page-banner h1 { font-size: 23px; }
  .section-title .kr { font-size: 21px; }
  .hero-slider { aspect-ratio: 4/5; }
  .hero-copy { bottom: 30px; }
  .feature-card img { height: 220px; }
  .cs-banner h5 { font-size: 17px; }
  .spotlight-body { padding: 36px 26px; }

  /* stack label/value tables instead of squeezing two columns */
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td {
    display: block;
    width: auto;
  }
  .info-table tr { border: 1px solid var(--line); border-radius: 4px; margin-bottom: 10px; overflow: hidden; }
  .info-table th, .info-table td { border: none; padding: 10px 14px; }
  .info-table th { border-bottom: 1px solid var(--line); background: var(--paper-soft); }
}

@media (max-width: 520px) {
  .product-grid, .category-grid, .cert-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .header-top { padding: 16px 16px 8px; }
  .container { padding: 0 16px; }
  .form-card { padding: 30px 20px; }
  .product-detail .pd-price { font-size: 22px; }
  .pd-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-dots span { width: 20px; height: 20px; margin: -6px; background: transparent; position: relative; }
  .hero-dots span::before {
    content: '';
    position: absolute; left: 6px; top: 6px;
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.5);
  }
  .hero-dots span.active::before { background: #fff; }
}
