/* === FONT 자리 (woff2 URL 알면 교체) === */


:root {
  --bg: #fff;
  --ink: #1b1b1b;
  --muted: #8f8f8f;
  
  /* ✅ 색상 변경: 이미지에 나온 #C9BCA0 적용 */
  --gold: #C9BCA0;       
  --btn-solid: #C9BCA0;  
  --btn-border: #bdbdbd;

  /* ... 나머지 변수 그대로 ... */
  --wrap: 860px;
  --pad: 18px;
  --video-max: 1000px;
  --video-max-lg: 1000px;
  --strip-gap: 14px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* container */
.cb{
  width:min(var(--wrap), calc(100% - var(--pad) * 2));
  margin: 0 auto;
  padding: 46px 0 24px;
}

/* HERO */
.cb-hero{
  text-align:center;
  padding-top: 6px;
}

.cb-title{
  margin: 0;
  font-family: "Noto Serif Display", serif;
  font-weight: 500;
  font-size: clamp(40px, 8vw, 64px);
  line-height: 1.05;
  color: var(--gold);
  letter-spacing: 0.02em;
  padding: 20px;
}

.cb-subtitle{
  margin: 10px 0 18px;
  font-family: "AltrenottiSans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
   color: #1f1f1f;
}

/* buttons */
.cb-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 42px;
  padding: 0 22px;
  margin: 30px;
  font-family: "Noto sans kr";
  font-size: 12px;
  letter-spacing: .18em;
  text-decoration:none;
  text-transform: uppercase;
  user-select:none;
}
.cb-btn--solid{
  background: var(--btn-solid);
  color: #111;
  border: 1px solid rgba(0,0,0,0.15);
}
.cb-btn--outline{
  background: transparent;
  color: #222;
  border: 1px solid var(--btn-border);
}

/* VIDEO */
.cb-video{
  margin-top: 26px;
}
.cb-video__frame{
  position:relative;
  display:block;
  width: 100%;
  max-width: var(--video-max);
  margin: 0 auto;
  overflow:hidden;
  background:#ddd;
}
.cb-video__frame img{
  display:block;
  width:100%;
  height:auto;
}

/* thin circle play */
.cb-play{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
}

/* COPY */
.cb-copy{
  margin: 50px 0;
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

h2 {
  margin: 0 0 12px;
  font-family: "Noto Serif Display", serif;
  color: #c9bca0;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 400; 
}

.cb-copy__left p{ 
  margin: 0 0 10px; 
    font-family: "Noto sans kr";
  font-size: 16px;

  color:#666;
}

.bth--full{margin-bottom: 100px;}

/* 큰 화면에선 비디오 폭 동일 유지(1000px) */
@media (min-width: 900px){
  .cb-video__frame{ max-width: var(--video-max-lg); }
}

/* MOBILE */
@media (max-width: 520px){
  .cb{ width: calc(100% - 26px); padding-top: 26px; }

  /* 모바일은 비디오 가로 꽉 */
  .cb-video__frame{ max-width: 100%; }

  .cb-copy{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cb-copy__right{ padding-top: 0; }

  .cb-title{font-size: 42px; width: 100%;}
  h2{font-size: 20px;}
}

/* =========================
   BTH slider (full width)
   ========================= */
.bth--full{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

#bthRoot{ width: 100%; }

.bth-slider{
  position: relative;
}

.bth-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  /* scroll-behavior: smooth;  <-- 이 줄을 반드시 삭제하거나 주석 처리하세요! */
  -webkit-overflow-scrolling: touch;
}

.bth-track::-webkit-scrollbar{ height: 0; }

.bth-slide{
  margin: 0;
  flex: 0 0 calc((100% - 28px) / 3); /* PC 3장 */
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #eee;
}

.bth-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* arrows overlay */
.bth-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
  padding: 0;
}

.bth-btn--prev{ left: 10px; }
.bth-btn--next{ right: 10px; }

/* tablet 2장 */
@media (max-width: 980px){
  .bth-slide{ flex-basis: calc((100% - 14px) / 2); }
}

/* mobile 1장 */
@media (max-width: 560px){
  .bth-slide{ flex-basis: 100%; }
}
