:root {
  --blue: #004d98;
  --garnet: #a50044;
  --gold: #ffcd00;
  --ink: #0e0f12;
  --navy: #0b0d14;
  --muted: #636873;
  --line: #e7e9ee;
  --soft: #f6f7f9;
  --kakao: #fee500;
  --naver: #03c75a;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Pretendard,
    "Apple SD Gothic Neo",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  letter-spacing: 0;
}
body.drawer-open {
  overflow: hidden;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--garnet);
  color: #fff;
}

@keyframes ghLoadBar {
  0% {
    transform: translateX(-160%);
  }
  100% {
    transform: translateX(260%);
  }
}
@keyframes ghPop {
  0% {
    transform: scale(0.82);
    opacity: 0;
  }
  60% {
    transform: scale(1.04);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
@keyframes ghShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes ghPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.27;
  }
  50% {
    transform: scale(1.28);
    opacity: 0.48;
  }
}
@keyframes ghPulse2 {
  0%,
  100% {
    transform: scale(1.15);
    opacity: 0.22;
  }
  50% {
    transform: scale(0.9);
    opacity: 0.38;
  }
}
@keyframes ghDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -14px) scale(1.12);
  }
}
@keyframes ghBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

html.js-ready [data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}
html.js-ready [data-anim="slide-left"] {
  transform: translateX(-36px);
}
html.js-ready [data-anim="slide-right"] {
  transform: translateX(36px);
}
html.js-ready [data-anim="scale-bg"] {
  opacity: 1;
  transform: scale(1.06);
  transition: transform 1s ease;
}
html.js-ready [data-anim="glow-a"],
html.js-ready [data-anim="glow-b"] {
  opacity: 1;
  transform: none;
}
html.js-ready [data-anim].is-inview {
  opacity: 1;
  transform: none;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  opacity: 1;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-mark {
  animation: ghPop 0.8s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.loader-mark .crest {
  width: 68px;
  height: 76px;
}
.loader-title {
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
}
.loader-bar {
  width: 164px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}
.loader-bar span {
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--garnet));
  animation: ghLoadBar 1.1s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231, 233, 238, 0.9);
}
.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-width: 216px;
}
.crest {
  width: 40px;
  height: 44px;
  flex: 0 0 auto;
}
.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}
.logo-copy strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}
.logo-copy span {
  font-family: Archivo, sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #8a909b;
}
.logo-light .logo-copy strong,
.logo-light .logo-copy span {
  color: #fff;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.desktop-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: #282b33;
  transition: color 0.2s ease;
}
.desktop-nav a:hover {
  color: var(--garnet);
}
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.header-cta {
  background: var(--garnet);
  color: #fff;
  box-shadow: 0 9px 24px rgba(165, 0, 68, 0.28);
}
.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--garnet);
  color: #fff;
  box-shadow: 0 12px 28px rgba(165, 0, 68, 0.28);
}
.btn-kakao {
  background: var(--kakao);
  color: #191600;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-naver {
  background: var(--naver);
  color: #fff;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.cta-row.compact {
  margin-top: 0;
  justify-content: center;
}
.menu-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  display: none;
  place-items: center;
  cursor: pointer;
}
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 950;
  opacity: 0;
  pointer-events: none;
  background: rgba(8, 10, 16, 0.48);
  transition: opacity 0.28s ease;
}
.drawer-scrim.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 960;
  width: min(84vw, 340px);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.3, 0.8, 0.3, 1);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.18);
}
.mobile-drawer.open {
  transform: translateX(0);
}
.drawer-head {
  min-height: 72px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-head strong {
  font-size: 17px;
  font-weight: 800;
}
.drawer-head button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--soft);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.mobile-drawer nav {
  display: grid;
  gap: 2px;
  padding: 12px 10px;
}
.mobile-drawer nav a {
  padding: 15px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
}
.mobile-drawer nav a:hover {
  background: var(--soft);
}
.drawer-cta {
  margin-top: auto;
  padding: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.hero {
  min-height: 640px;
  height: 100svh;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1s ease,
    transform 1.15s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 10, 18, 0.5),
    rgba(8, 10, 18, 0.22) 52%,
    rgba(8, 10, 18, 0.12)
  );
}
.hero-slide.blue::before,
.hero-slide.garnet::before,
.hero-slide.neutral::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
.hero-slide.blue::before {
  background: linear-gradient(
    120deg,
    rgba(0, 77, 152, 0.82),
    rgba(11, 13, 20, 0.2)
  );
}
.hero-slide.garnet::before {
  background: linear-gradient(
    120deg,
    rgba(165, 0, 68, 0.78),
    rgba(11, 13, 20, 0.25)
  );
}
.hero-slide.neutral::before {
  background: linear-gradient(
    120deg,
    rgba(14, 15, 18, 0.75),
    rgba(19, 41, 78, 0.38)
  );
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.06) 0 2px,
    transparent 2px 28px
  );
  opacity: 0.36;
}
.hero-content {
  color: #fff;
  padding-top: 54px;
}
.eyebrow {
  margin: 0 0 16px;
  font-family: Archivo, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--garnet);
  letter-spacing: 0;
}
.hero .eyebrow {
  color: #a9c9ff;
}
.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: 76px;
  line-height: 1.05;
  font-weight: 800;
}
.hero-copy {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.7;
  font-weight: 600;
}
.scroll-cue {
  position: absolute;
  right: 28px;
  bottom: 104px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 8px;
  justify-items: center;
  text-decoration: none;
  font-family: Archivo, sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.scroll-cue svg {
  animation: ghBounce 1.8s ease-in-out infinite;
}
.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 58px;
  z-index: 6;
  width: min(var(--max), calc(100% - 52px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.hero-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.slide-count,
.slide-total {
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.slide-total {
  color: rgba(255, 255, 255, 0.55);
}
.slide-progress {
  width: 56px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}
.slide-progress span {
  display: block;
  height: 100%;
  background: var(--garnet);
  transition: width 0.45s ease;
}
.slide-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.slide-dots button {
  width: 9px;
  height: 9px;
  min-width: 9px;
  flex: 0 0 9px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
}
.slide-dots button.active {
  background: #fff;
}
.slide-arrows {
  margin-left: 8px;
  display: flex;
  gap: 8px;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}
.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
}
.section-head p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}
.section-head.light h2 {
  color: #fff;
}
.section-head.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}
.gradient-text {
  color: transparent;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--garnet),
    var(--gold),
    var(--blue)
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: ghShimmer 6s linear infinite;
}
.bg-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 77, 152, 0.06), rgba(165, 0, 68, 0.04)),
    repeating-linear-gradient(
      115deg,
      rgba(0, 77, 152, 0.08) 0 1px,
      transparent 1px 30px
    );
  pointer-events: none;
}
.glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}
.about-section {
  background: linear-gradient(135deg, #f7f9fc, #eef4ff 55%, #fff7fb);
}
.about-glow {
  right: -80px;
  top: 90px;
  background: radial-gradient(circle, rgba(0, 77, 152, 0.2), transparent 68%);
}
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.pitch-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(223, 227, 235, 0.9);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(14, 15, 18, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.pitch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(14, 15, 18, 0.13);
}
.pitch-visual {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  background: #dfe7ef;
}
.pitch-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pitch-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.42));
}
.pitch-visual span {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 2;
  font-family: Archivo, sans-serif;
  font-weight: 800;
  color: #fff;
}
.pitch-card div:not(.pitch-visual) {
  padding: 22px;
}
.pitch-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}
.pitch-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

.dark-section {
  background: var(--navy);
  color: #fff;
}
.features-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 77, 152, 0.22), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(165, 0, 68, 0.2), transparent 34%),
    #0b0d14;
}
.dark-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.68;
  pointer-events: none;
}
.glow-blue {
  width: 330px;
  height: 330px;
  left: -90px;
  top: 140px;
  background: rgba(0, 77, 152, 0.42);
}
.glow-garnet {
  width: 300px;
  height: 300px;
  right: -70px;
  bottom: 100px;
  background: rgba(165, 0, 68, 0.38);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.icon-badge,
.rental-chip span {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--garnet));
}
.feature-card h3 {
  margin: 22px 0 10px;
  font-size: 20px;
  font-weight: 800;
}
.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.65;
  font-weight: 600;
}

.rental-section {
  background:
    linear-gradient(135deg, #eef8f0, #f3f4fa 56%, #fff0f6),
    repeating-linear-gradient(
      115deg,
      rgba(0, 0, 0, 0.03) 0 1px,
      transparent 1px 28px
    );
}
.rental-glow {
  position: absolute;
  right: -90px;
  top: 80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(165, 0, 68, 0.16), transparent 70%);
}
.rental-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: center;
}
.rental-copy h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.12;
  font-weight: 800;
}
.rental-copy p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 600;
}
.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.rental-chip.mobile-only-rental {
  display: none;
}
.rental-chip {
  min-height: 78px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(14, 15, 18, 0.08);
}
.rental-chip strong {
  font-size: 15px;
  font-weight: 800;
}

.youth-section {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(24, 120, 58, 0.08) 0 54px,
      rgba(24, 120, 58, 0.13) 54px 108px
    ),
    linear-gradient(135deg, #e9f6e9, #f5fff5);
}
.pitch-lines {
  position: absolute;
  inset: 54px 0 34px;
  opacity: 0.38;
  pointer-events: none;
}
.pitch-lines svg {
  width: 100%;
  height: 100%;
}
.pitch-lines rect,
.pitch-lines path,
.pitch-lines circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 4;
}
.schedule-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(22, 84, 42, 0.14);
  scrollbar-color: rgba(165, 0, 68, 0.42) rgba(255, 255, 255, 0.4);
}
.schedule-wrap table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
  table-layout: fixed;
}
.schedule-wrap th {
  background: var(--ink);
  color: #fff;
  padding: 20px 30px;
  text-align: left;
  font-weight: 800;
}
.schedule-wrap td {
  padding: 20px 30px;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(14, 15, 18, 0.09);
  font-weight: 700;
}
.schedule-wrap th:nth-child(1),
.schedule-wrap td:nth-child(1) {
  width: 46%;
  text-align: left;
}
.schedule-wrap th:nth-child(2),
.schedule-wrap td:nth-child(2) {
  width: 22%;
  text-align: center;
  white-space: nowrap;
}
.schedule-wrap th:nth-child(3),
.schedule-wrap td:nth-child(3) {
  width: 32%;
  text-align: right;
  white-space: nowrap;
}
.schedule-wrap tr:hover td {
  background: rgba(255, 255, 255, 0.92);
}
.schedule-wrap td span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--garnet);
  font-family: Archivo, sans-serif;
  font-weight: 800;
}
.youth-note {
  margin: 20px 0 0;
  text-align: center;
  color: #34513b;
  font-weight: 700;
}

.gallery-section {
  background:
    linear-gradient(180deg, #0b0d14, #111722),
    radial-gradient(circle at 70% 20%, rgba(0, 77, 152, 0.3), transparent 40%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gallery-card {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #161b26;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  text-align: left;
  font: inherit;
  color: inherit;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.gallery-2 img {
  object-position: 35% 55%;
  filter: saturate(1.1);
}
.gallery-3 img {
  object-position: 74% 44%;
  filter: brightness(0.88) contrast(1.14);
}
.gallery-4 img {
  object-position: 20% 72%;
  filter: saturate(0.85) brightness(1.08);
}
.gallery-5 img {
  object-position: 68% 78%;
  filter: contrast(1.08);
}
.gallery-6 img {
  object-position: 50% 38%;
  filter: hue-rotate(8deg) saturate(0.92);
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
}
.gallery-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: #fff;
  font-weight: 800;
}
.mobile-slider-controls {
  display: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(5, 7, 12, 0.86);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  padding: 28px;
}
.lightbox figure {
  margin: 0;
  width: min(1080px, 92vw);
  max-height: 86vh;
}
.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}
.lightbox figcaption {
  margin-top: 14px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.pricing-section {
  background: linear-gradient(135deg, #f8fbff, #eef4ff 58%, #fff5fa);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.price-card,
.hours-card {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  padding: 34px;
}
.price-card {
  color: #fff;
  background: #0e1b33;
}
.pulse {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.pulse.one {
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  animation: ghPulse 6s ease-in-out infinite;
}
.pulse.two {
  width: 130px;
  height: 130px;
  left: 34px;
  bottom: 38px;
  animation: ghPulse2 7s ease-in-out infinite;
}
.pulse.three {
  width: 90px;
  height: 90px;
  right: 130px;
  bottom: 70px;
  animation: ghDrift 8s ease-in-out infinite;
}
.price-card > *:not(.pulse) {
  position: relative;
  z-index: 2;
}
.price-card h3,
.hours-card h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}
.hours-card h3 {
  margin-top: 8px;
  font-size: 48px;
  line-height: 1;
}
.time-start,
.time-end {
  display: inline-block;
  white-space: nowrap;
}
.time-meridiem {
  display: inline-block;
  margin-right: 5px;
  font-family: Archivo, Pretendard, sans-serif;
  font-size: 0.34em;
  font-weight: 800;
  line-height: 1;
  vertical-align: 0.92em;
}
.price-card strong {
  display: block;
  margin-top: 12px;
  font-family: Archivo, Pretendard, sans-serif;
  font-size: 54px;
  font-weight: 800;
}
.price-card ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.price-card li {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}
.price-card li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 8px;
}
.hours-card {
  color: #fff;
  background: linear-gradient(135deg, #183761, #225184);
}
.hours-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  font-weight: 700;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.badge-row span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
}
.address-banner {
  margin-top: 22px;
  padding: 26px;
  border-radius: 8px;
  color: #fff;
  background:
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.12) 0 1px,
      transparent 1px 28px
    ),
    linear-gradient(135deg, var(--blue), #13294e);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.address-banner strong {
  font-size: 20px;
  font-weight: 800;
}
.address-banner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 600;
}
.address-banner .btn {
  flex: 0 0 auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 54px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  min-height: 68px;
  padding: 0 18px;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
}
.q-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--garnet));
  font-family: Archivo, sans-serif;
  font-weight: 800;
  flex: 0 0 auto;
}
.faq-item strong {
  font-size: 17px;
  font-weight: 800;
}
.faq-toggle {
  margin-left: auto;
  font-size: 28px;
  font-weight: 500;
  color: var(--garnet);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 20px 20px 66px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}
.faq-item.open .faq-answer {
  max-height: 170px;
}
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 70px 0 34px;
}
.footer-main {
  display: block;
}
.footer-brand {
  width: 100%;
}
.footer-intro {
  max-width: 430px;
  margin: 22px 0 20px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-weight: 600;
}
.footer-action-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
}
.footer-toggle {
  display: none;
}
.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-family: Archivo, sans-serif;
  font-weight: 800;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.socials a:hover {
  background: var(--garnet);
  transform: translateY(-2px);
}
.socials a[aria-label="네이버블로그"] svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.footer-menu {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  white-space: nowrap;
}
.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 800;
}
.footer-menu a:hover {
  color: #fff;
}
.biz-box {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  width: min(100%, 360px);
  margin-left: auto;
}
.biz-box button {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 800;
}
.biz-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
}
.biz-content.open {
  max-height: 220px;
  padding-bottom: 16px;
}
.biz-content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 600;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}
.footer-bottom span:last-child {
  display: flex;
  gap: 16px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.quick-actions {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 880;
  display: grid;
  gap: 10px;
}
.quick-actions a,
.quick-actions button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  text-decoration: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}
.quick-actions a:nth-child(2) {
  background: var(--kakao);
  color: #191600;
}
.quick-actions button {
  background: var(--ink);
  color: #fff;
}
.quick-actions.over-footer button {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
.mobile-bottom-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 920;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.12);
}
.mobile-bottom-bar a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
}
.mobile-bottom-bar a:first-child {
  background: var(--kakao);
  color: #191600;
}
.mobile-bottom-bar a:last-child {
  background: var(--garnet);
  color: #fff;
}

.policy-body {
  background: linear-gradient(135deg, #f7f9fc, #fff);
  min-height: 100vh;
}
.policy-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.policy-header .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
.policy-main {
  width: min(880px, calc(100% - 42px));
  margin: 0 auto;
  padding: 68px 0 96px;
}
.policy-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(14, 15, 18, 0.08);
  padding: 42px;
}
.policy-card h1 {
  margin: 8px 0 16px;
  font-size: 40px;
  font-weight: 800;
}
.policy-card > p {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 600;
}
.policy-card section {
  margin-top: 34px;
}
.policy-card h2 {
  margin: 0 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--garnet);
  font-size: 20px;
  font-weight: 800;
}
.policy-card li,
.policy-card section p {
  color: #3a3d45;
  line-height: 1.85;
  font-weight: 600;
}
.policy-card ul {
  margin: 0;
  padding-left: 20px;
}
.policy-note {
  margin-top: 34px;
  padding: 18px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.policy-links {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.policy-links a {
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container,
  .nav-shell {
    width: min(100% - 32px, var(--max));
  }
  .desktop-nav,
  .header-cta,
  .quick-actions {
    display: none;
  }
  .menu-button {
    display: grid;
  }
  .site-header .logo {
    min-width: 0;
  }
  .site-header .logo-copy strong {
    font-size: 15px;
  }
  .site-header .logo-copy span {
    font-size: 8px;
  }
  .crest {
    width: 34px;
    height: 38px;
  }
  .hero {
    min-height: 680px;
  }
  .hero .cta-row {
    display: none;
  }
  .hero .cta-row .btn {
    display: none;
  }
  .hero-content {
    padding-top: 34px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-copy {
    font-size: 17px;
  }
  .hero-slide::after {
    background: linear-gradient(
      90deg,
      rgba(8, 10, 18, 0.52),
      rgba(8, 10, 18, 0.18)
    );
  }
  .scroll-cue {
    display: none;
  }
  .hero-controls {
    left: 16px;
    right: 16px;
    bottom: 124px;
    width: auto;
    transform: none;
    display: grid;
    grid-template-columns: 42px auto 44px auto auto 92px;
    justify-content: start;
    gap: 9px;
  }
  .hero-controls button {
    width: 42px;
    height: 42px;
  }
  .slide-progress {
    width: 44px;
  }
  .slide-dots {
    align-items: center;
    gap: 7px;
  }
  .slide-dots button {
    width: 9px;
    height: 9px;
    min-width: 9px;
    flex: 0 0 9px;
    padding: 0;
    border: 0;
  }
  .slide-arrows {
    margin-left: 0;
    gap: 6px;
  }
  .section {
    padding: 82px 0;
  }
  .section-head h2,
  .rental-copy h2 {
    font-size: 36px;
  }
  .pitch-grid,
  .rental-layout,
  .pricing-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .rental-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    gap: 10px;
  }
  .rental-layout {
    gap: 36px;
  }
  .desktop-only-rental {
    display: none;
  }
  .rental-chip.mobile-only-rental {
    display: flex;
  }
  .rental-chip {
    min-height: 112px;
    padding: 16px 10px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .rental-chip span {
    width: 50px;
    height: 50px;
  }
  .schedule-wrap {
    margin-right: -16px;
    border-radius: 8px 0 0 8px;
  }
  .schedule-wrap table {
    min-width: 560px;
  }
  .schedule-wrap th,
  .schedule-wrap td {
    padding: 16px 18px;
  }
  .schedule-wrap th:nth-child(1),
  .schedule-wrap td:nth-child(1) {
    width: 42%;
  }
  .schedule-wrap th:nth-child(2),
  .schedule-wrap td:nth-child(2) {
    width: 22%;
  }
  .schedule-wrap th:nth-child(3),
  .schedule-wrap td:nth-child(3) {
    width: 36%;
  }
  .schedule-wrap td span {
    min-width: 112px;
  }
  .faq-layout {
    gap: 24px;
  }
  .faq-layout .section-head {
    margin-bottom: 0;
  }
  .address-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    padding-bottom: 54px;
  }
  .footer-action-row {
    flex-direction: column;
  }
  .biz-box {
    width: 100%;
    margin-left: 0;
  }
  .footer-menu {
    display: none;
  }
  .mobile-bottom-bar {
    display: grid;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 34px;
  }
  .hero-copy {
    font-size: 15px;
  }
  .btn {
    width: 100%;
    padding: 0 16px;
  }
  .cta-row {
    width: 100%;
  }
  .section-head h2,
  .rental-copy h2 {
    font-size: 31px;
  }
  .feature-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .rental-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .rental-chip strong {
    font-size: 14px;
  }
  .feature-card {
    min-height: auto;
  }
  .price-card strong {
    font-size: 42px;
  }
  .price-card,
  .policy-card {
    padding: 26px;
  }
  .hours-card {
    min-height: 230px;
    padding: 24px;
  }
  .hours-card h3 {
    font-size: 40px;
  }
  .time-end {
    display: block;
    margin-top: 8px;
  }
  .badge-row {
    margin-top: 18px;
  }
  .policy-card h1 {
    font-size: 32px;
  }
  .faq-answer p {
    padding-left: 20px;
  }
  .logo {
    min-width: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --mobile-header-height: 64px;
    --mobile-bottom-bar-height: 58px;
    --mobile-hero-height: calc(
      100vh - var(--mobile-header-height) - var(--mobile-bottom-bar-height)
    );
  }
  @supports (height: 100dvh) {
    :root {
      --mobile-hero-height: calc(
        100dvh - var(--mobile-header-height) - var(--mobile-bottom-bar-height)
      );
    }
  }
  html.js-ready [data-anim],
  html.js-ready [data-anim="slide-left"],
  html.js-ready [data-anim="slide-right"],
  html.js-ready [data-anim="scale-bg"] {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .container,
  .nav-shell {
    width: min(100% - 28px, var(--max));
  }
  .loader {
    gap: 14px;
  }
  .loader-mark .crest {
    width: 44px;
    height: 50px;
  }
  .loader-title {
    font-size: 10px;
  }
  .nav-shell {
    height: var(--mobile-header-height);
  }
  .menu-button {
    width: 50px;
    height: 50px;
    border-radius: 18px;
  }
  .hero {
    margin-top: var(--mobile-header-height);
    min-height: var(--mobile-hero-height);
    height: var(--mobile-hero-height);
  }
  .hero-content {
    position: absolute;
    top: 30%;
    left: 50%;
    width: min(100% - 28px, var(--max));
    min-height: auto;
    margin: 0;
    padding: 0;
    transform: translateX(-50%);
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero h1 {
    font-size: 30px;
    line-height: 1.14;
  }
  .hero-copy {
    max-width: 290px;
    font-size: 13px;
    line-height: 1.55;
  }
  .hero-controls {
    bottom: 30%;
    grid-template-columns: 34px 26px 38px 24px 1fr 76px;
    gap: 7px;
    align-items: center;
  }
  .hero-controls button {
    width: 34px;
    height: 34px;
  }
  .slide-count,
  .slide-total {
    font-size: 11px;
  }
  .slide-dots button {
    width: 7px;
    height: 7px;
    min-width: 7px;
    flex-basis: 7px;
  }
  .slide-arrows button {
    width: 34px;
    height: 34px;
  }
  .section {
    padding: 48px 0;
  }
  .section-head {
    margin-bottom: 22px;
  }
  .section-head.center {
    text-align: left;
  }
  .section-head h2,
  .rental-copy h2 {
    font-size: 24px;
    line-height: 1.2;
  }
  .section-head p:not(.eyebrow),
  .rental-copy p:not(.eyebrow),
  .pitch-card p,
  .feature-card p,
  .youth-note,
  .address-banner p,
  .faq-answer p {
    font-size: 12px;
    line-height: 1.55;
  }
  .eyebrow {
    font-size: 11px;
  }
  .glow,
  .dark-glow,
  .rental-glow,
  .pitch-lines {
    display: none;
  }
  .about-section,
  .rental-section,
  .pricing-section,
  .youth-section {
    background: #f5f7fb;
  }
  .features-section,
  .gallery-section {
    background: #111827;
  }
  .mobile-slider {
    overflow: hidden;
    position: relative;
    margin: 0 -14px;
    padding: 0 14px;
  }
  .mobile-slider-track.pitch-grid,
  .mobile-slider-track.gallery-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform;
  }
  .mobile-slider-track > .mobile-slider-item {
    flex: 0 0 78%;
    min-width: 0;
  }
  .gallery-grid.mobile-slider-track > .mobile-slider-item {
    flex-basis: 72%;
  }
  .mobile-slider-controls {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .mobile-slider-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(14, 15, 18, 0.12);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    display: grid;
    place-items: center;
    padding: 0;
  }
  .dark-section .mobile-slider-arrow {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  .mobile-slider-dots {
    min-width: 84px;
    display: flex;
    justify-content: center;
    gap: 6px;
  }
  .mobile-slider-dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(14, 15, 18, 0.25);
  }
  .mobile-slider-dots button.active {
    width: 18px;
    background: var(--garnet);
  }
  .dark-section .mobile-slider-dots button {
    background: rgba(255, 255, 255, 0.28);
  }
  .dark-section .mobile-slider-dots button.active {
    background: #fff;
  }
  .pitch-card {
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(14, 15, 18, 0.08);
  }
  .pitch-visual {
    aspect-ratio: 16 / 10;
  }
  .pitch-visual span {
    left: 14px;
    bottom: 12px;
    font-size: 11px;
  }
  .pitch-card div:not(.pitch-visual) {
    padding: 14px;
  }
  .pitch-card h3,
  .feature-card h3 {
    font-size: 15px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .feature-card {
    min-height: 132px;
    padding: 14px;
    border-radius: 12px;
  }
  .icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .feature-card h3 {
    margin: 14px 0 6px;
  }
  .rental-layout {
    gap: 20px;
  }
  .rental-copy .btn {
    min-height: 42px;
    width: auto;
    padding: 0 16px;
    font-size: 13px;
  }
  .rental-grid {
    gap: 8px;
  }
  .rental-chip {
    min-height: 78px;
    padding: 10px 8px;
    border-radius: 12px;
    gap: 8px;
  }
  .rental-chip span {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }
  .rental-chip strong {
    font-size: 12px;
  }
  .schedule-wrap {
    margin-right: -14px;
    border-radius: 12px 0 0 12px;
  }
  .schedule-wrap table {
    min-width: 500px;
  }
  .schedule-wrap th,
  .schedule-wrap td {
    padding: 12px 14px;
    font-size: 12px;
  }
  .schedule-wrap td span {
    min-width: 96px;
    min-height: 28px;
    font-size: 11px;
  }
  .gallery-card {
    aspect-ratio: 4 / 3.2;
    border-radius: 12px;
  }
  .gallery-card span {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: 12px;
  }
  .pricing-grid {
    gap: 12px;
  }
  .price-card,
  .hours-card,
  .address-banner {
    border-radius: 14px;
  }
  .price-card,
  .hours-card {
    min-height: auto;
    padding: 20px;
  }
  .price-card h3,
  .hours-card h3 {
    font-size: 17px;
  }
  .price-card strong {
    font-size: 34px;
  }
  .price-card ul {
    margin: 18px 0;
    gap: 8px;
  }
  .price-card li {
    font-size: 12px;
  }
  .hours-card h3 {
    font-size: 34px;
  }
  .hours-card p:not(.eyebrow) {
    font-size: 13px;
  }
  .badge-row {
    gap: 6px;
    margin-top: 16px;
  }
  .badge-row span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }
  .address-banner {
    padding: 18px;
  }
  .address-banner strong {
    font-size: 17px;
    line-height: 1.25;
  }
  .address-banner .btn {
    min-height: 42px;
    width: auto;
    font-size: 13px;
  }
  .faq-list {
    gap: 8px;
  }
  .faq-item {
    border-radius: 12px;
  }
  .faq-item button {
    min-height: 52px;
    padding: 0 12px;
    gap: 10px;
  }
  .q-mark {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .faq-item strong {
    font-size: 13px;
  }
  .faq-toggle {
    font-size: 21px;
  }
  .faq-answer p {
    padding: 0 14px 14px 50px;
  }
  .site-footer {
    padding: 30px 0 88px;
  }
  .site-footer .logo {
    width: 100%;
  }
  .footer-toggle {
    width: 100%;
    min-height: 46px;
    margin-top: 18px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 800;
  }
  .footer-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }
  .footer-collapsible.open {
    max-height: 760px;
  }
  .footer-intro {
    margin: 16px 0;
    font-size: 12px;
    line-height: 1.55;
  }
  .footer-action-row {
    gap: 14px;
  }
  .socials a {
    width: 34px;
    height: 34px;
  }
  .biz-box {
    border-radius: 12px;
  }
  .biz-box button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 13px;
  }
  .biz-content p {
    font-size: 12px;
  }
  .footer-bottom {
    margin-top: 18px;
    padding-top: 18px;
    padding-bottom: 0;
    font-size: 11px;
  }
}
