/* ============================================================
   친구네사진관 협동조합 — 메인 페이지 (피그마 확정 디자인 구현)
   기준 디자인: 1920px (피그마 "온프라 공유용 - 복사" > main 1:2)
   폰트:
     - Pretendard Variable        본문/UI
     - Nanum Myeongjo             국문 제목(세리프)
     - Cormorant Infant           영문 디스플레이(view more 등)
     - THEFACESHOP INKLIPQUID     히어로 부제(상업 폰트 — 로컬 보유 시만 적용, 나눔명조 대체)
   ============================================================ */

/* 더페이스샵 잉크립퀴드체(히어로 부제) — 개인/상업용 무료, 재배포·활용 가능
   (금지: 장·평 변형, 기울기 적용. 문의 thefaceshop@lgcare.com / noonnu.cc/font_page/68) */
@font-face {
  font-family: "THEFACESHOP INKLIPQUID";
  src: url("../assets/fonts/InkLipquid.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* 색 */
  --c-olive: #5d5e4d;        /* 프로모션 BG / 포인트 */
  --c-olive-text: #3f4034;   /* CTA 텍스트 */
  --c-gold: #565835;         /* 히어로 "우리 가족" */
  --c-brown: #3b2814;        /* 히어로 메인/부제 */
  --c-hero-bg: #f3e8e4;
  --c-cream: #f8f1ea;        /* CTA 버튼 */
  --c-banner-bg: #f7eee6;
  --c-pf-bg: #fbf9f6;
  --c-ink: #111;
  --c-gray8: #888;
  --c-divider: #888983;

  /* 폰트 */
  --sans: "Pretendard Variable", Pretendard, -apple-system, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --serif: "Nanum Myeongjo", "NanumMyeongjo", serif;
  --en: "Cormorant Infant", "Times New Roman", serif;
  --display: "THEFACESHOP INKLIPQUID", "Nanum Myeongjo", serif; /* 잉크립퀴드: @font-face로 웹폰트 임베드됨 */
  /* 숫자(가격/78%): KoPub World Batang 웹폰트(무료, jsdelivr font-kopubworld) */
  --num: "KoPubWorld Batang", "KoPub World Batang", "KoPubWorldBatang", "Nanum Myeongjo", serif;

  --container: 1400px;
  --gnb-h: 112px;
}

/* ---------- 리셋/공통 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--c-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: 0; cursor: pointer; }

/* 모바일 전용 줄바꿈 — 데스크톱(1920 디자인)은 한 줄, mobile_360 디자인의 명시적 줄바꿈만
   html.is-m에서 블록으로 적용. 브라우저/폰트별 자동 재포장 위치와 디자인이 어긋나는 문제 해결 */
.m-line { display: inline; }
html.is-m .m-line { display: block; }

/* 1920 고정 스케일 캔버스 — JS가 뷰포트 폭에 맞춰 통째로 확대/축소.
   어떤 브라우저 폭에서도 피그마(1920)와 동일 비율 유지 (반응형 없음). */
#page { width: 1920px; transform-origin: 0 0; background: #fff; }

.container { width: 1400px; margin-inline: auto; }

/* 섹션 공통 헤더 — view more는 디자인대로 헤더 하단(밑줄 y+102)에 붙음 */
.sec-head { position: relative; display: flex; justify-content: space-between; align-items: flex-end; }
.sec-title {
  font-family: var(--serif); font-weight: 600;
  font-size: 38px; line-height: 1.16; letter-spacing: -0.025em; color: #000;
}
.sec-sub { margin-top: 20px; font-weight: 500; font-size: 20px; letter-spacing: -0.02em; color: var(--c-gray8); }

/* view more — link-more 컴포넌트(js/link-more.js): 글씨+밑줄 한 몸, 밑줄=currentColor.
   여기선 위치/타이포만 — 밑줄 폭(fit)·간격은 컴포넌트 기본값 사용 */
.review link-more, .portfolio link-more { position: absolute; right: 0; top: 80px; }
.review .lm, .portfolio .lm { font-size: 18px; line-height: 22px; letter-spacing: -0.02em; color: #111; }

/* 마퀴 공통 (리뷰/지점) — 간격은 gap 대신 margin-right 사용해야
   -50% 이동 시 정확히 이어지는 무한루프가 됨 */
.marquee { overflow: hidden; }
.marquee__track {
  display: flex; align-items: center; width: max-content;
  animation: marquee linear infinite;
}
/* pause on hover — 카드(이미지) 위에서만 멈춤. 트랙이 카드의 부모라 :has()로 거슬러 선택.
   스트립의 빈 간격/상하 여백에선 계속 스크롤. :has() 미지원 브라우저는 그냥 안 멈춤(둔화) */
@media (hover: hover) {
  .review-marquee:has(.review-card:hover) .marquee__track,
  .branches-marquee:has(.branch-card:hover) .marquee__track { animation-play-state: paused; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* 토스트 */
.toast {
  position: fixed; left: 50%; bottom: 40px; z-index: 1000;
  transform: translate(-50%, 20px);
  padding: 14px 28px; border-radius: 8px;
  background: rgba(17, 17, 17, 0.92); color: #fff;
  font-size: 15px; letter-spacing: -0.02em;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* (GNB/모바일 드로어는 공용 컴포넌트 js/site-gnb.js — .sg/.sgd 클래스) */

/* ============================================================
   1. 비주얼(히어로) — 1920 x 1707
   ============================================================ */
.visual { position: relative; overflow: hidden; background: var(--c-hero-bg); aspect-ratio: 1920 / 1707; }

.visual__bg { position: absolute; inset: 0; overflow: hidden; }
.visual__photo {
  position: absolute; left: -18.67%; top: -1.26%;
  width: 137.33%; height: 94.87%; max-width: none; /* 리셋 max-width:100% 해제 — 137% 확장 크롭이 디자인 원본 */
  object-fit: cover;
}

/* ---------- 장식 벡터 — "섹션 상단 기준 px" 방식 ----------
   디자인 노드 좌표와 1:1 대응(left/top + 원본 폭×높이). %/bottom 혼합 산술과
   acc 프레임 오프셋(y-59) 혼동을 없애기 위한 규약 — 위치 수정 시 디자인에서
   해당 노드의 섹션 기준 좌표를 재 측정해서 그대로 쓴다 */
.visual__acc { position: absolute; inset: 0; pointer-events: none; }
.visual__halftone { position: absolute; left: 211px; top: 223px; width: 326px; height: 326px; } /* 하프톤 14:64 — bbox 실측 y220~556 */
.visual__deco { position: absolute; mix-blend-mode: overlay; } /* 디자인 보임새=은은한 올리브 틴트 — multiply 풀은 너무 어두움 */
.visual__deco--left { left: -53px; top: -59px; width: 504px; height: 1294px; transform: scaleX(-1); } /* 좌측 아치 — 왼쪽 53px, 위 59px 노출, 원본 크기 */
.visual__deco--right { left: 1635px; top: 749px; width: 447px; height: 1147.66px; } /* 우측 아치 14:425 — 오른쪽 162px 노출: 1920+162−447 */
/* 모바일 히어로 장식 — 같은 규약(360 캔버스, 섹션 상단 기준 px). 표시는 .m-only.
   컨테이너 밖으로 흐르는 장식은 전역 max-width:100% 해제 필수 */
.visual__m-arc, .visual__m-deco, .promo__m-arc, .promo__m-deco, .promo__m-circle, .banner__m-acc { max-width: none; }
.visual__m-arc { position: absolute; left: -61px; top: 11px; width: 177px; height: 454px; transform: scaleX(-1); mix-blend-mode: overlay; } /* 모바일 히어로 아치 — 좌측 배치용 좌우반전(파일은 우측용 곡선), overlay */
.visual__m-deco { position: absolute; left: -32px; top: 255px; width: 93px; height: 93px; } /* 좌하단 데코 17:2777 — 왼쪽 32px 노출 */

/* 타이틀 */
.visual__tit {
  position: absolute; left: 50%; top: 12.4%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  text-align: center; width: min(431px, 90%);
}
.visual__tit-main { display: flex; flex-direction: column; gap: 24px; }
.visual__t1 { font-family: var(--serif); font-weight: 600; font-size: 30px; line-height: 1.17; letter-spacing: -0.02em; color: #111; }
.visual__t2 {
  font-family: var(--serif); font-weight: 600;
  font-size: 100px; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--c-brown); white-space: nowrap;
}
.visual__t2 .is-green { color: var(--c-gold); }
.visual__t3 { font-family: var(--display); font-size: 48px; letter-spacing: -0.02em; color: var(--c-brown); white-space: nowrap; }

/* 할인 배지 */
.visual__badge { position: absolute; left: 1309px; top: 742px; width: 224px; height: 224px; }
.visual__badge-mark { position: absolute; inset: 0; width: 100%; height: 100%; }
.visual__badge-upto {
  position: absolute; top: 16.5%; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-weight: 600; font-size: 16px;
  letter-spacing: 0.08em; color: #fff; white-space: nowrap;
}
/* 디자인 텍스트 박스 좌표 그대로 — 78: x52 y44 91x123 / %: x142 y91 35x50 (224 캔버스 기준) */
.visual__badge-num {
  position: absolute; left: 52px; top: 44px; width: 91px; height: 123px;
  font-family: var(--num); font-weight: 400; font-size: 80px; line-height: 123px;
  letter-spacing: -0.02em; color: #fff; text-align: center;
}
.visual__badge-percent {
  position: absolute; left: 142px; top: 91px; width: 35px; height: 50px;
  font-family: var(--sans); font-weight: 300; font-size: 42px; line-height: 50px;
  color: #fff; text-align: center;
}
.visual__badge-special {
  position: absolute; bottom: 31px; left: 50%; transform: translateX(-50%);
  font-weight: 300; font-size: 15px; line-height: 20px;
  letter-spacing: 0.15em; color: #fff; opacity: 0.8; text-align: center; white-space: nowrap;
}

/* 우측 세로 문구 */
.visual__side {
  position: absolute; right: 28px; top: 549px;
  writing-mode: vertical-rl;
  font-size: 16px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #5d5e4d; opacity: 0.7; white-space: nowrap;
}

/* ============================================================
   2. 프로모션 — 1920 x 969, 올리브
   ============================================================ */
/* 디자인: 프로모션 프레임이 히어로(y0~1707)와 339px 겹치며 시작(y1368) */
.promo {
  position: relative; overflow: hidden; background: var(--c-olive);
  margin-top: -339px;
  height: 969px; padding: 0; /* 피그마 프레임(14:454): 1920x969 */
}

/* 특가 섹션 장식 3종 — 같은 규약(섹션 상단 기준 px). 트리 자식좌표 + acc 프레임 y231 = 섹션 좌표 */
.promo__acc { position: absolute; inset: 0; pointer-events: none; }
.promo__circle { position: absolute; left: -298px; top: 619px; width: 693px; height: 693px; max-width: none; } /* 서클 14:461 — 왼쪽 298px 노출, 원본 693×693, 그라데이션에 overlay 결과색(#babb9a) 베이크 */
.promo__halftone { position: absolute; left: 70px; top: 542px; width: 259px; height: 259px; } /* 하프톤 14:462: (70,310)+231 */
.promo__deco-r { position: absolute; left: 1692px; top: 231px; width: 268px; height: 689px; opacity: 0.15; mix-blend-mode: overlay; } /* 우측 데코 14:457: (1692,0)+231 */
/* 모바일 특가 장식 3종 — 같은 규약 */
.promo__m-arc { position: absolute; left: 217px; top: -44px; width: 168px; height: 433px; mix-blend-mode: overlay; } /* 우측 아치 17:3509 — 흰색 overlay */
.promo__m-deco { position: absolute; left: -45px; top: 1695px; width: 106px; height: 106px; } /* 좌하단 데코 17:3150 */
.promo__m-circle { position: absolute; left: -183px; top: 1753px; width: 398px; height: 398px; } /* 모바일 서클 17:3508 — 왼쪽 183px 노출, 풀 SVG(#babb9a 베이크) */

.promo .container { position: relative; }

/* 상단: 할인 + 가격 — 피그마 절대좌표(섹션 14:454 기준) */
.promo__top { position: absolute; inset: 0; }

/* 폭/높이 명시 — 절대배치 자식만 있는 컨테이너는 shrink-to-fit이 0으로 붕괴하지 않게 */
.promo__discount { position: absolute; left: 0; top: 0; width: 700px; height: 300px; color: #fff; }
.promo__pill {
  position: absolute; left: 101px; top: 101px; padding: 9px 28px; border-radius: 50px;
  background: rgba(255, 255, 255, 0.9); color: #4e4f40;
  font-weight: 600; font-size: 17px; letter-spacing: -0.01em; white-space: nowrap;
}
/* 폭 명시 + nowrap — 절대배치 자식만 있는 컨테이너는 shrink-to-fit 0으로 붕괴 →
   한글이 글자 단위로 세로 줄바꿈되는 버그 방지 (최대/할인) */
.promo__off { position: absolute; left: 0; top: 0; width: 700px; height: 280px; }
.promo__off-side { position: absolute; top: 198px; font-weight: 600; font-size: 20px; line-height: 24px; white-space: nowrap; }
.promo__off-side:first-child { left: 106px; }
.promo__off-side:last-child { left: 278px; }
.promo__off strong { position: absolute; left: 143px; top: 138px; font-family: var(--num); font-weight: 400; font-size: 84px; line-height: 129.36px; letter-spacing: -0.02em; }
.promo__off em { position: absolute; left: 92px; top: 47px; font-family: var(--sans); font-style: normal; font-weight: 400; font-size: 42px; line-height: 50.12px; letter-spacing: 0; }
.promo__sp {
  position: absolute; left: 120px; top: 259px; line-height: 20px;
  font-size: 15px; letter-spacing: 0.4em; text-indent: 0.4em; opacity: 0.8; white-space: nowrap;
}
.promo__sp .dot { position: absolute; top: 4px; width: 4px; height: 4px; border-radius: 50%; background: #fff; opacity: 0.9; }
.promo__sp .dot:first-child { left: -16px; }
.promo__sp .dot:last-child { right: -12px; }

/* 가격 패널 — 피그마: 배경 벡터 (680,80) 980x213, 컬럼 중심 소가족 936 / 대가족 1406 */
.promo__prices { position: absolute; left: 420px; top: 80px; width: 980px; height: 220px; }
.promo__prices-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.promo__divider { position: absolute; left: 490px; top: 40px; width: 1px; height: 140px; background: var(--c-divider); opacity: 0.8; }
.promo__price { position: absolute; top: 0; z-index: 1; width: 320px; text-align: center; }
.promo__price:first-of-type { left: 96px; }   /* 중심 256 (페이지 936) */
.promo__price:last-of-type { left: 566px; }   /* 중심 726 (페이지 1406) */
.promo__price-badge {
  position: absolute; left: 50%; top: 36px; transform: translateX(-50%);
  padding: 7px 16px; border-radius: 30px; white-space: nowrap;
  background: var(--c-olive); color: #fff;
  font-weight: 600; font-size: 16px; letter-spacing: -0.01em;
}
.promo__price-desc { position: absolute; left: 0; right: 0; top: 85px; font-weight: 500; font-size: 18px; letter-spacing: -0.02em; color: #111; }
.promo__price-before {
  position: absolute; left: 50%; top: 116px; transform: translateX(-50%);
  font-family: var(--num); font-weight: 500; font-size: 16px; color: #bdbdbd; white-space: nowrap;
}
.promo__price-before::after { content: ""; position: absolute; left: 50%; margin-left: -35px; top: 12px; width: 70px; height: 1px; background: #bdbdbd; }
.promo__price-now { position: absolute; left: 0; right: 0; top: 133px; font-family: var(--num); font-weight: 700; font-size: 36px; line-height: 1.5; letter-spacing: -0.015em; color: var(--c-olive); white-space: nowrap; }
.promo__price-now em { font-family: var(--sans); font-style: normal; font-weight: 600; font-size: 18px; margin-left: 6px; letter-spacing: -0.02em; }

/* BENEFIT — 워드(882,360) 중심 960, 라인 (758/1062,374) */
.promo__benefit-label {
  position: absolute; left: 498px; top: 360px; width: 404px; height: 30px;
  display: flex; align-items: center; justify-content: center;
}
.promo__benefit-label .line { position: absolute; top: 50%; width: 100px; height: 1px; background: #d9d9d9; opacity: 0.8; }
.promo__benefit-label .line:first-child { left: 0; }
.promo__benefit-label .line:last-child { right: 0; }
.promo__benefit-word { font-family: var(--num); font-weight: 500; font-size: 20px; letter-spacing: 0.6em; text-indent: 0.6em; color: #fff; opacity: 0.9; }

/* 혜택 3종 — 컬럼 중심 493/960/1427, 아이콘 y450, 라벨 y522, 설명 y577 */
.promo__benefits { position: absolute; left: 0; top: 450px; width: 1400px; }
.promo__benefit {
  position: absolute; top: 0; width: 200px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; color: #fff;
}
.promo__benefit:nth-child(1) { left: 133px; }
.promo__benefit:nth-child(2) { left: 600px; }
.promo__benefit:nth-child(3) { left: 1067px; }
.promo__benefit + .promo__benefit::before {
  content: ""; position: absolute; left: -134px; top: 20px;
  width: 1px; height: 140px; background: var(--c-divider); opacity: 0.6;
}
.promo__benefit-icon { position: relative; width: 48px; height: 48px; margin-bottom: 24px; }
/* 아이콘은 익스포트된 원본 크기 그대로 — 48 박스 안에 중앙 배치(inset+margin:auto 트릭).
   디자인(17:3555/17:3568): photographer 46x36 @ (1,6), hairmakeup 30.5x47.3 @ (9,0) */
.promo__benefit-icon > img {
  position: absolute; inset: 0; margin: auto;
  width: auto; height: auto; max-width: 100%; max-height: 100%;
}
/* 액자 아이콘(4개 파트 합성) — margin shorthand가 기본 아이콘의 margin-bottom:24를 리셋하지
   않도록 하단만 24+5.5(=기본 48박스의 안쪽 여백 보정)로 지정 */
.promo__benefit-icon--frame { width: 46px; height: 37px; margin: 5.5px 1px 29.5px; overflow: hidden; }
.promo__benefit-icon--frame .f { position: absolute; }
.promo__benefit-icon--frame .f--1 { inset: 0; width: 100%; height: 100%; }
.promo__benefit-icon--frame .f--2 { inset: 39.73% 37.96% 18.91% 16.3%; width: auto; height: auto; }
.promo__benefit-icon--frame .f--3 { inset: 49.1% 15.24% 18.91% 40.92%; width: auto; height: auto; }
.promo__benefit-icon--frame .f--4 { inset: 25.67% 26.58% 59.92% 61.78%; width: auto; height: auto; }

.promo__benefit strong { font-family: var(--num); font-weight: 400; font-size: 24px; line-height: 1.5; letter-spacing: -0.01em; white-space: nowrap; }
/* 디자인 고정 줄바꿈(<br>)만 유지 — 자동 재포장 금지(3줄 방지) */
.promo__benefit p { margin-top: 18px; font-weight: 400; font-size: 19px; line-height: 26px; letter-spacing: -0.025em; opacity: 0.7; white-space: nowrap; }

/* 각주 + CTA */
/* 각주 (709,689 중앙정렬) + CTA (760,809) 400x59 */
.promo__note {
  position: absolute; left: 0; top: 689px; width: 1400px; text-align: center;
  font-size: 18px; line-height: 1.67; letter-spacing: -0.02em;
  color: #fff; opacity: 0.6;
}
.promo__note-line { display: block; } /* 문장별 한 줄 — 모바일에서 max-width로 재포장 */
.promo__cta {
  position: absolute; left: 539px; top: 809px;
  display: flex; justify-content: center; align-items: center;
  width: 321px; height: 70px; padding: 0;
  border-radius: 100px; background: var(--c-cream);
  font-weight: 600; font-size: 20px; line-height: 1.2; letter-spacing: -0.015em; color: var(--c-olive-text); text-transform: capitalize; /* 피그마 textCase=TITLE */
  transition: filter 0.2s, transform 0.2s;
}
.promo__cta:hover { filter: brightness(0.96); transform: translateY(-2px); }

/* ============================================================
   3. 리뷰 — 마퀴 스트립
   ============================================================ */
/* 디자인: 리뷰 프레임 바로 안쪽이 헤더(y0) — 섹션 위/아래 180px 간격은 밖에서 */
/* 리뷰 섹션 — 피그마(14:909, con_02 2517~3290):
   타이틀이 섹션 top(2517), view more는 +80(2597) 밑줄 +102(2619),
   카드 top 2710 → 헤더 88 + 마퀴 margin 105 = 섹션 높이 773.
   배너(3470)까지 간격 180 */
.review { margin: 180px 0 180px; background: #fff; }
.review-marquee { margin-top: 105px; }

.review-card {
  position: relative; flex: none; width: 440px; height: 580px; overflow: hidden;
  margin-right: 50px;
}
.review-card img { width: 100%; height: 100%; object-fit: cover; }
.review-card--short { width: 390px; height: 410px; }
.review-card--short::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.05); }
/* 디자인 1:928 — 5번째 카드 사진은 세로 116% 확대 크롭 */
.review-card--zoom img { position: absolute; left: 0; top: -8.79%; width: 102.27%; height: 116.37%; max-width: none; }

/* 리뷰 텍스트 오버레이 — 전 카드 호버 시에만 페이드인(호버 가능 기기=데스크톱).
   --active(환갑 기념일)도 예외 없이 호버 전용. 터치(모바일)은 호버가 없어 텍스트 미표시 */
.review-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: rgba(0, 0, 0, 0.6); opacity: 0; transition: opacity 0.25s;
}
.review-card__body {
  position: absolute; inset: 0; z-index: 2; color: #fff;
  opacity: 0; transition: opacity 0.25s;
}
@media (hover: hover) {
  .review-card:hover::before { opacity: 1; }
  .review-card:hover .review-card__body { opacity: 1; }
}
.review-card__tag {
  position: absolute; left: 40px; top: 50px;
  padding: 10px 18px; border-radius: 50px; background: #fff;
  font-family: var(--en); font-weight: 700; font-size: 18px; letter-spacing: -0.03em; text-transform: uppercase; /* 피그마 textCase=UPPER */
  text-transform: uppercase; color: #000;
}
.review-card__body h3 {
  position: absolute; left: 40px; top: 172px;
  font-family: var(--serif); font-weight: 600; font-size: 34px; line-height: 1.15; letter-spacing: -0.02em;
}
/* 본문 폭은 카드 대비(좌우 40px) — 짧은 카드(390px)에서 오른쪽으로 넘치던 고정 360px 폐기 */
.review-card__body p {
  position: absolute; left: 40px; top: 239px; width: calc(100% - 80px);
  font-size: 20px; line-height: 1.6; letter-spacing: -0.02em; font-weight: 400;
}

.review-marquee .marquee__track { animation-duration: 55s; }

/* ============================================================
   4. 배너 — 1920 x 360
   ============================================================ */
.banner { position: relative; overflow: hidden; height: 360px; background: var(--c-banner-bg); }

.banner__photo { position: absolute; left: 0; top: 0; width: 754px; height: 360px; overflow: hidden; }
/* 사진 = 디자인 노드 익스포트 PNG(2x, 우측 곡선 투명 클리핑 베이크) — 추가 클립 불필요 */
.banner__photo img { width: 100%; height: 100%; object-fit: cover; }

.banner__deco { position: absolute; inset: 0; pointer-events: none; }
.banner__m-acc { position: absolute; left: 0; top: -163px; width: 500px; height: 772px; } /* 모바일 장식 세트 17:3625 — 같은 규약 */
.banner__deco-vector { position: absolute; left: 1618px; top: -102px; width: 401px; height: 1028px; max-width: none; } /* 우측 데코 14:1038 — 오른쪽 99px 노출(1618+401−1920) */
.banner__halftone { position: absolute; left: 1647px; top: -105px; width: 224px; height: 224px; max-width: none; } /* 하프톤 14:1039 */

.banner__body { position: absolute; left: 779px; top: 90px; }
.banner__tit { display: flex; flex-direction: column; gap: 16px; padding-left: 5px; }
.banner__t1 { font-family: var(--num); font-weight: 500; font-size: 26px; line-height: 40px; letter-spacing: -0.015em; color: #585841; }
.banner__t2 { font-family: var(--serif); font-weight: 600; font-size: 48px; line-height: 1.15; letter-spacing: -0.02em; color: #585841; }
/* 피그마: 라벨 Pretendard Medium 20px / 날짜 Pretendard SemiBold 22px (둘 다 tracking -0.025em) */
.banner__period { margin-top: 35px; font-size: 22px; letter-spacing: -0.025em; color: #5d5e4d; white-space: nowrap; }
.banner__period .is-label { display: inline-block; padding: 5px 9px; border-radius: 4px; background: #5d5e4d; font-weight: 500; font-size: 20px; line-height: 24px; letter-spacing: -0.025em; color: #f7eee6; }
.banner__period .is-date { font-weight: 600; font-size: 22px; letter-spacing: -0.025em; margin-left: 16px; }

.banner__divider { position: absolute; left: 76.9%; top: 50%; transform: translateY(-50%); width: 1px; height: 200px; background: #5d5d4a; }

/* 오퍼 블록 — 피그마 절대좌표(배너 14:1027 기준): UP TO 74 / 78 83 / % (95,50) / 할인 (135,65) / FAMILY 202 / 버튼 213 */
.banner__offer { position: absolute; left: 1547px; top: 0; width: 250px; color: var(--c-olive); }
.banner__offer-up { position: absolute; left: 0; top: 74px; font-family: var(--serif); font-weight: 700; font-size: 18px; line-height: 20.7px; letter-spacing: 0.08em; }
.banner__offer-num { position: absolute; left: 0; top: 83px; font-family: var(--num); font-weight: 500; font-size: 84px; line-height: 129.4px; letter-spacing: -0.02em; }
.banner__offer-num em { position: absolute; left: 95px; top: 50px; font-family: var(--sans); font-style: normal; font-weight: 300; font-size: 42px; line-height: 50.1px; }
.banner__offer-num span { position: absolute; left: 135px; top: 74px; font-family: var(--serif); font-weight: 600; font-size: 24px; line-height: 27.6px; white-space: nowrap; }
.banner__offer-label { position: absolute; left: 0; top: 202px; font-weight: 500; font-size: 15px; line-height: 1.33; letter-spacing: 0.15em; }
.banner__btn {
  position: absolute; left: 0; top: 244px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 200px; height: 48px; padding: 0; border-radius: 50px; background: var(--c-olive);
  font-weight: 500; font-size: 17px; letter-spacing: -0.02em; color: #fff;
  transition: filter 0.2s;
}
.banner__btn:hover { filter: brightness(1.12); }
.banner__btn img { width: 13px; height: 10px; }

/* ============================================================
   5. 포트폴리오 — 3단 메이슨리
   ============================================================ */
.portfolio { background: var(--c-pf-bg); padding: 180px 0; }

.portfolio__grid {
  margin-top: 105px;
  display: flex; justify-content: center; gap: 55px;
}
.portfolio__col { display: flex; flex-direction: column; gap: 55px; width: 430px; }
.portfolio__item { position: relative; width: 100%; height: 480px; overflow: hidden; display: block; }
.portfolio__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio__item:hover img { transform: scale(1.03); }
.portfolio__item--s { height: 338px; }
.portfolio__item--l { height: 578px; }

/* 과거 raw 이미지용 크롭 보정(.crop-1~4)은 익스포트 파일로 전면 교체하며 삭제 —
   pf-N-exp.jpg가 이미 디자인 rect 크롭이 베이크된 상태라 이중 크롭 방지 */

/* 전 타일 호버: 어두운 오버레이 + 중앙 원형 + 아이콘 — CSS만으로, 9장 전부 동일 */
.portfolio__item::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.5); opacity: 0; transition: opacity 0.25s;
}
.portfolio__item::before {
  content: "+"; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: #fff; font-family: var(--sans);
  font-size: 30px; font-weight: 300; line-height: 58px; text-align: center;
  z-index: 1; opacity: 0; transition: opacity 0.25s;
}
@media (hover: hover) {
  .portfolio__item:hover::after { opacity: 1; }
  .portfolio__item:hover::before { opacity: 1; }
}

/* ============================================================
   6. 지점 — 풀블리드 사진 + 카드 마퀴
   ============================================================ */
.branches { position: relative; overflow: hidden; height: 712px; color: #fff; }

.branches__bg { position: absolute; inset: 0; }
.branches__bg-under { position: absolute; left: 0; top: -52.34%; width: 100%; height: 188.24%; object-fit: cover; }
.branches__bg-main { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.branches__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(177, 171, 162, 0.1) 0%, rgba(177, 171, 162, 0.1) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.branches__head { position: relative; padding-top: 160px; }
.branches__title { font-family: var(--serif); font-weight: 600; font-size: 38px; line-height: 1.16; letter-spacing: -0.025em; color: #fff; }
.branches__sub { margin-top: 24px; font-weight: 500; font-size: 20px; letter-spacing: -0.025em; color: #e8e8e8; }

.branches-marquee { position: relative; margin-top: 99px; }
.branches-marquee .marquee__track { animation-duration: 45s; }

.branch-card {
  position: relative; flex: none; width: 320px; height: 190px;
  margin-right: 32px;
  background: rgba(234, 234, 234, 0.9);
  transition: background 0.3s;
}
.branch-card__name {
  position: absolute; left: 30px; top: 30px;
  font-family: var(--serif); font-weight: 600; font-size: 26px; line-height: 1.15; letter-spacing: -0.02em; color: #111;
  transition: color 0.3s;
}
/* 지점 카드 view more — link-more 컴포넌트. 다른 view more와 달리 밑줄이 글자(77px)보다
   넓게 120px로 뻗음(data-line), 밑줄-글자 간격 1px. 카드 오른쪽 끝(320)에 밑줄이 닿음 */
.branch-card link-more { position: absolute; left: 200px; top: 136px; }
.branch-card .lm { font-size: 18px; line-height: 22px; letter-spacing: -0.18px; color: #000; --lm-gap: 1px; transition: color 0.3s; }

/* 호버 시 다크(올리브) 카드로 전환 — 모든 지점 동일, 터치 기기 미적용
   (피그마의 순천여수점 다크 카드가 호버 상태 캡처였음).
   밑줄은 currentColor라 글자색 전이만으로 함께 흰색으로 */
@media (hover: hover) {
  .branch-card:hover { background: rgba(74, 75, 50, 0.9); }
  .branch-card:hover .branch-card__name { color: #fff; font-family: "Noto Serif KR", "Nanum Myeongjo", serif; }
  .branch-card:hover .lm { color: #fff; }
}

/* ============================================================
   푸터
   ============================================================ */

/* 피그마(14:14): 모토 3행 "MEMORIES" 오른쪽 옆에 baseline 맞춤 — (594, 319) = 모토 top 기준 +334/+179 */

/* 피그마: 모토 아래 120px → divider(1px) → 60px 아래 로고/SNS */



/* ============================================================
   모바일 (max-width:360px) — 피그마 mobile_360 (17:2763) 360x6831
   361px~ : 1920 데스크톱 캔버스를 비율 축소해 사용 (JS fit 참고)
   ============================================================ */
.m-only { display: none !important; }
/* 모바일 장식 img 6종(m-only) 표시 해제 — 위치·크기는 기본 규칙(섹션 상단 px)에 정의 */


  html.is-m .visual__m-arc, html.is-m .visual__m-deco,
  html.is-m .promo__m-arc, html.is-m .promo__m-deco, html.is-m .promo__m-circle,
  html.is-m .banner__m-acc  { display: block !important; }
  html.is-m #page  { width: 360px; height: 6831px; }
  /* GNB/풀스크린 메뉴는 js/site-gnb.js (.sg/.sgd) — 360 캔버스 동일 스케일 */

  /* ---------- 히어로 (0,60) 360x560 — 전신 배경사진(visual_01) + 우측 아치/좌하 데코 ---------- */
  html.is-m .visual  { position: absolute; top: 60px; left: 0; width: 360px; height: 560px; aspect-ratio: auto; }
  html.is-m .visual__bg  { background: url("../assets/figma/m-hero.jpg") center / cover no-repeat, var(--c-hero-bg); }
  html.is-m .visual__photo  { display: none; }
  html.is-m .visual__side  { display: none; }
  html.is-m .visual__acc  { display: block; }
  html.is-m .visual__halftone, html.is-m .visual__deco  { display: none; }
  /* 모바일 장식 2종은 .visual__m-arc / .visual__m-deco (m-only img, 기본 규칙 참조) */
  /* 타이틀 세로 리듬(디자인 tit프레임): t1 y0-18 → t2 y28-136 → t3 y146-173 — 줄간 10px */
  html.is-m .visual__tit  { left: 76px; top: 48px; transform: none; align-items: flex-start; width: auto; text-align: left; gap: 10px; }
  html.is-m .visual__tit-main  { gap: 10px; }
  html.is-m .visual__t1  { font-size: 16px; line-height: 18.4px; }
  html.is-m .visual__t2  { font-size: 48px; line-height: 54px; }
  /* 부제(17:3138): 잉크립퀴드 24px · tracking -0.48px · 중앙정렬 · 박스 x-4 w215 */
  html.is-m .visual__t3  { width: 215px; margin-left: -4px; font-size: 24px; line-height: 27.2px; letter-spacing: -0.02em; text-align: center; }
  html.is-m .visual__badge  { left: 234px; top: 227px; width: 112px; height: 112px; background: var(--c-olive); border-radius: 50%; }
  /* 배지 내부 흰 링 (Ellipse 2483: 106x106, 0.8px) */
  html.is-m .visual__badge::after  {
    content: ""; position: absolute; left: 3px; top: 3px; width: 106px; height: 106px;
    border-radius: 50%; border: 0.8px solid rgba(255, 255, 255, 0.8);
  }
  html.is-m .visual__badge-mark  { display: none; }
  html.is-m .visual__badge-upto  { top: 18px; left: 37px; transform: none; font-size: 11px; line-height: 12.7px; letter-spacing: 0.08em; }
  html.is-m .visual__badge-num  { top: 24px; left: 28px; width: auto; height: auto; font-size: 38px; line-height: 58.5px; }
  html.is-m .visual__badge-percent  { top: 45px; left: 71px; width: 17px; height: 24px; font-size: 20px; line-height: 23.9px; }
  html.is-m .visual__badge-special  { top: 73px; left: 36px; transform: none; font-size: 10px; line-height: 12px; letter-spacing: 0.12em; }

  /* ---------- 프로모션 (0,620) 360x1934 ---------- */
  html.is-m .promo  { position: absolute; top: 620px; left: 0; width: 360px; height: 1934px; margin: 0; }
  /* 모바일 장식 3종은 .promo__m-arc / .promo__m-deco / .promo__m-circle (m-only img) */
  html.is-m .promo__circle, html.is-m .promo__halftone, html.is-m .promo__deco-r  { display: none; }
  html.is-m .promo .container  { position: absolute; inset: 0; width: 360px; }
  html.is-m .promo__pill  { left: 76px; top: 60px; width: 205px; height: 37px; padding: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; }
  html.is-m .promo__off strong  { left: 112px; top: 91px; font-size: 88px; line-height: 135.5px; }
  html.is-m .promo__off em  { left: 97px; top: 54px; font-size: 42px; line-height: 50.1px; }
  html.is-m .promo__off-side  { top: 151px; } /* 디자인(17:3518): 최대/할인 y151 — 데스크톱 198 잔존 제거 */
  html.is-m .promo__off-side:first-child  { left: 74px; }
  html.is-m .promo__off-side:last-child  { left: 250px; }
  html.is-m .promo__sp  { left: 92px; top: 215px; line-height: 20px; }
  html.is-m .promo__sp .dot  { top: 8px; } /* 점 중심을 텍스트 중심(y225)과 일치 */
  /* 가격 패널 — 크림 라운드 패널(17:3525) (30,275) 300x465, 스트로크 #444539 + 8/8 그림자.
     (SVG 익스포트는 필터 여백이 포함돼 축소 렌더링됨 → CSS로 재현) */
  html.is-m .promo__prices  { left: 0; top: 275px; width: 360px; height: 465px; }
  html.is-m .promo__prices::before  {
    content: ""; position: absolute; left: 30px; top: 0; width: 300px; height: 465px;
    background: #f8f1ea; border: 1px solid #444539; border-radius: 21px;
    box-shadow: 8px 8px 8px rgba(69, 70, 52, 0.4);
  }
  html.is-m .promo__prices-bg  { display: none; }
  /* 패널 내부 구분선 (17:3536: y507, 180x1) */
  html.is-m .promo__divider  { left: 90px; top: 232px; width: 180px; height: 1px; background: #9f9d98; opacity: 1; }
  html.is-m .promo__price:first-of-type  { left: 0; top: 50px; width: 360px; }
  html.is-m .promo__price:last-of-type  { left: 0; top: 263px; width: 360px; }
  html.is-m .promo__price-badge  { top: 0; }
  html.is-m .promo__price-desc  { top: 49px; }
  html.is-m .promo__price-before  { top: 80px; }
  html.is-m .promo__price-before::after  { top: 12px; }
  html.is-m .promo__price-now  { top: 97px; }
  /* BENEFIT 라벨 양옆 50px 라인 (y834) */
  html.is-m .promo__benefit-label  { left: 0; top: 820px; width: 360px; }
  html.is-m .promo__benefit-label .line  { width: 50px; background: #c1c1bd; }
  html.is-m .promo__benefit-label .line:first-child  { left: 40px; }
  html.is-m .promo__benefit-label .line:last-child  { right: 40px; }
  html.is-m .promo__benefit-word  { font-size: 18px; line-height: 30px; letter-spacing: 0.6em; text-indent: 0.6em; }
  html.is-m .promo__benefits  { left: 0; top: 900px; width: 360px; }
  html.is-m .promo__benefit  { width: 196px; } /* 디자인(17:3552) 혜택 프레임 196 — 데스크톱 200 잔존 제거 */
  html.is-m .promo__benefit:nth-child(1)  { left: 82px; }
  html.is-m .promo__benefit:nth-child(2)  { left: 82px; top: 253px; }
  html.is-m .promo__benefit:nth-child(3)  { left: 82px; top: 506px; }
  /* 혜택 행 사이 구분선 (y1112/1365/1618, 220x1) — 마지막 행 아래 닫는 라인 포함 */
  html.is-m .promo__benefit + .promo__benefit::before  { left: -12px; top: -41px; width: 220px; height: 1px; background: #77786d; opacity: 1; }
  html.is-m .promo__benefits::after  { content: ""; position: absolute; left: 70px; top: 718px; width: 220px; height: 1px; background: #77786d; }
  html.is-m .promo__benefit strong  { font-size: 22px; line-height: 33.9px; }
  html.is-m .promo__benefit p  { margin-top: 14px; font-size: 18px; line-height: 26px; }
  /* 각주(17:3598): 문장별 w217 안에서 2줄씩 재포장, 그룹 간 12px — 15px/23px/-0.3px */
  html.is-m .promo__note  { top: 1659px; width: 360px; font-size: 15px; line-height: 23px; letter-spacing: -0.02em; opacity: 0.6; }
  html.is-m .promo__note-line  { max-width: 217px; margin: 0 auto; }
  html.is-m .promo__note-line + .promo__note-line  { margin-top: 12px; }
  html.is-m .promo__cta  { left: 36px; top: 1803px; width: 287px; height: 61px; font-size: 18px; }

  /* ---------- 리뷰 (0,2634) 360x614 — 헤더 x20 인셋 ---------- */
  html.is-m .review  { position: absolute; top: 2634px; left: 0; width: 360px; height: 614px; margin: 0; }
  html.is-m .review .container  { width: 320px; margin: 0 0 0 20px; }
  html.is-m .review .sec-head  { padding-top: 0; }
  html.is-m .review .sec-title  { font-size: 32px; line-height: 42px; }
  /* 소제목(17:3607): "…남겨주신 ⏎ 고객님의 솔직 리뷰" — 18px/26px/-0.45px */
  html.is-m .review .sec-sub  { margin-top: 16px; font-size: 18px; line-height: 26px; letter-spacing: -0.025em; }
  html.is-m .review link-more  { top: 172px; left: 0; right: auto; }
  html.is-m .review .lm  { font-size: 18px; line-height: 22px; }
  /* 리뷰 마퀴(모바일) — 데스크톱과 동일하게 자동 스크롤(디자인 17:3612의 프레임은
     스크롤 중간 상태). 구조/애니메이션은 데스크톱 flow 그대로 재사용, 카드만 모바일 크기:
     활성 280x369, 짧은 카드 250x263(세로 중앙 = align-items:center → top 53), 간격 20 */
  html.is-m .review-marquee  { position: absolute; left: 0; top: 245px; width: 360px; height: 369px; margin: 0; }
  html.is-m .review-card  { width: 280px; height: 369px; margin-right: 20px; }
  html.is-m .review-card--short  { width: 250px; height: 263px; }
  html.is-m .review-card__tag  { left: 20px; top: 30px; padding: 8px 14px; font-size: 14px; line-height: 17px; }
  html.is-m .review-card__body h3  { left: 20px; top: 93px; font-size: 24px; line-height: 27.6px; }
  html.is-m .review-card__body p  { left: 20px; top: 139px; width: calc(100% - 40px); font-size: 16px; line-height: 24px; }

  /* ---------- 배너 (0,3328) 360x588 — 사진 없음, 장식벡터 세트(17:3625) 500x772 (0,-163) ---------- */
  html.is-m .banner  { position: absolute; top: 3328px; left: 0; width: 360px; height: 588px; }
  html.is-m .banner__photo  { display: none; }
  /* 모바일 배너 장식은 .banner__m-acc (m-only img) */
  html.is-m .banner__deco-vector, html.is-m .banner__halftone  { display: none; }
  html.is-m .banner__offer::before  { display: none; }
  /* 타이틀 아래 가는 라인 (17:3987): 피그마 렌더 픽셀 실측 — (119,222) 120x1, 중앙 정렬
     (트리 좌표 x239는 해당 프레임 자식 좌표계가 섞여 있어 신뢰 불가 → 픽셀 기준) */
  html.is-m .banner__divider  {
    display: block; left: 119px; top: 222px; width: 120px; height: 1px;
    transform: none; background: #585841;
  }
  html.is-m .banner__body  { left: 0; top: 60px; width: 360px; }
  html.is-m .banner__tit  { padding-left: 0; align-items: center; gap: 8px; }
  html.is-m .banner__t1  { font-size: 18px; line-height: 27.7px; }
  /* t2(17:3989): "가족의 소중한 ⏎ 순간을 특별하게" — 중앙정렬(textAlign=center), 38px/48px/-0.02em */
  html.is-m .banner__t2  { font-size: 38px; line-height: 48px; text-align: center; }
  html.is-m .banner__period  { position: absolute; left: 46px; top: 338px; margin: 0; } /* BN 기준 y398 — body(top 60) 안쪽이므로 338 */
  html.is-m .banner__period .is-label  { padding: 5px 10px; font-size: 16px; line-height: 19.1px; }
  html.is-m .banner__period .is-date  { font-size: 20px; margin-left: 10px; }
  html.is-m .banner__offer  { left: 0; top: 0; width: 360px; }
  html.is-m .banner__offer-up  { left: 62px; top: 287px; font-size: 20px; line-height: 23px; letter-spacing: 0.08em; }
  html.is-m .banner__offer-num  { left: 134px; top: 232px; font-size: 72px; line-height: 110.9px; }
  html.is-m .banner__offer-num em  { left: 85px; top: 43px; font-size: 36px; line-height: 43px; }
  html.is-m .banner__offer-num span  { left: 120px; top: 54px; font-size: 22px; line-height: 25.3px; }
  html.is-m .banner__offer-label  { left: 58px; top: 338px; font-size: 15px; letter-spacing: 0.15em; }
  html.is-m .banner__btn  { left: 71px; top: 475px; width: 218px; height: 53px; font-size: 18px; }

  /* ---------- 포트폴리오 (20,3996) 320x1539 — 데스크톱과 DOM 공유 ---------- */
  html.is-m .portfolio  { position: absolute; top: 3996px; left: 0; width: 360px; height: 1539px; padding: 0; background: #fff; }
  html.is-m .portfolio .sec-head  { top: 0; left: 20px; width: 320px; }
  html.is-m .portfolio .sec-title  { font-size: 32px; line-height: 42px; }
  html.is-m .portfolio .sec-sub  { margin-top: 16px; font-size: 18px; line-height: 26px; letter-spacing: -0.025em; }
  html.is-m .portfolio link-more  { left: 0; right: 0; top: 1514px; width: max-content; margin-inline: auto; }
  html.is-m .portfolio .lm  { font-size: 20px; line-height: 24.2px; letter-spacing: -0.4px; }
  /* 3단 메이슨리 → 세로 스택, 앞 5장만 (DOM 공유). 컬럼 구조 때문에
     3번째 컬럼 통째로 숨기고 2번째 컬럼의 마지막(6번째)도 숨김 */
  html.is-m .portfolio__grid  { display: block; position: absolute; left: 20px; top: 202px; width: 320px; margin: 0; gap: 0; }
  html.is-m .portfolio__col  { display: block; width: 320px; }
  html.is-m .portfolio__col:last-child  { display: none; }
  html.is-m .portfolio__col:nth-child(2) .portfolio__item:last-child  { display: none; }
  html.is-m .portfolio__item  { width: 320px; height: 240px; margin-bottom: 16px; }
  /* 모바일: 디자인에서 크롭된 전용 이미지로 교체 — 작고 정확한 크롭,
     object-position 핵 불필요. DOM·클릭은 데스크톱 공유 */
  html.is-m .portfolio__col:nth-child(1) .portfolio__item:nth-child(1) img  { content: url("../assets/figma/m-pf1.jpg"); }
  html.is-m .portfolio__col:nth-child(1) .portfolio__item:nth-child(2) img  { content: url("../assets/figma/m-pf2.jpg"); }
  html.is-m .portfolio__col:nth-child(1) .portfolio__item:nth-child(3) img  { content: url("../assets/figma/m-pf3.jpg"); }
  html.is-m .portfolio__col:nth-child(2) .portfolio__item:nth-child(1) img  { content: url("../assets/figma/m-pf4.jpg"); }
  html.is-m .portfolio__col:nth-child(2) .portfolio__item:nth-child(2) img  { content: url("../assets/figma/m-pf5.jpg"); }
  html.is-m .portfolio__item img  { width: 100%; height: 100%; object-fit: cover; }

  /* ---------- 지점 (0,5615) 360x514 ---------- */
  html.is-m .branches  { position: absolute; top: 5615px; left: 0; width: 360px; height: 514px; }
  /* 배경(17:4023 색감): Export 추출 이미지로 교체 — 딤까지 베이크됨 */
  html.is-m .branches__bg  { background: url("../assets/figma/m-branch-bg.jpg") center / cover no-repeat; }
  html.is-m .branches__bg img, html.is-m .branches__overlay  { display: none; }
  html.is-m .branches__head  { position: absolute; left: 20px; top: 80px; padding-top: 0; }
  html.is-m .branches__title  { font-size: 32px; line-height: 42px; }
  html.is-m .branches__sub  { margin-top: 16px; font-size: 18px; line-height: 26px; }
  /* 지점 마퀴(모바일) — 데스크톱과 동일하게 자동 스크롤. 카드만 모바일 크기 220x200,
     간격 16(디자인 17:4027: 카드 x 0/236/472 → 220+16) */
  html.is-m .branches-marquee  { position: absolute; left: 0; top: 224px; width: 360px; height: 200px; margin: 0; }
  html.is-m .branch-card  { width: 220px; height: 200px; margin-right: 16px; }
  html.is-m .branch-card__name  { left: 24px; font-size: 22px; line-height: 25.3px; }
  html.is-m .branch-card link-more  { left: 100px; top: 146px; }

  /* ---------- 푸터 (0,6129) 360x702 ---------- */

