﻿:root {
  --bg: #0a0908;
  --surface: rgba(18, 17, 15, 0.88);
  --surface-strong: #151311;
  --surface-soft: rgba(38, 31, 24, 0.86);
  --text: #f7f0e4;
  --muted: #c7b9a5;
  --accent: #c8a05a;
  --accent-strong: #f0cb84;
  --line: rgba(240, 203, 132, 0.22);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 160, 90, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(134, 78, 35, 0.14), transparent 25%),
    linear-gradient(180deg, #0b0a09 0%, #16120f 48%, #090807 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 56px;
}

.hero,
.section {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  padding: 24px;
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(11, 10, 9, 0.96), rgba(35, 24, 16, 0.88)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
h1,
h2,
strong {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
}

.brand {
  font-size: 1.7rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(247, 240, 228, 0.78);
}

.nav-links a {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(240, 203, 132, 0.28);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-links a:hover {
  background: rgba(240, 203, 132, 0.1);
  transform: translateY(-1px);
  opacity: 1;
}

.nav-links a:hover,
.ghost-btn:hover,
.primary-btn:hover {
  opacity: 0.92;
}

.hero-layout,
.split-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.hero-layout {
  margin-top: 56px;
}

.section {
  margin-top: 28px;
  padding: 32px;
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.section-kicker {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  word-break: keep-all;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

p {
  line-height: 1.82;
}

.hero-text,
.section-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease;
}

.primary-btn {
  background: linear-gradient(135deg, #9f7340, #dfbb75);
  color: #120f0c;
  font-weight: 700;
}

.ghost-btn {
  border-color: rgba(240, 203, 132, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.ghost-btn.dark {
  background: rgba(13, 11, 9, 0.56);
}

.primary-btn:hover,
.ghost-btn:hover {
  transform: translateY(-1px);
}

.hero-points,
.detail-list,
.price-grid,
.step-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.hero-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.point-card,
.detail-item,
.price-card,
.step-item,
.schedule-card,
.location-box,
.contact-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.point-card {
  padding: 18px;
}

.point-card span,
.media-overlay span,
.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: rgba(247, 240, 228, 0.62);
  font-size: 0.86rem;
}

.point-card strong,
.media-overlay strong,
.price-card strong,
.step-item strong,
.location-box strong,
.contact-card strong,
.schedule-card strong {
  font-size: 1.2rem;
}

.section-copy {
  display: grid;
  gap: 18px;
}

.detail-list {
  grid-template-columns: 1fr;
}

.detail-item,
.price-card,
.location-box,
.contact-card {
  padding: 18px 20px;
  color: var(--text);
}

.schedule-card {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
}

.schedule-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
}

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

.price-card span,
.location-box span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.note-text {
  margin: 0;
  color: rgba(247, 240, 228, 0.68);
}

.step-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(240, 203, 132, 0.14);
  border: 1px solid rgba(240, 203, 132, 0.22);
  color: var(--accent-strong);
  font-weight: 700;
}

.media-card {
  min-width: 0;
}

.media-frame {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid rgba(240, 203, 132, 0.34);
  background:
    linear-gradient(145deg, rgba(31, 24, 18, 0.92), rgba(13, 11, 10, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(240, 203, 132, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.28);
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 5, 4, 0.16), rgba(6, 5, 4, 0.72)),
    radial-gradient(circle at top, rgba(240, 203, 132, 0.18), transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.section-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.media-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.split-section:has(> .section-copy:only-child),
.cta-section:has(> .cta-copy:only-child) {
  grid-template-columns: 1fr;
}

.split-section > .section-copy:only-child,
.cta-section > .cta-copy:only-child {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.cta-section {
  background:
    linear-gradient(135deg, rgba(24, 19, 14, 0.92), rgba(10, 9, 8, 0.96));
}

.cta-copy {
  display: grid;
  gap: 18px;
}

.staff-title {
  margin-bottom: 24px;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track-wrap {
  overflow: hidden;
  border-radius: 22px;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  display: block;
  border-radius: 22px;
  background: #0a0908;
}

.carousel-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, transform 160ms ease;
}

.carousel-btn:hover {
  background: rgba(240, 203, 132, 0.18);
  transform: scale(1.06);
}

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

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.dot.active {
  background: var(--accent-strong);
  transform: scale(1.3);
}

  .hero-layout,
  .split-section,
  .reverse,
  .cta-section,
  .hero-points,
  .price-grid,
  .step-list {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .media-card {
    order: 2;
  }

  .section-copy,
  .cta-copy,
  .hero-copy {
    order: 1;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 100%);
    padding-top: 10px;
  }

  .hero,
  .section {
    padding: 22px;
    border-radius: 24px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links,
  .hero-actions,
  .cta-actions {
    gap: 10px;
  }

  .media-frame,
  .section-image {
    min-height: 280px;
  }

  .schedule-card div,
  .step-item {
    align-items: flex-start;
    flex-direction: column;
  }
}
