@charset "utf-8";

/* =========================================================
   여주 도심형 공유창고 - style.css
   Brand : Navy #10265c / Orange #f97316
   ========================================================= */

:root {
  --navy-900: #0a1b45;
  --navy-800: #10265c;
  --navy-700: #1a3a80;
  --navy-100: #eaf0fb;
  --orange: #f97316;
  --orange-dark: #ea6a06;
  --orange-100: #fff2e6;
  --green: #16a34a;

  --text: #1f2937;
  --text-sub: #5b6577;
  --line: #e5e9f0;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 20px rgba(16, 38, 92, .08);
  --shadow-lg: 0 12px 40px rgba(16, 38, 92, .14);

  --header-h: 68px;
  --container: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Pretendard", "Pretendard Variable", -apple-system, BlinkMacSystemFont,
               "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.point { color: var(--orange); }
.nowrap { white-space: nowrap; }

/* ---------- 공통 섹션 ---------- */
.section { padding: 96px 0; }
.section--soft { background: var(--bg-soft); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  font-size: 14px; font-weight: 800; letter-spacing: .04em;
  color: var(--orange);
  background: var(--orange-100);
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(26px, 4.4vw, 40px);
  font-weight: 800; line-height: 1.35; color: var(--navy-900);
}
.section-desc {
  margin-top: 14px; font-size: clamp(15px, 2vw, 18px); color: var(--text-sub);
}

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 56px; padding: 0 28px;
  border-radius: 999px;
  font-size: 17px; font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 20px; height: 20px; }
.btn--call { background: var(--orange); color: #fff; box-shadow: 0 8px 24px rgba(249, 115, 22, .35); }
.btn--call:hover { background: var(--orange-dark); }
.btn--kakao { background: #fee500; color: #3c1e1e; box-shadow: 0 8px 24px rgba(254, 229, 0, .35); }
.btn--kakao:hover { background: #f5dc00; }
.btn--ghost { background: rgba(255, 255, 255, .12); color: #fff; border: 1.5px solid rgba(255, 255, 255, .45); }
.btn--ghost:hover { background: rgba(255, 255, 255, .2); }
.btn--line { background: #fff; color: var(--navy-800); border: 1.5px solid var(--line); box-shadow: var(--shadow); }
.btn--sm { height: 46px; padding: 0 20px; font-size: 15px; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 16px rgba(16, 38, 92, .06); }
/* 헤더는 본문(1160px)보다 넓게 써야 메뉴가 한 줄에 들어간다 */
.header .container { max-width: 1340px; }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; }

.logo { display: flex; align-items: center; gap: 10px; flex: none; }
.logo__mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: grid; place-items: center; color: #fff; flex: none;
}
.logo__mark svg { width: 20px; height: 20px; }
.logo__text { line-height: 1.15; }
.logo__text b { display: block; font-size: 17px; font-weight: 800; color: var(--navy-900); white-space: nowrap; }
.logo__text span { display: block; font-size: 11px; font-weight: 700; color: var(--orange); letter-spacing: .06em; white-space: nowrap; }

.gnb { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.gnb a {
  padding: 10px 12px; border-radius: 10px; white-space: nowrap;
  font-size: 15.5px; font-weight: 700; color: #38445c;
  transition: color .15s ease, background-color .15s ease;
}
.gnb a:hover { color: var(--navy-800); background: var(--navy-100); }

.header__cta { display: flex; align-items: center; gap: 6px; flex: none; }
.header__tel {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: 999px;
  background: var(--orange); color: #fff; font-weight: 800; font-size: 16px;
  white-space: nowrap; box-shadow: 0 6px 18px rgba(249, 115, 22, .3);
  transition: background-color .18s ease;
}
.header__tel:hover { background: var(--orange-dark); }
.header__tel svg { width: 18px; height: 18px; flex: none; }
.header__tel .tel-short { display: none; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; margin: 5px auto;
  background: var(--navy-900); border-radius: 2px; transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  margin-top: var(--header-h);
  padding: 84px 0 96px;
  background:
    radial-gradient(1000px 520px at 78% 12%, rgba(249, 115, 22, .22), transparent 62%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, #16367e 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 -1px 0; height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .06));
  pointer-events: none;
}
.hero__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  font-size: 14.5px; font-weight: 700; margin-bottom: 22px;
}
.hero__badge svg { width: 16px; height: 16px; color: var(--orange); }

.hero__title {
  font-size: clamp(34px, 5.6vw, 60px);
  font-weight: 800; line-height: 1.24; letter-spacing: -0.035em;
}
.hero__title .hl {
  color: #ffb648;
  position: relative; display: inline-block;
}
.hero__title .hl::after {
  content: ""; position: absolute; left: -2px; right: -2px; bottom: 6px; height: 12px;
  background: rgba(249, 115, 22, .3); border-radius: 4px; z-index: -1;
}
.hero__lead {
  margin-top: 22px; font-size: clamp(16px, 2.2vw, 19px);
  color: rgba(255, 255, 255, .82); line-height: 1.75;
}

.hero__price {
  display: inline-flex; align-items: baseline; gap: 10px;
  margin-top: 28px; padding: 14px 24px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
}
.hero__price em { font-style: normal; font-size: 15px; color: rgba(255, 255, 255, .78); font-weight: 700; }
.hero__price b { font-size: 30px; font-weight: 800; color: #ffb648; letter-spacing: -0.03em; }

.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; }
.hero__meta li {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, .8);
}
.hero__meta svg { width: 17px; height: 17px; color: #6ee7a8; flex: none; }

/* Hero card */
.hero__card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  backdrop-filter: blur(8px);
}
.hero__card h3 { font-size: 19px; font-weight: 800; margin-bottom: 6px; }
.hero__card > p { font-size: 14.5px; color: rgba(255, 255, 255, .7); margin-bottom: 20px; }
.hero__sizes { display: grid; gap: 10px; }
.hero__size {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: background-color .2s ease, transform .2s ease;
}
.hero__size:hover { background: rgba(255, 255, 255, .14); transform: translateX(3px); }
.hero__size strong { font-size: 16px; font-weight: 800; }
.hero__size small { display: block; font-size: 13px; color: rgba(255, 255, 255, .62); font-weight: 500; }
.hero__size .price { font-size: 17px; font-weight: 800; color: #ffb648; white-space: nowrap; }
.hero__card .note { margin-top: 16px; font-size: 13px; color: rgba(255, 255, 255, .6); text-align: center; }

/* =========================================================
   Strip (숫자 요약)
   ========================================================= */
.strip { background: var(--navy-900); color: #fff; padding: 26px 0; }
.strip__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; text-align: center; }
.strip__list li { padding: 6px 8px; border-right: 1px solid rgba(255, 255, 255, .12); }
.strip__list li:last-child { border-right: 0; }
.strip__list b { display: block; font-size: clamp(19px, 2.6vw, 26px); font-weight: 800; color: #ffb648; }
.strip__list span { font-size: 14px; color: rgba(255, 255, 255, .72); font-weight: 600; }

/* =========================================================
   WHY 도심형
   ========================================================= */
.why__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 56px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 28px; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #cfd9ec; }
.why-card__no {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(249, 115, 22, .3);
}
.why-card h3 { font-size: 21px; font-weight: 800; color: var(--navy-900); margin-bottom: 10px; }
.why-card p { font-size: 15.5px; color: var(--text-sub); line-height: 1.7; }

/* 비교 표 */
.compare {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.compare__head {
  display: grid; grid-template-columns: 1.1fr 1fr 1.15fr;
  background: var(--navy-900); color: #fff;
}
.compare__head > div { padding: 20px 18px; text-align: center; font-weight: 800; font-size: 16.5px; }
.compare__head .is-me { background: linear-gradient(135deg, var(--orange), #fb923c); }
.compare__head .is-me small { display: block; font-size: 12.5px; font-weight: 700; opacity: .9; margin-top: 2px; }
.compare__row { display: grid; grid-template-columns: 1.1fr 1fr 1.15fr; border-top: 1px solid var(--line); }
.compare__row > div { padding: 18px; font-size: 15.5px; display: flex; align-items: center; gap: 8px; }
.compare__row .label { font-weight: 800; color: var(--navy-900); background: var(--bg-soft); }
.compare__row .other { color: #8a93a5; justify-content: center; text-align: center; }
.compare__row .mine { color: var(--navy-800); font-weight: 700; justify-content: center; text-align: center; background: #fffaf4; }
.compare__row .mine svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.compare__row .other svg { width: 17px; height: 17px; color: #c3cad6; flex: none; }

/* =========================================================
   특징 (5)
   ========================================================= */
.feature__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.feature-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 20px; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-item__icon {
  width: 62px; height: 62px; margin: 0 auto 16px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--navy-100); color: var(--navy-800);
}
.feature-item__icon svg { width: 28px; height: 28px; }
.feature-item h3 { font-size: 17.5px; font-weight: 800; color: var(--navy-900); margin-bottom: 8px; }
.feature-item p { font-size: 14.5px; color: var(--text-sub); line-height: 1.6; }

/* =========================================================
   보관 품목
   ========================================================= */
.items__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.item-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.item-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.item-card__thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy-100), #dbe4f6);
  background-size: cover; background-position: center;
  display: grid; place-items: end start; padding: 10px;
  color: var(--navy-700);
}
/* 아이콘 배지가 사진 위에서도 보이도록 하단만 살짝 어둡게 */
.item-card__thumb::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 27, 69, .34), transparent 46%);
}
.item-card__thumb svg {
  position: relative; width: 20px; height: 20px; opacity: 1; color: #fff;
  box-sizing: content-box; padding: 6px;
  background: rgba(10, 27, 69, .72); border-radius: 9px;
}

/* 카드별 사진 : 좌 → 우 (캠핑 / 옷 / 스포츠 / 이사박스 / 사업자재고) */
.items__list .item-card:nth-child(1) .item-card__thumb { background-image: url("/assets/images/item-1.jpg"); }
.items__list .item-card:nth-child(2) .item-card__thumb { background-image: url("/assets/images/item-2.jpg"); }
.items__list .item-card:nth-child(3) .item-card__thumb { background-image: url("/assets/images/item-3.jpg"); }
.items__list .item-card:nth-child(4) .item-card__thumb { background-image: url("/assets/images/item-4.jpg"); }
.items__list .item-card:nth-child(5) .item-card__thumb { background-image: url("/assets/images/item-5.jpg"); }
.item-card__body { padding: 20px 18px 24px; text-align: center; }
.item-card__body h3 { font-size: 17px; font-weight: 800; color: var(--navy-900); margin-bottom: 8px; }
.item-card__body p { font-size: 14px; color: var(--text-sub); line-height: 1.65; }

/* =========================================================
   요금 / 사이즈
   ========================================================= */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative; background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px 28px 32px; text-align: center;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan--best { border-color: var(--orange); box-shadow: 0 12px 36px rgba(249, 115, 22, .18); }
.plan__best-tag {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff; font-size: 13.5px; font-weight: 800;
  padding: 7px 20px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(249, 115, 22, .35);
}
.plan__name { font-size: 22px; font-weight: 800; color: var(--navy-900); }
.plan__area { display: inline-block; margin-top: 8px; font-size: 14px; font-weight: 700; color: var(--orange); background: var(--orange-100); padding: 4px 14px; border-radius: 999px; }
.plan__box {
  margin: 22px auto 20px; width: 100%; max-width: 210px; aspect-ratio: 5 / 4;
  border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, #fff3e6, #ffe2c4);
  border: 1.5px dashed #f7b877; color: var(--navy-800);
}
.plan__box svg { width: 52px; height: 52px; opacity: .75; }
.plan__size { font-size: 16px; font-weight: 800; color: var(--navy-800); }
.plan__size small { display: block; font-size: 13px; color: var(--text-sub); font-weight: 600; margin-top: 3px; }
.plan__use { margin: 16px 0 22px; font-size: 14.5px; color: var(--text-sub); line-height: 1.7; flex: 1; }
.plan__price { padding-top: 20px; border-top: 1px dashed var(--line); }
.plan__price b { font-size: 30px; font-weight: 800; color: var(--navy-900); letter-spacing: -0.03em; }
.plan__price span { font-size: 15px; font-weight: 700; color: var(--text-sub); }
.plan .btn { margin-top: 18px; width: 100%; }
.plans__note {
  margin-top: 32px; text-align: center; font-size: 14.5px; color: var(--text-sub);
  background: #fff; border: 1px dashed var(--line); border-radius: var(--radius); padding: 18px;
}

/* =========================================================
   이용 절차
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; text-align: center; padding: 0 8px; }
.step__no {
  width: 66px; height: 66px; margin: 0 auto 18px;
  border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 2px solid var(--navy-100);
  color: var(--navy-800); font-size: 20px; font-weight: 800;
  box-shadow: var(--shadow);
}
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 33px; left: calc(50% + 46px); right: calc(-50% + 46px);
  border-top: 2px dashed #cfd9ec;
}
.step h3 { font-size: 18px; font-weight: 800; color: var(--navy-900); margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text-sub); line-height: 1.65; }

/* =========================================================
   오시는 길
   ========================================================= */
.location { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.location__map {
  position: relative; min-height: 380px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background:
    linear-gradient(0deg, rgba(16,38,92,.03), rgba(16,38,92,.03)),
    repeating-linear-gradient(0deg, #f2f5fa 0 38px, #e8edf6 38px 40px),
    repeating-linear-gradient(90deg, #f2f5fa 0 38px, #e8edf6 38px 40px);
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.location__map .pin {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  background: linear-gradient(135deg, var(--orange), #fb923c);
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(249, 115, 22, .4);
}
.location__map .pin svg { width: 26px; height: 26px; color: #fff; transform: rotate(45deg); }
.location__map strong { display: block; font-size: 20px; font-weight: 800; color: var(--navy-900); }
.location__map span { display: block; font-size: 15px; color: var(--text-sub); margin-top: 4px; }
.location__map .map-links { display: flex; gap: 10px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }

.location__info {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow);
}
.location__info h3 { font-size: 24px; font-weight: 800; color: var(--navy-900); margin-bottom: 6px; }
.location__info .sub { font-size: 15px; color: var(--orange); font-weight: 700; margin-bottom: 24px; }
.info-list li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.info-list li:last-child { border-bottom: 0; }
.info-list .ico {
  width: 40px; height: 40px; flex: none; border-radius: 12px;
  background: var(--navy-100); color: var(--navy-800); display: grid; place-items: center;
}
.info-list .ico svg { width: 19px; height: 19px; }
.info-list dt { font-size: 13.5px; font-weight: 800; color: var(--text-sub); margin-bottom: 2px; }
.info-list dd { font-size: 16.5px; font-weight: 700; color: var(--navy-900); line-height: 1.55; }
.info-list dd small { display: block; font-size: 14px; font-weight: 500; color: var(--text-sub); margin-top: 4px; }
.around { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.around span {
  font-size: 13.5px; font-weight: 700; color: var(--navy-800);
  background: var(--navy-100); padding: 5px 12px; border-radius: 999px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.is-open { border-color: #cfd9ec; box-shadow: var(--shadow); }
.faq-item__q {
  width: 100%; display: flex; align-items: center; gap: 14px;
  padding: 22px 24px; text-align: left;
  font-size: 17px; font-weight: 700; color: var(--navy-900);
}
.faq-item__q .q {
  width: 28px; height: 28px; flex: none; border-radius: 8px;
  background: var(--navy-800); color: #fff; display: grid; place-items: center;
  font-size: 14px; font-weight: 800;
}
.faq-item__q .arrow { margin-left: auto; flex: none; transition: transform .28s ease; color: #94a0b8; }
.faq-item__q .arrow svg { width: 20px; height: 20px; display: block; }
.faq-item.is-open .faq-item__q .arrow { transform: rotate(180deg); color: var(--orange); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-item__a p {
  padding: 0 24px 24px 66px; font-size: 15.5px; color: var(--text-sub); line-height: 1.75;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  padding: 88px 0; text-align: center; color: #fff;
  background:
    radial-gradient(760px 380px at 50% 0%, rgba(249, 115, 22, .28), transparent 65%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
}
.cta h2 { font-size: clamp(26px, 4.2vw, 40px); font-weight: 800; line-height: 1.35; }
.cta p { margin-top: 16px; font-size: clamp(15px, 2vw, 18px); color: rgba(255, 255, 255, .8); }
.cta__phone {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 28px;
  font-size: clamp(30px, 5vw, 46px); font-weight: 800; letter-spacing: -0.02em; color: #ffb648;
}
.cta__phone svg { width: clamp(28px, 4vw, 40px); height: clamp(28px, 4vw, 40px); }
.cta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: #071336; color: rgba(255, 255, 255, .62); padding: 48px 0 40px; font-size: 14.5px; }
.footer__top { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer__logo { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 18px; font-weight: 800; }
.footer__logo .logo__mark { background: rgba(255, 255, 255, .12); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer__nav a { font-weight: 600; transition: color .15s ease; }
.footer__nav a:hover { color: #fff; }
.footer__info { margin-top: 24px; line-height: 1.9; }
.footer__info b { color: rgba(255, 255, 255, .9); font-weight: 700; }
.footer__copy { margin-top: 18px; font-size: 13.5px; color: rgba(255, 255, 255, .4); }

/* =========================================================
   Floating (모바일 하단 바 / 상단 이동)
   ========================================================= */
.to-top {
  position: fixed; right: 22px; bottom: 26px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: #fff; color: var(--navy-800);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

.mobile-bar { display: none; }

/* =========================================================
   Reveal 애니메이션
   ========================================================= */
/* JS 가 살아있을 때만 숨겼다가 등장시킨다.
   (JS 가 막히거나 실패해도 본문이 사라지지 않도록) */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
html.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .feature__list { grid-template-columns: repeat(3, 1fr); }
  .items__list { grid-template-columns: repeat(3, 1fr); }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* 가로폭이 애매할 때 헤더가 넘치지 않도록 단계적으로 줄인다 */
@media (max-width: 1280px) {
  .gnb a { padding: 10px 9px; font-size: 15px; }
  .header__tel .tel-full { display: none; }
  .header__tel .tel-short { display: inline; }
}
@media (max-width: 1040px) {
  /* 헤더가 더 좁아지면 로그인/회원가입은 메뉴 줄로 내린다 */
  .header__cta .auth-link { display: none; }
  .gnb .gnb__auth { display: inline-block; }
  .logo__text span { display: none; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .gnb, .header__cta { display: none; }
  .nav-toggle { display: block; }

  .gnb.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px 16px 18px; box-shadow: var(--shadow-lg);
  }
  .gnb.is-open a { padding: 14px 12px; font-size: 16.5px; border-radius: 10px; }

  .why__cards { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; gap: 34px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .step:not(:last-child)::after { display: none; }
  .location { grid-template-columns: 1fr; }
  .strip__list { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .strip__list li:nth-child(2) { border-right: 0; }

  /* 모바일 하단 고정 CTA */
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(16, 38, 92, .12);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
  }
  .mobile-bar a {
    height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    font-size: 16px; font-weight: 800;
  }
  .mobile-bar a svg { width: 19px; height: 19px; }
  .mobile-bar .call { background: var(--orange); color: #fff; }
  .mobile-bar .kakao { background: #fee500; color: #3c1e1e; }
  body { padding-bottom: 76px; }
  .to-top { bottom: 90px; right: 16px; }
}

@media (max-width: 720px) {
  .feature__list { grid-template-columns: repeat(2, 1fr); }
  .items__list { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 60px 0 72px; }
  .hero__btns .btn { flex: 1 1 100%; }

  .compare__head > div, .compare__row > div { padding: 14px 10px; font-size: 14px; }
  .compare__head > div { font-size: 15px; }
  .compare__row .label { font-size: 14px; }

  .location__info { padding: 26px 20px; }
  .faq-item__q { padding: 18px; font-size: 15.5px; }
  .faq-item__a p { padding: 0 18px 20px 58px; font-size: 15px; }
  .footer__top { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 460px) {
  .items__list { grid-template-columns: 1fr; }
  .feature__list { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero__price b { font-size: 26px; }
}

/* =========================================================
   홍보물(포스터) 이미지 활용
   ---------------------------------------------------------
   /assets/images/poster.jpg  한 장을 CSS 스프라이트처럼 잘라
   히어로 · 보관품목 · 사이즈 · 약도 · 홍보물 섹션에 재사용한다.

   · 파일이 없으면 <html> 에 .has-poster 가 붙지 않아
     기존 SVG 아이콘 화면이 그대로 유지된다. (깨진 이미지 없음)
   · 잘리는 위치가 어긋나면 아래 background-position / -size 만 손보면 된다.
     기준 원본 크기 : 1061 × 1500
   ========================================================= */
:root {
  --poster: url("/assets/images/poster.jpg");
}
[hidden] { display: none !important; }

/* ---------- 1. 히어로 배경 텍스처 ---------- */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: var(--poster) no-repeat 72% 22% / auto 230%;
  opacity: 0; transition: opacity .8s ease;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(100deg, transparent 20%, rgba(0,0,0,.85) 72%, #000 100%);
          mask-image: linear-gradient(100deg, transparent 20%, rgba(0,0,0,.85) 72%, #000 100%);
}
.has-poster .hero::before { opacity: .22; }

/* ---------- 2. 보관 품목 썸네일 ----------
   → 포스터 대신 개별 파일(item-1.jpg ~ item-5.jpg)을 쓴다.
      「보관 품목」 섹션 참고. 포스터에서 다시 잘라내려면
      assets/images/make-items.sh 를 실행하면 같은 파일명으로 덮어쓴다. */

/* ---------- 3. 사이즈 카드 사진 (포스터 컨테이너 3컷) ---------- */
.has-poster .plan__box {
  max-width: 100%; aspect-ratio: 125 / 41;   /* 250 x 82 크롭 비율 */
  background: var(--poster) no-repeat;
  background-size: 424.4% 1829.3%;           /* 1061/250 , 1500/82 */
  border: 1px solid var(--line);
}
.has-poster .plan__box svg { display: none; }
.has-poster .plans .plan:nth-child(1) .plan__box { background-position: 9.25% 88.01%; }
.has-poster .plans .plan:nth-child(2) .plan__box { background-position: 49.69% 88.01%; }
.has-poster .plans .plan:nth-child(3) .plan__box { background-position: 90.14% 88.01%; }

/* ---------- 4. 오시는 길 약도 (포스터 지도 컷) ---------- */
.location__map-photo { display: none; }
.has-poster .location__map {
  display: block; padding: 16px; background: #fff;
}
.has-poster .location__map-photo {
  display: block; aspect-ratio: 77 / 79;     /* 385 x 395 크롭 비율 */
  background: var(--poster) no-repeat;
  background-size: 275.6% 379.8%;            /* 1061/385 , 1500/395 */
  background-position: 6.66% 46.33%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.has-poster .location__map-card { margin-top: 20px; }

/* ---------- 5. 홍보물 섹션 ---------- */
.poster-sec { display: none; }
.has-poster .poster-sec { display: block; }

.poster {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: 36px; align-items: start;
}
.poster__frame {
  display: block; width: 100%; padding: 0; position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.poster__frame:hover { transform: translateY(-4px); }
.poster__frame img { width: 100%; height: auto; }
.poster__zoom {
  position: absolute; right: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(10, 27, 69, .82); color: #fff;
  font-size: 14px; font-weight: 700;
  backdrop-filter: blur(6px);
}
.poster__zoom svg { width: 16px; height: 16px; }

.poster__side {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow); position: sticky; top: calc(var(--header-h) + 20px);
}
.poster__side h3 { font-size: 20px; font-weight: 800; color: var(--navy-900); }
.poster__side > p { margin-top: 8px; font-size: 14.5px; color: var(--text-sub); }
.poster__keys { display: grid; gap: 10px; margin: 22px 0 24px; }
.poster__keys li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 12px;
  background: var(--bg-soft); border: 1px solid var(--line);
}
.poster__keys svg { width: 18px; height: 18px; color: var(--orange); flex: none; }
.poster__keys b { font-size: 15px; font-weight: 800; color: var(--navy-900); }
.poster__keys span { font-size: 13.5px; color: var(--text-sub); display: block; font-weight: 600; }
.poster__side .btn { width: 100%; margin-top: 10px; }

/* ---------- 6. 라이트박스 ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6, 15, 38, .92);
  display: none; place-items: center;
  padding: 24px; overflow: auto;
  backdrop-filter: blur(3px);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(100%, 820px); height: auto; margin: auto;
  border-radius: 12px; box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}
.lightbox__close {
  position: fixed; top: 18px; right: 18px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); color: #fff;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
}
.lightbox__close:hover { background: rgba(255, 255, 255, .26); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__save {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 2;
  padding: 12px 22px; border-radius: 999px;
  background: var(--orange); color: #fff; font-size: 15px; font-weight: 800;
  box-shadow: 0 10px 26px rgba(249, 115, 22, .45);
}
body.is-locked { overflow: hidden; }

@media (max-width: 900px) {
  .poster { grid-template-columns: 1fr; gap: 26px; }
  .poster__side { position: static; }
  .has-poster .hero::before {
    opacity: .16;
    -webkit-mask-image: linear-gradient(to bottom, transparent 8%, rgba(0,0,0,.9) 60%);
            mask-image: linear-gradient(to bottom, transparent 8%, rgba(0,0,0,.9) 60%);
  }
}
