* {
  box-sizing: border-box;
}

:root {
  --bg: #f8f0ec;
  --paper: #fffdfb;
  --text: #2a211f;
  --muted: #8d7b74;
  --line: #eadbd4;
  --point: #b88978;
  --point-dark: #7c5145;
  --soft: #f4e5df;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(90, 58, 49, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 35%),
    linear-gradient(180deg, #fbf4f0 0%, #f4e6df 100%);
  color: var(--text);
}

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

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

.page {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--paper);
  box-shadow: 0 0 80px rgba(75, 47, 39, 0.12);
  overflow: hidden;
}

.hero {
  padding: 14px 14px 0;
}

.hero-image-wrap {
  position: relative;
  min-height: 680px;
  border-radius: 34px;
  overflow: hidden;
  background: #eadbd4;
  box-shadow: var(--shadow);
}

.hero-image {
  height: 680px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 33, 31, 0.15) 0%, rgba(42, 33, 31, 0.03) 36%, rgba(42, 33, 31, 0.72) 100%);
}

.hero-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 28px;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 16px;
}

.hero h1 {
  margin: 0;
  font-size: 54px;
  line-height: 0.96;
  letter-spacing: -2.6px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-desc {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.2px;
}

.hero-buttons {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.2px;
}

.hero-buttons .btn {
  flex: 1;
}

.btn-primary {
  background: var(--text);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(42, 33, 31, 0.22);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
}

.btn-outline {
  width: 100%;
  background: var(--text);
  color: white;
  margin-top: 20px;
}

.wide {
  width: 100%;
}

.quick-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  padding: 16px 18px 8px;
}

.quick-card {
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fffaf8;
  text-align: center;
}

.quick-label {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  color: var(--point);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.quick-card strong {
  display: block;
  font-size: 13px;
  letter-spacing: -0.2px;
}

.section {
  padding: 54px 24px;
  border-bottom: 1px solid #f1e5df;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--point-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: -1.4px;
}

.section-desc {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.3px;
}

.signature-box {
  margin-top: 28px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f5e6df, #fff7f3);
  border: 1px solid #ead8cf;
}

.signature-box span {
  display: block;
  color: var(--point-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.signature-box strong {
  display: block;
  font-size: 20px;
  letter-spacing: -0.7px;
}

.signature-box p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.pill {
  flex-shrink: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f3e4dd;
  color: var(--point-dark);
  font-size: 12px;
  font-weight: 900;
}

.monthly-grid {
  display: grid;
  gap: 18px;
}

.monthly-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 420px;
  background: var(--soft);
  box-shadow: 0 18px 50px rgba(90, 58, 49, 0.12);
}

.monthly-card.large {
  min-height: 520px;
}

.monthly-card img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.monthly-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(36, 26, 24, 0.78) 100%);
}

.card-info {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: white;
}

.card-info span {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.72);
}

.card-info h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.8px;
}

.card-info p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.card-info strong {
  font-size: 18px;
}

.price-card {
  margin-top: 24px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f1e5df;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  display: block;
  color: var(--point-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.price-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.price-row strong {
  font-size: 17px;
  white-space: nowrap;
}

.notice-text {
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 22px;
  background: #f9f0ec;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.guide-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.guide-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: #fff9f6;
  border: 1px solid #f0e3dd;
}

.guide-item span {
  flex: 0 0 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--text);
  color: white;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-item p {
  margin: 5px 0 0;
  color: #5f4f4a;
  font-size: 15px;
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-grid img {
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(90, 58, 49, 0.1);
}

.gallery-grid img:first-child {
  grid-column: span 2;
  aspect-ratio: 1 / 0.86;
}

.location-card {
  margin-top: 24px;
  border-radius: 32px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(90, 58, 49, 0.1);
}

.map-placeholder {
  height: 180px;
  background:
    linear-gradient(135deg, rgba(184, 137, 120, 0.24), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(45deg, #f2e3dc 0 10px, #f8eee9 10px 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(42, 33, 31, 0.86);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.location-info {
  padding: 24px;
}

.location-info h3 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.8px;
}

.location-info > p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.55;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #f1e5df;
}

dt {
  color: var(--point-dark);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

dd {
  margin: 0;
  color: #5f4f4a;
  font-size: 14px;
  text-align: right;
  line-height: 1.4;
}

.final-cta {
  padding: 54px 24px 44px;
  background: linear-gradient(135deg, #2a211f, #6f4b40);
  color: white;
}

.final-cta p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.final-cta h2 {
  color: white;
  font-size: 29px;
  margin-bottom: 24px;
}

.final-cta .btn-primary {
  background: white;
  color: var(--text);
}

.bottom-space {
  height: 92px;
}

.fixed-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 28px);
  max-width: 492px;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(42, 33, 31, 0.22);
}

.fixed-btn {
  flex: 1;
  height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
}

.fixed-btn.secondary {
  background: #f4e6df;
  color: var(--text);
}

.fixed-btn.primary {
  background: var(--text);
  color: white;
}

@media (max-width: 390px) {
  .hero-image-wrap {
    min-height: 620px;
  }

  .hero-image {
    height: 620px;
  }

  .hero h1 {
    font-size: 46px;
  }

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

  .quick-section {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 27px;
  }

  .monthly-card,
  .monthly-card.large {
    min-height: 400px;
  }
}