/* ============================================================
   토큰
   ============================================================ */
:root {
  --turf-900: #1B3B2F;
  --turf-700: #2F5D45;
  --turf-600: #3A6E52;
  --cream: #F4EFE1;
  --paper: #FBF8F0;
  --sand: #D8C9A3;
  --flag: #C4432B;
  --flag-dark: #A6371F;
  --ink: #1C1B17;
  --ink-soft: #59564C;

  --font-display: 'Black Han Sans', sans-serif;
  --font-body: 'Noto Sans KR', sans-serif;

  --radius: 14px;
  --wrap: 1080px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
  padding-bottom: env(safe-area-inset-bottom);
}
/* 모바일 하단 고정 CTA 만큼 본문 하단 여백 확보 (모바일 폭에서만) */
@media (max-width: 760px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.section-kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--flag);
  margin: 0 0 10px;
}
.section-kicker.light { color: var(--sand); }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 0.01em;
  margin: 0 0 34px;
  color: var(--turf-900);
}
.section-title.light { color: var(--paper); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--flag); color: #fff; }
.btn-primary:hover { background: var(--flag-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--turf-700);
  color: var(--turf-700);
  width: 100%;
}
.btn-outline:hover { background: var(--turf-700); color: #fff; }
.btn-outline:disabled {
  border-color: #C9C4B4; color: #A8A398; cursor: not-allowed;
}
.btn-outline:disabled:hover { background: transparent; color: #A8A398; }
.btn-block { width: 100%; margin-top: 6px; }

/* ============================================================
   헤더
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--turf-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-top: env(safe-area-inset-top);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  gap: 10px;
}
.logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.logo span { color: var(--flag); }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: var(--sand);
  font-size: 14px; font-weight: 500;
}
.main-nav a:hover { color: var(--paper); }

.install-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid var(--sand);
  color: var(--sand);
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.install-btn:hover { background: var(--sand); color: var(--turf-900); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 10px 6px;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--paper); display: block; }

/* ============================================================
   히어로
   ============================================================ */
.hero {
  position: relative;
  background: var(--turf-900);
  color: var(--paper);
  padding: 88px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(216,201,163,0.18), transparent 45%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 64px);
  pointer-events: none;
}
.hero-ticket { position: relative; max-width: 640px; }
.hero-eyebrow {
  font-weight: 700; letter-spacing: 0.16em; font-size: 13px;
  color: var(--sand); margin: 0 0 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.22;
  margin: 0 0 22px;
}
.hero-desc {
  font-size: 16px; color: rgba(251,248,240,0.82); margin: 0 0 34px;
  max-width: 480px;
}
.br-desktop { display: none; }
.hero-ball {
  position: absolute; right: 8%; bottom: 14%;
  animation: hero-bob 3.2s ease-in-out infinite;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.35));
}
@keyframes hero-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ball { animation: none; }
}

/* ============================================================
   HOLES 섹션
   ============================================================ */
.holes { position: relative; padding: 76px 0 40px; background: var(--paper); }
.flight-path {
  position: absolute; left: 50%; top: 210px; bottom: 40px;
  width: 4px; transform: translateX(-540px);
  display: none;
}
@media (min-width: 1160px) {
  .flight-path { display: block; }
}
.empty-state { color: var(--ink-soft); }

.hole-block { margin-bottom: 64px; }
.hole-header {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 2px dashed var(--sand);
}
.hole-number {
  display: flex; flex-direction: column; align-items: center;
  background: var(--turf-900); color: var(--paper);
  border-radius: 10px; padding: 8px 14px; min-width: 64px;
  flex-shrink: 0;
}
.hole-number-label { font-size: 10px; letter-spacing: 0.14em; opacity: 0.75; }
.hole-number-value { font-family: var(--font-display); font-size: 24px; line-height: 1.1; }
.hole-heading h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; margin: 0 0 4px; color: var(--turf-900);
}
.hole-heading p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.event-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}
.event-card {
  background: var(--cream);
  border: 1px solid rgba(27,59,47,0.08);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column;
}
.event-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.event-channel {
  font-size: 12px; font-weight: 700; color: var(--turf-700);
  background: rgba(47,93,69,0.1); padding: 4px 10px; border-radius: 999px;
}
.event-quota {
  font-size: 12px; font-weight: 700; color: var(--flag);
}
.event-quota.is-full { color: #9A9484; }
.event-title {
  font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--ink);
}
.event-desc {
  font-size: 14px; color: var(--ink-soft); margin: 0 0 16px; flex-grow: 1;
}
.event-meta {
  margin: 0 0 18px; display: grid; gap: 8px;
  font-size: 13px; padding-top: 14px; border-top: 1px dashed rgba(27,59,47,0.18);
}
.event-meta div { display: flex; gap: 8px; }
.event-meta dt { color: var(--ink-soft); flex-shrink: 0; width: 64px; }
.event-meta dd { margin: 0; font-weight: 500; }

/* ============================================================
   SNS 공유 배너
   ============================================================ */
.share-banner { background: var(--turf-700); padding: 56px 0; }
.share-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.share-desc { color: rgba(251,248,240,0.82); margin: 0; }
.share-buttons { display: flex; gap: 12px; }
.share-btn {
  padding: 13px 22px; border-radius: 999px; border: none; cursor: pointer;
  font-weight: 700; font-size: 14px;
}
.share-kakao { background: #FEE500; color: #391B1B; }
.share-link { background: var(--paper); color: var(--turf-900); }

/* ============================================================
   후기
   ============================================================ */
.reviews { padding: 76px 0; background: var(--paper); }
.review-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px; margin-bottom: 20px;
}
.review-card {
  background: var(--cream); border-radius: var(--radius); padding: 22px;
  margin: 0; border-left: 4px solid var(--flag);
}
.review-card p { margin: 0 0 12px; font-size: 14px; color: var(--ink); }
.review-card cite { font-size: 12px; color: var(--ink-soft); font-style: normal; }
.review-hint { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   오시는 길
   ============================================================ */
.visit { padding: 76px 0 90px; background: var(--cream); }
.visit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.visit-info { list-style: none; padding: 0; margin: 0 0 20px; }
.visit-info li { margin-bottom: 10px; font-size: 14px; }
.visit-info strong { display: inline-block; width: 84px; color: var(--turf-700); }
.visit-note { font-size: 13px; color: var(--ink-soft); }
.visit-map-placeholder {
  background: var(--paper); border: 1px dashed var(--sand); border-radius: var(--radius);
  min-height: 260px; display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 13px; text-align: center; padding: 20px;
}
.visit-map-embed {
  border-radius: var(--radius); overflow: hidden; min-height: 260px;
}
.visit-map-embed iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; }
.visit-map-link {
  display: flex; align-items: center; gap: 14px;
  background: var(--turf-900); border-radius: var(--radius);
  min-height: 260px; padding: 28px;
  color: var(--paper); text-decoration: none;
  transition: background 0.15s ease;
}
.visit-map-link:hover { background: var(--turf-700); }
.visit-map-link-icon { font-size: 28px; flex-shrink: 0; }
.visit-map-link-text { display: flex; flex-direction: column; gap: 4px; flex-grow: 1; }
.visit-map-link-text strong { font-size: 16px; }
.visit-map-link-text small { font-size: 13px; color: rgba(251,248,240,0.7); }
.visit-map-link-arrow { font-size: 20px; flex-shrink: 0; color: var(--sand); }

/* ============================================================
   푸터
   ============================================================ */
.site-footer { background: var(--turf-900); color: rgba(251,248,240,0.7); padding: 28px 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}
.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--paper); }

.footer-hidden-access {
  display: flex;
  justify-content: center;
  padding: 14px 0 6px;
}
.footer-hidden-access a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: rgba(251,248,240,0.22);
  transition: color 0.2s ease;
}
.footer-hidden-access a:hover,
.footer-hidden-access a:focus-visible {
  color: rgba(251,248,240,0.6);
}

/* ============================================================
   마퀴 (흐르는 문구)
   ============================================================ */
.marquee-bar {
  background: var(--turf-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll var(--marquee-speed, 18s) linear infinite;
}
.marquee-track.is-blinking {
  animation: marquee-scroll var(--marquee-speed, 18s) linear infinite,
             marquee-blink var(--marquee-blink-speed, 1s) steps(1) infinite;
}
.marquee-text {
  display: inline-block;
  padding-right: 64px;
  color: var(--marquee-color, #FBF8F0);
  font-size: var(--marquee-font-size, 14px);
  font-weight: 700;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes marquee-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0.25; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 60s; }
  .marquee-track.is-blinking { animation: marquee-scroll 60s linear infinite; }
}

/* ============================================================
   시설 둘러보기 - 회전형 파노라마 캐러셀
   ============================================================ */
.tour { padding: 70px 0 76px; background: var(--cream); overflow: hidden; }
.tour-desc { margin: -22px 0 28px; color: var(--ink-soft); font-size: 14px; }

.tour-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tour-carousel-viewport {
  flex: 1;
  position: relative;
  height: 300px;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.tour-carousel-viewport.is-dragging { cursor: grabbing; }
.tour-carousel-track {
  position: absolute;
  inset: 0;
}
.tour-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--turf-900);
  display: flex;
  align-items: flex-end;
  text-align: left;
  will-change: transform, opacity;
  transition: transform 0.45s cubic-bezier(.22,.61,.36,1), opacity 0.45s ease;
  user-select: none;
}
.tour-slide.is-active { cursor: pointer; }
.tour-slide img, .tour-slide video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.tour-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,59,47,0.85), rgba(27,59,47,0) 55%);
}
.tour-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(251,248,240,0.4); font-size: 13px; background: var(--turf-700);
}
.tour-play {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,0.5); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.tour-label {
  position: relative; z-index: 1; color: var(--sand); font-size: 11px; font-weight: 700;
  padding: 0 14px; margin-bottom: 2px;
}
.tour-title-text {
  position: relative; z-index: 1; color: #fff; font-size: 13.5px; font-weight: 700;
  padding: 0 14px 14px; display: block;
}

.tour-arrow {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--turf-900); color: var(--paper);
  border: none; cursor: pointer; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
  z-index: 5;
}
.tour-arrow:hover { background: var(--turf-700); }
.tour-arrow:active { transform: scale(0.92); }

.tour-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.tour-dot {
  width: 7px; height: 7px; border-radius: 50%; border: none; padding: 0;
  background: var(--sand); opacity: 0.55; cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.tour-dot.is-active { background: var(--flag); opacity: 1; transform: scale(1.3); }

@media (max-width: 760px) {
  .tour-carousel-viewport { height: 240px; }
  .tour-slide { width: 240px; height: 190px; }
  .tour-arrow { width: 34px; height: 34px; font-size: 17px; }
}
@media (max-width: 420px) {
  .tour-carousel-viewport { height: 210px; }
  .tour-slide { width: 200px; height: 165px; }
}
@media (prefers-reduced-motion: reduce) {
  .tour-slide { transition: none; }
}

/* 시설 라이트박스 */
.modal-lg { max-width: 640px; }
.tour-modal-media {
  width: 100%; border-radius: 10px; overflow: hidden; margin-bottom: 14px;
  background: #000; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
}
.tour-modal-media img, .tour-modal-media video, .tour-modal-media iframe {
  width: 100%; height: 100%; object-fit: contain; border: 0;
}
.tour-modal-label { font-size: 12px; font-weight: 700; color: var(--flag); margin: 0 0 4px; }
.tour-modal-nav { display: flex; gap: 10px; margin-top: 16px; }
.tour-modal-nav .btn { flex: 1; }

/* ============================================================
   당첨자 발표 팝업
   ============================================================ */
.winner-announce-list { display: grid; gap: 12px; margin: 4px 0 18px; }
.winner-announce-card {
  background: var(--cream); border-radius: 10px; padding: 14px 16px;
  border-left: 4px solid var(--flag);
}
.winner-announce-event { font-size: 12.5px; font-weight: 700; color: var(--turf-700); margin: 0 0 4px; }
.winner-announce-names { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0; }
.winner-announce-count { font-weight: 400; color: var(--ink-soft); font-size: 13px; margin-left: 4px; }
.winner-announce-notice {
  font-size: 12.5px; color: var(--ink-soft); line-height: 1.6;
  padding-top: 14px; border-top: 1px dashed rgba(27,59,47,0.18); margin: 0;
}

/* ============================================================
   복권 긁기 이벤트
   ============================================================ */
.scratch-section { background: var(--turf-900); padding: 72px 0; }
.scratch-desc { color: rgba(251,248,240,0.78); font-size: 14px; margin: -22px 0 30px; }
.scratch-panel {
  display: flex; flex-wrap: wrap; gap: 34px; align-items: flex-start;
  background: rgba(251,248,240,0.06); border: 1px solid rgba(251,248,240,0.12);
  border-radius: var(--radius); padding: 30px;
}
.scratch-form { flex: 1; min-width: 260px; }
.scratch-form label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 14px; color: rgba(251,248,240,0.75);
}
.scratch-form input[type="text"], .scratch-form input[type="tel"] {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px; border-radius: 8px; border: 1px solid rgba(251,248,240,0.25);
  font-family: var(--font-body); font-size: 16px; background: rgba(251,248,240,0.95); color: var(--ink);
}
.scratch-form .checkbox-row { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; color: rgba(251,248,240,0.7); }
.scratch-form .checkbox-row input { margin-top: 3px; }

.scratch-card-wrap { flex: 1; min-width: 260px; display: flex; flex-direction: column; align-items: center; }
.scratch-card {
  position: relative; width: 100%; max-width: 320px; aspect-ratio: 320 / 200;
  border-radius: 14px; overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.scratch-result {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 16px; background: var(--paper);
}
.scratch-result .scratch-icon { font-size: 32px; margin-bottom: 8px; }
.scratch-result .scratch-title { font-size: 17px; font-weight: 800; color: var(--turf-900); margin: 0 0 6px; }
.scratch-result .scratch-note { font-size: 11.5px; color: var(--ink-soft); line-height: 1.5; }
.scratch-qr-img { width: 84px; height: 84px; margin: 6px 0; border-radius: 6px; border: 1px solid #EFEAD9; }
.scratch-qr-link { font-size: 11px; font-weight: 700; color: var(--turf-700); text-decoration: underline; margin-bottom: 6px; display: inline-block; }
.scratch-canvas { position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; touch-action: none; }
.scratch-hint { margin-top: 14px; font-size: 12.5px; color: var(--sand); }

/* ============================================================
   모달
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(27,26,23,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 100;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper); border-radius: var(--radius);
  padding: 32px; max-width: 420px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  font-size: 26px; line-height: 1; cursor: pointer; color: var(--ink-soft);
}
.modal-title { font-size: 20px; margin: 0 0 20px; color: var(--turf-900); }
#applyForm label {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 14px; color: var(--ink-soft);
}
#applyForm .optional { font-weight: 400; color: #A8A398; }
#applyForm input[type="text"],
#applyForm input[type="tel"],
#applyForm textarea {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px 12px; border-radius: 8px; border: 1px solid #D9D3C2;
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: #fff;
  /* font-size 16px 이상: iOS Safari에서 입력창 포커스시 자동 확대 방지 */
}
#applyForm input:focus, #applyForm textarea:focus {
  outline: 2px solid var(--turf-600); outline-offset: 1px;
}
.checkbox-row { display: flex; align-items: flex-start; gap: 8px; font-size: 12.5px; }
.checkbox-row input { margin-top: 3px; }
.form-message {
  min-height: 20px; font-size: 13px; margin: 10px 0 0; text-align: center;
}
.form-message.is-error { color: var(--flag); }
.form-message.is-success { color: var(--turf-700); }

.modal-sm { max-width: 360px; }
.ios-steps { list-style: none; padding: 0; margin: 0; }
.ios-steps li {
  display: flex; align-items: center; gap: 12px; font-size: 14px;
  padding: 10px 0; border-bottom: 1px dashed rgba(27,59,47,0.15);
}
.ios-steps li:last-child { border-bottom: none; }
.ios-steps li span:first-child {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--turf-900); color: var(--paper); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ios-icon { font-size: 15px; }

/* ============================================================
   모바일 하단 고정 CTA
   ============================================================ */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--paper) 70%, rgba(251,248,240,0));
  transform: translateY(0);
  transition: transform 0.25s ease;
}
.mobile-cta.is-hidden { transform: translateY(120%); }


/* ============================================================
   반응형
   ============================================================ */
@media (min-width: 700px) {
  .br-desktop { display: inline; }
}
@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-open .main-nav {
    display: flex; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: var(--turf-900);
    padding: 16px 24px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.08);
  }
  .visit-inner { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 80px; }
  .hero-ball { display: none; }
  .mobile-cta { display: block; }
  .install-btn { font-size: 11.5px; padding: 7px 10px; }
}

/* 작은 화면에서 카드/버튼 터치 영역 확보 */
@media (max-width: 480px) {
  .btn, .share-btn, .apply-btn { min-height: 46px; }
  .event-card { padding: 20px; }
}
