/* ═══════════════════════════════════════════════
   mama smile — 공유 스타일시트
   이 파일을 수정하면 모든 페이지에 적용됩니다.
═══════════════════════════════════════════════ */

/* ── 커스텀 폰트 ── */
@font-face {
  font-family: 'HalenoirExpanded';
  src: url('fonts/HalenoirExpanded-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HalenoirExpanded';
  src: url('fonts/HalenoirExpanded-DemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── TOKENS ── */
:root {
  --bg:        #ffffff;
  --text:      #303030;
  --muted:     #939393;
  --border:    #E0E0E0;
  --green:     #0cb954;

  --font-kr: 'Pretendard', -apple-system, sans-serif;
  --font-en: 'HalenoirExpanded', sans-serif;

  --side:         24px;
  --header-h:     66px;
  --content-top:  96px;
  --section-gap:  96px;
  --col-gap:      24px;
  --item-gap:     8px;
  --footer-top:   72px;

  --col-left:  32%;
  --col-right: 64%;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  word-break: keep-all;
  overflow-wrap: break-word;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
ul, li { list-style: none; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.header {
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
}

.header__logo {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.header__hamburger.open { color: var(--text); }
.header.menu-open .header__logo { visibility: hidden; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ffffff;
  z-index: 98;
  flex-direction: column;
  padding: calc(var(--header-h) + 16px) 0 24px;
  gap: 0;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  padding: 14px var(--side);
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav__group {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mobile-nav__parent {
  border-bottom: none !important;
  padding: 16px var(--side) 10px !important;
}
.mobile-nav__cats {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 10px 0;
}
.mobile-nav__cat {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  background: none;
  border: none;
  border-radius: 0;
  padding: 14px var(--side) 14px calc(var(--side) + 20px);
  cursor: pointer;
  text-align: left;
  transition: opacity 0.15s;
  line-height: 1.3;
  opacity: 1;
  display: block;
  width: 100%;
}
.mobile-nav__cat:hover { opacity: 0.3; }
.mobile-nav__cat.active {
  color: var(--green);
  opacity: 1;
  cursor: default;
}

.header__nav {
  display: flex;
  gap: var(--col-gap);
}

.header__nav a {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: opacity 0.15s;
}
.header__nav a:hover { opacity: 0.4; }
.header__nav a.active { color: var(--green); opacity: 1; pointer-events: none; }

/* ═══════════════════════════════════════════════
   PRODUCTS GRID  (index.html)
═══════════════════════════════════════════════ */
.products-layout {
  padding: var(--content-top) var(--side) var(--side);
  flex: 1;
}

.cat-sidebar {
  position: fixed;
  top: calc(var(--header-h) + var(--content-top));
  left: var(--side);
  width: calc(32vw - 0.64 * var(--side));
  z-index: 50;
}

.archive {
  margin-left: calc(var(--col-left) + var(--col-gap));
}

.cat-sidebar .cat-label { margin-bottom: 16px; }

.cat-list { display: flex; flex-direction: column; gap: 0; }

.cat-list__item {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  cursor: pointer;
  padding: 6px 0;
  border: none;
  background: none;
  text-align: left;
  transition: opacity 0.15s;
  line-height: 1.3;
  display: block;
  width: 100%;
}
.cat-list__item:hover { opacity: 0.3; }
.cat-list__item.active { color: var(--green); opacity: 1; cursor: default; }

.cat-count {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  color: #303030;
  vertical-align: super;
  margin-left: 4px;
  letter-spacing: 0;
}
.cat-list__item.active .cat-count { color: var(--green); }

.archive { flex: 1; min-width: 0; }

.archive__grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.archive__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.archive-item {
  cursor: pointer;
  position: relative;
  display: block;
  color: inherit;
}

.archive-item__inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.archive-item:hover .archive-item__inner { transform: scale(0.88); }

.archive-item__thumb {
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

.archive-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.archive-item__thumb img.loaded { opacity: 1; }

.archive-item__dots {
  position: absolute;
  top: -5px; left: -5px; right: -5px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.archive-item:hover .archive-item__dots { opacity: 1; }

.archive-item__dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text);
}
.archive-item__dot:nth-child(1) { top: 0;    left: 0;  }
.archive-item__dot:nth-child(2) { top: 0;    right: 0; }
.archive-item__dot:nth-child(3) { bottom: 0; left: 0;  }
.archive-item__dot:nth-child(4) { bottom: 0; right: 0; }

.archive-item__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 2px 0;
}

.archive-item__name {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.archive-item__cat {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #303030;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 스크롤 reveal */
.reveal {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   PRODUCT DETAIL  (product-*.html)
═══════════════════════════════════════════════ */
.detail {
  padding: var(--content-top) var(--side) var(--side);
  flex: 1;
}
/* 메인 그리드 안에 배치될 때 — padding은 products-layout이 담당 */
.products-layout > .detail {
  padding: 0;
  margin-left: calc(var(--col-left) + var(--col-gap));
  min-width: 0;
}

.detail-layout {
  display: flex;
  gap: var(--col-gap);
  align-items: flex-start;
}

.detail-left {
  flex: 0 0 var(--col-left);
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.detail__label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #000000;
  display: block;
  margin-bottom: 4px;
}

.detail__cat {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.detail__title {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
}

.detail-meta { display: flex; flex-direction: column; gap: 0; }

.detail-meta-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
}

.detail-meta-row__key {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #000000;
  min-width: 70px;
  flex-shrink: 0;
}

.detail-meta-row__val {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* ── 기본 가격 행 ── */
.detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.detail-price-row__label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  color: var(--text);
  min-width: 70px;
  flex-shrink: 0;
}
.detail-price-row__val {
  font-family: var(--font-kr);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── 선택된 옵션 목록 ── */
.detail-selected {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border: 1px solid var(--border);
}
.detail-selected:empty { display: none; }
.detail-selected__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.detail-selected__item:last-child { border-bottom: none; }
.detail-selected__name {
  flex: 1;
  font-family: var(--font-kr);
  font-size: 13px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.detail-selected__qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  height: 28px;
}
.detail-selected__btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-selected__btn:hover { background: var(--border); }
.detail-selected__num {
  min-width: 28px;
  text-align: center;
  font-family: var(--font-en);
  font-size: 12px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 28px;
  line-height: 28px;
}
.detail-selected__price {
  font-family: var(--font-kr);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.detail-selected__remove {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}
.detail-selected__remove:hover { color: var(--text); }

/* ── 토탈 가격 행 ── */
.detail-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.detail-total__label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  color: var(--text);
  min-width: 70px;
  flex-shrink: 0;
}
.detail-total__val {
  font-family: var(--font-kr);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── 옵션 / 수량 ── */
.detail-option,
.detail-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.detail-option__label,
.detail-qty__label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  color: var(--text);
  min-width: 70px;
  flex-shrink: 0;
}
.detail-option__select {
  flex: 1;
  height: 40px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--border);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23000'/%3E%3C/svg%3E") no-repeat right 12px center;
  font-family: var(--font-kr);
  font-size: 13px;
  color: var(--text);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}
.detail-option__select:focus { border-color: var(--text); }
.detail-qty__ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  height: 40px;
}
.detail-qty__btn {
  width: 40px;
  height: 100%;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-qty__btn:hover { background: var(--border); }
.detail-qty__input {
  width: 48px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--text);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.detail-qty__input::-webkit-inner-spin-button,
.detail-qty__input::-webkit-outer-spin-button { -webkit-appearance: none; }

.detail-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 0;
  margin-top: 16px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-kr);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
  text-align: center;
}
.detail-cta__btn:hover { opacity: 0.75; }
.detail-cta__btn.soldout {
  background: transparent;
  color: #000;
  border-color: #000;
  cursor: default;
}
.detail-cta__btn.soldout:hover { opacity: 1; }

.detail-texts-row {
  display: flex;
  gap: var(--col-gap);
}

.detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-text__body {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 20px;
}

.detail-main__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--border);
}
.detail-main__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.detail-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.detail-img {
  width: 100%;
  overflow: hidden;
  background: var(--border);
}
.detail-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════
   ABOUT  (about.html)
═══════════════════════════════════════════════ */
.about {
  padding: var(--content-top) var(--side) var(--side);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.about-texts-row {
  display: flex;
  gap: calc(var(--col-gap) * 2);
  flex: 1;
  padding: 0 120px;
}
.about-texts-row .about__body,
.about-texts-row .about__body-en { flex: 1; }

.about__body {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
}

.about__body-en {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
}

.about-hero {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--border);
}
.about-hero img { width: 100%; height: 100%; object-fit: cover; }

.about__values {
  display: flex;
  flex-direction: row;
  gap: var(--col-gap);
}

.about-value {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 0 0;
}

.about-value > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-value__title {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green);
}

.about-value__body {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
}

.about-value__body-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text);
  display: block;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════
   CONTACT  (contact.html)
═══════════════════════════════════════════════ */
.contact {
  padding: var(--content-top) var(--side) var(--side);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

.contact-section {
  display: flex;
  gap: var(--col-gap);
}

.contact-section__left { flex: 0 0 var(--col-left); }

.contact-section__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: flex;
  gap: var(--col-gap);
  padding: var(--col-gap) 0;
  border-top: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: 1px solid var(--border); }

.contact-row__key {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  min-width: 80px;
  padding-top: 2px;
}

.contact-row__val {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.5;
}
.contact-row__val a { transition: opacity 0.15s; }
.contact-row__val a:hover { opacity: 0.5; }

.contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  padding: 12px 24px;
  font-family: var(--font-kr);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}
.contact__btn--outline {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}
.contact__btn--green {
  background: #000;
  color: #ffffff;
  border: 1px solid #000;
}
.contact__btn:hover { opacity: 0.75; }

/* ═══════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════ */
.reviews {
  padding: 100px 0 80px calc(var(--col-left) + var(--col-gap));
}
.reviews::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #030303;
  margin-bottom: 50px;
}
.reviews__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000000;
  display: block;
  margin-bottom: 40px;
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}
.review-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-item__stars {
  font-size: 13px;
  color: var(--green);
  letter-spacing: 0;
}
.review-item__date {
  font-family: var(--font-en);
  font-size: 11px;
  color: #000000;
}
.review-item__body {
  font-family: var(--font-kr);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #000000;
  letter-spacing: 0;
}
.review-item__author {
  font-family: var(--font-kr);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .reviews { padding: 100px var(--side) 56px; }
  .reviews::before { margin-bottom: 56px; }
  .reviews__list { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer { padding-top: var(--footer-top); }

.footer__inner {
  padding: var(--side);
  display: flex;
  gap: var(--col-gap);
}

.footer__group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer__top { display: none; }

.footer__line {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: opacity 0.15s;
  display: block;
}
a.footer__line:hover { opacity: 0.4; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --side: 16px;
    --content-top: 48px;
    --section-gap: 56px;
    --col-gap: 16px;
    --header-h: 56px;
    --footer-top: 48px;
  }
  body { background: #ffffff; }
  .header { background: transparent; }
  .footer { padding-top: 30px; padding-bottom: 30px; background: #000000; }
  .footer .footer__inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer .footer__line { color: #ffffff; opacity: 1; font-weight: 700; text-align: left; }
  .footer a.footer__line:hover { opacity: 1; }
  .footer__top { display: block; background: none; border: none; cursor: pointer; font-family: var(--font-en); font-size: 13px; font-weight: 700; letter-spacing: -0.01em; color: #ffffff; padding: 0; flex-shrink: 0; }

  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .header { position: fixed; top: 0; left: 0; right: 0; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .header__logo { font-weight: 700; }
  body { padding-top: var(--header-h); }

  /* Products grid: 1열 */
  .products-layout { padding: var(--content-top) var(--side) 56px; flex-direction: column; gap: 0; align-items: stretch; }
  .archive { width: 100%; margin-left: 0; }
  .products-layout > .detail { margin-left: 0; padding: 0; }
  .cat-sidebar { display: none !important; }
  .archive__grid { display: block; }
  .archive__col  { display: block; }
  .archive-item  { display: block; width: 88%; margin-bottom: 50px; }
  .archive-item.stagger-left   { margin-left: 0;    margin-right: auto; }
  .archive-item.stagger-center { margin-left: auto; margin-right: auto; }
  .archive-item.stagger-right  { margin-left: auto; margin-right: 0;    }
  .archive-item.stagger-full   { width: 100%; margin-left: 0; margin-right: 0; }
  .archive-item__meta { flex-direction: column; gap: 6px; padding: 10px 0 0; }
  .archive-item__name { white-space: normal; overflow: visible; text-overflow: unset; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; }
  .archive-item__cat  { font-size: 11px; }
  .archive-item:hover .archive-item__inner { transform: none; }
  .archive-item__dots { display: none; }
  .reveal, .reveal.visible { opacity: 1 !important; transform: none !important; transition: none !important; }

  /* Detail: 모바일 순서 → 제품정보 → 오버뷰 → 이미지 */
  .detail-layout {
    flex-direction: column;
    gap: 32px;
  }
  .detail-right { display: contents; }
  .detail-left      { order: 1; position: static; flex: unset; width: 100%; }
  .detail-text      { order: 2; }
  .detail-images    { order: 3; }
  .detail__title { font-size: 20px; }
  .detail-cta__btn { width: 100%; }

  /* About */
  .about-texts-row { flex-direction: column; padding: 0; gap: 20px; }
  .about__values { flex-direction: column; gap: 24px; }
  .about-hero { aspect-ratio: 4 / 3; }

  /* Contact */
  .contact-section { flex-direction: column; }
  .contact-section__left { display: none; }
  .contact-row { gap: 12px; }
  .contact-row__key { min-width: 64px; }
  .contact__btn { padding: 12px 16px; font-size: 12px; }
  .contact-section__right[style*="flex-direction: row"] { justify-content: center; }

  /* Footer */
  .footer__group:not(:first-child) { display: none; }
  .footer__inner { flex-direction: column; gap: 20px; }
}
