/* ══════════════════════════════════════════════
   소소 (SOSO) - 통합 스타일시트
   Unified Stylesheet - All Pages
   모든 페이지에서 사용 가능한 통합 스타일
══════════════════════════════════════════════ */

/* ── 변수 ─────────────────────────────────────── */
:root {
  /* Colors */
  --accent:   #F75800;
  --orange:   #F75800;
  --black:    #000000;
  --white:    #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D9D9D9;
  --gray-400: #999999;
  --gray-700: #434343;
  --gray-900: #111111;
  --dark:     #3D3D3D;
  --gray:     #767676;
  --light-gray: #EAEAEA;
  --bg-warm:  #FEFBF9;
  --card-bg:  #D9D9D9;
  
  /* Fonts */
  --font:     'Noto Sans KR', sans-serif;
  --font-kr:  'Noto Sans KR', sans-serif;
  --font-en:  'Montserrat', sans-serif;
  --font-display: 'Holtwood One SC', serif;
  
  /* Layout */
  --header-h: 56px;
}

/* ── 기본 리셋 ─────────────────────────────────── */
*, *::before, *::after,
*:hover, *:active, *:focus { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body { 
  font-family: var(--font); 
  background: var(--white); 
  color: var(--black); 
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  min-width: 320px;
}

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */

canvas { 
    display: block;
    width: 100%;           /* div 너비에 맞춤 */
    height: 100%;          /* div 높이에 맞춤 */
    object-fit: cover;     /* 사진이 찌그러지지 않게 비율 유지하며 채움 */
    display: block;
}

#hero-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -70%);
  text-align: center;
  pointer-events: none;
  user-select: none;
  z-index: 10;
  background: radial-gradient(ellipse 70% 80%, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.5) 55%, rgba(255,255,255,0) 100%);
  border-radius: 50%;
  padding: 28px 60px 24px;
  font-family: SantokkiFont;
}

#hero-text .sub {
  font: 11px/1 'DM Sans', sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(244,124,47,0.6);
  margin-bottom: 14px;
  font-family: SantokkiFont;
}
#hero-text h1 {
  font: 700 clamp(22px,2.8vw,48px)/1.2 'DM Sans', sans-serif;
  color: #1a1a1a;
  letter-spacing: -1px;
  white-space: nowrap;
  font-family: SantokkiFont;
}
#hero-text h1 span { color: #f47c2f; }
#hero-text .desc {
  font: 12px/1 'DM Sans', sans-serif;
  color: rgba(0,0,0,0.25);
  margin-top: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#cursor {
  position: fixed;
  width: 14px; height: 14px;
  border: 1.5px solid rgba(244,124,47,0.9);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s, background .15s;
  z-index: 9999;
}
#cursor.pressed { width: 26px; height: 26px; background: rgba(244,124,47,0.12); }


/* ══════════════════════════════════════════════
   PAGE LOADING ANIMATION
══════════════════════════════════════════════ */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease-out;
}

.page-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-svg {
  width: 400px;
  height: auto;
  position: relative;
  z-index: 2;
}

.logo-draw {
  fill: #f75800;
  stroke: #f75800;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.logo-draw.star {
  animation: drawFilled 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.1s forwards;
}

.logo-draw.s-1 {
  animation: drawFilled 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards;
}

.logo-draw.o-1 {
  animation: drawFilled 0.9s cubic-bezier(0.65, 0, 0.35, 1) 1s forwards;
}

.logo-draw.s-2 {
  animation: drawFilled 1.5s cubic-bezier(0.65, 0, 0.35, 1) 1.4s forwards;
}

.logo-draw.o-2 {
  animation: drawFilled 0.9s cubic-bezier(0.65, 0, 0.35, 1) 2.2s forwards;
}

@keyframes drawFilled {
  0% {
    stroke-dashoffset: 2000;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

body:not(.page-loaded) .section,
body:not(.page-loaded) .hero,
body:not(.page-loaded) .banner-strip {
  opacity: 0;
}

.section.stagger-fade,
.hero.stagger-fade,
.banner-strip.stagger-fade {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 30px;
  opacity: 0;
  animation: logoFadeIn 0.8s ease forwards;
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-bar-container {
  width: 200px;
  height: 3px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
  opacity: 0;
  animation: barFadeIn 0.8s ease 0.3s forwards;
}

@keyframes barFadeIn {
  0% {
    opacity: 0;
    transform: scaleX(0.8);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--orange), var(--accent));
  background-size: 200% 100%;
  border-radius: 3px;
  animation: loadingProgress 1.5s ease-in-out forwards,
             loadingGradient 1.5s ease infinite;
}

@keyframes loadingProgress {
  0%   { width: 0%; }
  100% { width: 100%; }
}

@keyframes loadingGradient {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

body.page-loaded .main-content,
body.page-loaded main,
body.page-loaded #header,
body.page-loaded .navbar {
  animation: contentFadeIn 0.8s ease forwards;
}

@keyframes contentFadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

.stagger-fade {
  opacity: 0;
  transform: translateY(20px);
}

body.page-loaded .stagger-fade {
  animation: staggerFadeIn 0.6s ease forwards;
}

@keyframes staggerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

body.page-loaded .stagger-fade:nth-child(1) { animation-delay: 0.1s; }
body.page-loaded .stagger-fade:nth-child(2) { animation-delay: 0.2s; }
body.page-loaded .stagger-fade:nth-child(3) { animation-delay: 0.3s; }
body.page-loaded .stagger-fade:nth-child(4) { animation-delay: 0.4s; }
body.page-loaded .stagger-fade:nth-child(5) { animation-delay: 0.5s; }

button { 
  cursor: pointer; 
  background: none; 
  border: none; 
  font-family: inherit; 
}

a { 
  text-decoration: none; 
  color: inherit; 
}

/* ══════════════════════════════════════════════
   CUSTOM CURSOR (SVG)
══════════════════════════════════════════════ */

* {
  cursor: url('assets/cursor.svg') 12 12, auto !important;
}

@media (hover: none) and (pointer: coarse) {
  * {
    cursor: auto !important;
  }
}

/* ══════════════════════════════════════════════
   폰트 정의
══════════════════════════════════════════════ */
@font-face {
  font-family: 'HSSanTokki20-Regular';
  src: url('./HSSanTokki20-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'SantokkiFont';
  src: url('fonts/HSSanTokki2.0(2024).ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'HoltwoodOneSC';
  src: url('./fonts/HoltwoodOneSC-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

 @font-face {
      font-family: 'icejaram';
      src: url('./fonts/icejaram.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
    }

@font-face {
      font-family: 'Pretendard';
      src: url('./fonts/Pretendard-Regular.otf') format('truetype');
      font-weight: 400;
      font-style: normal;
    }
    
@font-face {
      font-family: 'Gaegu';
      src: url('./fonts/Gaegu-Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
    }

.custom-font {
  font-family: 'HSSanTokki20-Regular', sans-serif;
}

/* ══════════════════════════════════════════════
   HEADER / NAVBAR (통합)
══════════════════════════════════════════════ */
#header,
.navbar {
  position: fixed !important; 
  top: 0 !important; 
  left: 0 !important; 
  right: 0 !important; 
  z-index: 100 !important;
  height: var(--header-h) !important;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.navbar {
  height: 72px !important;
  padding: 0 40px !important;
  box-shadow: 0 3px 4px rgba(0,0,0,0.05);
}

#header.scrolled,
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-color: var(--gray-200);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

#header .header-inner,
.navbar .header-inner {
  max-width: 1280px !important; 
  margin: 0 auto !important;
  height: 100% !important;
  display: flex !important; 
  align-items: center !important; 
  justify-content: space-between !important;
  padding: 0 32px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.nav-links { 
  display: flex; 
  gap: 28px; 
}

.nav-links button,
.nav-item {
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: .12em;
  color: var(--gray-400);
  position: relative; 
  padding-bottom: 3px;
  transition: color .2s;
  background: none;
  text-decoration: none;
}

.nav-item {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  letter-spacing: 0.03em;
  padding-bottom: 0;
}

.nav-links button::after {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0;
  width: 0; 
  height: 1.5px; 
  background: var(--black);
  transition: width .3s;
}

.nav-links button:hover,
.nav-links button.active,
.nav-item:hover,
.nav-item.active { 
  color: var(--accent); 
}

@media (hover: none) and (pointer: coarse) {
  .nav-links button:active,
  .nav-item:active {
    background-color: rgba(247, 88, 0, 0.1);
    transform: scale(0.95);
    border-radius: 8px;
  }
  
  .btn-login:active {
    transform: scale(0.95);
  }
  
  .icon-btn:active {
    transform: scale(0.9);
  }
  
  .hamburger:active {
    transform: scale(0.95);
  }
}

.nav-links button.active::after,
.nav-links button:hover::after { 
  width: 100%; 
}

.logo {
  position: absolute; 
  left: 50%; 
  transform: translateX(-50%);
  font-size: 22px; 
  font-weight: 900; 
  letter-spacing: -.03em;
  display: flex; 
  align-items: center; 
  gap: 2px;
  user-select: none;
  color: var(--accent);
}

.logo-icon { 
  font-size: 20px; 
}

.header-icons { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  z-index: 10;
}

.icon-btn {
  width: 36px; 
  height: 36px; 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: background .2s;
}

.icon-btn:hover { 
  background: var(--gray-100); 
}

.icon-btn svg { 
  width: 18px; 
  height: 18px; 
  stroke: #555; 
  stroke-width: 2; 
  fill: none; 
}

.avatar {
  width: 32px; 
  height: 32px; 
  border-radius: 50%;
  background: var(--gray-200);
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: background .2s;
}

.avatar:hover { 
  background: var(--gray-300); 
}

.avatar svg { 
  width: 16px; 
  height: 16px; 
  fill: #888; 
}

.btn-login {
  font-family: var(--font-kr);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 18px;
  border: 1.5px solid var(--black);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}

.btn-login:hover {
  background: var(--black);
  color: var(--white);
}

@media (hover: none) and (pointer: coarse) {
  .btn-login:active {
    transform: scale(0.95);
  }
  
  .card:active,
  .mcard:active,
  .more-card:active,
  .popup-card:active,
  .partnership-card:active,
  .hero-card:active {
    transform: scale(0.98);
  }
  
  .carousel-button:active,
  .btn-detail:active {
    transform: scale(0.92);
  }
}

.hamburger { 
  display: none;
  flex-direction: column; 
  gap: 5px; 
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block; 
  width: 22px; 
  height: 2px; 
  background: var(--black);
  border-radius: 2px; 
  transition: transform .3s, opacity .3s;
}

.hamburger.open span:nth-child(1) { 
  transform: rotate(45deg) translate(5px, 5px); 
}

.hamburger.open span:nth-child(2) { 
  opacity: 0; 
}

.hamburger.open span:nth-child(3) { 
  transform: rotate(-45deg) translate(5px, -5px); 
}

.mobile-menu {
  display: none;
  position: absolute; 
  top: var(--header-h); 
  left: 0; 
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
  z-index: 99;
}

.mobile-menu.open { 
  max-height: 280px; 
}

.mobile-menu button {
  display: block; 
  width: 100%;
  text-align: left; 
  padding: 14px 24px;
  font-size: 11px; 
  font-weight: 700; 
  letter-spacing: .12em;
  color: var(--gray-400);
  transition: color .2s, background .2s;
}

.mobile-menu button:hover { 
  color: var(--black); 
  background: var(--gray-100); 
}

/* ══════════════════════════════════════════════
   BANNER STRIP (MARQUEE)
══════════════════════════════════════════════ */
.banner-strip {
  margin-top: var(--header-h);
  background: #FFF3EC;
  border-bottom: 1px solid #FFE0CC;
  padding: 9px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex; 
  gap: 64px;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  font-size: 11px; 
  font-weight: 700; 
  color: var(--accent);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   SCROLLING TEXT
══════════════════════════════════════════════ */
.scrolling-text-container {
  overflow: hidden;
  margin: 50px 0;
  padding: 10px 0;
  opacity: 0;
  transition: opacity 0.3s;
  width: 100%;
  max-width: 100vw;
}

.scrolling-text-container.loaded {
  opacity: 1;
}

.scrolling-text {
  display: flex;
  gap: 30px;
  animation: scroll 10s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.scrolling-text img {
  width: 90px;
  height: 95px;
  margin-right: 16px;
  margin-left: 16px;
  display: inline-block;
}

.scrolling-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 400;
  display: inline-block;
}

.scrolling-text span.orange {
  color: rgba(247, 88, 0, 0.8);
}

.scrolling-text span.gray {
  color: #D9D9D9;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   MAIN CONTENT / LAYOUT
══════════════════════════════════════════════ */
.support-page {
  min-height: 100vh;
  background: var(--white);
}

.main-content {
  padding-top: var(--header-h);
  max-width: 100%;
  overflow-x: hidden;
}

main {
  max-width: 1920px;
  margin: 0 auto;
  padding: 100px 67px;
  width: 100%;
  box-sizing: border-box;
}

/* ══════════════════════════════════════════════
   SECTION COMMON STYLES
══════════════════════════════════════════════ */

.section { 
  padding: 5vw 0; 
  max-width: 90vw; 
  margin: 0 auto; 
  min-height: 51vw;
  overflow-x: visible;
  box-sizing: border-box;
}

.section + .section { 
  border-top: 1px solid var(--gray-200); 
}

.section-label {
  display: flex; 
  align-items: center; 
  gap: 8px;
  margin-bottom: 25px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.section-label .bullet,
.dot {
  width: 8px; 
  height: 8px; 
  border-radius: 50%;
  background: var(--black);
  flex-shrink: 0;
}

.dot {
  width: 9px;
  height: 9px;
  display: inline-block;
}

.section-label span {
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
}

.section-heading,
.section-title {
  font-family: 'SantokkiFont', 'HSSanTokki20-Regular', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 100;
  line-height: 1.1;
  margin-bottom: 55px;
  opacity: 0; 
  transform: translateY(24px);
  transition: opacity .7s, transform .7s;
}

.section-title {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.4;
  opacity: 1;
  transform: none;
  margin-bottom: 40px;
}

.section-heading.visible,
.section-title.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

.section-heading.accent,
.section-title .highlight { 
  color: var(--accent); 
}

.section-title.dark .highlight { 
  color: var(--black); 
}

.section-sub {
  font-size: 25px; 
  font-weight: 700;
  font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  margin-bottom: 28px;
  opacity: 0; 
  transform: translateY(16px);
  transition: opacity .7s .1s, transform .7s .1s;
}

.section-sub.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

/* ══════════════════════════════════════════════
   WEEKLY CAROUSEL (EXPLORE PAGE)
══════════════════════════════════════════════ */
.section-weekly {
  padding: 48px 60px 64px;
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 40px auto 0;
  height: clamp(260px, 45vw, 650px);
  perspective: 2000px;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height:100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-wrap {
  position: absolute;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 가운데 카드 */
.center-card {
  z-index: 10;
  left: 50%;
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.center-card .card {
  width:  clamp(180px, 30vw, 534px);
  height: clamp(220px, 38vw, 644px);
}

/* 좌우 카드 */
.left-card {
  z-index: 8;
  left: 50%;
  transform: translateX(calc(-50% - 30vw)) scale(0.9) rotateY(12deg);
  opacity: 0.85;
}

.left-card .card {
  width:  clamp(160px, 27vw, 480px);
  height: clamp(195px, 34vw, 580px);
}

.right-card {
  z-index: 8;
  left: 50%;
  transform: translateX(calc(-50% + 30vw)) scale(0.9) rotateY(-12deg);
  opacity: 0.85;
}

.right-card .card {
  width:  clamp(160px, 27vw, 480px);
  height: clamp(195px, 34vw, 580px);
}

/* 가장 바깥쪽 카드 */
.far-left-card {
  z-index: 5;
  left: 50%;
  transform: translateX(calc(-50% - 54vw)) scale(0.81) rotateY(20deg);
  opacity: 0.7;
}

.far-left-card .card {
  width:  clamp(140px, 24vw, 433px);
  height: clamp(170px, 30vw, 522px);
}

.far-right-card {
  z-index: 5;
  left: 50%;
  transform: translateX(calc(-50% + 54vw)) scale(0.81) rotateY(-20deg);
  opacity: 0.7;
}

.far-right-card .card {
  width:  clamp(140px, 24vw, 433px);
  height: clamp(170px, 30vw, 522px);
}

.card-img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.left-card .card-img::after,
.right-card .card-img::after,
.far-left-card .card-img::after,
.far-right-card .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.main-img {
  background: #D9D9D9;
  position: relative;
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-kr);
  z-index: 2;
}

.card-brand {
  position: absolute;
  bottom: 54px;
  right: 16px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  z-index: 2;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  border-radius: 0 0 26px 26px;
  z-index: 2;
}

.left-card .card-overlay,
.right-card .card-overlay,
.far-left-card .card-overlay,
.far-right-card .card-overlay {
  background: transparent;
  padding: 24px;
}

.tag-group { 
  display: flex; 
  gap: 4px; 
  margin-bottom: 6px; 
}

.card-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 1px;
}

.card-name.white-text { 
  color: var(--white); 
  font-size: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.card-location { 
  font-size: 12px; 
  color: var(--white); 
  display: flex; 
  align-items: center; 
  gap: 4px; 
  margin-bottom: -10px;
}

.card-location.white-text { 
  color: #EAEAEA; 
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.loc-icon { 
  font-size: 12px; 
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.cdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EFEAEA;
  transition: background .3s, transform .3s;
  cursor: pointer;
}

.cdot.active {
  background: #F7600D;
  transform: scale(1.3);
}

/* ══════════════════════════════════════════════
   SOSO PICK SECTION (EXPLORE PAGE)
══════════════════════════════════════════════ */
.section-sosopick {
  position: relative;
  background: #FFFEF9;
  padding: 64px 60px 0;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.watermark-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 15vw, 280px);
  color: rgba(247, 88, 0, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.08em;
  z-index: 0;
}

.sosopick-layout {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.sosopick-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'HoltwoodOneSC';
  font-size: 13vw;
  font-weight: 400;
  color: #FAF7E8;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03sem;
  line-height: 1;
  z-index: 0;
}

.sosopick-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* 기존 section 레벨 워터마크 숨김 */
.section-sosopick > .watermark-text {
  display: none;
}

.sosopick-img {
  width: 50vw;
  height: 70vw;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.sosopick-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
.starburst {
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 22px;
  color: var(--orange);
  animation: spinStar 6s linear infinite;
}*/

@keyframes spinStar {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.sosopick-info { 
  text-align: center; 
}

.sosopick-name {
  font-family: SantokkiFont;
  font-size: 2vw;
  font-weight: 400;
  color: var(--orange);
  margin-bottom: 6px;
}

.sosopick-tags {
  font-size: 1vw;
  color: #616161;
}

/* ══════════════════════════════════════════════
   DETAIL SECTION — 반응형
   기본: 가로 그리드 (이미지 50vw | 콘텐츠 1fr)
   768px 이하: 세로 배치
══════════════════════════════════════════════ */

/* ── 기본 (데스크톱) ──────────────────────────── */
.detail-section {
  display: grid;
  grid-template-columns: 50vw 1fr;
  gap: 4vw;
  padding: 72px 0 80px;
  position: relative;
  z-index: 1;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
}

/* ── 이미지 ───────────────────────────────────── */
.detail-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: #D9D9D9;
  overflow: hidden;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 콘텐츠 ───────────────────────────────────── */
.detail-content { 
  width: 100%;
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
}

/* ── 콘텐츠 내부 타이포 — 기본 ───────────────── */
.detail-content .detail-title {
  font-family: var(--font-kr);
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  font-size: clamp(22px, 2.6vw, 46px);
  margin-bottom: clamp(20px, 2.4vw, 32px);
}

.detail-content .detail-meta {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: clamp(16px, 1.8vw, 28px);
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.detail-content .meta-icon { 
  font-size: clamp(14px, 1.2vw, 18px);
  margin-top: 2px; 
}

.detail-content .meta-label {
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.detail-content .meta-value { 
  font-size: clamp(11px, 1vw, 14px);
  color: var(--gray); 
}

.detail-content .detail-desc {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.75;
  color: #434343;
  margin-bottom: clamp(18px, 1.8vw, 30px);
}

/* ── 원형 버튼 ────────────────────────────────── */
.btn-detail {
  width:  clamp(80px, 7vw, 120px);
  height: clamp(80px, 7vw, 120px);
  border-radius: 50%;
  background: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  align-self: flex-end;
  transition: transform .25s, background .25s;
}

.btn-detail:hover { 
  transform: scale(1.08); 
  background: var(--orange); 
}

.btn-detail span {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-kr);
}

.btn-detail small {
  font-size: clamp(9px, 0.85vw, 12px);
  color: rgba(255,255,255,.7);
  font-family: var(--font-en);
}

/* ══════════════════════════════════════════════
   TODAY SECTION - MASONRY (EXPLORE PAGE)
══════════════════════════════════════════════ */
.section-today {
  position: relative;
  background: var(--bg-warm);
  min-height: 300px;
  overflow: hidden;
  padding: 60px 0 0;
  max-width: 100%;
  box-sizing: border-box;

}

.today-label {
  position: relative;
  z-index: 10;
  padding: 0 80px;
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 40px;
  pointer-events: none;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.mcard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mcard:hover {
  transform: translateY(-6px);
}

.mcard-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.mcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.mcard:hover .mcard-thumb img {
  transform: scale(1.05);
}

.mcard-tags {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.mcard-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.5;
}

.mcard-sub {
  font-size: 14px;
  color: #888;
}

/* 떠다니는 카드 */
.floating-arena {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.mcard-float {
  position: absolute;
  width: 20vw;
  cursor: pointer;
  will-change: transform;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  z-index: 10;
  transition: box-shadow 0.2s;
}

.mcard-float:hover {
  box-shadow: 0 16px 40px rgba(247, 88, 0, 0.18);
  z-index: 10;
}

.mcard-float .mcard-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.mcard-float .mcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.mcard-float .mcard-info {
  padding: 5px 12px 5px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mcard-float .mcard-name {
  font-size:11px;
  font-weight: 400;
  color: #111;
  line-height: 1.4;
}

.mcard-float .mcard-sub {
  font-size: clamp(9px, 1vw, 12px);
  color: #888;
}

@keyframes collide-flash {
  0%   { box-shadow: 0 8px 24px rgba(247, 88, 0, 0.10); }
  30%  { box-shadow: 0 0 0 3px rgba(247, 88, 0, 0.50), 0 8px 32px rgba(247, 88, 0, 0.30); }
  100% { box-shadow: 0 8px 24px rgba(247, 88, 0, 0.10); }
}

.mcard-float.colliding {
  animation: collide-flash 0.35s ease-out forwards;
}

/* ══════════════════════════════════════════════
   MORE SECTION (EXPLORE PAGE)
══════════════════════════════════════════════ */
.section-more {
  background: var(--white);
  padding: 80px 60px 100px;
}

.more-grid {
  display: grid;
  grid-template-columns: 480px repeat(4, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 28px;
}

.more-card { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}

.more-img { 
  border-radius: 12px; 
  background: #D9D9D9; 
}

.more-card-big .more-img { 
  height: 340px; 
}

.more-card-sm .more-img { 
  height: 340px; 
}

.progress-bar-wrap {
  margin-top: 48px;
  padding-top: 12px;
  border-top: 2px solid #F5F1F1;
}

.progress-bar {
  width: 100%;
  height: 2px;
  background: #F5F1F1;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  width: 65%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  border-radius: 2px;
  animation: progressIn 1.2s ease forwards;
}

@keyframes progressIn {
  from { width: 0; }
  to   { width: 65%; }
}

/* ══════════════════════════════════════════════
   PARTNERSHIP SECTION (Support Page)
══════════════════════════════════════════════ */
.partnership-section {
  padding-left: 200px;
  padding-right: 200px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.partnership-card {
  width: 100%;
  height: 130px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid #DEDEDE;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.partnership-card:first-child {
  border-top: 1px solid #DEDEDE;
}

.partnership-card:last-child {
  border-bottom: 1px solid #DEDEDE;
}

.card-black {
  background: var(--gray-900);
  color: var(--white);
}

.card-black:hover {
  background: var(--white);
  color: var(--black);
}

.card-black .card-title { color: var(--white); }
.card-black:hover .card-title { color: var(--black); }
.card-black .card-description { color: #E0E0E0; }
.card-black:hover .card-description { color: var(--gray-700); }
.card-black .card-arrow svg { stroke: var(--white); }
.card-black:hover .card-arrow svg { stroke: var(--gray-700); }

.card-white {
  background: var(--white);
  color: var(--black);
}

.card-white:hover {
  background: var(--black);
  color: var(--white);
}

.card-white .card-title { color: var(--gray-900); }
.card-white:hover .card-title { color: var(--white); }
.card-white .card-description { color: var(--gray-700); }
.card-white:hover .card-description { color: #E0E0E0; }
.card-white .card-arrow svg { stroke: #333333; }
.card-white:hover .card-arrow svg { stroke: var(--white); }

.partnership-card .card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partnership-card .card-title {
  font-family: 'Pretendard', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  transition: color 0.4s ease;
}

.partnership-card .card-description {
  font-family: 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  transition: color 0.4s ease;
}

.partnership-card .card-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partnership-card:hover .card-arrow {
  transform: translateX(4px);
}

.partnership-card .card-arrow svg {
  transition: stroke 0.4s ease;
}

/* ══════════════════════════════════════════════
   POPUP MODAL
══════════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

.popup-overlay.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.popup-content {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 50px;
  min-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.popup-message {
  text-align: center;
  margin-bottom: 30px;
}

.popup-message p {
  font-family: 'Pretendard', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.6;
}

.popup-close {
  width: 100%;
  padding: 12px 24px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Pretendard', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 88, 0, 0.3);
}

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero {
  display: flex;
  min-height: 480px;
}

.hero-main {
  flex: 1;
  background: var(--gray-300);
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.hero-main-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 60%);
}

.hero-main-info {
  position: absolute; 
  bottom: 28px; 
  left: 28px;
  color: white;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s .2s, transform .8s .2s;
}

.hero-main-info.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

.hero-main-info .eyebrow {
  font-size: 10px; 
  font-weight: 600; 
  letter-spacing: .15em;
  opacity: .75; 
  margin-bottom: 6px;
}

.hero-main-info h2 {
  font-size: 26px; 
  font-weight: 900; 
  line-height: 1.25; 
  margin-bottom: 4px;
}

.hero-main-info p { 
  font-size: 13px; 
  opacity: .8; 
}

.slide-dots {
  position: absolute; 
  bottom: 20px; 
  right: 20px;
  display: flex; 
  gap: 6px; 
  align-items: center;
}

.slide-dots .dot {
  height: 6px; 
  border-radius: 3px;
  background: rgba(255,255,255,.45);
  transition: width .35s, background .35s;
  width: 6px;
  cursor: pointer;
}

.slide-dots .dot.active { 
  width: 18px; 
  background: var(--accent); 
}

.hero-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  width: 460px; 
  flex-shrink: 0;
  gap: 1px; 
  background: var(--gray-200);
}

.hero-card {
  background: var(--white);
  padding: 14px;
  cursor: pointer;
  opacity: 0;
  transform: translateX(20px);
  transition: background .25s, opacity .6s, transform .6s;
}

.hero-card.visible { 
  opacity: 1; 
  transform: translateX(0); 
}

.hero-card:hover { 
  background: #FFF6F2; 
}

.hero-thumb {
  width: 100%; 
  padding-bottom: 72%;
  background: var(--card-bg);
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative; 
  overflow: hidden;
}

.hero-thumb::after {
  content: '';
  position: absolute; 
  inset: 0;
  background: rgba(247,88,0,.08);
  opacity: 0;
  transition: opacity .3s;
}

.hero-card:hover .hero-thumb::after { 
  opacity: 1; 
}

.hero-card-title {
  font-size: 13px; 
  font-weight: 700;
  display: flex; 
  align-items: center; 
  gap: 6px;
  transition: color .2s;
}

.hero-card:hover .hero-card-title { 
  color: var(--accent); 
}

.hero-card-sub { 
  font-size: 11px; 
  color: var(--gray-400); 
  margin-top: 3px; 
}

.dot-accent {
  width: 7px; 
  height: 7px; 
  border-radius: 50%;
  background: var(--accent); 
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   GRID SYSTEM (Gallery/Archive Page - Content)
══════════════════════════════════════════════ */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.grid .card {
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background-color: #D9D9D9;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.grid .card:hover {
  transform: translateY(-4px);
  z-index: 10;
}

/* ══════════════════════════════════════════════
   CARD STYLES (Gallery Cards)
══════════════════════════════════════════════ */
.card-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-bg {
  transform: scale(1.03);
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.card-tag {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #EFEFEF;
  margin-bottom: 12px;
  text-shadow: 0px 0px 16px rgba(0, 0, 0, 0.8);
}

.arrow-icon {
  display: inline-block;
  width: 8px;
  height: 14px;
  border-right: 2px solid #EFEFEF;
  border-bottom: 2px solid #EFEFEF;
  transform: rotate(-45deg);
  margin-left: 8px;
  margin-bottom: 2px;
  box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.8);
}

.ratio-tall-1 { aspect-ratio: 574 / 805; }
.ratio-mid-1  { aspect-ratio: 574 / 498; }
.ratio-mid-2  { aspect-ratio: 574 / 682; }
.ratio-short  { aspect-ratio: 574 / 267; }
.ratio-tall-2 { aspect-ratio: 574 / 734; }
.ratio-tall-3 { aspect-ratio: 574 / 858; }
.ratio-mid-3  { aspect-ratio: 574 / 631; }

/* ══════════════════════════════════════════════
   POPUP CARD GRID
══════════════════════════════════════════════ */
.card-grid {
  display: flex;
  gap: 16px;
  width: 100%;
  align-items: stretch;
}

.card-wide { 
  grid-column: span 2; 
}

.popup-card {
  flex: 1;
  min-width: 150px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  overflow: hidden;
}

.popup-card.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

.card-grid:hover .popup-card:not(:hover) {
  flex: 0.8;
  opacity: 0.7;
}

.popup-card:hover {
  flex: 1;
}

.popup-thumb {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--card-bg);
  border-radius: 5px;
  position: relative; 
  overflow: hidden;
  margin-bottom: 10px;
}

.card-wide .popup-thumb { 
  aspect-ratio: 16/9; 
}

.popup-thumb::before {
  content: '자세히 보기 →';
  position: absolute; 
  inset: 0;
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-size: 13px; 
  font-weight: 700; 
  color: var(--accent);
  background: rgba(247,88,0,.07);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}

.popup-card:hover .popup-thumb::before { 
  opacity: 1; 
  transform: translateY(0); 
}

.dday-row {
  display: flex; 
  align-items: center; 
  gap: 6px; 
  margin-bottom: 5px;
}

/* Tags */
.tag,
.tag-outline,
.tag-fill {
  display: inline-flex;
  align-items: center;
  font-size: 11px; 
  padding: 2px 10px; 
  border-radius: 12px;
  white-space: nowrap;
  font-weight: 400;
}

.tag {
  height: 18px;
  padding: 0 6px;
  font-size: 13px;
}

.tag-outline {
  border: 1px solid var(--white); 
  color: var(--black);
  background: transparent;
}

.tag-fill {
  padding: 2px 12px;
  background: var(--white); 
  color: var(--black);
  border: none;
}

.tag--outline {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
}

.tag--filled {
  background: var(--black);
  color: var(--white);
  border: none;
}

.tag--outline.white {
  border-color: var(--white);
  color: var(--white);
}

.tag--filled.white-filled {
  background: var(--white);
  color: var(--dark);
}

.tag.sm { 
  height: 15px; 
  font-size: 11px; 
  padding: 0 6px; 
  border-radius: 10px; 
}

.popup-card-title {
  font-size: 14px; 
  font-weight: 500; 
  color: var(--black);
  transition: color .2s;
}

.popup-card:hover .popup-card-title { 
  color: var(--accent); 
}

/* ══════════════════════════════════════════════
   CALENDAR
══════════════════════════════════════════════ */
.main-title {
  font-family: 'HS산토끼체 2.0', 'Pretendard', sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 84px;
  color: #F75800;
  margin-bottom: 30px;
}

.main-title .month {
  color: #F75800;
}

.date-subtitle {
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  color: #000000;
  margin-bottom: 40px;
}

.content-wrapper {
  display: flex;
  gap: 40px;
}

.calendar-section {
  flex: 1;
  width: 100vw;
  padding: 1vw;
}

.calendar {
  width: 100%;
  max-width: 900px;
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.calendar-header div {
  font-weight: 600;
  font-size: 16px; 
  line-height: 19px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #333333;
  padding: 10px;
}

.calendar-header div:first-child {
  color: #F75800;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-top: 1px solid #E1E1E1;
}

.calendar-day {
  border-right: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
  min-height: 150px;
  min-width: 110px;
  padding: 1vw 1vw;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s;
}

.calendar-day:hover {
  background-color: #FFF5F0;
}

.calendar-day:nth-child(7n) {
  border-right: none;
}

.calendar-day.sunday .day-number {
  color: #F75800;
}

.day-number {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: -0.01em;
  color: #616161;
  margin-bottom: 8px;
}

.day-number.highlighted {
  background: #F75800;
  color: #FFFFFF;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.event-tag {
  background: #000000;
  border-radius: 3px;
  padding: 2px 4px;
  margin-left: -10px;
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin-top: 5px;
  display: inline-block;
  max-width: 120%;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.featured-section {
  margin-left: 0.1vw;
  margin-right: 1vw;
  width: 40vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-image {
  width: 100%;
  aspect-ratio: 10 / 3;
  height: 432px;
  background: #D9D9D9;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 256px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.featured-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.featured-tags {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tag-dday {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #FFFFFF;
}

.tag-mood {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 4px 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #212121;
}

.featured-details {
  margin-top: 25px;
  display: flex;
  gap: 50px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-label {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #3D3D3D;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-value {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #767676;
}

.icon {
  width: 16px;
  height: 16px;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.carousel-counter {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #434343;
}

.carousel-button {
  width: 38px;
  height: 38px;
  border: 1px solid #434343;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.carousel-button:hover {
  background: #f5f5f5;
}

.carousel-button.disabled {
  border-color: #D6D6D6;
  cursor: not-allowed;
}

.carousel-button.disabled:hover {
  background: transparent;
}

.carousel-button svg {
  width: 14px;
  height: 13px;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--gray-200) !important;
  padding: 48px 32px !important;
  margin-top: 40px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  position: relative !important;
  background: var(--white) !important;
}

footer .footer-inner {
  max-width: 1280px !important; 
  margin: 0 auto !important;
  display: flex !important; 
  align-items: flex-start !important; 
  justify-content: space-between !important;
  flex-wrap: wrap !important; 
  gap: 28px !important;
  box-sizing: border-box !important;
}

footer .footer-logo { 
  font-size: 20px !important; 
  font-weight: 900 !important; 
  margin-bottom: 8px !important;
  transition: none !important;
  transform: none !important;
}

footer .footer-logo span:first-child { 
  color: var(--accent) !important; 
}

footer .footer-desc { 
  font-size: 12px !important; 
  color: var(--gray-400) !important; 
  transition: none !important;
  transform: none !important;
}

footer .footer-links { 
  display: flex !important; 
  gap: 24px !important; 
  flex-wrap: wrap !important; 
  align-items: center !important; 
}

footer .footer-links button {
  font-size: 12px !important; 
  color: var(--gray-400) !important;
  transition: color .2s !important;
  transform: none !important;
  padding: 4px 8px !important;
}

footer .footer-links button:hover { 
  color: var(--black) !important; 
}

footer .footer-copy {
  max-width: 1280px !important; 
  margin: 24px auto 0 !important;
  font-size: 11px !important; 
  color: var(--gray-300) !important;
  transition: none !important;
  transform: none !important;
}

/* ══════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════ */
.placeholder {
  background: #D9D9D9;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   SUPPORT PAGE (팝업 제보)
══════════════════════════════════════════════ */
.support-container {
  background: #FFFEF9;
  padding: 60px 200px 100px;
  min-height: calc(100vh - 99px);
}

.form-group {
  margin-bottom: 28px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 19px;
}

.form-label span {
  font-weight: 600;
  font-size: 20px;
  color: #111111;
}

.form-label .required {
  color: #F75800;
}

.form-input {
  width: 100%;
  padding: 20px 16px;
  border: none;
  border-bottom: 1px solid #212121;
  background: transparent;
  font-size: 18px;
  font-family: 'Pretendard';
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-bottom-color: #F75800;
}

.form-input::placeholder {
  color: #AAAAAA;
}

.form-textarea {
  width: 100%;
  min-height: 265px;
  padding: 20px 16px;
  border: 1px solid #212121;
  background: transparent;
  font-size: 18px;
  font-family: 'Pretendard';
  resize: vertical;
  transition: border-color 0.3s;
}

.form-textarea:focus {
  outline: none;
  border-color: #F75800;
}

.form-textarea::placeholder {
  color: #AAAAAA;
}

.file-upload-section {
  margin-top: 40px;
}

.file-upload-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.file-upload-header h3 {
  font-weight: 600;
  font-size: 20px;
}

.file-upload-header .file-limit {
  font-size: 14px;
  color: #999999;
}

.file-upload-box {
  width: 120px;
  height: 120px;
  border: 1px solid #212121;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s;
}

.file-upload-box:hover {
  border-color: #F75800;
}

.file-upload-icon {
  width: 36px;
  height: 36px;
  position: relative;
}

.file-upload-icon::before,
.file-upload-icon::after {
  content: '';
  position: absolute;
  background: #212121;
}

.file-upload-icon::before {
  width: 2px;
  height: 36px;
  left: 50%;
  transform: translateX(-50%);
}

.file-upload-icon::after {
  width: 36px;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.submit-btn {
  width: 100%;
  height: 70px;
  background: #111111;
  color: #FFFFFF;
  border: none;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  margin-top: 60px;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #F75800;
}

/* ══════════════════════════════════════════════
   DETAIL PAGE (팝업 상세)
══════════════════════════════════════════════ */
.detail-hero {
  width: 100%;
  max-width: 1520px;
  height: 666px;
  position: relative;
  margin: 48px auto 32px;
}

.detail-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #D9D9D9;
}

.detail-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon {
  font-weight: 600;
  font-size: 36px;
  color: #FFFFFF;
  text-align: center;
}

.detail-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}

.detail-tags .tag {
  padding: 3px 10px;
  border: 1px solid #000000;
  border-radius: 12px;
  font-size: 14px;
  line-height: 17px;
}

.detail-tags .tag.filled {
  background: #000000;
  color: #FFFFFF;
}

.detail-meta-item {
  font-size: 20px;
  line-height: 24px;
  color: #616161;
}

.detail-info-section {
  display: flex;
  flex-direction: column;
  gap: 56px;
  overflow: visible;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
}

.info-block h3 {
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
}

.info-block p,
.info-block ul {
  font-size: 18px;
  line-height: 150%;
  color: #434343;
}

.info-block ul {
  list-style: none;
  padding: 0;
}

.content-link-box {
  width: 200px;
  height: 110px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: visible;
  transition: transform 0.3s;
}

.content-link-box:hover {
  transform: scale(1.05);
}

.content-link-text {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-container {
  width: 100%;
  height: 470px;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 150%;
  color: #434343;
}

/* ══════════════════════════════════════════════
   ABOUT PAGE (회사 소개)
══════════════════════════════════════════════ */
.about-hero {
  display: flex;
  padding: 0 67px 80px;
  gap: 62px;
  align-items: flex-start;
}

.about-hero-image {
  width: 546px;
  height: 592px;
  background: #D9D9D9;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
}

.image-placeholder {
  font-weight: 500;
  font-size: 26px;
  line-height: 150%;
  color: #111111;
}

.about-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
}

.about-quote {
  font-family: 'iceJaram', cursive;
  font-size: 70px;
  line-height: 78px;
  color: #F75800;
  margin-bottom: 60px;
}

.about-intro {
  font-weight: 500;
  font-size: 26px;
  line-height: 150%;
  margin-bottom: 28px;
}

.about-text {
  font-size: 18px;
  line-height: 150%;
  color: #434343;
  margin-bottom: 24px;
}

.about-vision-section {
  background: #111111;
  padding: 110px 67px;
  color: #FFFFFF;
}

.vision-title {
  font-weight: 600;
  font-size: 50px;
  line-height: 150%;
  margin-bottom: 36px;
}

.vision-divider {
  width: 1002px;
  height: 2px;
  background: #CCCCCC;
  margin: 40px 0;
}

.vision-text {
  font-size: 20px;
  line-height: 150%;
  color: #DEDEDE;
  max-width: 1002px;
}

.about-meaning-section {
  background: #FFFEF9;
  padding: 80px 67px;
}

.about-description {
  font-size: 20px;
  line-height: 150%;
  max-width: 643px;
  margin-bottom: 80px;
}

.meaning-circles {
  display: flex;
  gap: 80px;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 100px;
}

.meaning-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
}

.circle-number {
  font-family: 'Helvetica Neue LT Pro', sans-serif;
  font-weight: 300;
  font-size: 43px;
  line-height: 150%;
  color: #333333;
  position: absolute;
  top: -80px;
  left: -60px;
}

.circle-content {
  width: 513px;
  height: 283px;
  border: 1.67px solid #333333;
  border-radius: 50%;
  transform: rotate(-23.46deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.circle-content h3 {
  font-weight: 500;
  font-size: 23px;
  line-height: 150%;
  margin-bottom: 12px;
  transform: rotate(23.46deg);
}

.circle-content p {
  font-size: 18px;
  line-height: 150%;
  color: #616161;
  letter-spacing: -0.02em;
  transform: rotate(23.46deg);
}

.about-promise-section {
  padding: 80px 67px;
}

.promise-text {
  font-size: 20px;
  line-height: 150%;
  max-width: 631px;
}

.about-value-section {
  padding: 80px 67px;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.value-card {
  background: #111111;
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  color: #FFFFFF;
}

.value-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.value-card h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 150%;
  margin-bottom: 20px;
}

.value-card p {
  font-size: 20px;
  line-height: 150%;
  color: #DEDEDE;
}

.about-history-section {
  padding: 80px 67px;
}

.history-timeline {
  position: relative;
  padding-left: 10px;
}

.history-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #DEDEDE;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1440px 1fr;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 162px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  background: #434343;
  border-radius: 50%;
  position: absolute;
  left: -13px;
}

.timeline-dot.orange {
  background: #F75800;
}

.timeline-date {
  font-family: 'SantokkiFont', cursive;
  font-size: 100px;
  margin-left: 520px;
  line-height: 10px;
  color: rgba(247, 88, 0, 0.07);
}

.timeline-content {
  position:absolute;
  font-family: 'Pretendard', sans-serif;
  font-size: 20px;
  line-height: 150%;
  top: -10px;
  left: 10px;
}

.timeline-content.orange {
  color: #F75800;
}

.about-banner-section {
  overflow: hidden;
  padding: 60px 0;
  background: #F5F5F5;
}

.scrolling-banner {
  overflow: hidden;
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 55px;
  animation: bannerScroll 30s linear infinite;
  width: fit-content;
}

@keyframes bannerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.banner-image {
  width: 97px;
  height: 55px;
  background: #D9D9D9;
  object-fit: cover;
}

.banner-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 73px;
  color: #C8C4C1;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   CREW PAGE (크루원 소개)
══════════════════════════════════════════════ */
.crew-subtitle {
  font-size: 24px;
  line-height: 150%;
  color: #616161;
  text-align: center;
  max-width: 1070px;
  margin: 40px auto 0;
}

.crew-cards-section {
  padding: 60px 67px 100px;
}

.crew-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1786px;
  margin: 0 auto;
}

.crew-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crew-image {
  width: 574px;
  height: 392px;
  background: #D9D9D9;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 30px;
  margin-bottom: 48px;
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.crew-image .image-placeholder {
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.crew-name {
  font-weight: 600;
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  margin-bottom: 38px;
}

.crew-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.crew-info-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}

.crew-label {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: #333333;
}

.crew-value {
  font-size: 20px;
  line-height: 150%;
  color: #616161;
}

/* ══════════════════════════════════════════════
   About Us
══════════════════════════════════════════════ */

.section-wrapper {
      position: relative;
      display: flex;
      width: 100vw;
      height: 60vh;
      background: #ffffff;
      
    }
.section-wrapper div{
  padding: 1vw;
}
/* Rectangle 69 - grey box */
    .director-img {
      position: relative;
      width: 30vw;
      height: 60vh;
      background: #D9D9D9;
    }

    /* 큰 인용 텍스트 */
    .quote-text {
      position: relative;
      width: 723px;
      height: 200px;
      font-family: 'iceJaram', cursive;
      font-style: normal;
      font-weight: 400;
      font-size: 60px;
      line-height: 58px;
      color: #F75800;
    }

    /* 안녕하세요 subtitle */
    .subtitle {
      position: relative;
      width: 575px;
      height: 39px;
      font-family: 'Pretendard', sans-serif;
      font-style: normal;
      font-weight: 500;
      font-size: 25px;
      line-height: 150%;
      color: #111111;
      white-space: nowrap;
    }

    /* 본문 왼쪽 */
    .body-left {
      position: relative;
      width: 476px;
      height: 162px;
      font-family: 'Pretendard', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 150%;
      color: #434343;
      max-width: 48%;
    }

    /* 본문 오른쪽 */
    .body-right {
      position: relative;
      width: 476px;
      height: 135px;
      font-family: 'Pretendard', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 150%;
      color: #434343;
      max-width: 48%;
    }

    .highlight {
      color: #F75800;
      font-weight: 700;
    }

    .future-inner {
      max-width: 1920px;
      margin: 0 auto;
      padding: 0 60px;
      display: grid;
      grid-template-columns: 384px 1fr;
      gap: 0 60px;
      align-items: start;
    }

    /* ── LEFT: TITLE ── */
    .future-title-col {
      padding-top: 110px; /* vertically center relative to first text block */
    }

    .future-title {
      font-weight: 600;
      font-size: 50px;
      line-height: 150%;
      color: #FFFFFF;
      white-space: nowrap;
    }

    /* Star icon inline */
    .star-icon {
      display: inline-block;
      vertical-align: middle;
      margin-left: -50px;
      margin-bottom: 40px;
      width: 48px;
      height: 48px;
    }

    /* ── RIGHT: CONTENT ── */
    .future-content-col {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* divider line */
    .divider {
      width: 100%;
      height: 2px;
      background: #CCCCCC;
      margin-bottom: 20px;
    }

    /* text block */
    .future-text {
      font-family: 'Pretendard', sans-serif;
      font-style: normal;
      font-weight: 400;
      font-size: 18px;
      line-height: 150%;
      color: #DEDEDE;
      margin-bottom: 30px;
    }

    .future-text .bold-orange {
      color: #DEDEDE;
      font-weight: 700;
    }

    /* Gap between first and second blocks */
    .section-gap {
      height: 50px;
    }

    .future-section {
      width: 100%;
      background: #111111;
      padding: 80px 0;
    }

    .container {
    position: relative;
    width: 584px;
    height: 899px;
  }
  svg {
    width: 100%;
    height: 100%;
  }

  /* 각 타원 그룹 hover 트리거 */
  .ellipse-group {
    cursor: pointer;
  }

  /* 호버 시 타원 그룹 확대 */
  .ellipse-group {
    transform-box: fill-box;
    transform-origin: center center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .ellipse-group:hover {
    transform: scale(1.04);
  }

  /* 애니메이션 패스 숨김 */
  .anim-path { display: none; }

  .responsive-box {
            width: 100%;
            aspect-ratio: 4 / 5; /* 원하는 비율 설정 */
            position: relative;
            overflow: hidden;
  }

  .responsive-box img {
        height: 100%;          /* div 높이에 맞춤 */
        object-fit: cover;     /* 사진이 찌그러지지 않게 비율 유지하며 채움 */
        display: block
  }

  .detailBtn {
    /* 기본 스타일 */
    margin: 10px auto;
    padding: 8px 18px;      /* 크기를 살짝 키워 여유를 줍니다 */
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid #eeeeee; /* 테두리를 연하게 하면 더 고급스러워요 */
    border-radius: 50px;       /* 완전한 알약 모양 */
    font-size: 12px;
    font-weight: 700; /* 초기 위치 */
    color: #333333;
    
    /* 그림자: 입체감을 줍니다 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    
    /* 애니메이션 속도 조절 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .detailBtn:hover {
        background-color: #111111; /* 배경색을 검정으로 */
        color: #ffffff;            /* 글자색을 흰색으로 */
        transform: translateY(-3px); /* 위로 살짝 뜨는 효과 */
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    /* 클릭했을 때 (Active) */
    .detailBtn:active {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

/* ══════════════════════════════════════════════
   RESPONSIVE — 데스크톱 (1920px 이상)
══════════════════════════════════════════════ */
@media (min-width: 1921px) {
  body { overflow-x: auto; }
  
  main,
  .section,
  .section-weekly,
  .section-sosopick,
  .section-today,
  .section-more {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 데스크톱 (1400px ~ 1920px)
══════════════════════════════════════════════ */
@media (min-width: 1401px) and (max-width: 1920px) {
  .support-container {
    padding: 60px 100px 100px;
  }

  .about-hero,
  .about-vision-section,
  .about-meaning-section,
  .about-promise-section,
  .about-value-section,
  .about-history-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .meaning-circles { gap: 40px; }

  .circle-content {
    width: 400px;
    height: 220px;
  }

  .carousel-wrapper { max-width: 1600px; }

  .left-card  { transform: translateX(calc(-50% - 420px)) scale(0.9)  rotateY(12deg);  }
  .right-card { transform: translateX(calc(-50% + 420px)) scale(0.9)  rotateY(-12deg); }
  .far-left-card  { transform: translateX(calc(-50% - 750px)) scale(0.81) rotateY(20deg);  }
  .far-right-card { transform: translateX(calc(-50% + 750px)) scale(0.81) rotateY(-20deg); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 태블릿 (1400px 이하)
══════════════════════════════════════════════ */
@media (max-width: 1400px) {
  .content-wrapper { flex-direction: column; }

  .featured-section {
    width: 100%;
    max-width: 925px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 태블릿 (1200px 이하)
   detail-section: 가로 유지, 간격 축소 시작
══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .detail-section {
    gap: 2.5vw;
    padding: 56px 0 64px;
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 태블릿 (1024px 이하)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  main { padding: 60px 32px; }

  #header .header-inner,
  .navbar .header-inner { padding: 0 18px !important; }

  .hero-grid { width: 380px; }

  .section { 
    padding: 3.5vw 0; 
    max-width: 92vw;
    min-height: 45vw;
  }

  .section-heading,
  .section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 35px;
  }

  .section-sub {
    font-size: 22px;
    line-height: 28px;
  }

  .partnership-section {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .card-grid { gap: 12px; }

  .popup-thumb { aspect-ratio: 3/4; }

  .popup-card-title { font-size: 13px; }

  .tag-outline, .tag-fill {
    font-size: 10px;
    padding: 2px 8px;
  }

  .main-title { font-size: 44px; line-height: 58px; margin-bottom: 18px; }

  .date-subtitle { font-size: 22px; line-height: 28px; margin-bottom: 28px; }

  .content-wrapper { gap: 25px; }

  .calendar-section { flex: 1; padding: 0.5vw; }

  .featured-section { width: 36vw; margin-left: 0; margin-right: 0.5vw; }

  .calendar-day { min-height: 100px; min-width: 85px; padding: 10px 8px; }

  .day-number { font-size: 14px; }

  .event-tag { font-size: 15px; padding: 2px 3px; }

  .featured-image { height: 360px; }

  .featured-overlay { height: 200px; padding: 22px; }

  .featured-title { font-size: 20px; line-height: 26px; margin-bottom: 12px; }

  .featured-details { gap: 35px; margin-top: 18px; }

  .detail-label { font-size: 18px; }
  .detail-value { font-size: 15px; }

  .grid { gap: 16px; }
  .col  { gap: 16px; }

  .masonry-grid { grid-template-columns: 1fr 1fr; }

  .about-hero { flex-direction: column; }

  .about-hero-image { width: 100%; max-width: 546px; }

  .meaning-circles { flex-direction: column; align-items: center; }

  .value-cards { grid-template-columns: 1fr; }

  .crew-cards { grid-template-columns: 1fr; }

  .crew-image { width: 100%; max-width: 574px; }

  /* detail-section: 1024px 이하, 가로 유지 + 타이포 축소 */
  .detail-section {
    grid-template-columns: 50vw 1fr;
    gap: 2vw;
    padding: 40px 0 52px;
  }

  .detail-content .detail-title {
    font-size: clamp(18px, 2.4vw, 28px);
    margin-bottom: clamp(14px, 1.8vw, 22px);
  }

  .detail-content .detail-meta {
    gap: clamp(12px, 1.6vw, 20px);
    margin-bottom: clamp(12px, 1.4vw, 20px);
    flex-wrap: wrap;
  }

  .detail-content .meta-label { font-size: clamp(12px, 1.1vw, 15px); }
  .detail-content .meta-value { font-size: clamp(10px, 0.9vw, 13px); }

  .detail-content .detail-desc {
    font-size: clamp(12px, 1vw, 15px);
    margin-bottom: clamp(14px, 1.4vw, 22px);
  }

  .detail-content .btn-detail {
    width:  clamp(64px, 6vw, 90px);
    height: clamp(64px, 6vw, 90px);
  }

  .future-inner {
        grid-template-columns: 1fr;
        padding: 0 40px;
        gap: 0;
      }

      .future-title-col {
        padding-top: 0;
        margin-bottom: 40px;
      }

      .future-title {
        font-size: 40px;
        white-space: normal;
      }

      .star-icon {
        width: 38px;
        height: 38px;
      }

      .future-text {
        font-size: 17px;
      }

      .section-gap {
        height: 36px;
      }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 태블릿 (900px 이하)
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .navbar { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-item { font-size: 12px; }

  .section-weekly,
  .section-sosopick,
  .section-today,
  .section-more { 
    padding-left: 20px; 
    padding-right: 20px; 
  }

  .carousel-wrapper { height: 500px; }
  .carousel-track { gap: 12px; }

  .center-card .card { width: 400px; height: 480px; }
  .left-card .card,
  .right-card .card    { width: 350px; height: 420px; }
  .far-left-card .card,
  .far-right-card .card { width: 300px; height: 360px; }

  .left-card  { transform: translateX(calc(-50% - 420px)) scale(0.88) rotateY(10deg); }
  .right-card { transform: translateX(calc(-50% + 420px)) scale(0.88) rotateY(-10deg); }
  .far-left-card  { transform: translateX(calc(-50% - 720px)) scale(0.75) rotateY(15deg); }
  .far-right-card { transform: translateX(calc(-50% + 720px)) scale(0.75) rotateY(-15deg); }

  .masonry-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mcard-a { grid-column: 1/2; grid-row: 1/2; }
  .mcard-b { grid-column: 2/3; grid-row: 1/2; }
  .mcard-c { grid-column: 1/2; grid-row: 2/3; }
  .mcard-d { grid-column: 2/3; grid-row: 2/3; }

  .mcard-a .mcard-img,
  .mcard-b .mcard-img,
  .mcard-c .mcard-img,
  .mcard-d .mcard-img { height: 200px; }

  .more-grid { grid-template-columns: 1fr 1fr; }
  .more-card-big { grid-column: 1 / -1; }

  /* detail-section: 900px 이하, 가로 유지 + 더 적극 축소 */
  .detail-section {
    gap: 1.6vw;
    padding: 32px 0 44px;
  }

  .detail-content .detail-title {
    font-size: clamp(16px, 2.2vw, 22px);
    margin-bottom: clamp(12px, 1.4vw, 18px);
  }

  .detail-content .meta-label { font-size: clamp(11px, 1vw, 14px); }
  .detail-content .meta-value { font-size: clamp(10px, 0.85vw, 12px); }

  .detail-content .detail-desc {
    font-size: clamp(11px, 0.95vw, 14px);
    line-height: 1.65;
  }

  .detail-content .btn-detail {
    width:  clamp(56px, 5.5vw, 80px);
    height: clamp(56px, 5.5vw, 80px);
  }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 태블릿 (768px 이하) ⚡ 세로 전환
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  main { padding: 40px 12px; }

  .nav-links { display: none; }
  .hamburger { display: flex !important; }
  .mobile-menu { display: block; }

  #header .header-inner,
  .navbar .header-inner { padding: 0 18px !important; }

  .banner-strip { padding: 7px 0; }
  .marquee-track span { font-size: 10px; }

  .carousel-wrapper { height: 400px; }

  .center-card .card { width: 300px; height: 380px; }
  .left-card .card,
  .right-card .card   { width: 240px; height: 300px; }

  .far-left-card,
  .far-right-card { opacity: 0; pointer-events: none; }

  .left-card  { transform: translateX(calc(-50% - 280px)) scale(0.8); }
  .right-card { transform: translateX(calc(-50% + 280px)) scale(0.8); }

  .hero { flex-direction: column; min-height: auto; }
  .hero-main { min-height: 260px; }
  .hero-main-info { bottom: 22px; left: 22px; }
  .hero-main-info h2 { font-size: 20px; }
  .hero-main-info p  { font-size: 11px; }
  .hero-grid { width: 100%; grid-template-columns: 1fr 1fr; gap: 1px; }
  .hero-card { padding: 11px; }
  .hero-card-title { font-size: 11px; }
  .hero-card-sub { font-size: 10px; }
  .dot-accent { width: 6px; height: 6px; }

  .scrolling-text-container { margin: 30px 0; padding: 1px 0; height: 50px; }
  .scrolling-text { gap: 20px; }
  .scrolling-text span { font-size: 30px; }
  .scrolling-text img { width: 40px; height: 50px; margin: 0 -5px; }

  .section { padding: 3vw 18px; max-width: 100%; min-height: auto; }
  .section-label { margin-bottom: 18px; }
  .section-label .bullet { width: 7px; height: 7px; }
  .section-label span { font-size: 14px; }
  .section-heading { font-size: clamp(26px, 5vw, 36px); margin-bottom: 28px; }
  .section-sub { font-size: 19px; line-height: 24px; }

  .partnership-section { padding-left: 18px; padding-right: 18px; }
  .partnership-card { height: 110px; padding: 0 18px; }
  .partnership-card .card-title { font-size: 20px; line-height: 24px; }
  .partnership-card .card-description { font-size: 15px; line-height: 18px; }

  .card-grid { gap: 9px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .popup-card { min-width: 130px; }
  .popup-thumb { margin-bottom: 7px; border-radius: 4px; }
  .popup-card-title { font-size: 11px; }
  .tag-outline, .tag-fill { font-size: 9px; padding: 2px 7px; }

  .main-title { font-size: 36px; line-height: 48px; margin-bottom: 16px; }
  .date-subtitle { font-size: 19px; line-height: 24px; margin-bottom: 24px; }
  .content-wrapper { gap: 20px; }
  .calendar-section { width: 100%; padding: 1vw; }
  .calendar-header { padding-bottom: 10px; margin-bottom: 10px; }
  .calendar-header div { font-size: 12px; padding: 7px 3px; }
  .calendar-day { height: 5vw; min-width: 5vw; padding: 5px 1px; }
  .day-number { font-size: 8px; margin-top: -5px; margin-bottom: 1px; }
  .day-number.highlighted { width: 18px; height: 18px; font-size: 12px; }
  .event-tag { font-size: 8px; padding: 0 0; margin-top: 0; margin-left: 1px; }

  .featured-section { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; }
  .featured-image { height: 280px; }
  .featured-overlay { height: 170px; padding: 20px; }
  .featured-title { font-size: 18px; line-height: 24px; margin-bottom: 10px; }
  .featured-tags { gap: 7px; }
  .tag-dday, .tag-mood { font-size: 12px; }
  .tag-mood { padding: 3px 10px; }
  .featured-details { gap: 30px; margin-top: 16px; }
  .detail-label { font-size: 17px; }
  .detail-value { font-size: 14px; }
  .icon { width: 14px; height: 14px; }
  .carousel-controls { margin-top: 12px; }
  .carousel-button { width: 34px; height: 34px; }

  .popup-content { min-width: 320px; padding: 30px 35px; }
  .popup-message p { font-size: 16px; }

  .grid { gap: 8px; }
  .col  { gap: 8px; }
  .card-content { padding: 10px; }
  .card-title { font-size: clamp(10px, 3.5vw, 16px); }
  .card-tag { font-size: clamp(8px, 2.5vw, 12px); margin-bottom: 4px; }
  .arrow-icon { width: 5px; height: 9px; border-width: 1.5px; }

  .masonry-grid { grid-template-columns: 1fr; gap: 24px; }

  .logo-svg { width: 280px; }

  .support-container { padding: 40px 20px; }
  .detail-hero { height: 200px; margin: 0px; }

  .about-quote { font-size: 40px; line-height: 48px; }
  .vision-divider { width: 100%; }
  .history-timeline::before { left: 51px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-dot { left: 47px; }
  .timeline-date { font-size: 60px; line-height: 84px; }

  .floating-arena { height: 320px; }
  .today-label { padding: 0 20px; }

  /* detail-section: 768px 이하 ⚡ 세로 배치 전환 */
  .detail-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0 48px;
  }

  .detail-image {
    width: 100%;
  }

  .detail-image img {
    width: 100%;
    height: 100%;
  }

  .detail-content {
    width: 100%;
  }

  .detail-content .detail-title {
    font-size: clamp(20px, 5vw, 28px);
    margin-bottom: 18px;
  }

  .detail-content .detail-meta {
    gap: 16px;
    margin-bottom: 16px;
  }

  .detail-content .meta-label { font-size: 14px; }
  .detail-content .meta-value { font-size: 12px; }
  .detail-content .meta-icon  { font-size: 16px; }

  .detail-content .detail-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .btn-detail {
    width: 80px;
    height: 80px;
    align-self: flex-start;
  }

  .btn-detail span  { font-size:10px; }
  .btn-detail small { font-size: 7px; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 모바일 (640px 이하)
══════════════════════════════════════════════ */
@media (max-width: 640px) {
  .section-today { padding: 40px 20px; }
  .masonry-grid { grid-template-columns: 1fr; gap: 24px; }
  .future-section {
        padding: 54px 0;
      }
  .future-inner {
        padding: 0 20px;
      }

      .future-title {
        font-size: 30px;
      }

      .star-icon {
        width: 28px;
        height: 28px;
      }

      .future-title-col {
        margin-bottom: 28px;
      }

      .future-text {
        font-size: 15px;
        line-height: 160%;
      }

      .divider {
        margin-bottom: 16px;
      }

      .section-gap {
        height: 24px;
      }
}

/* ══════════════════════════════════════════════
   RESPONSIVE — 모바일 (480px 이하)
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  #header .header-inner,
  .navbar .header-inner { padding: 0 14px !important; }

  #header .logo,
  .navbar .logo { font-size: 19px !important; }

  .icon-btn { width: 32px; height: 32px; }
  .icon-btn svg { width: 16px; height: 16px; }
  .avatar { width: 28px; height: 28px; }

  .banner-strip { padding: 6px 0; }
  .marquee-track { gap: 48px; }
  .marquee-track span { font-size: 9px; }

  .hero-main { min-height: 220px; }
  .hero-main-info { bottom: 18px; left: 18px; }
  .hero-main-info .eyebrow { font-size: 9px; margin-bottom: 4px; }
  .hero-main-info h2 { font-size: 18px; }
  .hero-main-info p  { font-size: 10px; }
  .hero-card { padding: 9px; }
  .hero-card-title { font-size: 10px; gap: 4px; }
  .hero-card-sub { font-size: 9px; }
  .dot-accent { width: 5px; height: 5px; }

  .scrolling-text span { font-size: 25px; }
  .scrolling-text img { width: 40px; height: 40px; margin: 0 -10px; }
  .scrolling-text-container { height: 40px; }

  .carousel-wrapper { overflow: visible; height: clamp(220px, 55vw, 400px); }
  .far-left-card  { opacity: 0.45; }
  .far-right-card { opacity: 0.45; }
  .left-card  { transform: translateX(calc(-50% - 28vw)) scale(0.82); }
  .right-card { transform: translateX(calc(-50% + 28vw)) scale(0.82); }
  .far-left-card  { transform: translateX(calc(-50% - 52vw)) scale(0.68); }
  .far-right-card { transform: translateX(calc(-50% + 52vw)) scale(0.68); }

  .section { padding: 28px 14px; }
  .section-label { margin-bottom: 15px; gap: 6px; }
  .section-label .bullet { width: 6px; height: 6px; }
  .section-label span { font-size: 13px; }
  .section-heading { font-size: clamp(22px, 6vw, 28px); margin-bottom: 24px; }
  .section-sub { font-size: 17px; line-height: 22px; }

  .partnership-section { padding-left: 14px; padding-right: 14px; }
  .partnership-card { height: 100px; padding: 0 14px; }
  .partnership-card .card-title { font-size: 18px; line-height: 22px; }
  .partnership-card .card-description { font-size: 14px; line-height: 17px; }

  .card-grid { gap: 7px; }
  .popup-card { min-width: 110px; }
  .popup-thumb { border-radius: 4px; margin-bottom: 6px; }
  .popup-card-title { font-size: 10px; }
  .tag-outline, .tag-fill { font-size: 8px; padding: 1px 6px; }
  .dday-row { gap: 4px; margin-bottom: 3px; }

  .main-title { font-size: 28px; line-height: 38px; margin-bottom: 14px; }
  .date-subtitle { font-size: 16px; line-height: 21px; margin-bottom: 20px; }
  .content-wrapper { gap: 18px; }

  .calendar-header { padding-bottom: 8px; margin-bottom: 8px; }
  .calendar-header div { font-size: 10px; padding: 5px 2px; }
  .calendar-day { min-height: 65px; min-width: 42px; padding: 6px 3px; overflow: hidden; display: flex; flex-direction: column; box-sizing: border-box; }
  .day-number { font-size: 8px; margin-bottom: 1px; }
  .day-number.highlighted { width: 15px; height: 15px; font-size: 8px; }
  .event-tag { font-size: 7px; padding: 0 1px; margin-top: 1px; display: block; width: 100%; max-width: 100%; box-sizing: border-box; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex-shrink: 0; }

  .featured-image { height: 240px; }
  .featured-overlay { height: 140px; padding: 16px; }
  .featured-title { font-size: 15px; line-height: 20px; margin-bottom: 8px; }
  .featured-tags { gap: 5px; }
  .tag-dday, .tag-mood { font-size: 10px; }
  .tag-mood { padding: 2px 8px; }
  .featured-details { gap: 22px; margin-top: 14px; }
  .detail-item { gap: 6px; }
  .detail-label { font-size: 15px; }
  .detail-value { font-size: 12px; }
  .icon { width: 13px; height: 13px; }

  .carousel-controls { margin-top: 10px; gap: 8px; }
  .carousel-counter { font-size: 11px; }
  .carousel-button { width: 30px; height: 30px; }
  .carousel-button svg { width: 11px; height: 10px; }

  .popup-content { min-width: 280px; padding: 25px 20px; margin: 0 20px; }
  .popup-message { margin-bottom: 20px; }
  .popup-message p { font-size: 15px; }
  .popup-close { padding: 10px 20px; font-size: 14px; }

  footer { padding: 32px 14px !important; margin-top: 32px !important; }
  footer .footer-inner { flex-direction: column !important; gap: 18px !important; }
  footer .footer-logo { font-size: 18px !important; margin-bottom: 6px !important; }
  footer .footer-desc { font-size: 11px !important; }
  footer .footer-links { gap: 18px !important; }
  footer .footer-links button { font-size: 11px !important; }
  footer .footer-copy { margin-top: 18px !important; font-size: 10px !important; }

  .logo-svg { width: 220px; }

  .floating-arena { height: 340px; }

  /* detail-section: 480px 이하 */
  .detail-section {
    gap: 18px;
    padding: 28px 0 36px;
  }

  .detail-content .detail-title {
    font-size: clamp(18px, 5vw, 24px);
    margin-bottom: 14px;
  }

  .detail-content .detail-meta {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
  }

  .detail-content .meta-label { font-size: 13px; }
  .detail-content .meta-value { font-size: 11px; }
  .detail-content .detail-desc { font-size: 13px; margin-bottom: 16px; }

  .btn-detail {
    width: 70px;
    height: 70px;
  }

  .sosopick-watermark {
    margin-top: -30px;
  }

  .sosopick-name {
    font-size: 6vw;
  }

  .sosopick-tags {
    font-size: 3vw;
  }

  .center-card .card { width: 50vw; height: 60vw;}
  .left-card .card {width: 50vw; height: 60vw;}
  .right-card .card {width: 50vw; height: 60vw;}
  .far-left-card .card {width: 50vw; height: 60vw;}
  .far-right-card .card {width: 50vw; height: 60vw;}
  
}