/* ==========================================================================
   만들다 — page-3
   Breakpoints (원본 Framer 사이트 기준)
   - Mobile : max-width 471.98px
   - Tablet : 472px ~ 1199.98px
   - Desktop: min-width 1200px
   ========================================================================== */

:root {
  --color-primary: #124654;
  --color-primary-dark: #073c4a;
  --color-primary-darkest: #02191f;
  --color-accent-light: #d5e6eb;
  --color-accent-blue: #0099ff;

  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-900: #474747;
  --color-gray-700: #888888;
  --color-gray-500: #999999;
  --color-gray-100: #f5f5f5;
  --color-gray-50: #f7f7f7;
  --color-border: #e8e8e8;
  --color-border-light: #ededed;

  --radius-pill: 1000px;
  --radius-lg: 56px;
  --radius-md: 30px;
  --radius-sm: 12px;

  --font-display: 'Georama', 'Inter Tight', 'Lexend', -apple-system, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --font-body: 'Lexend', 'Inter Tight', -apple-system, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --font-pretendard: 'PretendardVariable', 'Pretendard', -apple-system, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;

  --ease-appear: cubic-bezier(0.12, 0.23, 0.5, 1);
  --duration-appear: 0.8s;

  --container-max: 1200px;
  --gutter: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-primary-darkest);
  background: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
}

/* ---------- Reveal (scroll appear) animation ----------
   원본 값: opacity 0→1, translateY 150px→0,
   duration .8s, ease cubic-bezier(.12,.23,.5,1),
   stagger delay 0 / .3s / .6s
--------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity var(--duration-appear) var(--ease-appear),
              transform var(--duration-appear) var(--ease-appear);
  will-change: opacity, transform;
}
.reveal[data-delay="0"] { transition-delay: 0s; }
.reveal[data-delay="1"] { transition-delay: 0.3s; }
.reveal[data-delay="2"] { transition-delay: 0.6s; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Links ---------- */
.link-more {
  display: inline-block;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.link-more:hover { opacity: 0.6; }

/* ==========================================================================
   Site Header — fixed, 기본(투명) ↔ scrolled(반투명+보더) 두 상태
   (Figma 67:3/71:135 = 기본, 68:22/71:215 = scrolled)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 70px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.4);
  border-bottom-color: #222;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* 모바일 메뉴 열림: 헤더가 흰 배경 + 보더로 전환, 검색 아이콘은 숨김 (Figma 114:1192) */
.site-header.is-menu-open {
  background: var(--color-white);
  border-bottom-color: #222;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header.is-menu-open .site-header__mobile-search { display: none; }
.site-header__group {
  display: flex;
  align-items: center;
  gap: 48px;
}
.site-header__logo img { width: 76.5px; height: 36px; object-fit: contain; }
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 39px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.site-header__link { font-weight: 500; color: #4d5354; cursor: pointer; letter-spacing: 0.2px; }
.site-header__link.is-active { font-weight: 600; color: #1f1f1f; }
.site-header__search { width: 32px; height: 32px; cursor: pointer; }
.site-header__search img { width: 100%; height: 100%; object-fit: cover; }

.site-header__mobile-actions { display: none; align-items: center; gap: 4px; }
.site-header__mobile-actions .icon-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.site-header__mobile-actions .icon-btn img { width: 32px; height: 32px; object-fit: cover; }

/* 배경 dim: #000000 75% */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.75);
}
.mobile-nav-overlay.is-open { display: block; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 90;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px 16px;
  background: var(--color-white);
  border-bottom: 1px solid #222;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__list { display: flex; flex-direction: column; width: 100%; }
.mobile-nav__link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.36px;
  line-height: 1;
  color: #4d5354;
  cursor: pointer;
}
.mobile-nav__link.is-active { font-weight: 600; color: #1f1f1f; }

/* ==========================================================================
   Hero Banner 캐러셀 (Figma node 67:3 데스크톱 / 71:135 모바일·태블릿)
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
}

.hero-banner {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
  touch-action: pan-y; /* 세로 스크롤은 그대로, 가로 스와이프만 JS가 처리 */
}

/* ---- 슬라이드: 디졸브 크로스페이드 ---- */
.hero-banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}
.hero-banner__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-banner__img {
  position: absolute;
  inset: 0;
  background-color: #dadada; /* 실제 배너 이미지 삽입 자리 */
}
.hero-banner__img--alt2 { background-color: #d2d2d2; }
.hero-banner__img--alt3 { background-color: #c9c9c9; }

.hero-banner__content {
  position: absolute;
  left: 50%;
  top: calc(50% + 0.5px);
  transform: translate(-50%, -50%);
  width: 78%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero-banner__title-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.hero-banner__title {
  font-family: var(--font-pretendard);
  font-weight: 700;
  font-size: 46px;
  line-height: 1.3;
}
.hero-banner__title-line { display: block; }
.hero-banner__title-line--dark { color: #111517; }
.hero-banner__title-line--accent { color: #073c4a; }
.hero-banner__subtitle {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #2f3440;
}
.hero-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  background: #073c4a;
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
.hero-banner__btn:hover { background: #0a5265; }
.hero-banner__btn:active { transform: scale(0.97); }

.hero-banner__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 1000px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-banner__arrow img { width: 32px; height: 32px; }
.hero-banner__arrow--prev { left: 40px; }
.hero-banner__arrow--next { right: 40px; }
.hero-banner__arrow--next img { transform: rotate(180deg) scaleY(-1); }

.hero-banner__arrow,
.hero-banner__indicator { z-index: 5; }

.hero-banner__indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 4px;
}
.hero-banner__indicator-track {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}
.hero-banner__indicator-fill {
  position: absolute;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 2px;
}

/* ==========================================================================
   Brand Value — 다이아몬드 웨이브 (Figma 81:83 데스크톱 / 87:182 모바일·태블릿)
   ========================================================================== */
.values {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 100px 0;
}
.values__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 334px;
  text-align: center;
  color: #1f1f1f;
}
.values__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.36px;
  line-height: 1;
}
.values__subtitle {
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.18px;
  line-height: 1.3;
}

/* ---- 다이아몬드 공통 ---- */
.diamond {
  position: absolute;
  left: calc(50% + var(--x));
  top: calc(50% + var(--y, 0px));
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.diamond--filled { z-index: 2; }

/* 키워드 다이아몬드 등장 모션: opacity 0→1 + 아래→위 슬라이드,
   Brand Value 섹션 윗부분이 화면 중앙에 오면 트리거, 01/02/03 0.3초씩 스태거, 1회만 재생.
   라인 다이아몬드(.diamond--outline)는 모션 없이 고정. */
.diamond--filled {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 100px));
  transition: opacity var(--duration-appear) var(--ease-appear),
              transform var(--duration-appear) var(--ease-appear);
}
.diamond--filled[data-delay="0"] { transition-delay: 0s; }
.diamond--filled[data-delay="1"] { transition-delay: 0.3s; }
.diamond--filled[data-delay="2"] { transition-delay: 0.6s; }
.diamond--filled.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}
@media (prefers-reduced-motion: reduce) {
  .diamond--filled { opacity: 1; transform: translate(-50%, -50%); transition: none; }
}
.diamond__shape {
  position: relative;
  border-radius: 56px;
  transform: rotate(-45deg);
  overflow: hidden;
}
.diamond--outline .diamond__shape { border: 1.5px solid #f0f0f0; }
.diamond--01 .diamond__shape { background: #f5f5f5; }
.diamond--02 .diamond__shape { background: #124654; }
.diamond--03 .diamond__shape { background: #02191f; }

/* content-wrap은 Figma의 size-[Npx] (정사각형) 그대로: width=height.
   그 정사각형 안에서 rotate 래퍼를 flex로 중앙정렬 (Figma와 동일 구조).
   translate와 rotate를 같은 transform에 합치면 좌표가 어긋나서
   content(translate 전용) > rotate(회전 전용) 두 겹으로 분리 */
.diamond__content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.diamond__rotate {
  transform: rotate(45deg);
}
.diamond__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.diamond--01 .diamond__inner { color: #124654; }
.diamond--02 .diamond__inner,
.diamond--03 .diamond__inner { color: #f5f5f5; }

.diamond__index {
  font-family: var(--font-pretendard);
  font-weight: 500;
  line-height: 1.3;
}
.diamond__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.diamond__title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
}
.diamond__desc {
  font-family: var(--font-pretendard);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}
.diamond__desc--medium { font-weight: 500; }

/* ---- 데스크톱: 9개, 가로 290px 간격, 컨테이너 395.98 / 다이아몬드 280 ---- */
.diamonds--desktop {
  position: relative;
  width: 100%;
  height: 426px;
}
.diamonds--desktop .diamond { width: 395.98px; height: 395.98px; }
.diamonds--desktop .diamond__shape { width: 280px; height: 280px; }
.diamonds--desktop .diamond__inner { width: 147px; }
.diamonds--desktop .diamond__index { font-size: 20px; letter-spacing: -0.2px; }
.diamonds--desktop .diamond__title { font-size: 38px; letter-spacing: -0.38px; }
.diamonds--desktop .diamond__desc { font-size: 18px; letter-spacing: -0.18px; }

/* 데스크톱은 01/02/03 모두 동일한 top 값 (Figma 81:92/98/104)
   left의 +10.6px는 다이아몬드가 -45deg 회전되어 있어서, top으로 준 세로 오프셋이
   그대로 대각선 방향 시각적 이동을 만들기 때문에 그걸 상쇄하기 위한 보정값 */
.diamonds--desktop .diamond__content { left: calc(50% + 10.6px); top: 27.22px; width: 204.354px; height: 204.354px; }

.diamonds--mobile { display: none; }

/* ---- 모바일·태블릿: 7개, 세로 지그재그, 컨테이너 339.411 / 다이아몬드 240 ---- */
.diamonds--mobile {
  position: relative;
  width: 100%;
  height: 769.127px;
}
.diamonds--mobile .diamond { width: 339.411px; height: 339.411px; }
.diamonds--mobile .diamond__shape { width: 240px; height: 240px; }
.diamonds--mobile .diamond__index { font-size: 16px; letter-spacing: -0.16px; }
.diamonds--mobile .diamond__title { font-size: 28px; letter-spacing: -0.28px; }
.diamonds--mobile .diamond__desc { font-size: 16px; letter-spacing: -0.16px; }

/* 모바일은 항목별 top 값이 다름 (Figma 87:190/196/204), left의 +18.53px는
   -45deg 회전으로 인한 대각선 시각 이동을 상쇄하는 보정값 */
.diamonds--mobile .diamond--01 .diamond__content {
  left: calc(50% + 18.53px);
  top: calc(50% - 18.53px);
  transform: translate(-50%, -50%);
  width: 175.362px;
  height: 175.362px;
}
.diamonds--mobile .diamond--01 .diamond__inner { width: 131px; }

.diamonds--mobile .diamond--02 .diamond__content { left: calc(50% + 18.53px); top: 2.47px; width: 197.99px; height: 197.99px; }
.diamonds--mobile .diamond--02 .diamond__inner { width: 163px; }

.diamonds--mobile .diamond--03 .diamond__content { left: calc(50% + 18.53px); top: 6.01px; width: 190.919px; height: 190.919px; }
.diamonds--mobile .diamond--03 .diamond__inner { width: 153px; }

/* ==========================================================================
   Category / Product (Figma 108:249 데스크톱 / 108:549 모바일·태블릿)
   ========================================================================== */
.category-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 100px 0;
  background: var(--color-white);
}
.category-section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  color: #1f1f1f;
}
.category-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.36px;
  line-height: 1;
}
.category-section__subtitle {
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.18px;
  line-height: 1.3;
}

/* ---- 카테고리 탭 ---- */
.category-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.category-tabs {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.category-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
  flex-shrink: 0;
}
.category-tab__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  border-radius: 40px;
  background: var(--color-gray-100);
  border: 1px solid transparent;
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.category-tab__img img { width: 60px; height: 52px; object-fit: cover; }
.category-tab__img--all {
  font-family: var(--font-pretendard);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.24px;
  color: #1f1f1f;
}
.category-tab.is-active .category-tab__img {
  background: var(--color-accent-light);
  border-color: var(--color-primary);
}
.category-tab__label {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.17px;
  color: #1f1f1f;
}

/* 모바일 전용 스크롤 위치 인디케이터 (데스크톱에서는 숨김) */
.category-indicator { display: none; }

/* ---- 상품 그리드 ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  row-gap: 48px;
  width: 100%;
  max-width: 1080px;
}
.product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.product-card.is-hidden { display: none; }
.product-card__thumb {
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-gray-100);
  aspect-ratio: 182 / 182;
}
.product-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.product-card__tag {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.14px;
  color: #878787;
}
.product-card__name {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 1;
  color: #1a1a1c;
}
.products__empty {
  text-align: center;
  color: var(--color-gray-500);
}

/* ---- 상품 전체보기 버튼: 아웃라인 스타일 ---- */
.link-more--outline {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 16px;
  color: #1a1a1c;
}
.link-more--outline:hover { background: var(--color-gray-50); }

/* ==========================================================================
   Best Seller / Made for Everyday (Figma 109:786 데스크톱 / 110:908 모바일·태블릿)
   ========================================================================== */
.best {
  background: #124654;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.best__contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 1080px;
}
.best__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  color: var(--color-white);
}
.best__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.36px;
  line-height: 1;
}
.best__subtitle {
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.18px;
  line-height: 1.3;
}

.best-scroll { width: 100%; }
.best-card-group {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.best-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  overflow: hidden;
}
.best-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.best-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(71, 71, 71, 0.7));
  mix-blend-mode: multiply;
}
.best-card__badge {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 6px;
  border-radius: 3px;
  background: #124654;
  font-family: var(--font-pretendard);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.12px;
  color: var(--color-white);
}
.best-card__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-pretendard);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 1.3;
  color: var(--color-white);
}

/* ==========================================================================
   Company / Contact (Figma 112:964 데스크톱 / 112:1022 모바일·태블릿)
   ========================================================================== */
.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  overflow: hidden;
}
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact__bg img { width: 100%; height: 100%; object-fit: cover; }
.contact__gradient {
  position: absolute;
  inset: 0;
  /* Figma: from white 11.851% via rgba(255,255,255,.5) 41.637% to rgba(255,255,255,0) 55.009% */
  background: linear-gradient(
    to right,
    #fff 11.851%,
    rgba(255, 255, 255, 0.5) 41.637%,
    rgba(255, 255, 255, 0) 55.009%
  );
}

.contact__contents {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
  max-width: 1080px;
}

.contact__intro {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  min-width: 0;
  padding-top: 48px;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.36px;
  line-height: 1.2;
  color: #073c4a;
}
.contact__subtitle {
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.18px;
  line-height: 1.3;
  color: #073c4a;
}
.contact__btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  background: #073c4a;
  color: var(--color-white);
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 16px;
  transition: background-color 0.2s ease;
}
.contact__btn-more:hover { background: #0a5265; }

/* ---- 문의 폼 ---- */
.contact-form {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0;
  padding: 40px;
  background: var(--color-white);
  border: 1px solid #ebebeb;
  border-radius: 32px;
}
.contact-form__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.contact-form__title {
  font-family: var(--font-pretendard);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: #1f1f1f;
}
.contact-form__desc {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.15px;
  line-height: 1.5;
  color: #474747;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.contact-form__field label {
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: -0.12px;
  line-height: 1.2;
  color: #888;
}
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 12px;
  background: #f2f2f2;
  border: 1px solid rgba(136, 136, 136, 0.1);
  border-radius: 8px;
  font-family: var(--font-pretendard);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.14px;
  line-height: 1.2;
  color: #1f1f1f;
  transition: border-color 0.2s ease;
}
.contact-form__field input {
  height: 44px;
}
.contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-pretendard);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #999;
  font-family: var(--font-pretendard);
  font-size: 14px;
  letter-spacing: -0.14px;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #124654;
}

.contact-form__submit {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  background: #073c4a;
  color: var(--color-white);
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact-form__submit:hover { background: #0a5265; }

/* ==========================================================================
   Footer (Figma 113:1125 — PC 전용 프레임이 없어 동일 스펙을 확장 적용)
   ========================================================================== */
.footer {
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}
.footer__contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: var(--container-max);
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.15px;
  line-height: 1.3;
}
.footer__link { color: #696969; }
.footer__link:hover { color: #1f1f1f; }

.footer__info-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}
.footer__info {
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.15px;
  line-height: 1.9;
  color: #696969;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 392px;
}
.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: #333;
  font-family: var(--font-pretendard);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 1.5;
}
.footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 24px;
  background: var(--color-white);
  border: 1px solid #ededed;
  overflow: hidden;
}
.footer__contact-icon img { width: 32px; height: 32px; object-fit: cover; }

/* ==========================================================================
   Hero Banner — 태블릿+모바일 공용 (< 1200px)
   Figma에 태블릿 전용 프레임이 없어, 모바일(71:135) 레이아웃을 그대로 확장
   ========================================================================== */
@media (max-width: 1199.98px) {
  .site-header {
    height: 56px;
    padding: 0 12px 0 20px;
  }
  .site-header__logo img { width: 52px; height: 24px; }
  .site-header__nav { display: none; }
  .site-header__search { display: none; }
  .site-header__mobile-actions { display: flex; }

  .mobile-nav { top: 56px; }

  .hero-banner { height: 90vh; }
  .hero-banner__content {
    left: 0;
    top: 136px;
    transform: none;
    width: 100%;
    padding: 0 24px;
  }
  .hero-banner__title { font-size: 32px; }
  .hero-banner__arrow { display: none; }

  .values { padding: 80px 0 0; }
  .values__header { width: 100%; padding: 0 20px; gap: 12px; }
  .values__title { font-size: 24px; letter-spacing: -0.24px; }
  .values__subtitle { font-size: 16px; letter-spacing: -0.16px; }
  .diamonds--desktop { display: none; }
  .diamonds--mobile { display: block; }

  /* Category / Product: 모바일 스펙(108:549)을 태블릿까지 확장 */
  .category-section { gap: 40px; padding: 80px 0; }
  .category-section__head { width: 100%; padding: 0 20px; gap: 12px; }
  .category-section__title { font-size: 24px; letter-spacing: -0.24px; }
  .category-section__subtitle { font-size: 16px; letter-spacing: -0.16px; }

  .category-tabs {
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    padding: 0 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .category-tabs::-webkit-scrollbar { display: none; }
  .category-tab { width: 64px; }
  .category-tab__img { width: 56px; height: 56px; border-radius: 28px; }
  .category-tab__img--all { border-radius: 40px; font-size: 18px; letter-spacing: -0.18px; }
  .category-tab__img img { width: 42px; height: 36.4px; }
  .category-tab__label { font-size: 14px; letter-spacing: -0.14px; }

  .category-indicator {
    display: block;
    position: relative;
    width: 132px;
    height: 4px;
  }
  .category-indicator__track {
    position: absolute;
    inset: 0;
    background: var(--color-border-light);
    border-radius: 2px;
  }
  .category-indicator__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #d1d1d1;
    border-radius: 2px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 8px;
    row-gap: 40px;
    max-width: none;
    padding: 0 20px;
  }
  .product-card__name { font-size: 15px; letter-spacing: -0.15px; }

  /* Best Seller: 모바일 스펙(110:908)을 태블릿까지 확장, 횡스크롤 (포인트 1) */
  .best { align-items: flex-start; padding: 80px 0; gap: 40px; }
  .best__contents { gap: 40px; max-width: none; }
  .best__head { width: 100%; align-items: center; padding: 0 20px; gap: 12px; text-align: center; }
  .best__title { font-size: 24px; letter-spacing: -0.24px; }
  .best__subtitle { font-size: 16px; letter-spacing: -0.16px; }

  .best-scroll {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .best-scroll::-webkit-scrollbar { display: none; }
  .best-card-group { padding: 0 20px; width: max-content; }
  .best-card { flex: none; width: 250px; height: 360px; }

  /* Company / Contact: 모바일 스펙(112:1022)을 태블릿까지 확장 */
  .contact { align-items: flex-start; flex-direction: column; gap: 48px; padding: 80px 20px; }
  .contact__gradient {
    background: linear-gradient(
      to bottom,
      #fff 12.139%,
      rgba(255, 255, 255, 0.5) 19.88%,
      rgba(255, 255, 255, 0) 59.014%
    );
  }
  .contact__contents { flex-direction: column; gap: 48px; max-width: none; }
  .contact__intro { padding-top: 0; gap: 16px; width: 100%; }
  .contact__title { font-size: 24px; letter-spacing: -0.24px; color: #124654; }
  .contact__subtitle { font-size: 16px; letter-spacing: -0.16px; color: #124654; }

  .contact-form { width: 100%; padding: 24px 20px; border-radius: 16px; }
  .contact-form__desc { font-size: 14px; letter-spacing: -0.14px; }

  /* Footer: 모바일 스펙(113:1125)은 세로 스택, PC(113:1089)만 가로 정렬 */
  .footer__info-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    padding-top: 16px;
  }
}


/* ==========================================================================
   Mobile: max-width 471.98px
   ========================================================================== */
@media (max-width: 471.98px) {
  :root { --gutter: 20px; }

  .section-title { font-size: 26px; }
}
