/* ============================================================
   base.css — 랜딩 디자인 시스템 (실제 v7 라이브 CSS 결합본)
   로드 순서대로 합침: landing-v2 → landing-v3 → landing-v5 → landing-v7
   --------------------------------------------------------------
   ★ 톤 바꾸기: 아래 :root 변수만 교체하면 전체 색이 바뀐다.
     - 메인 디자인 토큰(v3):  --v3-accent(포인트) / --v3-bg(배경) / --v3-text(글자)
     - 폼 디자인 토큰(v2):    --color-accent / --color-bg / --color-text
       (단계형 폼 step-form.html 은 v2 토큰을 쓰므로 폼 색도 바꾸려면 여기 수정)
   ★ 폰트: Playfair Display(영문 라벨) / Noto Serif KR(제목) / Pretendard(본문)
   ★ body 에 class="has-v3 has-v7" 를 줘야 v7 오버라이드가 적용된다.
   ============================================================ */


/* ===== landing-v2.css ===== */
/* ============================================================
   ROI STUDIO Landing v2
   디자인 토큰: 아이보리 + 샴페인골드 / Playfair + Pretendard
   ============================================================ */

.br-mobile { display: none; }
@media (max-width: 768px) {
  .br-mobile { display: inline; }
}

:root {
  --color-bg:        #faf8f5;
  --color-bg-alt:    #ffffff;
  --color-text:      #1a1a1a;
  --color-text-sub:  #707070;
  --color-accent:    #b8936a;
  --color-line:      #e5e0d8;

  --font-heading: 'Playfair Display', 'Noto Serif KR', serif;
  --font-body:    'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ls-caps:      0.15em;

  --space-section: clamp(4rem, 10vw, 8rem);
  --space-block:   clamp(2rem, 5vw, 4rem);
  --container-max: 1280px;
}

/* Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { padding: 0; }
[hidden] { display: none !important; }

/* Layout ----------------------------------------------------- */
.v2-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.v2-container-narrow {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header ----------------------------------------------------- */
.v2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
}
.v2-header .v2-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.v2-logo {
  display: inline-flex;
  align-items: center;
  color: var(--color-text);
}
.v2-logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .v2-logo img { height: 30px; }
}
.v2-header-cta {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.v2-header-cta:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
@media (max-width: 640px) {
  .v2-header-cta { font-size: 13px; }
}

/* Buttons ---------------------------------------------------- */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}
.v2-btn-primary {
  background: #fff5f3;
  color: #1a1a1a;
  border: 1px solid #d4a5a5;
  border-radius: 999px;
  padding: 14px 36px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.v2-btn-primary:hover {
  background: #d4a5a5;
  color: #fff;
  border-color: #d4a5a5;
}
.v2-btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.v2-btn-outline:hover {
  background: var(--color-text);
  color: var(--color-bg-alt);
}

/* Section common --------------------------------------------- */
.v2-section { padding: var(--space-section) 0; }
.v2-section + .v2-section { border-top: 1px solid var(--color-line); }
.v2-section-head { margin-bottom: var(--space-block); }
.v2-section-head-center { text-align: center; }
.v2-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.v2-section-lede {
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-sub);
  margin: 0 0 16px;
}
.v2-section-lede:last-child { margin-bottom: 0; }

/* Hero ------------------------------------------------------- */
.v2-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  max-height: 1000px;
  overflow: hidden;
}
.v2-hero-image { position: absolute; inset: 0; }
.v2-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: none;
}
.v2-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.65) 80%, rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
}
.v2-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 10vh, 100px);
  z-index: 1;
}
.v2-hero-content .v2-container-narrow {
  text-align: center;
}
.v2-hero-headline .hero-mobile { display: none; }
.v2-hero-headline .hero-pc { display: inline; }
@media (max-width: 768px) {
  .v2-hero-headline .hero-mobile { display: inline; }
  .v2-hero-headline .hero-pc { display: none; }
}
.v2-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.35);
}
.v2-hero-sub {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,0.95);
  margin: 0 0 36px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.35);
}
.v2-hero-line { display: block; white-space: nowrap; }
@media (max-width: 768px) {
  .v2-hero-headline { font-size: clamp(1.2rem, 5.6vw, 1.8rem); line-height: 1.5; }
  .v2-hero-sub { font-size: 14.5px; line-height: 1.75; }
}
.v2-hero .v2-btn-primary {
  background: #fff5f3;
  color: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.7);
}
.v2-hero .v2-btn-primary:hover {
  background: #d4a5a5;
  color: #fff;
  border-color: #d4a5a5;
}
.v2-hero-cta-btn {
  font-size: 13.5px;
  padding: 10px 24px;
}

/* PC: 좌하단 코너 배치 (Jacquemus / Burberry 스타일) ---- */
@media (min-width: 769px) {
  .v2-hero-image img { object-position: center 22%; }
  .v2-hero-content {
    justify-content: flex-start;
    padding-bottom: clamp(44px, 6vh, 72px);
  }
  .v2-hero-content .v2-container-narrow {
    text-align: left;
    max-width: 580px;
    margin: 0;
    padding-left: clamp(40px, 6vw, 80px);
    padding-right: 24px;
  }
  .v2-hero-headline {
    font-size: clamp(2.2rem, 3.7vw, 2.95rem);
    line-height: 1.4;
  }
}

/* Mood Intro ------------------------------------------------- */
.v2-mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.v2-mood-tile { margin: 0; }
.v2-mood-tile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
@media (max-width: 640px) {
  .v2-mood-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* Empathy ---------------------------------------------------- */
.v2-empathy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  margin-bottom: 64px;
}
.v2-empathy-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 0;
}
.v2-empathy-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v2-empathy-bubbles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v2-empathy-bubble {
  position: relative;
  background: #f5f1ea;
  padding: 22px 28px;
  border-radius: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  align-self: flex-start;
  max-width: 92%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.v2-empathy-bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.v2-empathy-bubble p { margin: 0; }
.v2-highlight {
  position: relative;
  background: none;
  color: inherit;
  font-weight: 500;
  display: inline-block;
}
.v2-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #d4a5a5;
  border-radius: 2px;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}
.v2-empathy-bubble.is-visible .v2-highlight::after,
.v2-mood-intro.is-visible .v2-highlight::after {
  width: 100%;
}
.v2-mood-intro .v2-highlight:nth-of-type(1)::after { transition-delay: 0.2s; }
.v2-mood-intro .v2-highlight:nth-of-type(2)::after { transition-delay: 0.5s; }
.v2-mood-intro .v2-highlight:nth-of-type(3)::after { transition-delay: 0.8s; }
.v2-empathy-bubble::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 26px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #f5f1ea transparent transparent;
}
.v2-empathy-bubble.is-right {
  align-self: flex-end;
}
.v2-empathy-bubble.is-right::before {
  left: auto;
  right: -10px;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #f5f1ea;
}
.v2-empathy-lede {
  margin: 64px auto 8px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.v2-empathy-lede.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.v2-empathy-conclusion {
  margin: 8px auto 0;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.85;
  color: var(--color-text-sub);
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.v2-empathy-conclusion.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.v2-empathy-conclusion strong { font-weight: 600; }
@media (max-width: 768px) {
  .v2-empathy-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v2-empathy-photo { order: 2; position: static; overflow: visible; }
  .v2-empathy-photo img { position: static; aspect-ratio: 3 / 4; height: auto; }
  .v2-empathy-bubbles { order: 1; }
  .v2-empathy-bubble { max-width: 85%; }
}
.v2-empathy-note {
  margin-top: 80px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-accent);
}
.v2-empathy-note strong {
  font-weight: 600;
}

/* Portfolio (6 moods) --------------------------------------- */
.v2-mood-block { margin-top: var(--space-block); }
.v2-mood-block:first-of-type { margin-top: var(--space-block); }
.v2-mood-head { text-align: center; margin-bottom: 32px; }
.v2-mood-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--color-accent);
  margin: 0 0 14px;
  padding: 6px 16px;
  text-transform: uppercase;
  border: 1px solid rgba(184, 147, 106, 0.4);
  border-radius: 999px;
  background: rgba(184, 147, 106, 0.06);
}
.v2-mood-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 500;
  margin: 0;
  color: var(--color-text);
}
.v2-mood-slider {
  position: relative;
}
.v2-mood-photos {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  cursor: grab;
  user-select: none;
}
.v2-mood-photos.is-grabbing {
  cursor: grabbing;
  scroll-snap-type: none;
}
.v2-mood-photos figure { cursor: zoom-in; }
.v2-mood-photos.is-grabbing figure { cursor: grabbing; }
.v2-mood-photos img { -webkit-user-drag: none; user-drag: none; pointer-events: none; }

/* Lightbox */
.v2-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  animation: v2LbFade 0.2s ease;
}
.v2-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.v2-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.v2-lightbox-close:hover { background: rgba(255, 255, 255, 0.12); }
@keyframes v2LbFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.v2-mood-photos::-webkit-scrollbar { display: none; }
.v2-mood-photos figure {
  margin: 0;
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f1ea;
}
.v2-mood-photos figure::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  filter: blur(28px) brightness(0.95);
  transform: scale(1.2);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.v2-mood-photos figure.is-landscape::before { opacity: 1; }
.v2-mood-photos img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v2-mood-photos figure.is-landscape img {
  object-fit: contain;
}
.v2-mood-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, opacity 0.2s;
}
.v2-mood-arrow:hover { background: #fff; }
.v2-mood-arrow-prev { left: -22px; }
.v2-mood-arrow-next { right: -22px; }
.v2-mood-arrow.is-disabled {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .v2-mood-photos { gap: 12px; overscroll-behavior-x: contain; }
  .v2-mood-photos figure { flex: 0 0 100%; scroll-snap-stop: always; }
  .v2-mood-arrow { display: none; }
  .v2-mood-title { font-size: 1.05rem; line-height: 1.45; }
}
.v2-mood-footer {
  text-align: center;
  margin-top: 64px;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: var(--color-text);
}

/* Method ----------------------------------------------------- */
.v2-method-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.v2-method-declaration {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--color-accent);
  margin: 0 0 32px;
}
.v2-method-detail {
  text-align: center;
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-sub);
  margin: 0 0 16px;
}

/* Distinction (로이만의 차별점) ------------------------------ */
.v2-distinction {
  background: var(--color-bg-alt);
}
.v2-distinction-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--color-accent);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.v2-distinction-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v2-distinction-item {
  position: relative;
  padding: 36px 30px 32px;
  background: #fdfaf6;
  border: 1px solid rgba(110, 90, 70, 0.16);
  border-radius: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 14px;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.v2-distinction-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(110, 90, 70, 0.08);
  border-color: rgba(110, 90, 70, 0.24);
}
.v2-distinction-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  align-self: center;
}
.v2-distinction-title {
  font-family: var(--font-heading);
  font-size: clamp(1.0625rem, 1.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: var(--color-text);
}
.v2-distinction-desc {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text-sub);
  margin: 0;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .v2-distinction-list { grid-template-columns: 1fr; gap: 14px; }
  .v2-distinction-item { padding: 28px 24px 24px; border-radius: 18px; }
}
.v2-method-list li { text-align: center; }
.v2-method-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: var(--ls-caps);
  color: var(--color-accent);
  margin-bottom: 20px;
}
.v2-method-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 20px;
}
.v2-method-list p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-sub);
  margin: 0;
}
@media (max-width: 768px) {
  .v2-method-list { grid-template-columns: 1fr; gap: 40px; }
}

/* Philosophy ------------------------------------------------- */
.v2-philosophy { background: var(--color-bg-alt); }
.v2-philosophy-body {
  text-align: center;
  font-size: 16px;
  line-height: 1.95;
  color: var(--color-text);
}
.v2-philosophy-body p { margin: 0 0 24px; }
.v2-philosophy-quote {
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-accent);
}

/* System ----------------------------------------------------- */
.v2-system-points {
  list-style: none;
  margin: 0 auto var(--space-block);
  padding: 0;
  max-width: 720px;
  text-align: center;
}
.v2-system-points li {
  font-size: 16px;
  line-height: 1.85;
  padding: 18px 0;
  border-top: 1px solid var(--color-line);
}
.v2-system-points li:last-child { border-bottom: 1px solid var(--color-line); }
.v2-system-visual { margin: var(--space-block) 0 0; }
.v2-system-visual img { width: 100%; }

/* Locations -------------------------------------------------- */
.v2-locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.v2-location {
  background: var(--color-bg-alt);
  padding: 40px 32px;
  border: 1px solid var(--color-line);
}
.v2-location-tag {
  font-size: 12px;
  letter-spacing: var(--ls-caps);
  color: var(--color-accent);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.v2-location-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.4;
}
.v2-location p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-text-sub);
  margin: 0 0 24px;
}
.v2-location figure { margin: 0; }
.v2-location img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.v2-locations-quote {
  margin: var(--space-block) 0 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-accent);
}
@media (max-width: 768px) {
  .v2-locations-grid { grid-template-columns: 1fr; }
}

/* Reviews ---------------------------------------------------- */
.v2-reviews {
  background: var(--color-bg-alt);
  padding-top: calc(var(--space-section) + 40px);
  padding-bottom: calc(var(--space-section) + 40px);
}
.v2-reviews .v2-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-accent);
}
.v2-reviews .v2-section-head { margin-bottom: calc(var(--space-block) + 24px); }
.v2-reviews-slider {
  position: relative;
}
.v2-reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 28px) / 2);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 4px;
  padding: 4px 4px 28px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.v2-reviews-grid::-webkit-scrollbar { display: none; }
.v2-review { scroll-snap-align: start; }
.v2-reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(110, 90, 70, 0.2);
  color: var(--color-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(110, 90, 70, 0.1);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
  font-family: inherit;
}
.v2-reviews-arrow:hover { transform: translateY(-50%) scale(1.06); }
.v2-reviews-arrow.is-disabled { opacity: 0; pointer-events: none; }
.v2-reviews-arrow-prev { left: -22px; }
.v2-reviews-arrow-next { right: -22px; }
.v2-reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.v2-reviews-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(110, 90, 70, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}
.v2-reviews-dot.is-active {
  background: var(--color-accent);
  width: 22px;
  border-radius: 4px;
}
.v2-review {
  margin: 0;
  padding: 52px 40px 40px;
  background: #fdfaf6;
  border: 1px solid rgba(110, 90, 70, 0.18);
  border-radius: 28px;
  position: relative;
  box-shadow: 0 4px 18px rgba(110, 90, 70, 0.06), 0 1px 3px rgba(110, 90, 70, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}
.v2-review:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(110, 90, 70, 0.1), 0 4px 10px rgba(110, 90, 70, 0.05);
  border-color: rgba(110, 90, 70, 0.28);
}
.v2-review::before {
  content: '\201C';
  position: absolute;
  top: 22px;
  left: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.2;
  pointer-events: none;
}
.v2-review-body {
  font-size: 15px;
  line-height: 1.95;
  margin: 0;
  color: var(--color-text);
  white-space: pre-line;
  letter-spacing: -0.005em;
  word-break: keep-all;
}
.v2-reviews-note {
  margin: 32px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-sub);
}
@media (max-width: 768px) {
  .v2-reviews-grid { grid-auto-columns: 100%; gap: 18px; padding: 4px 4px 22px; }
  .v2-review { padding: 44px 28px 32px; border-radius: 22px; }
  .v2-review::before { top: 18px; left: 22px; font-size: 56px; }
  .v2-review-body { font-size: 14px; line-height: 1.9; }
  .v2-reviews-arrow { display: none; }
}

/* Story Teaser ----------------------------------------------- */
.v2-story-body {
  text-align: center;
  font-size: 16px;
  line-height: 1.95;
  color: var(--color-text);
}
.v2-story-body p { margin: 0 0 24px; }
.v2-story-body strong {
  font-weight: 500;
  color: var(--color-accent);
}
.v2-story-quote {
  margin: 40px 0 0;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-accent);
}
.v2-story-actions { margin-top: 48px; text-align: center; }

/* Brand Story — 폴라로이드 갤러리 */
.v2-story-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 64px auto 0;
  padding: 24px 0;
}
.v2-story-photo {
  width: 220px;
  margin: 0;
  background: #fff;
  padding: 14px 14px 44px;
  box-shadow: 0 14px 36px rgba(40, 30, 20, 0.14);
  transition: transform 0.45s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s ease;
  cursor: pointer;
}
.v2-story-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  background: #f5f1ea;
}
.v2-story-photo-left   { transform: rotate(-7deg) translateY(10px); }
.v2-story-photo-center { transform: rotate(2deg);  z-index: 1; }
.v2-story-photo-right  { transform: rotate(6deg)  translateY(14px); }
.v2-story-photo:hover {
  transform: rotate(0deg) translateY(-6px);
  z-index: 2;
  box-shadow: 0 22px 50px rgba(40, 30, 20, 0.22);
}
@media (max-width: 768px) {
  .v2-story-gallery { gap: 8px; margin-top: 48px; padding: 16px 0; }
  .v2-story-photo { width: 28vw; max-width: 130px; padding: 8px 8px 24px; }
  .v2-story-photo-left   { transform: rotate(-6deg) translateY(6px); }
  .v2-story-photo-center { transform: rotate(2deg); }
  .v2-story-photo-right  { transform: rotate(5deg)  translateY(8px); }
}

/* Final CTA + Form ------------------------------------------ */
.v2-cta { background: var(--color-bg-alt); }
.v2-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  padding: 40px 32px;
}
.v2-form-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.v2-form-progress-bar {
  flex: 1;
  height: 2px;
  background: var(--color-line);
  position: relative;
  display: block;
}
.v2-form-progress-fill {
  display: block;
  height: 100%;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.v2-form-progress-text {
  font-size: 12px;
  color: var(--color-text-sub);
  letter-spacing: var(--ls-caps);
  white-space: nowrap;
}
.v2-form-step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 24px;
  line-height: 1.4;
  word-break: keep-all;
}
.v2-form-step-hint {
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-sub);
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 8px;
}
.v2-form-step-hint-final {
  color: #e0218a;
  font-size: 14px;
  font-weight: 500;
}
.v2-form-field { margin-bottom: 20px; }
.v2-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text);
  letter-spacing: 0.02em;
}
.v2-form-field input[type="text"],
.v2-form-field input[type="tel"],
.v2-form-field input[type="email"],
.v2-form-field input[type="date"],
.v2-form-field input[type="month"],
.v2-form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: var(--color-bg-alt);
  font: inherit;
  color: var(--color-text);
  transition: border-color 0.2s;
}
.v2-form-field input:focus,
.v2-form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.v2-form-field textarea { resize: vertical; min-height: 96px; }
.v2-form-field input[type="date"] {
  cursor: pointer;
  padding: 16px 16px 16px 48px;
  font-size: 15px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
  background-repeat: no-repeat;
  background-position: 14px center;
}
.v2-form-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.5;
}
.v2-form-field input[type="date"]:hover {
  border-color: var(--color-accent);
}

.v2-form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-sub);
  cursor: pointer;
}
.v2-form-checkbox input { margin: 0; }

.v2-form-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.v2-form-chips label { cursor: pointer; position: relative; }
.v2-form-chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.v2-form-chips span {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--color-line);
  background: var(--color-bg-alt);
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.v2-form-chips input:checked + span {
  background: var(--color-text);
  color: var(--color-bg-alt);
  border-color: var(--color-text);
}

.v2-form-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2-form-option {
  position: relative;
  cursor: pointer;
}
.v2-form-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.v2-form-option span {
  display: block;
  padding: 14px 18px;
  border: 1px solid var(--color-line);
  background: var(--color-bg-alt);
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.2s;
}
.v2-form-option:hover span { border-color: var(--color-accent); }
.v2-form-option input:checked + span {
  background: var(--color-text);
  color: var(--color-bg-alt);
  border-color: var(--color-text);
}
.v2-form-field .v2-form-options { margin-top: 4px; }
.v2-form-help {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-sub);
  margin: 16px 0 0;
}
.v2-form-error {
  margin: 16px 0 0;
  padding: 10px 14px;
  background: #fdf2f2;
  border-left: 3px solid #d96363;
  font-size: 13px;
  color: #b54545;
}

.v2-form-actions { margin-top: 32px; display: flex; }
.v2-form-actions .v2-btn { flex: 1; }
.v2-form-actions-split { gap: 12px; }

.v2-form-success { text-align: center; padding: 24px 0; }
.v2-form-success h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 12px;
}
.v2-form-success p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-sub);
  margin: 0 0 24px;
}

.v2-cta-note {
  margin: 32px auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.7;
}
.v2-cta-note strong {
  color: var(--color-text);
  font-weight: 500;
}

/* Sticky Mobile CTA ----------------------------------------- */
.v2-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 30;
  display: none;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  background: #fff5f3;
  color: #1a1a1a;
  border: 1px solid #d4a5a5;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease, color 0.2s ease;
}
.v2-sticky-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .v2-sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* Footer ---------------------------------------------------- */
.v2-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
}
.v2-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.v2-footer-logo {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin: 0 0 12px;
}
.v2-footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.v2-footer-heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--ls-caps);
  color: var(--color-accent);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.v2-footer-grid p {
  font-size: 14px;
  margin: 0 0 8px;
  color: rgba(255,255,255,0.85);
}
.v2-footer-grid a:hover { color: var(--color-accent); }
.v2-footer-copy {
  text-align: center;
  font-size: 12px;
  letter-spacing: var(--ls-caps);
  color: rgba(255,255,255,0.5);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0;
}
@media (max-width: 768px) {
  .v2-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== landing-v3.css ===== */
/* ============================================================
   Landing v3 — 전환형 랜딩 (Photo-led, High contrast)
   ============================================================ */

:root {
  --v3-bg:        #fbf8f4;
  --v3-bg-alt:    #ffffff;
  --v3-text:      #0e0e0e;
  --v3-text-sub:  #6b6b6b;
  --v3-line:      rgba(0,0,0,0.08);
  --v3-accent:    #7a2e2e;   /* 딥 와인 */
  --v3-accent-soft:#a85555;
  --v3-cream:     #fbf8f4;
  --v3-dark:      #181412;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--v3-bg);
  color: var(--v3-text);
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.v3-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.v3-container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* Header ----------------------------------------------------- */
.v3-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(251, 248, 244, 0.78);
  border-bottom: 1px solid var(--v3-line);
}
.v3-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: var(--v3-text);
}
.v3-header-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--v3-text);
  padding: 9px 18px;
  border: 1px solid var(--v3-accent);
  border-radius: 999px;
  color: var(--v3-accent);
  transition: background 0.2s, color 0.2s;
}
.v3-header-cta:hover { background: var(--v3-accent); color: #fff; }
.v3-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  margin-right: 20px;
}
.v3-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--v3-text);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.v3-nav a:hover { color: var(--v3-accent); }
@media (max-width: 640px) {
  .v3-header { padding: 12px 18px; }
  .v3-logo { font-size: 18px; }
  .v3-header-cta { font-size: 12px; padding: 7px 14px; }
  .v3-nav { margin-right: 12px; gap: 12px; }
  .v3-nav a { font-size: 13px; }
}

/* Buttons ---------------------------------------------------- */
.v3-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--v3-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(122, 46, 46, 0.28);
}
.v3-btn:hover { transform: translateY(-2px); background: #6b2424; box-shadow: 0 14px 30px rgba(122, 46, 46, 0.36); }
.v3-btn-arrow { width: 16px; height: 16px; stroke: currentColor; }
.v3-btn-ghost {
  background: transparent;
  color: var(--v3-accent);
  border: 1px solid var(--v3-accent);
  box-shadow: none;
}
.v3-btn-ghost:hover { background: var(--v3-accent); color: #fff; }

/* Section common --------------------------------------------- */
.v3-section { padding: 96px 0; }
.v3-section-head { text-align: center; margin-bottom: 56px; }
.v3-eyebrow {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--v3-accent);
  margin-bottom: 16px;
}
.v3-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.625rem, 3.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 18px;
  color: var(--v3-text);
  word-break: keep-all;
}
.v3-title strong { color: var(--v3-accent); font-weight: 500; }
.v3-lede {
  font-size: 17px;
  line-height: 1.85;
  color: var(--v3-text-sub);
  margin: 0;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .v3-section { padding: 64px 0; }
  .v3-section-head { margin-bottom: 36px; }
  .v3-lede { font-size: 15px; line-height: 1.8; }
}

/* Section 1 — Hero ------------------------------------------- */
.v3-hero {
  position: relative;
  padding: 120px 0 80px;
  background: var(--v3-cream);
  overflow: hidden;
}
.v3-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.v3-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.v3-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--v3-accent);
}
.v3-hero-eyebrow.v3-hero-eyebrow-mobile { display: none; }
.v3-hero-eyebrow-top {
  justify-content: center;
  margin: 0 0 40px;
}
.v3-hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  flex-shrink: 0;
}
.v3-hero-eyebrow-text {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.v3-hero-headline {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.1rem, 3.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--v3-text);
  word-break: keep-all;
}
.v3-hero-headline .v3-hl-line {
  display: block;
  white-space: nowrap;
}
.v3-hero-headline em {
  font-style: normal;
  color: var(--v3-accent);
  font-weight: 500;
}
.v3-hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.8;
  color: var(--v3-text-sub);
  margin: 0;
  word-break: keep-all;
}
.v3-hero-image {
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  background: #efe6df;
}
.v3-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.v3-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.v3-hero-note {
  margin: 0;
  font-size: 13px;
  color: var(--v3-text-sub);
  text-align: center;
}
.v3-hero-note strong { color: var(--v3-accent); font-weight: 600; }

.v3-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  align-self: center;
}
.v3-hero-note { align-self: center; }

@media (max-width: 900px) {
  .v3-hero { padding: 96px 0 56px; }
  .v3-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .v3-hero-copy {
    order: 2;
    text-align: center;
    align-items: center;
    gap: 32px;
  }
  .v3-hero-headline { padding: 14px 0; }
  .v3-hero-eyebrow { justify-content: center; }
  .v3-hero-eyebrow.v3-hero-eyebrow-mobile { display: flex; margin: 0 0 8px; justify-content: center; gap: 10px; }
  .v3-hero-eyebrow.v3-hero-eyebrow-mobile .v3-hero-eyebrow-line { width: 24px; }
  .v3-hero-eyebrow.v3-hero-eyebrow-mobile .v3-hero-eyebrow-text {
    font-size: 11px;
    letter-spacing: 0.22em;
    white-space: nowrap;
  }
  .v3-hero-eyebrow.v3-hero-eyebrow-pc { display: none; }
  .v3-hero-sub { display: none; }
  .v3-hero-image {
    order: 1;
    aspect-ratio: 5 / 4;
    max-height: 60vh;
  }
  .v3-hero-cta-row { justify-content: center; }
}

/* Section 2 — 고민 (Dark contrast) --------------------------- */
.v3-pain {
  background: var(--v3-dark);
  color: #f2ebe5;
  padding: 96px 0;
}
.v3-pain .v3-title {
  color: #fff;
  font-size: clamp(1.375rem, 3vw, 2.2rem);
  line-height: 1.45;
}
.v3-pain .v3-eyebrow { color: #d4a5a5; }
@media (max-width: 480px) {
  .v3-pain .v3-title { font-size: 1.25rem; line-height: 1.5; }
}
.v3-pain-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
  list-style: none;
  padding: 0;
}
.v3-pain-item {
  padding: 28px 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #f5ece5;
  position: relative;
  padding-left: 56px;
}
.v3-pain-item::before {
  content: '"';
  position: absolute;
  left: 22px;
  top: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #d4a5a5;
  line-height: 1;
  opacity: 0.7;
}
@media (max-width: 640px) {
  .v3-pain-list { grid-template-columns: 1fr; gap: 10px; margin-top: 36px; }
  .v3-pain-item { font-size: 15px; padding: 22px 22px 22px 50px; }
  .v3-pain-item::before { font-size: 30px; left: 20px; top: 14px; }
}

/* Section 3 — Standard --------------------------------------- */
.v3-standard {
  padding: 120px 0;
  background: var(--v3-bg-alt);
}
.v3-standard-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.v3-standard-stack .v3-section-head { margin-bottom: 40px; }
.v3-standard-stack .v3-title { font-size: clamp(1.75rem, 3.6vw, 2.6rem); margin: 0; }
.v3-standard-copy { margin-top: 40px; }
.v3-standard-keywords {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 560px) {
  .v3-standard-keywords { flex-direction: column; align-items: stretch; gap: 8px; }
  .v3-standard-keyword { width: 100%; text-align: center; }
}
.v3-standard-keyword {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  padding: 8px 18px;
  border: 1px solid var(--v3-accent);
  color: var(--v3-accent);
  border-radius: 999px;
}
.v3-standard-image {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 10;
  background: #efe6df;
}
.v3-standard-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .v3-standard { padding: 80px 0; }
  .v3-standard-image { aspect-ratio: 5 / 4; }
}

/* Section 4 — Portfolio (Tabbed moods) ----------------------- */
/* Location section ----------------------------------------- */
.v3-location { background: var(--v3-bg-alt); }
.v3-location-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
}
.v3-location-map iframe { display: block; }
.v3-location-info {
  text-align: center;
}
.v3-location-addr {
  font-size: 16px;
  font-weight: 500;
  color: var(--v3-text);
  margin: 0 0 20px;
  line-height: 1.6;
}
.v3-location-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .v3-location-map iframe { height: 320px; }
  .v3-location-addr { font-size: 14px; }
}

.v3-portfolio { background: var(--v3-bg); }
.v3-mood-more {
  margin-top: 40px;
  text-align: center;
}
.v3-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--v3-text);
  border: 1px solid var(--v3-text);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.v3-btn-outline:hover {
  background: var(--v3-text);
  color: #fff;
  transform: translateY(-2px);
}
.v3-btn-outline span { transition: transform 0.2s; }
.v3-btn-outline:hover span { transform: translateX(4px); }
.v3-mood-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 32px;
  flex-wrap: wrap;
}
.v3-mood-tab {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--v3-line);
  color: var(--v3-text-sub);
  border-radius: 999px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .v3-mood-tabs { flex-wrap: nowrap; gap: 5px; padding: 0; }
  .v3-mood-tab {
    flex: 1 1 0;
    min-width: 0;
    font-size: 10px;
    letter-spacing: 0.04em;
    padding: 8px 4px;
    text-align: center;
  }
}
@media (max-width: 360px) {
  .v3-mood-tab {
    font-size: 9px;
    letter-spacing: 0.02em;
    padding: 8px 2px;
  }
}
.v3-mood-tab:hover { color: var(--v3-text); border-color: rgba(0,0,0,0.2); }
.v3-mood-tab.is-active {
  background: var(--v3-text);
  color: #fff;
  border-color: var(--v3-text);
}
.v3-mood-panel {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.v3-mood-panel.is-active { display: grid; }
.v3-mood-panel figure {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #efe6df;
  aspect-ratio: 4 / 5;
}
.v3-mood-panel figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.v3-mood-panel figure:hover img { transform: scale(1.04); }
@media (min-width: 769px) {
  .v3-mood-panel { grid-template-columns: repeat(4, 1fr); }
}

/* Section 5 — 25년 신뢰 (Wide quote) ------------------------- */
.v3-trust {
  position: relative;
  padding: 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v3-dark);
  color: #fff;
  overflow: hidden;
}
.v3-trust-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}
.v3-trust-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.v3-trust-inner {
  position: relative;
  text-align: center;
  padding: 96px 24px;
  max-width: 720px;
}
.v3-trust-eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #d4a5a5;
  margin: 0 0 24px;
}
.v3-trust-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.v3-trust-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 24px;
  color: #fff;
}
.v3-trust-text {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  word-break: keep-all;
}

/* Section 6 — Locations -------------------------------------- */
.v3-places { background: var(--v3-bg-alt); }
.v3-places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.v3-place {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
}
.v3-place img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.v3-place:hover img { transform: scale(1.04); }
.v3-place-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 50%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #fff;
}
.v3-place-tag {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin: 0 0 8px;
  opacity: 0.85;
}
.v3-place-name {
  font-family: 'Noto Serif KR', serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
}
.v3-place-desc {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
}
@media (max-width: 720px) {
  .v3-places-grid { grid-template-columns: 1fr; gap: 14px; }
  .v3-place-overlay { padding: 22px; }
  .v3-place-name { font-size: 19px; }
}

/* Section 7 — Reviews ---------------------------------------- */
.v3-reviews { background: var(--v3-bg); }
.v3-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.v3-review {
  margin: 0;
  padding: 32px 28px 24px;
  background: var(--v3-bg-alt);
  border: 1px solid var(--v3-line);
  border-radius: 14px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.v3-review:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.05); transform: translateY(-2px); }
.v3-review-quote {
  font-family: 'Noto Serif KR', serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--v3-text);
  margin: 0 0 18px;
  word-break: keep-all;
}
.v3-review-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--v3-text-sub);
  margin: 0;
  display: none;
  white-space: pre-line;
  word-break: keep-all;
}
.v3-review.is-open .v3-review-body { display: block; margin-bottom: 14px; }
.v3-review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--v3-line);
  font-size: 13px;
  color: var(--v3-text-sub);
}
.v3-review-author { font-weight: 500; color: var(--v3-text); }
.v3-review-toggle {
  background: none;
  border: none;
  color: var(--v3-accent);
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  letter-spacing: -0.005em;
}
@media (max-width: 720px) {
  .v3-reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .v3-review-quote { font-size: 16px; }
}

/* Mid CTA banner --------------------------------------------- */
.v3-midcta {
  background: var(--v3-cream);
  text-align: center;
  padding: 80px 24px;
  border-top: 1px solid var(--v3-line);
  border-bottom: 1px solid var(--v3-line);
}
.v3-midcta-title {
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.0625rem, 2.6vw, 1.875rem);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 24px;
  color: var(--v3-text);
  word-break: keep-all;
}
.v3-midcta-title .v3-hl-line { display: block; white-space: nowrap; }
@media (max-width: 480px) {
  .v3-midcta { padding: 60px 12px; }
}

/* Submit loading spinner ------------------------------------- */
.v2-btn.is-loading {
  pointer-events: none;
  opacity: 0.9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.v2-btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: v2-spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes v2-spin {
  to { transform: rotate(360deg); }
}

/* Privacy consent ------------------------------------------- */
.v3-privacy {
  margin: 20px 0 8px;
  padding: 14px 16px;
  background: #fbf8f4;
  border: 1px solid var(--v3-line);
  border-radius: 10px;
}
.v3-privacy-label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  cursor: pointer;
  font-size: 14px;
  color: var(--v3-text);
  margin: 0;
}
.v3-privacy-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--v3-accent);
  flex-shrink: 0;
  cursor: pointer;
}
.v3-privacy-text { flex: 1; line-height: 1.5; }
.v3-privacy-req { color: #e5484d; font-weight: 700; font-size: 15px; line-height: 1; }
.v3-privacy-more {
  background: transparent;
  border: none;
  color: var(--v3-accent);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.v3-privacy-more:hover { color: var(--v3-text); }
.v3-privacy-detail {
  margin-top: 12px;
  padding: 14px 14px 12px;
  background: #fff;
  border: 1px solid var(--v3-line);
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--v3-text-sub);
}
.v3-privacy-detail p { margin: 0 0 6px; }
.v3-privacy-detail p:last-child { margin-bottom: 0; }
.v3-privacy-detail strong { color: var(--v3-text); font-weight: 600; margin-right: 4px; }
.v3-privacy-note { margin-top: 8px !important; font-size: 11.5px; color: #999; }

/* Section 8 — Consult form ----------------------------------- */
.v3-consult {
  background: var(--v3-bg-alt);
  padding: 96px 0;
}
.v3-consult-preface {
  text-align: center;
  margin-bottom: 48px;
}
.v3-consult-preface .v3-title {
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
}
.v3-consult-preface .v3-lede {
  max-width: 560px;
  margin: 16px auto 0;
}
.v3-consult-note {
  margin: 36px auto 0;
  max-width: 560px;
  text-align: center;
  font-size: 14px;
  color: var(--v3-text-sub);
  line-height: 1.7;
}
.v3-consult-note strong { color: var(--v3-accent); font-weight: 600; }

/* Footer ----------------------------------------------------- */
.v3-footer {
  background: var(--v3-dark);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 28px;
  font-size: 13px;
}
.v3-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}
.v3-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #fff;
  margin: 0 0 10px;
}
.v3-footer-tag { margin: 0; opacity: 0.7; line-height: 1.6; }
.v3-footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.v3-footer p { margin: 0 0 6px; line-height: 1.65; }
.v3-footer a:hover { color: #fff; }
.v3-footer-biz {
  margin: 40px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.65;
  word-break: keep-all;
}
.v3-footer-copy {
  margin: 6px 0 0;
  text-align: center;
  font-size: 12px;
  opacity: 0.5;
}
@media (max-width: 720px) {
  .v3-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Sticky mobile CTA ------------------------------------------ */
.v3-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 16px);
  z-index: 40;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--v3-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(122, 46, 46, 0.36);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.v3-sticky-cta > span { white-space: nowrap; }
.v3-sticky-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .v3-sticky-cta { display: inline-flex; }
  body.has-v3 { padding-bottom: 72px; }
}

/* ===== landing-v5.css ===== */
/* ============================================================
   landing-v5.css — v5 전용 오버라이드 (라이브 v3 영향 없음)
   히어로: 세로 중앙 정렬 (헤드라인 → 사진 → 서브불릿 → CTA)
   ============================================================ */

/* 가로 오버플로 차단 — 모바일에서 우측 빈 여백/좌우 스크롤 방지 (v5 전용, sticky 없음) */
html, body { overflow-x: clip; max-width: 100%; }

/* 히어로 세로 스택 */
.v3-hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  width: 100%;
}

/* 헤드라인 줄을 nowrap에서 해제 — 모바일 가로 오버플로 방지 (줄바꿈은 <br>로 유지) */
.v3-hero-stack .v3-hero-headline .v3-hl-line { white-space: normal; }

/* ── WORRIES (라이트 카드) 섹션 ────────────────────────────── */
.v5-worry { padding: clamp(72px, 10vh, 110px) 0; background: var(--v3-bg-alt); }
.v5-worry-list {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v5-worry-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 14px;
  padding: 22px 24px;
}
.v5-worry-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--v3-accent);
  margin-bottom: 10px;
}
.v5-worry-q {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--v3-text);
  word-break: keep-all;
}
.v5-worry-a {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--v3-text-sub);
  word-break: keep-all;
}
@media (max-width: 640px) {
  .v5-worry-list { gap: 10px; margin-top: 32px; }
  .v5-worry-card { padding: 20px 20px; }
}

/* CONCERNS 카드 — 인용부호 → 넘버링 */
.v3-pain-item::before { content: none !important; }
.v3-pain-item { padding: 28px 26px !important; }
.v3-pain-item p { margin: 0; }
.v5-pain-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #d4a5a5;
  margin-bottom: 14px;
}
/* CONCERNS 카드 키워드 강조 (다크 배경) */
.v3-pain-item strong { color: #e3b7b7; font-weight: 600; }
@media (max-width: 640px) {
  .v3-pain-item { padding: 22px 22px !important; }
}

/* 히어로 체크 pill */
.v5-hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.v5-hero-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--v3-accent);
  background: rgba(122, 46, 46, 0.07);
  border: 1px solid rgba(122, 46, 46, 0.18);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
}

/* 메인카피 위 리드 문구 */
.v5-hero-lead {
  margin: 0 0 -10px;
  font-size: clamp(14px, 1.4vw, 16px);
  letter-spacing: 0.02em;
  color: var(--v3-accent);
  font-weight: 500;
  word-break: keep-all;
}

/* 메인 사진 — 1080 x 1350 (4:5 세로) */
.v3-hero-stack .v3-hero-image {
  aspect-ratio: 1080 / 1350;
  width: 100%;
  max-width: 440px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 44px -20px rgba(58, 36, 24, 0.32);
}
/* 하단 주황색 선 잘라내기 (위 기준 정렬 + 살짝 확대) */
.v3-hero-stack .v3-hero-image img {
  height: 105%;
  object-fit: cover;
  object-position: center top;
}

/* 메인 이미지 A↔B 크로스페이드 순환 (A>B>A>B...) */
.v5-hero-fade { position: relative; }
.v5-hero-fade img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.v5-hero-fade-b {
  opacity: 0;
  animation: v5HeroFade 6s ease-in-out infinite;
}
@keyframes v5HeroFade {
  0%, 42%  { opacity: 0; }   /* A 노출 */
  50%, 92% { opacity: 1; }   /* B 노출 */
  100%     { opacity: 0; }   /* 다시 A */
}
@media (prefers-reduced-motion: reduce) {
  .v5-hero-fade-b { animation: none; }
}

/* 서브 카피 — 사진 아래 불릿 */
.v3-hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.v3-hero-points li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--v3-text-sub);
  word-break: keep-all;
}
.v3-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--v3-accent);
  opacity: 0.7;
}

/* ── EXPERIENCE (25년 기준) — 다크 + 숫자 강조 ─────────────── */
.v5-exp {
  padding: clamp(80px, 12vh, 140px) 0;
  background: var(--v3-dark);
  color: #f2ebe5;
  text-align: center;
}
.v5-exp-eyebrow { color: #d4a5a5; }
.v5-exp-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin: 18px 0 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}
.v5-exp-num span {
  font-size: clamp(1rem, 3vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #d4a5a5;
}
.v5-exp-lead {
  margin: 16px 0 0;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: rgba(242, 235, 229, 0.75);
}
.v5-exp-copy {
  max-width: 560px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v5-exp-copy p {
  margin: 0;
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: #f2ebe5;
  word-break: keep-all;
}

/* ── SPACES 오버레이 가독성 강화 ───────────────────────────── */
.v5-place-main .v3-place-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 72%, rgba(0,0,0,0.82) 100%);
}
.v5-place-main .v3-place-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  opacity: 1;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.v5-place-main .v3-place-name {
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.v5-place-main .v3-place-desc {
  opacity: 0.95;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ── SPACES (서울/제주) — 메인 + 썸네일 선택 ──────────────── */
.v5-places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.v5-place { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.v5-place-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
}
.v5-place-main img { width: 100%; height: 100%; object-fit: cover; }
.v5-place-thumbs {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}
.v5-place-thumbs::-webkit-scrollbar { display: none; }
.v5-place-thumb {
  flex: 0 0 auto;
  width: 64px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.v5-place-thumb img { width: 100%; height: 100%; object-fit: cover; }
.v5-place-thumb:hover { opacity: 0.85; }
.v5-place-thumb.is-active { opacity: 1; border-color: var(--v3-accent); }
@media (max-width: 720px) {
  .v5-places-grid { grid-template-columns: 1fr; gap: 32px; }
  .v5-place-thumb { width: 56px; }
}

/* ── REVIEWS 가로 캐러셀 (v4 이식) ────────────────────────── */
.v5-reviews { padding: 110px 0; background: var(--v3-bg-alt); }
.v5-reviews .v3-section-head { margin-bottom: 48px; }
.v5-reviews-trackwrap {
  position: relative; overflow: hidden; padding: 6px 0 8px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
}
.v5-reviews-track {
  display: flex; align-items: flex-start; gap: 16px; overflow-x: auto;
  padding: 0 20px; cursor: grab; scroll-behavior: auto; touch-action: pan-x pan-y;
  scrollbar-width: none; -ms-overflow-style: none; will-change: scroll-position;
}
@media (min-width: 768px) { .v5-reviews-track { padding: 0 40px; } }
.v5-reviews-track::-webkit-scrollbar { display: none; }
.v5-reviews-track.dragging { cursor: grabbing; }
.v5-reviews-track.dragging .v5-review { pointer-events: none; }
.v5-review {
  flex: 0 0 300px; background: #fff; border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.06); box-shadow: 0 14px 36px -22px rgba(58, 36, 24, 0.28);
  padding: 26px; display: flex; flex-direction: column;
}
@media (min-width: 768px) { .v5-review { flex-basis: 340px; padding: 30px; } }
.v5-review-stars { color: #F5A623; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.v5-review-quote {
  font-size: 17px; font-weight: 600; line-height: 1.5; letter-spacing: -.01em;
  margin: 0 0 14px; color: var(--v3-text); word-break: keep-all;
}
.v5-review-body {
  margin: 0; font-size: 14.5px; color: var(--v3-text-sub); line-height: 1.75; white-space: pre-line;
  max-height: 4.6em; overflow: hidden; position: relative; transition: max-height .4s ease;
}
.v5-review.is-open .v5-review-body { max-height: 1200px; }
.v5-review-body::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2.4em;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff); transition: opacity .3s;
}
.v5-review.is-open .v5-review-body::after { opacity: 0; }
.v5-review-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.v5-review-author { font-size: 13px; color: var(--v3-text-sub); }
.v5-review-toggle {
  background: none; border: none; color: var(--v3-accent); font-size: 13px;
  font-weight: 600; cursor: pointer; padding: 0;
}
@media (max-width: 768px) { .v5-reviews { padding: 72px 0; } }

/* ── PORTFOLIO 하단 안내 문구 ─────────────────────────────── */
.v5-portfolio-note {
  margin: 24px 0 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--v3-text-sub);
  opacity: 0.85;
  word-break: keep-all;
}

/* ── WHY IT MATTERS (필요) 섹션 ───────────────────────────── */
.v5-need {
  padding: 110px 0;
  background: var(--v3-cream);
  text-align: center;
}
.v5-need .v3-title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.45;
}
.v5-need-image {
  margin: 40px auto 0;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 22px 48px -22px rgba(58, 36, 24, 0.34);
}
.v5-need-image img { width: 100%; height: 100%; object-fit: cover; }

/* OUR STANDARD 이미지 1:1 (v5 전용 오버라이드) */
.v3-standard-image { aspect-ratio: 1 / 1; max-width: 560px; margin: 0 auto; }
.v5-need-copy {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.v5-need-copy p {
  margin: 0;
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.85;
  color: var(--v3-text-sub);
  word-break: keep-all;
}
.v5-need-copy em {
  font-style: normal;
  color: var(--v3-accent);
  font-weight: 500;
}
.v5-need-closing {
  margin-top: 8px !important;
  color: var(--v3-text) !important;
  font-weight: 500;
}

@media (max-width: 900px) {
  .v5-need { padding: 72px 0; }
  .v5-need-copy { margin-top: 32px; gap: 22px; }

  .v3-hero-stack { gap: 24px; }
  .v3-hero-headline { font-size: 1.45rem; }
  .v3-hero-points { gap: 6px; }
  .v3-hero-stack .v3-hero-image {
    order: 0;              /* v3 모바일의 order:1 무력화 — 이미지를 헤드라인 바로 아래로 */
    max-width: 360px;
    max-height: none;
  }
}

/* ===== landing-v7.css ===== */
/* ============================================================
   landing-v7.css — v7 전용 (v5와 동일 + 히어로만 풀폭 배너)
   이미지가 좌우로 꽉 차고 텍스트가 위에 오버레이. 가독성 강화.
   ============================================================ */

.v7-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;          /* 텍스트를 중하부로 */
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding: 0;                      /* v3-hero 패딩 무력화 */
  background: transparent;        /* v3-hero 배경 무력화 (영상이 채움) */
}

/* 배경 영상 — 좌우 꽉 차게, 그라데이션 없음 */
.v7-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.v7-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* 텍스트 영역 — 리드 줄이 영상 세로 중앙에 오도록 상단을 50%에 고정 */
.v7-hero-inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);   /* 블록 중앙을 50% 지점에 — 텍스트가 더 위로 */
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

/* 글자 묶음 — 박스/프레임 없이 레이아웃만 */
.v7-hero-panel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: #fff;
}
/* 텍스트 뒤 안개처럼 번지는 검은 그림자 (박스 없음) */
.v7-hero-panel .v7-hero-lead,
.v7-hero-panel .v7-hero-headline {
  text-shadow:
    0 0 18px rgba(0, 0, 0, 0.95),
    0 0 40px rgba(0, 0, 0, 0.75),
    0 2px 8px rgba(0, 0, 0, 0.8);
}

/* OUR STANDARD 하단으로 이동한 pill 간격 */
.v7-std-pills { margin-top: 32px; }

/* ── v7 본문 통일: 색(검정) + 폰트(프리텐다드) ───────────────
   소제목/헤딩은 그대로, 본문만 프리텐다드 + 검은색.            */
body.has-v7 .v5-need-copy p,
body.has-v7 .v3-lede,
body.has-v7 .v5-worry-a,
body.has-v7 .v5-review-body {
  color: var(--v3-text);
}
/* 명조(Noto Serif) 본문 → 프리텐다드로 통일 */
body.has-v7 .v5-need-copy p,
body.has-v7 .v5-exp-copy p {
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* 상담 폼 섹션 — 위 섹션과 구분 (웜 로즈 틴트 + 상단 구분선) */
body.has-v7 .v3-consult {
  background: #f4ebe8;
  border-top: 1px solid rgba(122, 46, 46, 0.16);
}

/* 폼 버튼 줄바꿈 방지 */
body.has-v7 .v2-btn { white-space: nowrap; }
body.has-v7 .v2-form-actions-split .v2-btn {
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14.5px;
}

/* 이미지·영상 저장 방지 (드래그/선택) */
body.has-v7 img,
body.has-v7 video {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
.v7-hero-lead {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fbeaea;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  word-break: keep-all;
}
.v7-hero-headline {
  margin: 0;
  font-family: 'Noto Serif KR', serif;
  font-size: clamp(1.5rem, 4.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
  word-break: keep-all;
}
.v7-hl-line { display: block; }
.v7-hero-headline em {
  font-style: normal;
  color: #f3d2d2;
}

/* 체크 pill — 어두운 배경용 */
.v7-hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.v7-hero-pill {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.v7-hero-cta-row { margin-top: 10px; }

@media (max-width: 768px) {
  .v7-hero-inner { padding: 110px 22px 64px; gap: 18px; }
}

/* ============================================================
   PC 셸 — 모바일 폭(390px) iframe로 실제 모바일 화면을 그대로 표시
   (iframe 내부는 뷰포트=390px라 모바일 미디어쿼리가 적용됨 = S24 동일)
   ============================================================ */
.v7-shell-html,
.v7-shell-html body {
  margin: 0;
  height: 100%;
  background: #e7e1d8;
}
.v7-shell-html body {
  display: flex;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
}
.v7-shell-html body > *:not(.v7-shell-frame) { display: none !important; }
.v7-shell-frame {
  width: 390px;
  max-width: 100vw;
  height: 100vh;
  border: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.12);
  background: #fff;
  display: block;
}
