/* ─── Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #0D0D0D;
  color: #E8E0D4;
  font-family: Inter, "Pretendard Variable", system-ui, sans-serif;
}

/* ─── Skip link ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  background: #C9A96E;
  color: #0D0D0D;
  padding: 8px 16px;
  font-size: 13px;
  z-index: 9999;
}

/* ─── Header ───────────────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: transparent;
  transition: background 0.5s ease, backdrop-filter 0.5s ease;
  z-index: 50;
}
header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(8px);
}

.logo {
  font-size: 20px;
  letter-spacing: 1.6px;
  color: #E8E0D4;
  text-decoration: none;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}
.logo-img {
  display: block;
  height: 31px;
  width: auto;
}
@media (max-width: 767px) {
  .logo-img { height: 29px; }
}

/* ─── Desktop Nav ──────────────────────────────────────── */
.nav-desktop {
  display: none;
}
@media (min-width: 768px) {
  .nav-desktop { display: flex; align-items: center; gap: 32px; list-style: none; }
}

.nav-item {
  position: relative;
}

/* 드롭다운과의 갭을 hover 영역으로 채워 메뉴가 닫히지 않도록 함 */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 20px;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: #E8E0D4;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav-link:hover { color: #C9A96E; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  background: rgba(13, 13, 13, 0.97);
  border: 1px solid rgba(201, 169, 110, 0.2);
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #E8E0D4;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.dropdown a:hover { color: #C9A96E; background: rgba(201,169,110,0.06); }

/* ─── Hamburger ────────────────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #E8E0D4;
  transition: all 0.3s;
}

/* ─── Mobile Menu Dialog ───────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #0D0D0D;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 40px;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-top: 4px;
}
.close-btn {
  background: none;
  border: none;
  color: #E8E0D4;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-list { list-style: none; }
.mobile-accordion-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(232,224,212,0.1);
  color: #E8E0D4;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Inter, system-ui, sans-serif;
}
.mobile-accordion-btn .arrow { transition: transform 0.3s; }
.mobile-accordion-btn.expanded .arrow { transform: rotate(180deg); }
.mobile-sub-list {
  list-style: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.mobile-sub-list.open { max-height: 300px; }
.mobile-sub-list a {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 1.2px;
  color: rgba(232,224,212,0.7);
  text-decoration: none;
  text-transform: uppercase;
}
.mobile-sub-list a:hover { color: #C9A96E; }
.mobile-direct-link {
  display: block;
  border-bottom: 1px solid rgba(232,224,212,0.1);
  color: #E8E0D4;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 20px 0;
  text-decoration: none;
}
.mobile-direct-link:hover { color: #C9A96E; }

/* ─── Buttons ──────────────────────────────────────────── */
.btn-gold {
  background: transparent;
  color: #C9A96E;
  border: 1px solid #C9A96E;
  padding: 14px 40px;
  font-size: 11px;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.4s ease;
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  display: inline-block;
  text-decoration: none;
}
.btn-gold:hover { background: #C9A96E; color: #0D0D0D; }
.btn-quiet {
  color: rgba(232,224,212,0.72);
  border-bottom: 1px solid rgba(232,224,212,0.32);
  padding: 12px 0;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s;
}
.btn-quiet:hover {
  color: #C9A96E;
  border-color: #C9A96E;
}

/* ─── Eyebrow label ────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  color: #C9A96E;
  display: block;
  margin-bottom: 20px;
}

/* ─── Sections ─────────────────────────────────────────── */
.py-section { padding-top: 96px; padding-bottom: 96px; }
@media (min-width: 1024px) {
  .py-section { padding-top: 160px; padding-bottom: 160px; }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1a1a1a;
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  background: #0D0D0D url("images/styling-1.jpg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.3) 50%, rgba(13,13,13,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 16px 80px;
}
@media (min-width: 768px) { .hero-content { padding: 0 32px 80px; } }

.hero-title {
  font-family: "Cormorant Garamond", "Noto Serif KR", Georgia, serif;
  font-size: 56px;
  font-weight: 300;
  color: #E8E0D4;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .hero-title { font-size: 120px; letter-spacing: -0.03em; }
}
.hero-title span {
  display: block;
  overflow: hidden;
}
.hero-title span em {
  display: block;
  font-style: normal;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-title span em.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-lead {
  margin-top: 28px;
  max-width: 620px;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 300;
  line-height: 1.35;
  color: #E8E0D4;
  word-break: keep-all;
}
.hero-meta {
  margin-top: 18px;
  color: rgba(232,224,212,0.66);
  font-size: 14px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(232,224,212,0.5);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: #C9A96E;
  transform-origin: top;
  animation: drawLineVert 1.2s ease-in-out infinite alternate;
}
@keyframes drawLineVert {
  from { transform: scaleY(0.2); opacity: 0.3; }
  to   { transform: scaleY(1);   opacity: 1;   }
}

/* ─── Philosophy ───────────────────────────────────────── */
.philosophy { background: #1C1410; }
.philosophy-text {
  font-family: "Cormorant Garamond", "Noto Serif KR", Georgia, serif;
  font-size: clamp(18px, 2.6vw, 34px);
  font-weight: 300;
  line-height: 1.65;
  color: #E8E0D4;
  letter-spacing: -0.015em;
  word-break: keep-all;
}
.philosophy-text .line {
  display: block;
  white-space: nowrap;
}
.philosophy-sub {
  font-size: 16px;
  color: rgba(232,224,212,0.6);
  margin-top: 24px;
  font-style: italic;
}
.philosophy-sig {
  font-size: 14px;
  color: rgba(232,224,212,0.4);
  margin-top: 12px;
  letter-spacing: 1px;
}

/* ─── Concern Routes ───────────────────────────────────── */
.concern-section {
  background: #0D0D0D;
}
.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-title {
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.35;
  color: #E8E0D4;
  word-break: keep-all;
}
.concern-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .concern-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
}
.concern-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(232,224,212,0.1);
  background: rgba(232,224,212,0.025);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.concern-card:hover {
  border-color: rgba(201,169,110,0.55);
  background: rgba(201,169,110,0.06);
  transform: translateY(-4px);
}
.concern-no {
  color: #C9A96E;
  font-size: 11px;
  letter-spacing: 1.6px;
}
.concern-card h3 {
  margin-top: auto;
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 300;
  color: #E8E0D4;
  word-break: keep-all;
}
.concern-card p {
  margin-top: 18px;
  color: rgba(232,224,212,0.58);
  font-size: 13px;
  line-height: 1.75;
  word-break: keep-all;
}

/* ─── Service Cards ────────────────────────────────────── */
.cards-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 24px;
  padding-left: 16px;
  padding-right: 16px;
  cursor: grab;
  user-select: none;
}
@media (min-width: 768px) {
  .cards-track { gap: 24px; padding-left: 32px; padding-right: 32px; }
}
.cards-track::-webkit-scrollbar { display: none; }
.cards-track.grabbing { cursor: grabbing; }

.service-card {
  flex-shrink: 0;
  position: relative;
  width: 80vw;
  aspect-ratio: 4/5;
  max-height: calc(100vh - 12rem);
  overflow: hidden;
  scroll-snap-align: start;
  text-decoration: none;
  display: block;
}
@media (min-width: 768px) { .service-card { width: 60vw; } }
@media (min-width: 1024px) { .service-card { width: 40vw; } }

/* ─── Pin-scroll Section (Service) ─────────────────────── */
.service-pin { position: relative; }
.service-pin .pin-inner { padding: 96px 0; }
.service-pin .pin-heading { max-width: 1280px; margin: 0 auto; padding-left: 16px; padding-right: 16px; }

@media (min-width: 1024px) {
  .service-pin { height: 400vh; }
  .service-pin .pin-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 0;
  }
  .service-pin .pin-heading { margin-bottom: 40px; padding-left: 5vw; }
  .service-pin .cards-track {
    overflow: visible;
    scroll-snap-type: none;
    padding: 0 5vw;
    gap: 32px;
    cursor: default;
    will-change: transform;
  }
  .service-pin .service-card {
    width: 34vw;
    aspect-ratio: 3/4;
    max-height: 68vh;
  }
}

.card-placeholder {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.card-placeholder-1 { background: #1a1210 url("images/look-cut-longstraight.jpg") center/cover no-repeat; }
.card-placeholder-2 { background: #0d1220 url("images/look-color-toneup.jpg") center/cover no-repeat; }
.card-placeholder-3 { background: #0d1a0d url("images/scalp-care.jpg") center/cover no-repeat; }
.card-placeholder-4 { background: #1a0d1a url("images/head-spa-carbon.jpg") center/cover no-repeat; }

.service-card:hover .card-placeholder { transform: scale(1.05); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.2) 60%, transparent 100%);
}
.card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
}
.card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: #E8E0D4;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.card-desc {
  font-size: 13px;
  color: rgba(232,224,212,0.65);
  line-height: 1.6;
}
.card-arrow {
  display: inline-block;
  margin-top: 16px;
  width: 32px;
  height: 1px;
  background: #C9A96E;
  position: relative;
  transition: width 0.3s;
}
.service-card:hover .card-arrow { width: 48px; }

/* ─── Look Book ────────────────────────────────────────── */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .lookbook-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .lookbook-grid { grid-template-columns: repeat(5, 1fr); }
}
.lookbook-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.lookbook-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
@media (min-width: 1024px) {
  .lookbook-item:first-child { grid-column: span 1; aspect-ratio: 3/4; }
}
.lb-placeholder {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.lb-1 { background: #1a1008 url("images/look-color-toneup.jpg") center/cover no-repeat; }
.lb-2 { background: #08121a url("images/look-volume-longwave.jpg") center/cover no-repeat; }
.lb-3 { background: #0a140a url("images/look-cut-longstraight.jpg") center/cover no-repeat; }
.lb-4 { background: #140a10 url("images/scalp-care.jpg") center/cover no-repeat; }
.lb-5 { background: #100e08 url("images/look-perm-hippie.jpg") center/cover no-repeat; }
.lookbook-item:hover .lb-placeholder { transform: scale(1.05); }
.lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.4);
}
.lb-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(232,224,212,0.8);
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 20px 0;
  margin-top: 48px;
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 12s linear infinite;
}
.marquee-track span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,169,110,0.15);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Creative Director ────────────────────────────────── */
.director-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .director-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.director-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.dir-placeholder {
  position: absolute;
  inset: 0;
  background: #0D0D0D url("images/lounge.jpg") center/cover no-repeat;
}
.dir-placeholder::after {
  content: "Master Stylist";
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(232,224,212,0.3);
}
.director-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: #E8E0D4;
  line-height: 1.1;
  margin-bottom: 24px;
}
.director-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(232,224,212,0.65);
}
.gold-line {
  width: 40px;
  height: 1px;
  background: #C9A96E;
  margin: 24px 0;
}

/* ─── Reservation CTA ──────────────────────────────────── */
.reservation {
  text-align: center;
}
.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(232,224,212,0.4);
  margin-bottom: 40px;
}
.cta-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  color: #E8E0D4;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ─── Visit Us ─────────────────────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .visit-grid { grid-template-columns: 1fr 1fr; }
}
.visit-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.visit-placeholder {
  position: absolute;
  inset: 0;
  background: #0D0D0D url("images/reception.jpg") center/cover no-repeat;
}
.visit-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: #E8E0D4;
  line-height: 1.1;
  margin-bottom: 20px;
}
.visit-address {
  font-size: 14px;
  color: rgba(232,224,212,0.55);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* ─── Footer ───────────────────────────────────────────── */
footer {
  border-top: 1px solid rgba(232,224,212,0.08);
  padding: 40px 16px;
  text-align: center;
}
@media (min-width: 768px) { footer { padding: 40px 32px; } }
.footer-logo {
  font-size: 16px;
  letter-spacing: 2px;
  color: rgba(232,224,212,0.4);
  margin-bottom: 12px;
}
.footer-logo-img {
  display: block;
  height: 29px;
  width: auto;
  margin: 0 auto 16px;
  opacity: 0.55;
}
.footer-sub {
  font-size: 11px;
  letter-spacing: 1.2px;
  color: rgba(232,224,212,0.25);
}
.footer-business {
  max-width: 760px;
  margin: 0 auto 14px;
  line-height: 1.8;
}
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(232,224,212,0.32);
  font-size: 11px;
  letter-spacing: 0.8px;
}
.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: #C9A96E;
}
.footer-sns {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-sns-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(232,224,212,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-sns-link:hover { color: #C9A96E; }
.footer-sns-link span {
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ─── Scroll Reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Language Switcher ────────────────────────────────── */
.lang-switcher { display:flex;align-items:center;gap:6px; }
.lang-btn {
  font-size:10px;letter-spacing:1.2px;text-transform:uppercase;
  background:none;border:none;color:rgba(232,224,212,0.35);
  cursor:pointer;padding:0;transition:color .3s;font-family:inherit;
}
.lang-btn:hover { color:#C9A96E; }
.lang-btn--active { color:#C9A96E; }
.lang-sep { font-size:9px;color:rgba(232,224,212,0.15); }

/* ─── Active nav link ──────────────────────────────────── */
.nav-link--active { color: #C9A96E !important; }
.active-link { color: #C9A96E !important; }
.dropdown .active-link { background: rgba(201,169,110,0.06); }

/* ─── Legal Pages ─────────────────────────────────────── */
.legal-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.legal-note {
  padding: 18px 20px;
  border: 1px solid rgba(201,169,110,0.22);
  background: rgba(201,169,110,0.06);
  color: rgba(232,224,212,0.72);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.legal-section {
  border-top: 1px solid rgba(232,224,212,0.1);
  padding-top: 28px;
  margin-top: 28px;
}
.legal-section h2 {
  font-family: "Noto Serif KR", Georgia, serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  color: #E8E0D4;
  line-height: 1.35;
  margin-bottom: 16px;
  word-break: keep-all;
}
.legal-section p,
.legal-section li {
  color: rgba(232,224,212,0.64);
  font-size: 14px;
  line-height: 1.9;
  word-break: keep-all;
}
.legal-section ul,
.legal-section ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(232,224,212,0.68);
}
.legal-table th,
.legal-table td {
  border-bottom: 1px solid rgba(232,224,212,0.08);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}
.legal-table th {
  color: #C9A96E;
  font-weight: 500;
  white-space: nowrap;
}

/* ─── Page Hero (서브 페이지 공통) ─────────────────────── */
.page-hero {
  padding-top: 120px;
  padding-bottom: 56px;
  background: #1C1410;
}
@media (min-width: 768px) {
  .page-hero { padding-top: 160px; padding-bottom: 80px; }
}

/* ─── Mobile: Global ────────────────────────────────────── */
@media (max-width: 767px) {
  header { padding: 0 20px; height: 64px; }
  .logo-img { height: 26px; }
  .py-section { padding-top: 64px; padding-bottom: 64px; }
  .container { padding: 0 20px; }
  .director-grid { gap: 32px; }
  .visit-grid { gap: 32px; }
  .footer-sns { gap: 20px; flex-wrap: wrap; }
  .cta-title { margin-bottom: 32px; }
  .btn-gold { padding: 14px 28px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

  /* Hero */
  .hero-title { font-size: clamp(38px, 12vw, 64px); }
  .hero-content { padding-bottom: 60px; }
  .hero-lead { margin-top: 20px; }
  .hero-meta { font-size: 13px; }
  .hero-actions { gap: 16px; margin-top: 24px; }
  .scroll-indicator { bottom: 24px; }
  .scroll-line { height: 32px; }
  .section-head { margin-bottom: 28px; }
  .concern-card { min-height: 190px; padding: 22px; }

  /* Sections */
  .page-hero { padding-top: 100px; padding-bottom: 44px; }
  .director-name { font-size: clamp(34px, 8vw, 44px); }
  .visit-title { font-size: clamp(32px, 8vw, 44px); }
  .cta-eyebrow { margin-bottom: 24px; }
  .marquee-track span { font-size: 32px; }
  .marquee-track { gap: 40px; }
  .marquee-wrap { padding: 12px 0; margin-top: 32px; }

  /* Look Book grid: 첫 아이템 span 해제해 세 장이 균등하게 흐르도록 */
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .lookbook-item:first-child { grid-column: auto; aspect-ratio: 3/4; }
  .lb-label { bottom: 12px; left: 12px; font-size: 9px; letter-spacing: 1.4px; }

  /* Header 스크롤 시 배경 강화 */
  header.scrolled { background: rgba(13,13,13,0.98); }

  /* Reveal 이동거리 축소 (모바일 매끄러운 진입) */
  .reveal { transform: translateY(24px); }

  /* Nav dropdown 언어 스위처 정렬 */
  .lang-btn { padding: 6px 4px; min-height: 36px; }
}

/* ─── Very small (≤ 374px) ────────────────────────────── */
@media (max-width: 374px) {
  .container { padding: 0 16px; }
  header { padding: 0 16px; }
  .hero-title { font-size: 34px; }
  .btn-gold { padding: 12px 20px; letter-spacing: 1.2px; }
  .cards-track { padding-left: 12px; padding-right: 12px; }
}
