/* ============================================
   FREELAB — Magazine B 톤 차용
   컬러: Black #0E0E0E / White / Charcoal #41424a / Wood Beige #C4A88A
   폰트: Pretendard (Medium 위주, Bold 지양)
============================================ */

:root {
  --black: #0E0E0E;
  --white: #FFFFFF;
  --charcoal: #41424a;
  --wood: #C4A88A;
  --gray-50: #FAFAF8;
  --gray-100: #F2F2EE;
  --gray-200: #E5E5DF;
  --gray-300: #C8C8C0;
  --gray-500: #7A7A72;
  --line: rgba(14, 14, 14, 0.08);

  --font-sans: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --max-w: 1440px;
  --pad-x: clamp(24px, 5vw, 80px);
  --section-y: clamp(44px, 5.5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -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; border: none; background: none; }

/* ============================================
   Typography — Magazine B 위계 (Medium 500)
============================================ */
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
}
h1.display {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2.section {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h3.card {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.body-lg { font-size: clamp(16px, 1.2vw, 18px); line-height: 1.7; }
.body { font-size: 15px; line-height: 1.7; }
.caption { font-size: 13px; color: var(--gray-500); }

/* ============================================
   Layout
============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.divider { height: 1px; background: var(--line); }

/* ============================================
   Global Nav (sticky, minimal)
============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.2) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.nav-menu a:hover { color: var(--charcoal); }
.nav-menu a.active { color: var(--black); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--black);
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a.active::after { transform: scaleX(1); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 0;
  transition: background 0.15s ease;
}
.btn-cta:hover { background: var(--charcoal); }
.btn-cta .arrow { font-size: 16px; }

@media (max-width: 880px) {
  .nav-menu { display: none; }
}

/* ============================================
   Hero — slideshow (3 images, soft cross-fade + slide)
============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  padding: 0;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.4s cubic-bezier(0.65, 0, 0.35, 1),
              transform 1.4s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform, opacity;
}
.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}
.hero-slide.prev {
  opacity: 0;
  transform: translateX(-60px);
}
.hero-slide.s1 { background-image: url("https://images.unsplash.com/photo-1604328698692-f76ea9498e76?auto=format&fit=crop&w=2400&q=80"); }
.hero-slide.s2 { background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=2400&q=80"); }
.hero-slide.s3 { background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=2400&q=80"); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(14,14,14,0.15) 0%, rgba(14,14,14,0.55) 70%, rgba(14,14,14,0.78) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--pad-x) clamp(56px, 8vw, 100px);
}
.hero-indicators {
  position: absolute;
  bottom: clamp(20px, 4vw, 40px);
  right: var(--pad-x);
  z-index: 4;
  display: flex;
  gap: 14px;
}
.hero-dot {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.4s ease, height 0.4s ease;
  display: block;
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
.hero-dot.active {
  background: var(--white);
  height: 2px;
}

/* Hero arrows (좌우) */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease, transform 0.25s ease;
}
.hero-arrow:hover {
  color: var(--white);
}
.hero-arrow.prev { left: clamp(12px, 2.5vw, 36px); }
.hero-arrow.next { right: clamp(12px, 2.5vw, 36px); }
.hero-arrow.prev:hover { transform: translateY(-50%) translateX(-4px); }
.hero-arrow.next:hover { transform: translateY(-50%) translateX(4px); }
.hero-arrow svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 600px) {
  .hero-arrow { display: none; }
}
.hero .eyebrow { color: rgba(255, 255, 255, 0.75); margin-bottom: 20px; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero p.hero-body {
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}
.hero p.hero-targets {
  margin-top: 28px;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.16em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  max-width: none;
}
.hero-cta {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.hero-cta:hover { background: var(--wood); }

/* ============================================
   Page Hero (서브 페이지 공통)
============================================ */
.page-hero {
  padding: clamp(80px, 12vw, 160px) var(--pad-x) clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.page-hero .subtitle {
  margin-top: 28px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 56ch;
}

/* ============================================
   Values — 3 column
============================================ */
.values .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 80px);
}
.value-item .num {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.value-item h3 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.value-item p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}
@media (max-width: 880px) {
  .values .container { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   Spaces — 4영역 카드
============================================ */
.spaces .section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 44px;
  align-items: flex-end;
}
.spaces .section-head p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--gray-500);
  max-width: 50ch;
}
.space-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-top: 1px solid var(--line);
}
.space-row:last-child { border-bottom: 1px solid var(--line); }
.space-row.reverse .space-text { order: 2; }
.space-text .num {
  font-size: 13px;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.space-text h3 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.space-text p {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 16px;
}
.space-text ul {
  list-style: none;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray-500);
}
.space-text ul li {
  padding: 6px 0;
  border-top: 1px solid var(--line);
}
.space-text ul li:last-child { border-bottom: 1px solid var(--line); }
.space-image {
  aspect-ratio: 4 / 3;
  background: var(--gray-100) center/cover no-repeat;
}
@media (max-width: 880px) {
  .spaces .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .space-row, .space-row.reverse { grid-template-columns: 1fr; gap: 28px; }
  .space-row.reverse .space-text { order: initial; }
}

/* ============================================
   Members — 직군 비율
============================================ */
.members {
  background: var(--gray-50);
}
.members .section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 44px;
  align-items: flex-end;
}
.members .section-head p {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 48ch;
}
.member-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.member-cell {
  background: var(--white);
  padding: 36px 28px;
}
.member-cell .num {
  font-size: clamp(36px, 3.6vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.member-cell .role {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--black);
}
.member-cell .label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}
.members-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}
@media (max-width: 880px) {
  .members .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .member-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Pricing — cards
============================================ */
.pricing .section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 44px;
  align-items: flex-end;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) and (min-width: 881px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
.price-card {
  border: 1px solid var(--line);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.price-card:hover {
  background: var(--gray-50);
  border-color: var(--charcoal);
}
.price-card.featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.price-card .term {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}
.price-card.featured .term { color: rgba(255,255,255,0.6); }
.price-card .price {
  font-size: clamp(36px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-card .price .unit {
  font-size: 16px;
  color: var(--gray-500);
  margin-left: 4px;
  font-weight: 400;
}
.price-card.featured .price .unit { color: rgba(255,255,255,0.6); }
.price-card .desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}
.price-card.featured .desc { color: rgba(255,255,255,0.7); }
.price-card .badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  background: var(--wood);
  color: var(--black);
  align-self: flex-start;
}
.pricing-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}
@media (max-width: 880px) {
  .pricing .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .price-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================
   Pricing detail (서브 페이지용)
============================================ */
.price-extras {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.price-extras .extra-row {
  background: var(--white);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: baseline;
}
.price-extras .extra-name {
  font-size: 15px;
  font-weight: 500;
}
.price-extras .extra-price {
  font-size: 14px;
  color: var(--gray-500);
  text-align: right;
}
.price-extras .extra-name .small {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: 0;
}
@media (max-width: 880px) {
  .price-extras { grid-template-columns: 1fr; }
}

.discount-block {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--black);
}
.discount-row {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.discount-row .label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  font-weight: 500;
}
.discount-row .desc {
  font-size: 15px;
  line-height: 1.6;
}
.discount-row .value {
  font-size: 15px;
  font-weight: 500;
  text-align: right;
}
@media (max-width: 880px) {
  .discount-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .discount-row .value { text-align: left; }
}

/* ============================================
   FAQ
============================================ */
.faq .section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: flex-end;
}
.faq-list { border-top: 1px solid var(--black); }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  font-size: 22px;
  color: var(--gray-500);
  transition: transform 0.2s ease;
  font-weight: 300;
}
.faq-item[open] summary .plus { transform: rotate(45deg); color: var(--black); }
.faq-item .answer {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 62ch;
}
.faq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}
@media (max-width: 880px) {
  .faq .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
}

/* FAQ groups (서브 페이지) */
.faq-group {
  margin-bottom: clamp(48px, 6vw, 72px);
}
.faq-group h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

/* ============================================
   Community — Coming Soon
============================================ */
.community {
  background: var(--charcoal);
  color: var(--white);
}
.community .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.community .eyebrow { color: var(--wood); }
.community h2 { color: var(--white); margin-top: 16px; }
.community p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 52ch;
}
.community-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.community-status .dot {
  width: 8px; height: 8px; background: var(--wood); border-radius: 50%;
}
@media (max-width: 880px) {
  .community .container { grid-template-columns: 1fr; gap: 32px; }
}

/* Community detail (서브 페이지) */
.community-coming {
  background: var(--gray-50);
  padding: clamp(64px, 9vw, 120px) var(--pad-x);
  text-align: center;
}
.community-coming h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.community-coming p {
  color: var(--gray-500);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.7;
}
.community-coming .badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding: 14px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.community-coming .badge .dot {
  width: 8px; height: 8px; background: var(--wood); border-radius: 50%;
}

/* ============================================
   Final CTA banner
============================================ */
.cta-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: clamp(52px, 7vw, 96px) var(--pad-x);
}
.cta-banner .eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin: 0 auto;
}
.cta-banner p {
  margin-top: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}
.cta-banner .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding: 20px 40px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.cta-banner .btn:hover { background: var(--wood); }
.cta-banner .meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   Footer
============================================ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 64px var(--pad-x) 48px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 32ch;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  font-size: 14px;
  padding: 6px 0;
  color: var(--charcoal);
}
.footer-col ul li a:hover { color: var(--black); border-bottom: 1px solid var(--black); padding-bottom: 1px; }
.footer-meta {
  max-width: var(--max-w);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray-500);
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   Image placeholders
============================================ */
.img-1 { background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80"); background-size: cover; background-position: center; }
.img-2 { background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80"); background-size: cover; background-position: center; }
.img-3 { background-image: url("https://images.unsplash.com/photo-1598257006458-087169a1f08d?auto=format&fit=crop&w=1600&q=80"); background-size: cover; background-position: center; }
.img-4 { background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1600&q=80"); background-size: cover; background-position: center; }

/* ============================================
   Floor Plan (평면도)
============================================ */
.floor-plan-wrap {
  padding: clamp(24px, 3vw, 40px);
  background: var(--gray-50);
  margin-bottom: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
}
.floor-plan-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 8px;
}
.floor-plan-head .label-en {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gray-500);
}
.floor-plan-head .label-kr {
  font-size: 13px;
  color: var(--gray-500);
}
.floor-plan {
  width: 100%;
  height: auto;
  display: block;
}
.floor-plan .zone-fill { fill: #FAF6F0; }
.floor-plan .wall { stroke: var(--black); fill: none; }
.floor-plan .wall-outer { stroke-width: 2; }
.floor-plan .wall-inner { stroke-width: 1; }
.floor-plan .desk { fill: #fff; stroke: var(--black); stroke-width: 0.8; }
.floor-plan .seat { fill: var(--black); }
.floor-plan .label-zone-en {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  fill: var(--black);
}
.floor-plan .label-zone-kr {
  font-family: var(--font-sans);
  font-size: 11px;
  fill: var(--gray-500);
}
.floor-plan .label-meta {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  fill: var(--gray-500);
}

/* ============================================
   Directions
============================================ */
.directions {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.directions .section-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: flex-end;
}
.directions .section-head p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--gray-500);
  max-width: 50ch;
}
.directions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.dir-info {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--black);
}
.info-block {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.info-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  font-weight: 500;
  padding-top: 4px;
}
.info-value {
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
}
.info-value .small {
  font-size: 13px;
  color: var(--gray-500);
  display: block;
  margin-top: 4px;
}
.dir-map {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: var(--gray-50);
  padding: 24px;
  position: relative;
}
.dir-map svg {
  width: 100%;
  height: 100%;
  display: block;
}
.dir-map .map-route {
  stroke: var(--wood);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 2 6;
  fill: none;
}
.dir-map .map-road {
  stroke: var(--gray-200);
  stroke-width: 30;
  fill: none;
}
.dir-map .map-pin {
  fill: var(--black);
}
.dir-map .map-pin-station {
  fill: var(--charcoal);
}
.dir-map .map-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  fill: var(--black);
}
.dir-map .map-label-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  fill: var(--gray-500);
  letter-spacing: 0.08em;
}
.kakao-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}
@media (max-width: 880px) {
  .directions .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .directions-grid { grid-template-columns: 1fr; }
  .info-block { grid-template-columns: 90px 1fr; gap: 16px; }
}

/* ============================================
   Instagram
============================================ */
.instagram {
  background: var(--gray-50);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.ig-head {
  text-align: center;
  margin-bottom: 40px;
}
.ig-head .eyebrow {
  display: block;
  margin-bottom: 12px;
}
.ig-head h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--black);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.ig-card {
  aspect-ratio: 3 / 4;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.ig-card:hover { opacity: 0.85; }
.ig-card .ig-img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.ig-card .ig-img.p1 { background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=800&q=80"); }
.ig-card .ig-img.p2 { background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=800&q=80"); }
.ig-card .ig-img.p3 { background-image: url("https://images.unsplash.com/photo-1598257006458-087169a1f08d?auto=format&fit=crop&w=800&q=80"); }
.ig-card .ig-img.p4 { background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=800&q=80"); }
.ig-card .ig-img.p5 { background-image: url("https://images.unsplash.com/photo-1604328698692-f76ea9498e76?auto=format&fit=crop&w=800&q=80"); }
.ig-link-wrap {
  text-align: center;
  margin-top: 48px;
}
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}
@media (max-width: 880px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-card:nth-child(n+5) { display: none; }
}

/* ============================================
   YouTube (커뮤니티 페이지용)
============================================ */
.youtube {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.youtube .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.youtube-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: flex-end;
}
.youtube-head p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--gray-500);
  max-width: 50ch;
}
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.yt-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: opacity 0.2s ease;
  color: inherit;
}
.yt-card:hover { opacity: 0.85; }
.yt-thumb {
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.yt-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}
.yt-thumb .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.yt-thumb .play svg {
  width: 44px;
  height: 44px;
  fill: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.yt-thumb .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  letter-spacing: 0.02em;
}
.yt-meta {
  padding: 18px 0 0;
}
.yt-category {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
}
.yt-title {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--black);
}
.yt-date {
  margin-top: 10px;
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}
.yt-card.placeholder .yt-date {
  color: var(--wood);
  font-weight: 500;
}
.youtube-link-wrap {
  text-align: center;
  margin-top: 56px;
}
.youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}

/* placeholder 썸네일 (실제 영상 발행 후 교체) */
.yt-thumb.t1 { background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1200&q=80"); }
.yt-thumb.t2 { background-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1200&q=80"); }
.yt-thumb.t3 { background-image: url("https://images.unsplash.com/photo-1598257006458-087169a1f08d?auto=format&fit=crop&w=1200&q=80"); }
.yt-thumb.t4 { background-image: url("https://images.unsplash.com/photo-1604328698692-f76ea9498e76?auto=format&fit=crop&w=1200&q=80"); }
.yt-thumb.t5 { background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1200&q=80"); }
.yt-thumb.t6 { background-image: url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=1200&q=80"); }

@media (max-width: 880px) {
  .youtube-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .youtube-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (min-width: 881px) and (max-width: 1100px) {
  .youtube-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Brand Story (소개 페이지용)
============================================ */
.brand-story .container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.brand-story .eyebrow { margin-bottom: 16px; }
.brand-story h2 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.brand-story .story-body p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 20px;
  max-width: 56ch;
}
.brand-story .story-body p.quote {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--black);
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--wood);
  max-width: none;
}
.brand-story .story-body p:last-child { margin-bottom: 0; }
@media (max-width: 880px) {
  .brand-story .container { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   Mobile Hamburger Menu
============================================ */
.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 200;
}
.nav-toggle .line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  margin: 6px auto;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.nav-toggle.open .line:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--white); }
.nav-toggle.open .line:nth-child(2) { opacity: 0; }
.nav-toggle.open .line:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--white); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
.mobile-menu ul li {
  margin: 18px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.open ul li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open ul li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open ul li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open ul li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu ul li a {
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color 0.2s ease;
  display: inline-block;
  padding: 4px 0;
}
.mobile-menu ul li a:hover,
.mobile-menu ul li a:active {
  color: var(--wood);
}
.mobile-menu .mobile-cta {
  margin-top: 48px;
  padding: 18px 36px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0.3s;
}
.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu .mobile-cta:hover {
  background: var(--wood);
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-inner > a.btn-cta { display: none; }
}
