/* ============ GOOGLE FONTS ============ */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  font-family: 'Roboto', sans-serif;
}

body {
  min-height: 100vh;
  background-color: #ffffff;
  color: #111827;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ============ CSS VARIABLES ============ */
:root {
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-500: #f59e0b;
  --rose-50: #fff1f2;
  --rose-400: #fb7185;
  --teal-50: #f0fdfa;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --cyan-50: #ecfeff;
  --emerald-50: #ecfdf5;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --green-50: #f0fdf4;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --pink-50: #fdf2f8;
  --pink-500: #ec4899;
  --purple-50: #faf5ff;
  --purple-600: #9333ea;
  --red-50: #fef2f2;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue-50: #eff6ff;
  --blue-700: #1d4ed8;
  --emerald-100: #d1fae5;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --gray-400: #9ca3af;
}

/* ============ LAYOUT ============ */
.container {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container--wide {
  max-width: 80rem;
}

.container--medium {
  max-width: 64rem;
}

/* ============ SECTION COMMON ============ */
.section {
  padding: 6rem 1rem;
}

.section--videos,
.section--business,
.section--sns {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.section-icon i {
  font-size: 1.875rem;
  color: #ffffff;
}

.section-icon--orange-rose {
  background: linear-gradient(135deg, var(--orange-400), var(--rose-400));
}

.section-icon--teal {
  background: linear-gradient(135deg, var(--teal-400), var(--emerald-400));
}

.section-icon--orange-amber {
  background: linear-gradient(135deg, var(--orange-400), var(--amber-500));
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

/* ============ NAVBAR ============ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.navbar-logo img {
  height: 3rem;
  width: auto;
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  transition: color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.nav-link:hover {
  color: #fdba74;
}

#navbar.scrolled .nav-link {
  color: var(--gray-700);
}

#navbar.scrolled .nav-link:hover {
  color: var(--orange-500);
}

.mobile-menu-btn {
  display: flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
}

.nav-icon {
  color: white;
}

#navbar.scrolled .nav-icon {
  color: var(--gray-700);
}

.mobile-menu {
  background-color: white;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu.hidden {
  display: none;
}

.mobile-menu-inner {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--orange-500);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide.inactive {
  opacity: 0;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text {
  width: 100%;
  text-align: center;
  padding: 0 1rem;
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.625;
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  width: 32px;
  background-color: white;
}

/* ============ PROGRAM CARDS (ARTISTS & SPORTS) ============ */
.section--artists {
  background: linear-gradient(135deg, var(--amber-50), var(--orange-50), var(--rose-50));
}

.section--sports {
  background: linear-gradient(135deg, var(--teal-50), var(--cyan-50), var(--emerald-50));
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.program-card {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.5s;
  cursor: pointer;
}

.program-card:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.program-card-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}

.program-card-icon-inner {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.program-card-icon-inner i {
  font-size: 1.5rem;
}

.program-icon--orange {
  color: var(--orange-500);
}

.program-icon--teal {
  color: var(--teal-500);
}

.program-card-img-wrap {
  position: relative;
  width: 100%;
  height: 18rem;
  overflow: hidden;
}

.program-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transition: transform 0.7s ease;
}

.program-card:hover .program-card-img {
  transform: scale(1.05);
}

.program-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent, transparent);
}

.program-card-body {
  padding: 2rem;
}

.program-card-body--orange {
  background: linear-gradient(135deg, #ffffff, rgba(255, 247, 237, 0.5));
}

.program-card-body--teal {
  background: linear-gradient(135deg, #ffffff, rgba(240, 253, 250, 0.5));
}

.program-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.program-card-desc {
  color: var(--gray-600);
  line-height: 1.625;
}

/* ============ VIDEOS ============ */
.section--videos {
  background-color: white;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.video-card {
  display: block;
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.video-card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  transform: translateY(-4px);
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  height: 12rem;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s;
}

.video-card:hover .video-thumb {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-card:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.video-play-btn {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red-600);
  border-radius: 9999px;
  transition: transform 0.2s;
}

.video-play-btn i {
  font-size: 1.875rem;
  color: white;
}

.video-card:hover .video-play-btn {
  transform: scale(1.1);
}

.video-info {
  padding: 1.25rem;
}

.video-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color 0.2s;
}

.video-card:hover .video-title {
  color: var(--orange-600);
}

.videos-more {
  text-align: center;
  margin-top: 3rem;
}

.youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: var(--red-600);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: background-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.youtube-btn i {
  font-size: 1.25rem;
}

.youtube-btn:hover {
  background-color: var(--red-700);
}

/* ============ ABOUT ============ */
.section--about {
  background: linear-gradient(to bottom, var(--amber-50), var(--orange-50));
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-img-wrap {
  position: relative;
}

.about-img-deco {
  position: absolute;
  border-radius: 9999px;
  opacity: 0.5;
}

.about-img-deco--tl {
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background-color: var(--orange-200);
}

.about-img-deco--br {
  bottom: -1rem;
  right: -1rem;
  width: 8rem;
  height: 8rem;
  background-color: var(--amber-200);
}

.about-img-inner {
  position: relative;
  width: 100%;
  height: 20rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(124, 45, 18, 0.3), transparent);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-quote-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--orange-100);
  border-radius: 9999px;
  width: fit-content;
}

.about-quote-badge i {
  color: var(--orange-500);
}

.about-quote-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--orange-700);
}

.about-heading-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
}

.about-desc {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.625;
}

.about-desc strong {
  color: var(--orange-600);
}

.about-text-block {
  padding-left: 0.5rem;
  margin-bottom: 4rem;
}

.about-values-header-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.about-values-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange-400), var(--amber-500));
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.about-values-icon-wrap i {
  font-size: 1.25rem;
  color: white;
}

.about-values-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-body p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.625;
}

.about-body strong {
  color: var(--orange-600);
}

.about-signature {
  padding-top: 1rem;
  border-top: 1px solid var(--orange-200);
  margin-top: 0.5rem;
}

.about-signature p {
  color: var(--gray-800);
  font-weight: 600;
}

.about-signature p.about-signature-name {
  color: var(--orange-600);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.value-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  text-align: center;
  cursor: pointer;
  border: 1px solid var(--orange-100);
  transition: all 0.3s;
}

.value-card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.value-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, var(--orange-100), var(--amber-100));
  border-radius: 1rem;
  margin-bottom: 1.25rem;
  transition: transform 0.2s;
}

.value-card:hover .value-card-icon {
  transform: scale(1.1);
}

.value-card-icon i {
  font-size: 1.875rem;
  color: var(--orange-500);
}

.value-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.value-card-desc {
  color: var(--gray-600);
}

/* ============ BUSINESS ============ */
.section--business {
  background: linear-gradient(to bottom, var(--orange-50), white);
}

.proposal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.proposal-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s;
}

.proposal-card:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.proposal-header {
  padding: 1.25rem 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.proposal-header--orange {
  background: linear-gradient(to right, var(--orange-500), var(--orange-600));
}

.proposal-header--teal {
  background: linear-gradient(to right, var(--teal-500), var(--teal-600));
}

.proposal-header-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  flex-shrink: 0;
}

.proposal-header-icon i {
  font-size: 1.25rem;
}

.proposal-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.proposal-body {
  padding: 1.25rem 1.5rem;
}

.proposal-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.proposal-list li {
  display: flex;
  align-items: center;
  color: var(--gray-700);
  gap: 0.5rem;
}

.proposal-list li i {
  color: var(--orange-500);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.proposal-list li span {
  font-size: 0.875rem;
}

.proposal-desc {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.625;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--gray-900);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: background-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.phone-btn:hover {
  background-color: var(--gray-800);
}

/* ============ SNS ============ */
.section--sns {
  background-color: white;
}

.sns-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.sns-card {
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}

.sns-card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  transform: translateY(-8px);
}

.sns-card--instagram {
  background: linear-gradient(135deg, var(--pink-50), var(--purple-50));
}

.sns-card--blog {
  background: linear-gradient(135deg, var(--green-50), var(--emerald-50));
}

.sns-card--youtube {
  background: linear-gradient(135deg, var(--red-50), var(--orange-50));
}

.sns-card--clip {
  background: linear-gradient(135deg, var(--emerald-50), var(--teal-50));
}

.sns-card-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  color: white;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transition: transform 0.3s;
}

.sns-card:hover .sns-card-icon {
  transform: scale(1.1);
}

.sns-card-icon i {
  font-size: 2.5rem;
}

.sns-icon--instagram {
  background: linear-gradient(to right, var(--pink-500), var(--purple-600));
}

.sns-icon--blog {
  background: linear-gradient(to right, var(--green-500), var(--green-600));
}

.sns-icon--youtube {
  background: linear-gradient(to right, #ef4444, var(--red-600));
}

.sns-icon--clip {
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
}

.sns-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.sns-card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.sns-card-link {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.sns-card:hover .sns-card-link {
  color: var(--gray-700);
}

.sns-card-link i {
  transition: transform 0.2s;
}

.sns-card:hover .sns-card-link i {
  transform: translateX(4px);
}

/* ============ SHOP ============ */
.shop-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.shop-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.shop-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 247, 237, 0.9), rgba(255, 251, 235, 0.8));
}

.shop-inner {
  position: relative;
  z-index: 10;
  padding-left: 1rem;
  padding-right: 1rem;
}

.shop-card-wrap {
  max-width: 42rem;
  margin: 0 auto;
}

.shop-card {
  display: block;
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.shop-card:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  transform: translateY(-8px);
}

.shop-card-inner {
  padding: 1.5rem;
}

.shop-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.shop-logo-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-500);
  border-radius: 1rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.shop-logo-icon i {
  font-size: 1.875rem;
  color: white;
}

.shop-naver-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.shop-store-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.shop-card-body {
  margin-bottom: 1.5rem;
}

.shop-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.shop-desc {
  color: var(--gray-600);
}

.shop-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.shop-badge--orange {
  background-color: var(--orange-50);
  color: var(--orange-700);
}

.shop-badge--green {
  background-color: var(--green-50);
  color: var(--green-600);
}

.shop-badge--blue {
  background-color: var(--blue-50);
  color: var(--blue-700);
}

.shop-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  color: var(--orange-600);
  font-weight: 500;
  transition: transform 0.2s;
}

.shop-card:hover .shop-link {
  transform: translateX(8px);
}

.shop-link-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange-100);
  border-radius: 9999px;
  transition: background-color 0.2s;
}

.shop-card:hover .shop-link-icon {
  background-color: var(--orange-200);
}

.shop-link-icon i {
  font-size: 1.25rem;
}

/* ============ EMPLOYMENT ============ */
.section--employment {
  background-color: var(--emerald-50);
}

.employment-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.employment-text {
  flex: 1;
  width: 100%;
}

.employment-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald-600);
  margin-bottom: 1rem;
}

.employment-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.employment-desc-main {
  font-size: 1.125rem;
  color: var(--gray-700);
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.625;
}

.employment-highlight {
  color: var(--emerald-600);
  font-weight: 700;
}

.employment-desc-sub {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.employment-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--emerald-600);
  color: white;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s;
}

.employment-btn:hover {
  background-color: var(--emerald-700);
}

.employment-cards {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1), 0 1px 2px rgb(0 0 0 / 0.06);
  transition: box-shadow 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.benefit-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--emerald-100);
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.benefit-card-icon i {
  font-size: 1.5rem;
  color: var(--emerald-600);
}

.benefit-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.benefit-card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* ============ CONTACT ============ */
.section--contact {
  background-color: white;
}

.contact-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 0.75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-company {
  margin-bottom: 0.5rem;
}

.contact-company-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-company-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.625;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange-50);
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.contact-item-icon i {
  font-size: 1.25rem;
  color: var(--orange-500);
}

.contact-item-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-bottom: 0.125rem;
}

.contact-item-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
}

.contact-item-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-link:hover {
  color: var(--orange-500);
}

.contact-map {
  width: 100%;
  height: 20rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.kakao-map-link {
  display: block;
  width: 100%;
  height: calc(100% - 2.25rem);
  overflow: hidden;
}

.kakao-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.kakao-map-link:hover .kakao-map-img {
  transform: scale(1.03);
}

.kakao-map-footer {
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.75rem;
  background-color: #f9f9f9;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.kakao-map-view-btn {
  font-size: 0.75rem;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.kakao-map-view-btn:hover {
  color: var(--orange-500);
}

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: white;
}

.footer-inner {
  padding: 4rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 3rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.625;
}

.footer-contact h4,
.footer-sns h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-phone:hover {
  color: white;
}

.footer-sns-links {
  display: flex;
  gap: 1rem;
}

.footer-sns-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  transition: background-color 0.2s;
  text-decoration: none;
  color: white;
}

.footer-sns-link:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.footer-sns-link i {
  font-size: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============ RESPONSIVE : sm (640px+) ============ */
@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sns-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-card-inner {
    padding: 2rem;
  }
}

/* ============ RESPONSIVE : md (768px+) ============ */
@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .navbar-links {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .about-heading {
    font-size: 1.5rem;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .proposal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ RESPONSIVE : lg (1024px+) ============ */
@media (min-width: 1024px) {
  .employment-layout {
    flex-direction: row;
    align-items: center;
  }

  .contact-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-map {
    height: 100%;
    min-height: 20rem;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .navbar-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .footer-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .shop-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .sns-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}