﻿:root{
  --bg: #F7F3EE;
  --bg2: #F1ECE6;
  --card: rgba(255,255,255,.72);
  --text: #2B1D14;
  --muted: #6B5E55;
  --line: #E6DED6;
  --accent: #C07A3D;
  --accent2: #1F1A16;
  --accent-light: rgba(192,122,61,.10);

  --r: 20px;
  --shadow: 0 14px 40px rgba(0,0,0,.10);
  --shadow2: 0 10px 24px rgba(0,0,0,.08);

  --sans: "Noto Sans KR", system-ui, -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --serif: "Noto Serif KR", Georgia, "Times New Roman", serif;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: .1px;
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--container), calc(100% - 44px)); margin:0 auto; }

/* ?? HEADER ?? */
.site-header{
  position: sticky; top:0; z-index:100;
  background: rgba(247,243,238,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding: 12px 0;
}
.brand{ display:flex; align-items:center; gap:10px; font-weight:800; white-space: nowrap; }
.brand-name { white-space: nowrap; }
.brand-mark{
  width:48px; height:48px; border-radius:10px;
  display:grid; place-items:center;
  background: transparent;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ?? 以꾨컮轅?諛⑹? ???⑥뼱 以묎컙???딄린吏 ?딅룄濡??? */
body, p, h1, h2, h3, h4, h5, li, td, th, .product-desc, .product-card-desc,
.machine-card-body p, .products-preview-desc, .section-lead {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.nav{ display:flex; gap:4px; color:var(--muted); font-weight:600; font-size:14px; }
.nav a{
  padding: 8px 10px;
  border-radius: 12px;
  transition: background .12s ease, color .12s ease;
}
.nav a:hover{ background: rgba(255,255,255,.8); color: var(--text); }

/* ?? BUTTONS ?? */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight:700;
  font-size: 14px;
  letter-spacing:.2px;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}
.btn:hover{ box-shadow: 0 10px 22px rgba(0,0,0,.10); }
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--accent); color:#fff; border-color: transparent; }
.btn-primary:hover{ background: #A8642F; }
.btn-ghost{ background: rgba(255,255,255,.65); }
.btn-ghost:hover{ background:#fff; }
.btn-large{ padding: 14px 26px; font-size: 16px; }

/* ?? HERO ?? */
.hero{
  padding: 74px 0 52px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(900px 360px at 18% 18%, rgba(192,122,61,.22), transparent 60%),
    radial-gradient(820px 320px at 84% 10%, rgba(43,29,20,.12), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,.25), transparent 35%);
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items:center;
}
.eyebrow{
  display:inline-flex; gap:8px; align-items:center;
  font-weight:800; color: var(--muted); margin: 0 0 14px; font-size:13px;
  letter-spacing: .8px; text-transform: uppercase;
}
.eyebrow::before{
  content:""; width:10px; height:10px; border-radius:999px;
  background: var(--accent); box-shadow: 0 0 0 5px rgba(192,122,61,.15);
}
.hero-title{
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.12;
  margin: 0 0 14px;
}
.hero-sub{ color: var(--muted); font-size: 16px; margin: 0 0 24px; max-width: 56ch; line-height: 1.75; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 20px; }
.hero-badges{ display:flex; flex-wrap:wrap; gap:8px; }
.badge{
  font-size: 12px; font-weight: 600;
  color: var(--muted); border: 1px solid var(--line);
  background: rgba(255,255,255,.70); padding: 6px 12px; border-radius: 999px;
}
.hero-media{ position:relative; }
.hero-image{
  border-radius: var(--r); border: 1px solid var(--line);
  box-shadow: var(--shadow); aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e8ddd0, #c8b99a);
}
/* ?щ씪?대뱶??*/
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* ?щ씪?대뱶 ?몃뵒耳?댄꽣 */
.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  padding: 0;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }
.hero-media::after{ display: none; } /* 諛뺤뒪 ?ㅻ쾭?덉씠 ?쒓굅 */

/* ?? STATS BAR ?? */
.stats-bar{
  background: var(--accent2);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.stats-inner{
  display:flex; align-items:center; justify-content:center;
  gap: 0; flex-wrap: wrap;
}
.stat{
  display:flex; align-items:center; gap:12px;
  padding: 8px 32px; text-align:center; flex-direction:column;
}
.stat-num{
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.stat-label{
  font-size: 12px; color: rgba(255,255,255,.55);
  line-height: 1.5; text-align:center;
}
.stat-label small{ font-size: 11px; }
.stat-divider{
  width:1px; height:48px;
  background: rgba(255,255,255,.15);
  flex-shrink:0;
}

/* ?? SECTIONS ?? */
.section{ padding: 80px 0; }
.section.alt{ background: var(--bg2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-title{ font-family: var(--serif); font-weight:600; font-size: 30px; margin: 0 0 12px; }
.section-lead{ color: var(--muted); margin: 0 0 32px; max-width: 80ch; font-size: 16px; line-height: 1.8; }

/* ?? GRIDS ?? */
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* ?? CARDS ?? */
.card{
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px; box-shadow: var(--shadow2);
}
.card h3{ margin: 0 0 12px; font-family: var(--serif); font-weight:600; font-size: 18px; }
.card p{ margin: 0 0 12px; color: var(--muted); font-size: 15px; line-height:1.75; }
.card p:last-child{ margin-bottom:0; }
.card a{ color: var(--accent); }

/* ?? TECHNOLOGY SECTION ?? */
.tech-flow{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items:center;
  margin-bottom: 48px;
}
.tech-step{
  border-radius: var(--r); padding: 28px; border: 1px solid var(--line);
  box-shadow: var(--shadow2);
}
.tech-step.problem{
  background: rgba(255,255,255,.5);
}
.tech-step.solution{
  background: linear-gradient(135deg, rgba(192,122,61,.08), rgba(192,122,61,.04));
  border-color: rgba(192,122,61,.25);
}
.tech-step-icon{ font-size:28px; margin-bottom:12px; }
.tech-step h3{ margin:0 0 12px; font-family: var(--serif); font-weight:600; font-size:18px; }
.tech-step p{ margin:0 0 12px; color:var(--muted); font-size:15px; line-height:1.75; }
.tech-step p:last-child{ margin-bottom:0; }
.tech-arrow{ font-size:32px; color:var(--accent); font-weight:300; }

.results-title{ font-family:var(--serif); font-weight:600; font-size:22px; margin:0 0 18px; }
.result-card{
  background: var(--card); border:1px solid var(--line); border-radius:16px;
  padding:22px; box-shadow:var(--shadow2); text-align:center;
}
.result-icon{ font-size:28px; margin-bottom:10px; }
.result-card h4{ margin:0 0 8px; font-family:var(--serif); font-size:16px; font-weight:600; }
.result-card p{ margin:0; color:var(--muted); font-size:14px; line-height:1.65; }

/* ?? HERITAGE ?? */
.heritage-card .heritage-flag{ font-size:32px; margin-bottom:12px; }

/* ?? CALLOUT ?? */
.callout{
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(192,122,61,.10);
  border: 1px solid rgba(192,122,61,.22);
  color: var(--accent2);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.7;
}

/* ?? PRODUCTS (B2C) ?? */
.product-showcase{ display:flex; justify-content:center; }
.product-main-card{
  background: var(--card); border:1px solid var(--line);
  border-radius: var(--r); padding:36px 40px;
  box-shadow: var(--shadow); max-width:680px; width:100%;
  position:relative;
}
.product-badge-premium{
  display:inline-block;
  background: var(--accent); color:#fff;
  font-size:11px; font-weight:800; letter-spacing:1.5px;
  padding:5px 12px; border-radius:999px;
  margin-bottom:14px;
}
.product-main-card h3{
  font-family:var(--serif); font-weight:600; font-size:24px; margin:0 0 12px;
}
.product-desc{ color:var(--muted); font-size:16px; line-height:1.75; margin:0 0 24px; }
.product-features{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:28px; }
.product-feature{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px; border-radius:12px;
  background:rgba(247,243,238,.7); border:1px solid var(--line);
}
.feature-icon{ font-size:20px; flex-shrink:0; margin-top:2px; }
.product-feature strong{ display:block; font-size:14px; margin-bottom:3px; }
.product-feature p{ margin:0; color:var(--muted); font-size:13px; line-height:1.55; }

/* ?? B2B ?? */
.b2b-card{ transition: transform .15s ease, box-shadow .15s ease; }
.b2b-card:hover{ transform:translateY(-3px); box-shadow: var(--shadow); }
.b2b-icon{ font-size:32px; margin-bottom:12px; }
.b2b-card h3{ margin:0 0 10px; }
.b2b-card p{ color:var(--muted); font-size:15px; margin:0; }
.b2b-cta{
  margin-top:32px; padding:20px 24px;
  background: linear-gradient(135deg, rgba(192,122,61,.08), rgba(192,122,61,.04));
  border:1px solid rgba(192,122,61,.20); border-radius: var(--r);
  display:flex; align-items:center; gap:10px;
  flex-wrap:wrap;
}
.b2b-cta p{ margin:0; color:var(--muted); font-size:15px; flex:1; min-width:180px; }
.b2b-cta .btn { flex-shrink: 0; }

/* ?? MISC ?? */
.muted{ color:var(--muted); font-size:13px; }
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; }

.sources{ margin-top:8px; }
.sources ul{ margin:0; padding-left:18px; color:var(--muted); font-size:13px; line-height:2; }
.sources a{ text-decoration:underline; color:var(--accent); }

/* ?? FOOTER ?? */
.site-footer{ padding:32px 0; border-top:1px solid var(--line); }
.footer-inner{ text-align:center; }
.footer-inner p{ margin:0 0 6px; color:var(--muted); font-size:13px; }
.footer-inner p:last-child{ margin:0; }
.footer-sub{ font-size:12px !important; opacity:.7; }

/* ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧
   ANIMATIONS & SCROLL REVEAL
   ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧 */

/* 湲곕낯 ?깆옣 ?좊땲硫붿씠?????꾨옒?먯꽌 ?꾨줈 ?섏씠?쒖씤 */
.card,
.tech-step,
.result-card,
.b2b-card,
.stat,
.product-main-card,
.callout,
.section-title,
.section-lead,
.hero-copy,
.hero-media {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ?덉뼱濡쒕뒗 ?섏씠吏 濡쒕뱶 ??諛붾줈 蹂댁뿬???섎?濡???鍮좊Ⅴ寃?*/
.hero-copy {
  transform: translateX(-24px);
  transition-duration: 0.7s;
  transition-delay: 0.1s;
}
.hero-media {
  transform: translateX(24px);
  transition-duration: 0.7s;
  transition-delay: 0.25s;
}

/* is-visible ?대옒?ㅺ? 遺숈쑝硫??섑???*/
.is-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* ?ㅻ뜑 ?ㅽ겕濡???洹몃┝??*/
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(43,29,20,.10);
}

/* ?ㅻ퉬寃뚯씠???쒖꽦 留곹겕 */
.nav a.active {
  background: rgba(255,255,255,.85);
  color: var(--accent);
}

/* 踰꾪듉 由ы뵆 ?좊땲硫붿씠??*/
@keyframes ripple {
  to { transform: scale(3.5); opacity: 0; }
}

/* ?덉뼱濡??대?吏 留덉슦???⑤윺?숈뒪 */
.hero-image {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* section-title, section-lead???쎄컙 ?ㅻⅨ 諛⑺뼢 */
.section-title { transform: translateY(20px); transition-delay: 0s; }
.section-lead  { transform: translateY(20px); transition-delay: 0.08s; }

/* stats bar ?レ옄 ?깆옣 */
.stat {
  transform: translateY(16px);
  transition-delay: 0s;
}

/* 移대뱶 ?몃쾭 ???댁쭩 ?ㅼ뼱?щ━湲?*/
.card:hover,
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* callout ?꾩뒪 ?④낵 */
.callout {
  transform: translateY(20px);
}

/* prefers-reduced-motion: ?좊땲硫붿씠??鍮꾩꽑???ъ슜??諛곕젮 */
@media (prefers-reduced-motion: reduce) {
  .card, .tech-step, .result-card, .b2b-card,
  .stat, .product-main-card, .callout,
  .section-title, .section-lead,
  .hero-copy, .hero-media {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ?대찓??踰꾪듉 - ?뚮몢由ы삎 (?띿뒪??媛?낆꽦) */
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ?ㅻ━?곗? 援?? ?쒖떆 */
.heritage-flag {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: .3px;
}

/* FAQ ?④퀎蹂??ъ슜踰?*/
.faq-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
  padding: 0 22px;
}
.faq-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.faq-step-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.faq-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  padding: 0;
}
.faq-tip {
  margin: 0;
  padding: 10px 22px 20px;
  font-size: 14px;
  color: var(--accent2);
  background: rgba(192,122,61,.06);
  border-top: 1px solid rgba(192,122,61,.15);
}

/* ?? 援?린 (flag-icons ?쇱씠釉뚮윭由? ?? */
.heritage-flag {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.heritage-flag .fi {
  font-size: 1.6em;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  flex-shrink: 0;
}

/* ?? ?쒕∼?ㅼ슫 ?ㅻ퉬寃뚯씠???? */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 4px; }
.nav-item > a::after {
  content: "▾";
  font-size: 10px;
  opacity: .6;
  transition: transform .2s ease;
}
.nav-item:hover > a::after,
.nav-item.open > a::after { transform: rotate(180deg); }

/* 蹂댁씠吏 ?딅뒗 釉뚮━吏 ?곸뿭 ??留덉슦?ㅺ? ?쒕∼?ㅼ슫?쇰줈 ?대룞?섎뒗 以묒뿉 ?ロ엳吏 ?딄쾶 */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px; /* 留곹겕? ?쒕∼?ㅼ슫 ?ъ씠??媛?쓣 梨꾩? */
  z-index: 199;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: rgba(255,255,255,.99);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  /* ?щ씪吏????쒕젅??200ms 異붽? ???대┃???쒓컙 ?뺣낫 */
  transition: opacity .15s ease .0s, transform .15s ease .0s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .15s ease, transform .15s ease;
}
/* 留덉슦?ㅺ? 踰쀬뼱????諛붾줈 ???ロ엳?꾨줉 */
.nav-item:not(:hover) .nav-dropdown {
  transition-delay: 150ms;
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
  transition: background .12s ease, color .12s ease;
}
.nav-dropdown a:hover { background: var(--accent-light); color: var(--accent); }
.nav-dropdown-icon { font-size: 16px; }

/* ?? ?ㅻ뜑 ?ㅻⅨ履??≪뀡 洹몃９ ?? */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  font-size: 0;
  line-height: 0;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(221, 211, 201, .9);
  background: rgba(255,255,255,.82);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(46, 27, 16, .08);
  backdrop-filter: blur(12px);
  transition: background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.menu-toggle:hover {
  background: #fff;
  border-color: rgba(192,122,61,.28);
  box-shadow: 0 10px 24px rgba(46, 27, 16, .12);
}
.menu-toggle:active {
  transform: scale(.98);
}
.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 4px;
  width: 18px;
  height: 14px;
  pointer-events: none;
}
.menu-toggle-bar {
  display: block;
  width: 18px;
  height: 1.8px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 8, .32);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 120;
}
.mobile-nav {
  position: fixed;
  top: 73px;
  left: 16px;
  right: 16px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(247,243,238,.98);
  box-shadow: 0 20px 50px rgba(0,0,0,.16);
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 130;
}
.mobile-nav-inner {
  display: grid;
  gap: 6px;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(230,222,214,.8);
}
.mobile-nav a:hover {
  background: #fff;
}
.mobile-nav a[aria-current="page"] {
  background: rgba(192,122,61,.12);
  border-color: rgba(192,122,61,.22);
  color: var(--accent);
}
.mobile-nav a::after {
  content: "↗";
  color: var(--accent);
  font-size: 13px;
}
html.menu-open,
body.menu-open {
  overflow: hidden;
}
body.menu-open .mobile-nav-backdrop,
body.menu-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
}
body.menu-open .mobile-nav {
  transform: translateY(0);
}
.mobile-sticky-cta {
  display: none;
}

/* ?? ?몄뼱 ?좉? ?? */
.lang-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.6);
}
.lang-btn {
  padding: 6px 12px;
  border: none;
  background: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  letter-spacing: .5px;
}
.lang-btn:hover  { background: rgba(255,255,255,.8); color: var(--text); }
.lang-btn.active { background: var(--accent); color: #fff; }

/* ?? ?몄뒪?洹몃옩 ?꾩씠肄?(?ㅻ뜑) ?? */
.insta-link,
.store-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.6);
  color: var(--muted);
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.insta-link:hover {
  background: #E1306C;
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
}
.store-link:hover {
  background: #8a5838;
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
}
.store-link svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.desktop-line-break {
  display: inline;
}

/* ?? ?명꽣 ?뚯뀥 ?? */
.footer-social {
  margin-bottom: 10px;
}
.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  transition: color .15s ease;
}
.footer-insta:hover { color: #E1306C; }

/* ?? REVIEWS ?? */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 2px;
}
.review-text {
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  margin: 0;
}
.review-text::before { content: '"'; }
.review-text::after  { content: '"'; }
.review-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.review-name {
  font-weight: 700;
  font-size: 14px;
}
.review-source {
  font-size: 12px;
  color: var(--muted);
}
.reviews-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.reviews-note {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* ?? FAQ ?? */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 780px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow2);
  transition: box-shadow 0.2s ease;
}
.faq-item.open {
  border-color: rgba(192,122,61,.35);
  box-shadow: 0 8px 28px rgba(192,122,61,.10);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  transition: background 0.15s ease;
}
.faq-question:hover {
  background: rgba(192,122,61,.05);
}
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-answer p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
}

/* ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧
   MOBILE RESPONSIVE ??iPhone X & Small screens
   ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧 */

/* ?쒕툝由?*/
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .stats-inner { gap: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .tech-flow { grid-template-columns: 1fr; }
  .tech-arrow { transform: rotate(90deg); justify-self: center; }
  .product-features { grid-template-columns: 1fr 1fr; }
}

/* 紐⑤컮??*/
@media (max-width: 860px) {
  :root { --container: calc(100% - 32px); }

  /* ?ㅻ뜑 */
  .site-header { padding: 0; }
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    flex-wrap: nowrap;
    padding: 10px 0;
    gap: 6px;
  }
  .brand {
    min-width: 0;
    gap: 8px;
    overflow: hidden;
  }
  .brand-name {
    min-width: 0;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }
  .header-actions {
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    min-width: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .header-actions > * { flex: 0 0 auto; }
  .header-actions > .btn { display: none; }
  .lang-toggle {
    display: inline-flex;
    padding: 2px;
    gap: 2px;
    border-radius: 999px;
  }
  .lang-btn {
    min-width: 26px;
    height: 26px;
    padding: 0 6px;
    font-size: 10px;
  }
  .insta-link,
  .store-link { width: 28px; height: 28px; }
  .menu-toggle {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }
  .menu-toggle-icon {
    width: 15px;
    height: 11px;
    gap: 3px;
  }
  .menu-toggle-bar {
    width: 15px;
  }
  .btn.btn-primary { font-size: 12px; padding: 8px 12px; }
  .mobile-nav {
    top: 68px;
    left: 12px;
    right: 12px;
  }
  body.has-mobile-sticky-cta {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }
  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 140;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 8px;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid rgba(230,222,214,.94);
    background: rgba(247,243,238,.96);
    box-shadow: 0 16px 32px rgba(0,0,0,.14);
    backdrop-filter: blur(16px);
  }
  .mobile-sticky-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 10px 14px;
    justify-content: center;
    text-align: center;
    font-size: 13px;
  }
  body.has-mobile-sticky-cta .scroll-top {
    bottom: calc(96px + env(safe-area-inset-bottom));
  }

  /* ?덉뼱濡?*/
  .hero { padding: 44px 0 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-title { font-size: clamp(26px, 7vw, 38px); }
  .hero-sub { font-size: 14px; }
  .hero-media { order: -1; }
  .hero-image { aspect-ratio: 16/9; }
  .hero-media::after { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; text-align: center; justify-content: center; }

  /* Stats */
  .stats-bar { padding: 20px 0; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .stat { padding: 14px 10px; }
  .stat-num { font-size: 24px; }
  .stat-label { font-size: 11px; }
  .stat-divider { display: none; }

  /* ?뱀뀡 */
  .section { padding: 48px 0; }
  .section-title { font-size: 24px; }
  .section-lead { font-size: 14px; }

  .page-hero {
    padding: 30px 0 14px;
  }
  .products-grid {
    padding: 38px 0 48px;
  }
  .product-card-img {
    aspect-ratio: 16 / 10;
  }

  /* 洹몃━??*/
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  /* 湲곗닠 ?뱀뀡 */
  .tech-flow { grid-template-columns: 1fr; }
  .tech-arrow { transform: rotate(90deg); justify-self: center; font-size: 24px; }
  .tech-step { padding: 20px; }

  /* ?쒗뭹 */
  .product-main-card { padding: 22px 18px; }
  .product-features { grid-template-columns: 1fr; }
  .btn-large { font-size: 14px; padding: 12px 20px; width: 100%; justify-content: center; }

  /* B2B */
  .b2b-cta { flex-direction: column; }

  /* 由щ럭 */
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-cta { flex-direction: column; align-items: flex-start; }

  /* 肄쒖븘??*/
  .callout { font-size: 14px; padding: 14px 16px; }

  /* ?명꽣 */
  .site-footer { padding: 24px 0; }
  .footer-sub { font-size: 11px; }
}

/* ?뚰삎 紐⑤컮??(iPhone SE ?? */
@media (max-width: 390px) {
  .hero-title { font-size: 24px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 20px; }
  .mobile-nav { top: 64px; }
}

@media (min-width: 761px) {
  .desktop-line-break {
    display: block;
  }
}

/* iPhone X ?몄튂 ???(Safe Area) */
@media (max-width: 390px) {
  .mobile-sticky-cta {
    grid-template-columns: 1fr;
  }
  .mobile-sticky-cta .btn {
    min-height: 42px;
    font-size: 12px;
  }
  body.has-mobile-sticky-cta {
    padding-bottom: calc(144px + env(safe-area-inset-bottom));
  }
  body.has-mobile-sticky-cta .scroll-top {
    bottom: calc(146px + env(safe-area-inset-bottom));
  }
}

@supports (padding: env(safe-area-inset-top)) {
  .site-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .site-footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/* ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧
   PRODUCTS PAGE ??products.html
   ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧 */
.page-hero {
  padding: 40px 0 20px;
  background:
    radial-gradient(700px 280px at 20% 30%, rgba(192,122,61,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.2), transparent);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 640px; }
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.2;
}
.page-hero p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  line-height: 1.75;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 52px 0;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1a1a;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.product-card-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.product-card-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.product-card-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  flex: 1;
}
.product-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-card-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent2);
  border: 1px solid rgba(192,122,61,.2);
}
.product-card-actions {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}
.product-card-actions .btn { flex: 1; font-size: 13px; padding: 10px 12px; }

/* ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧
   MACHINES PAGE ??machines.html
   ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧 */
.machines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 52px 0;
}
.machine-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.machine-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
/* machine-card-img is now an <a> tag for SEO */
a.machine-card-img { display: block; text-decoration: none; color: inherit; }
.machine-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f0eb;
  cursor: pointer;
  position: relative;
}
.machine-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.machine-card:hover .machine-card-img img, .machine-card-img:hover img { transform: scale(1.04); }
.machine-card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43,29,20,.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.machine-card-img:hover { }
.machine-card-img:hover .machine-card-img-overlay { background: rgba(43,29,20,.35); }
.machine-card-img-overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.machine-card-img:hover .machine-card-img-overlay span { opacity: 1; transform: translateY(0); }

.machine-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.machine-card-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}
.machine-card-name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  margin: 0;
}
.machine-specs-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.machine-spec-mini {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
}
.machine-spec-mini-label { font-size: 10px; color: var(--muted); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.machine-spec-mini-value { font-size: 15px; font-weight: 800; color: var(--accent); margin-top: 2px; }
.machine-card-actions { display: flex; gap: 8px; }
.machine-card-actions .btn { flex: 1; font-size: 13px; padding: 10px 12px; }

/* ?? 癒몄떊 ?곸꽭 ?섏씠吏 ?? */
.machine-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
  padding: 52px 0;
}
.machine-catalog-img {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.machine-catalog-img img { width: 100%; display: block; }
.machine-detail-info { display: flex; flex-direction: column; gap: 20px; }
.machine-detail-name { font-family: var(--serif); font-size: 30px; font-weight: 600; margin: 0 0 8px; }
.machine-detail-desc { color: var(--muted); font-size: 15px; line-height: 1.8; margin: 0; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td { padding: 10px 12px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
.specs-table th { color: var(--muted); font-weight: 600; width: 40%; }
.specs-table td { font-weight: 700; }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }
.specs-table tbody tr { transition: background .15s ease; }
.specs-table tbody tr:hover { background: rgba(192,122,61,.06); }
.features-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.features-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--muted); line-height: 1.6; }
.features-list li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.machine-cta-box {
  background: linear-gradient(135deg, rgba(192,122,61,.08), rgba(192,122,61,.03));
  border: 1px solid rgba(192,122,61,.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.machine-cta-box p { margin: 0; font-size: 14px; color: var(--muted); }
.machine-cta-box .btn { width: 100%; justify-content: center; }

/* 鍮듬??ㅻ윭湲??ㅻ퉬 */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--muted); transition: color .15s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: .4; }

/* 諛섏쓳?????쒗뭹/癒몄떊 ?섏씠吏 */
@media (max-width: 860px) {
  .products-grid { grid-template-columns: 1fr; padding: 32px 0; }
  .machines-grid { grid-template-columns: 1fr; padding: 32px 0; }
  .machine-detail-grid { grid-template-columns: 1fr; }
  .machine-detail-name { font-size: 24px; }
}
@media (min-width: 560px) and (max-width: 860px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .machines-grid { grid-template-columns: 1fr 1fr; }
}

/* ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧
   PRODUCTS PREVIEW ??2-column side by side (index.html)
   ?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧?먥븧 */
.products-preview-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 32px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 4px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.products-preview-divider {
  width: 1px;
  background: var(--line);
  margin: 24px 0;
}
.products-preview-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.products-preview-images {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #1a1207;
}
.products-preview-images.products-preview-machines {
  background: #f0ebe4;
}
.preview-img-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.preview-img-sub {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.7);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .3s ease;
}
.products-preview-card:hover .preview-img-main { transform: scale(1.03); }
.products-preview-card:hover .preview-img-sub { transform: scale(1.06) translate(-2px, -2px); }

.products-preview-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.products-preview-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.products-preview-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.products-preview-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}
.products-preview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.products-preview-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.products-preview-actions .btn { font-size: 13px; padding: 10px 16px; }

/* ?? Signature feature under Products ?? */
.signature-feature {
  margin-top: 28px;
}
.signature-feature-card {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 4px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.signature-feature-media {
  min-height: 280px;
  background: #1a1207;
}
.signature-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.signature-feature-copy {
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(192,122,61,.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.2), transparent 60%);
}
.signature-feature-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.signature-feature-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  line-height: 1.18;
}
.signature-feature-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 52ch;
}
.signature-feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.signature-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}
.signature-feature-actions .btn {
  font-size: 14px;
}

@media (max-width: 860px) {
  .products-preview-grid {
    grid-template-columns: 1fr;
  }
  .products-preview-divider {
    width: auto;
    height: 1px;
    margin: 0 24px;
  }
  .products-preview-images { height: 200px; }
  .signature-feature-card {
    grid-template-columns: 1fr;
  }
  .signature-feature-media {
    min-height: 220px;
  }
  .signature-feature-copy {
    padding: 24px 22px;
  }
}

/* ?? machine-card 踰꾪듉 ?섎떒 ?뺣젹 ?? */
.machine-card { display: flex; flex-direction: column; }
.machine-card-body { flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.machine-specs-mini { flex: 1; align-content: start; }
.machine-card-actions { margin-top: auto; padding-top: 14px; }

/* ?? B2B CTA 踰꾪듉 媛꾧꺽 ?섏젙 ?? */
.b2b-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--accent-light);
  border: 1px solid rgba(192,122,61,.18);
  border-radius: var(--r);
}
.b2b-cta p { margin: 0; flex: 1; min-width: 200px; font-size: 14px; color: var(--muted); }

/* ?? machines 紐⑸줉 ??移댄뀒怨좊━ 援щ텇 ?? */
.machines-category { margin-top: 48px; }
.machines-category-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
  color: var(--text);
}
.machines-category-title span {
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: .5px;
}

/* ?? ?쒗뭹 ?곸꽭 ?섏씠吏 (products ?대뜑?? ?? */
.product-detail-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0;
}
.product-detail-img {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.product-detail-img img { width: 100%; display: block; }
.product-detail-info { display: flex; flex-direction: column; gap: 20px; }
.product-detail-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.product-detail-desc { color: var(--muted); font-size: 15px; line-height: 1.8; margin: 0; }
.product-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.product-highlight {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
}
.product-highlight strong { display: block; color: var(--text); margin-bottom: 2px; }
.product-highlight span { color: var(--muted); }
.product-detail-cta {
  background: linear-gradient(135deg, rgba(192,122,61,.08), rgba(192,122,61,.03));
  border: 1px solid rgba(192,122,61,.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-detail-cta p { margin: 0; font-size: 14px; color: var(--muted); }
.product-detail-cta .btn { width: 100%; justify-content: center; }

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

/* ?? 釉붾젋???뱀뀡 (products page) ?? */
.blends-section { margin-top: 0; padding-top: 20px !important; padding-bottom: 0 !important; }
.blends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.blend-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blend-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blend-poster {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: var(--bg);
}
.blend-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.blend-name { font-family: var(--serif); font-size: 20px; font-weight: 600; margin: 0; }
.blend-tagline { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; word-break: keep-all; }

/* flavor bars */
.flavor-bars { display: flex; flex-direction: column; gap: 8px; }
.flavor-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.flavor-label { width: 44px; color: var(--muted); flex-shrink: 0; font-weight: 600; }
.flavor-track {
  flex: 1; height: 8px;
  background: var(--bg);
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.flavor-fill {
  height: 100%;
  border-radius: 99px;
  width: 0;
  transition: width 1.4s cubic-bezier(.25,.8,.25,1);
}
.flavor-val { width: 24px; text-align: right; font-size: 11px; color: var(--muted); font-weight: 700; }
.flavor-fill.bitter  { background: linear-gradient(90deg, #4a2c1a, #7a4a2a); }
.flavor-fill.sweet   { background: linear-gradient(90deg, #c07a3d, #e8a86a); }
.flavor-fill.acid    { background: linear-gradient(90deg, #7a9e3a, #a8c85a); }
.flavor-fill.body    { background: linear-gradient(90deg, #3a5a8a, #5a7aaa); }
.flavor-fill.roast   { background: linear-gradient(90deg, #2a1a0a, #5a3a1a); }

.blend-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.blend-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 99px;
  background: var(--accent-light);
  color: var(--accent2);
  border: 1px solid rgba(192,122,61,.2);
  word-break: keep-all;
}

@media (max-width: 900px) {
  .blends-grid { grid-template-columns: 1fr; gap: 20px; }
  .blend-poster { width: 100%; height: auto; }
}

/* ?? 癒몄떊 ?섏씠吏 ?몃줈??鍮꾨뵒???덉뼱濡??? */
.machine-hero-video {
  width: 100%;
  background: var(--accent2);
  background-image: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(192,122,61,.12), transparent 70%);
  padding: 44px 0;
  border-radius: 0 0 24px 24px;
  border-bottom: 1px solid rgba(192,122,61,.2);
}
.machine-hero-video-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  align-items: center;
}
.machine-hero-video video {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  display: block;
  /* 釉뚮씪?곗? 湲곕낯 鍮꾨뵒??UI ?꾩쟾 ?쒓굅 */
  outline: none;
}
.machine-hero-video video::-webkit-media-controls { display: none !important; }
.machine-hero-video video::-webkit-media-controls-enclosure { display: none !important; }
.machine-hero-video video::-webkit-media-controls-panel { display: none !important; }
.machine-hero-video-overlay {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.machine-hero-video-overlay h2 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}
.machine-hero-video-overlay p {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  margin: 0;
  line-height: 1.8;
  word-break: keep-all;
}
.machine-hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.machine-hero-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(192,122,61,.25);
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
}
.machine-hero-stat strong { display: block; color: #e8a86a; font-size: 22px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.machine-hero-stat span { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .5px; }
@media (max-width: 780px) {
  .machine-hero-video-inner { grid-template-columns: 1fr; gap: 28px; }
  .machine-hero-video video { max-width: 280px; margin: 0 auto; }
}

/* Scroll-to-top Button */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--accent2);
}
@media (max-width: 430px) {
  .header-inner {
    gap: 4px;
  }
  .brand-name {
    font-size: 11px;
    letter-spacing: 0;
    max-width: 88px;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .header-actions {
    gap: 2px;
  }
  .lang-toggle {
    padding: 1px;
  }
  .lang-btn {
    min-width: 20px;
    height: 22px;
    padding: 0 4px;
    font-size: 8px;
  }
  .insta-link,
  .store-link {
    width: 24px;
    height: 24px;
  }
  .menu-toggle {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 390px) {
  .brand-name {
    max-width: 78px;
  }
  .lang-btn {
    min-width: 18px;
    padding: 0 3px;
  }
}

@media (max-width: 600px) {
  .scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}


