* {
  box-sizing: border-box;
}

:root {
  --ink: #11100f;
  --charcoal: #191614;
  --paper: #f6f0e8;
  --paper-strong: #fffaf2;
  --muted: #786f65;
  --line: rgba(17, 16, 15, 0.1);
  --red: #8f2f2d;
  --red-dark: #5a1f1d;
  --gold: #c8aa74;
  --smoke: #282320;
  --shadow: 0 24px 70px rgba(17, 16, 15, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Apple SD Gothic Neo", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 250, 242, 0.9), transparent 32%),
    linear-gradient(180deg, #201b18 0%, #ede4d8 42%, #d8cabb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: linear-gradient(90deg, #111 1px, transparent 1px), linear-gradient(#111 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

.page {
  position: relative;
  width: 100%;
  max-width: 540px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 0 90px rgba(17, 16, 15, 0.28);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 18px 18px 28px;
  color: white;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 15, 0.22) 0%, rgba(17, 16, 15, 0.62) 48%, rgba(17, 16, 15, 0.96) 100%),
    radial-gradient(circle at 70% 16%, rgba(200, 170, 116, 0.22), transparent 38%);
}

.hero-image img {
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-height: 714px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 4px 8px;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: -1.8px;
}

.hero-desc {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -0.25px;
}

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

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

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

.btn-light {
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.btn-line {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.btn-dark {
  background: var(--ink);
  color: white;
}

.wide {
  width: 100%;
}

.quick-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 16px 18px 0;
  margin-top: -42px;
  position: relative;
  z-index: 3;
}

.quick-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 42px rgba(17, 16, 15, 0.14);
  backdrop-filter: blur(18px);
}

.quick-item span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.quick-item strong {
  font-size: 15px;
  text-align: right;
}

.section {
  padding: 58px 24px;
  border-bottom: 1px solid rgba(17, 16, 15, 0.08);
}

h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
  letter-spacing: -1.3px;
}

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

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

.section-chip {
  flex-shrink: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: #eaded0;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
}

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

.style-card {
  padding: 24px;
  border-radius: 26px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(17, 16, 15, 0.08);
}

.style-card.dark {
  color: white;
  background: linear-gradient(135deg, #15110f 0%, #3a2622 100%);
  box-shadow: var(--shadow);
}

.style-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 900;
}

.style-card.dark span {
  color: var(--gold);
}

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

.style-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.style-card.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.price-table {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid rgba(17, 16, 15, 0.08);
}

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

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

.price-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.price-row strong {
  flex-shrink: 0;
  font-size: 16px;
  white-space: nowrap;
}

.notice-text {
  margin: 16px 0 0;
  padding: 18px;
  border-radius: 22px;
  background: #eaded0;
  color: #65594f;
  font-size: 14px;
  line-height: 1.66;
}

.step-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
}

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

.step-item h3 {
  margin: 3px 0 6px;
  font-size: 17px;
}

.step-item p,
.guide-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 15px;
}

.guide-item {
  padding: 22px;
  border-radius: 24px;
  background: #191614;
  color: white;
}

.guide-item strong {
  display: block;
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 17px;
}

.guide-item p {
  color: rgba(255, 255, 255, 0.76);
}

.location-panel {
  margin-top: 24px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: 0 18px 52px rgba(17, 16, 15, 0.1);
}

.map-block {
  height: 176px;
  background:
    linear-gradient(135deg, rgba(143, 47, 45, 0.24), rgba(255, 250, 242, 0.72)),
    repeating-linear-gradient(45deg, #ded2c4 0 12px, #efe6dc 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-block span {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  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: 25px;
  letter-spacing: -0.8px;
}

.location-info > p {
  margin: 0 0 18px;
  color: var(--muted);
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(17, 16, 15, 0.08);
}

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

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

.final-cta {
  padding: 58px 24px 46px;
  color: white;
  background:
    radial-gradient(circle at 0% 0%, rgba(200, 170, 116, 0.22), transparent 34%),
    linear-gradient(135deg, #14110f 0%, #40221f 100%);
}

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

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

.site-footer {
  padding: 34px 20px 28px;
  text-align: center;
  color: #867a70;
  font-size: 13px;
}

.site-footer p {
  margin: 6px 0;
}

.made-by {
  font-size: 12px;
  opacity: 0.72;
}

.made-by a {
  font-weight: 700;
}

.bottom-space {
  height: 92px;
}

.fixed-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 28px);
  max-width: 512px;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(17, 16, 15, 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: #eaded0;
  color: var(--ink);
}

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

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

  .hero-copy {
    min-height: 664px;
  }

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

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .btn {
    min-width: 0;
    padding: 0 12px;
    font-size: 14px;
  }

  h2 {
    font-size: 28px;
  }

  .section-head {
    flex-direction: column;
  }

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

  .price-row strong {
    white-space: normal;
  }
}