:root {
  --orange: #f05a28;
  --ink: #171717;
  --muted: #6a7078;
  --line: #e6e0d8;
  --paper: #f7f3ed;
  --deep: #0b1f2a;
  --white: #fff;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
  line-height: 1.55;
  word-break: keep-all;
  overflow-x: hidden;
  padding-bottom: 138px;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 14px 38px rgba(16, 28, 40, .1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand img {
  width: 198px;
  height: auto;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
}

.main-nav {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  font-size: 14px;
  font-weight: 850;
}

.main-nav a {
  position: relative;
  padding-bottom: 6px;
  transition: color .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 6px var(--orange), 0 0 12px rgba(240, 90, 40, .75);
  opacity: 0;
  transition: width .34s cubic-bezier(.22, .61, .36, 1), opacity .2s ease;
}

.main-nav a:hover {
  color: var(--orange);
}

.main-nav a:hover::after {
  width: 100%;
  opacity: 1;
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 900;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .26s ease, opacity .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-slider,
.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.35s ease, transform 7s ease;
}

.hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 16, 24, .78), rgba(4, 16, 24, .42) 48%, rgba(4, 16, 24, .14)),
    linear-gradient(0deg, rgba(4, 16, 24, .62), rgba(4, 16, 24, .02) 48%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(var(--max), calc(100% - 40px));
  min-height: 94vh;
  margin: 0 auto;
  padding: 116px 0 88px;
}

.hero-disclaimer {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 14px;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.orange {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  font-weight: 950;
}

.hero-title {
  min-height: 3.9em;
  font-size: clamp(34px, 5.6vw, 70px);
  line-height: 1.22;
}

.hero-title::after {
  content: "";
  display: inline-block;
  width: .045em;
  height: .68em;
  margin-left: .1em;
  background: var(--orange);
  border-radius: 999px;
  transform: translateY(.04em);
  animation: caretBlink .78s steps(1) infinite;
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

.hero-text {
  max-width: 610px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .88);
  font-size: 19px;
}

.hero-actions,
.hero-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: var(--orange);
}

.btn.glass {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.hero-dots {
  margin-top: 28px;
  gap: 9px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .4);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 54px;
  background: var(--orange);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-title.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: 46px;
  max-width: none;
}

.section-title h2,
.contact h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  font-weight: 950;
}

.section-title p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.overview {
  background: #fff;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.overview-stats article {
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fbf7f1);
}

.overview-stats strong {
  display: block;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 64px;
  line-height: 1;
  font-weight: 950;
}

.overview-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.overview-stats p {
  margin: 0;
  color: var(--muted);
}

.member-finder {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin-top: 22px;
  padding: 34px;
  border-radius: 10px;
  background: var(--deep);
  color: #fff;
}

.member-finder h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

.member-finder p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.finder-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.finder-links a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 158px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
  transition: transform .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.finder-links a:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 90, 40, .7);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .3);
}

.finder-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--orange), #ff9163);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .5px;
  box-shadow: 0 10px 22px rgba(240, 90, 40, .4);
}

.finder-links strong {
  margin-top: auto;
  font-size: 18px;
  line-height: 1.25;
}

.finder-go {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  color: rgba(255, 255, 255, .5);
  font-size: 12.5px;
  font-weight: 700;
  transition: color .22s ease, gap .22s ease;
}

.finder-go svg {
  width: 15px;
  height: 15px;
}

.finder-links a:hover .finder-go {
  color: var(--orange);
  gap: 9px;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.membership-grid article {
  min-height: 250px;
  padding: 30px;
  background: #fff;
}

.membership-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.membership-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.membership-grid p {
  color: var(--muted);
}

.detail-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 18px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.membership-grid .detail-trigger {
  color: var(--orange);
}

.resorts {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--paper);
}

.resort-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.resort-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background: var(--deep);
}

.resort-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 678px;
}

.resort-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.resort-card:hover img {
  transform: scale(1.045);
}

.resort-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .08) 64%);
}

.resort-card div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.resort-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.resort-card h3 {
  margin: 8px 0;
  font-size: 30px;
}

.resort-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .84);
}

.resort-card .detail-trigger {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: #fff;
}

.experience {
  background: #fff;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.experience-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.experience-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.experience-grid div {
  padding: 28px;
}

.experience-grid span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.experience-grid h3 {
  margin: 8px 0 12px;
  font-size: 28px;
}

.experience-grid p {
  margin: 0;
  color: var(--muted);
}

.experience-grid .detail-trigger {
  color: var(--orange);
}

.benefits {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background: #fbf7f1;
}

.benefit-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.benefit-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 26px 30px;
  background: #fff;
}

.benefit-list strong {
  color: var(--orange);
  font-size: 20px;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
}

.process {
  background: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-steps article {
  min-height: 230px;
  padding: 28px;
  background: #fff;
}

.process-steps b {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-size: 13px;
}

.process-steps h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 52px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(11, 31, 42, .9), rgba(11, 31, 42, .64) 58%, rgba(11, 31, 42, .5)),
    url("../images/pdf-rgb/haeundae.jpg") center / cover no-repeat;
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, .74);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 36px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .2);
}

.contact-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-card h3 {
  margin-bottom: 0;
  font-size: 28px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.phone {
  color: var(--orange);
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

.btn.kakao {
  gap: 9px;
  background: #fee500;
  color: #241d1d;
  box-shadow: 0 14px 34px rgba(254, 229, 0, .24);
}

.kakao-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 26px;
  border-radius: 50%;
  border-bottom-left-radius: 8px;
  background: #241d1d;
  color: #fee500;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px clamp(20px, 4vw, 58px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand img {
  width: 210px;
  height: auto;
}

.footer-info {
  display: grid;
  gap: 5px;
  font-size: 14px;
}

.footer-info p {
  margin: 0;
}

.footer-info strong {
  color: var(--ink);
}

.fixed-inquiry {
  position: fixed;
  z-index: 70;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: block;
}

.fixed-inquiry.is-hidden {
  display: none;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 180px minmax(260px, 360px) minmax(220px, 1fr) 126px;
  gap: 16px;
  align-items: center;
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 14px;
  background: rgba(16, 27, 36, .92);
  color: #fff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.inquiry-head {
  display: grid;
  gap: 6px;
}

.inquiry-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.inquiry-head strong {
  font-size: 18px;
  line-height: 1.2;
}

.inquiry-close,
.inquiry-kakao,
.inquiry-agree button,
.privacy-close {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.inquiry-kakao {
  display: none;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fee500;
  color: #241d1d;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.inquiry-close {
  justify-self: start;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  text-decoration: underline;
}

.inquiry-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.inquiry-fields label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.inquiry-fields span {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 850;
}

.inquiry-fields input {
  width: 100%;
  min-width: 0;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
}

.inquiry-fields input[readonly],
.modal-inquiry-form input[readonly] {
  background: #ebe6de;
  color: #3d4145;
  cursor: default;
}

.phone-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  min-width: 0;
}

.inquiry-agree {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.inquiry-agree label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.inquiry-agree input {
  margin-top: 3px;
  accent-color: var(--orange);
}

.inquiry-agree button {
  justify-self: start;
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
}

.inquiry-submit,
.inquiry-reopen {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 10px;
}

.modal-actions .inquiry-submit {
  width: 100%;
  min-height: 50px;
  font-size: 16px;
}

.inquiry-cancel {
  min-height: 50px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.inquiry-cancel:hover {
  background: var(--paper);
  border-color: #d9d2c7;
}

.inquiry-reopen {
  position: fixed;
  z-index: 69;
  right: 22px;
  bottom: 22px;
  display: none;
  padding: 0 20px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .24);
}

.inquiry-reopen.is-visible {
  display: inline-flex;
  align-items: center;
}

.side-quick {
  position: fixed;
  z-index: 67;
  top: 50%;
  right: 18px;
  display: grid;
  width: 112px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 42, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .18);
  transform: translateY(-50%);
  backdrop-filter: blur(16px);
}

.side-quick a {
  display: grid;
  gap: 5px;
  min-height: 82px;
  padding: 14px 10px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-align: center;
}

.side-quick a:last-child {
  border-bottom: 0;
}

.side-quick span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
}

.side-quick strong {
  font-size: 14px;
  line-height: 1.25;
}

.side-quick-primary {
  background: var(--deep);
  color: #fff !important;
}

.side-quick-primary span {
  color: #7a5c00;
}

.side-quick-primary strong {
  text-shadow: 0 1px 0 rgba(255, 255, 255, .45);
}

/* 골드 크롬 (회원권 문의) */
.gold-chrome {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #8a6a18 0%, #d8b352 26%, #c79b2c 48%, #e7c768 62%, #bb8f24 82%, #856515 100%) !important;
  color: #3a2c00 !important;
}

.gold-chrome::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 248, 220, .55) 48%, transparent 60%);
  transform: translateX(-130%);
  animation: goldSheen 4.2s ease-in-out infinite;
  pointer-events: none;
}

.gold-chrome > * {
  position: relative;
  z-index: 1;
}

@keyframes goldSheen {
  0%, 55% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

@media (prefers-reduced-motion: reduce) {
  .gold-chrome::before { animation: none; }
}

/* 모바일 하단 고정바 (데스크톱 숨김) */
.mobile-bar {
  display: none;
}

.inquiry-modal {
  position: fixed;
  z-index: 92;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 13, 18, .62);
  backdrop-filter: blur(14px);
}

.inquiry-modal.is-open {
  display: grid;
}

.inquiry-modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  width: min(820px, 100%);
  min-width: 0;
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .36);
}

.modal-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.modal-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.modal-inquiry-form {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
  padding: 24px;
  border-radius: 10px;
  background: #f7f3ed;
}

.modal-inquiry-form > label {
  display: grid;
  gap: 8px;
}

.modal-inquiry-form > label > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.modal-inquiry-form input[type="text"] {
  width: 100%;
  min-width: 0;
  height: 48px;
  border: 1px solid #d9d1c6;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 13px;
  font: inherit;
}

.modal-agree {
  color: var(--muted);
}

.modal-agree button {
  color: var(--ink);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  text-decoration: underline;
}

.detail-modal {
  position: fixed;
  z-index: 93;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(5, 13, 18, .62);
  backdrop-filter: blur(14px);
}

.detail-modal.is-open {
  display: grid;
}

.detail-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 38px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .36);
}

.detail-dialog h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}

.detail-lead {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
}

.detail-points {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.detail-points div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf7f1;
}

.detail-points strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.detail-points p {
  margin: 0;
  color: var(--muted);
}

.detail-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
  padding: 0 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
  transition: background .18s ease, border-color .18s ease;
}

.detail-close::before {
  content: "✕";
  font-size: 13px;
  line-height: 1;
}

.detail-close:hover {
  background: var(--paper);
  border-color: #d9d2c7;
}

.kakao-float {
  position: fixed;
  z-index: 68;
  right: 24px;
  bottom: 132px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 56px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: #fee500;
  color: #241d1d;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
  transition: transform .2s ease, box-shadow .2s ease, bottom .25s ease;
}

.kakao-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(0, 0, 0, .28);
}

.kakao-float.is-lowered {
  bottom: 90px;
}

.btn.sms {
  gap: 8px;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 14px 34px rgba(11, 31, 42, .26);
}

.phone-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.phone-ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--orange);
}

.privacy-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, .5);
}

.privacy-modal.is-open {
  display: flex;
}

.privacy-dialog {
  position: relative;
  width: min(640px, 100%);
  padding: 34px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.privacy-dialog h2 {
  margin-bottom: 16px;
  font-size: 26px;
}

.privacy-dialog p,
.privacy-dialog li {
  color: var(--muted);
}

.privacy-close {
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 6px 16px 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 50px rgba(16, 28, 40, .18);
    border-top: 1px solid var(--line);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 15px 6px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 16px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .membership-grid,
  .resort-grid,
  .overview-stats,
  .experience-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-title.split,
  .contact,
  .member-finder {
    grid-template-columns: 1fr;
  }

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

  .side-quick {
    display: none;
  }

  .inquiry-modal-dialog {
    grid-template-columns: 1fr;
  }

  .resort-card.large {
    grid-column: span 2;
    min-height: 520px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    width: min(720px, 100%);
  }

  .inquiry-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    word-break: normal;
    overflow-wrap: anywhere;
    padding-bottom: 84px;
  }

  .fixed-inquiry,
  .inquiry-reopen {
    display: none !important;
  }

  .mobile-bar {
    position: fixed;
    z-index: 72;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .14);
    backdrop-filter: blur(12px);
  }

  .mobile-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 58px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 4px 12px rgba(16, 28, 40, .08);
    color: var(--ink);
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.05;
  }

  .mobile-bar-item:active {
    transform: translateY(1px);
  }

  .mobile-bar-item .mb-ico {
    width: 21px;
    height: 21px;
  }

  .mobile-bar-item.primary {
    border: 0;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(178, 138, 30, .34);
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-toggle span {
    width: 22px;
  }

  .main-nav {
    top: 68px;
  }

  .site-header {
    height: 68px;
    padding: 0 16px;
  }

  .brand img {
    width: 152px;
  }

  .header-call {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 92vh;
  }

  .hero-inner {
    width: min(330px, calc(100vw - 44px));
    padding: 92px 0 88px;
    overflow: hidden;
  }

  h1 {
    max-width: 100%;
    font-size: 33px;
    line-height: 1.08;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.28;
    min-height: 4.1em;
  }

  .hero-text,
  .section-title p,
  .contact p {
    font-size: 16px;
  }

  .hero-text {
    max-width: min(330px, calc(100vw - 44px));
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .section,
  .resorts,
  .contact {
    width: 100%;
    padding: 78px 16px;
  }

  .membership-grid,
  .resort-grid,
  .overview-stats,
  .experience-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .member-finder {
    padding: 26px;
  }

  .finder-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .finder-links a {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 14px 18px;
  }

  .finder-links strong {
    margin-top: 0;
  }

  .finder-go {
    margin-top: 0;
    margin-left: auto;
  }

  .inquiry-modal {
    padding: 12px;
    justify-items: start;
  }

  .detail-modal {
    padding: 12px;
    justify-items: start;
  }

  .inquiry-modal-dialog {
    width: min(340px, 100%);
    min-width: 0;
    max-height: calc(100vh - 24px);
    gap: 18px;
    padding: 26px 16px 16px;
    border-radius: 12px;
  }

  .modal-inquiry-form {
    padding: 16px;
    min-width: 0;
    overflow: hidden;
  }

  .modal-copy,
  .modal-inquiry-form > label,
  .modal-inquiry-form .phone-fields {
    min-width: 0;
  }

  .modal-inquiry-form .inquiry-submit {
    width: 100%;
  }

  .detail-dialog {
    width: min(340px, 100%);
    max-height: calc(100vh - 24px);
    padding: 30px 16px 18px;
    border-radius: 12px;
  }

  .detail-lead {
    font-size: 16px;
  }

  .detail-points div {
    padding: 14px;
  }

  .modal-inquiry-form .phone-fields {
    grid-template-columns: 70px minmax(0, 1fr) minmax(0, 1fr);
    gap: 5px;
  }

  .membership-grid article {
    min-height: 0;
    padding: 26px;
  }

  .resort-card,
  .resort-card.large {
    grid-column: span 1;
    min-height: 420px;
  }

  .benefit-list div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px;
  }

  .contact-card {
    padding: 26px;
  }

  .contact-actions {
    display: grid;
  }

  .phone {
    font-size: 31px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }

  .fixed-inquiry {
    right: auto;
    bottom: 10px;
    left: 10px;
    width: min(340px, calc(100vw - 20px));
    transform: none;
    overflow: hidden;
  }

  .inquiry-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    overflow: hidden;
  }

  .inquiry-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .inquiry-kakao {
    display: inline-flex;
  }

  .phone-fields {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) minmax(0, 1fr);
    gap: 6px;
    width: 100%;
    max-width: 100%;
  }

  .phone-fields input {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .phone-fields input:first-child {
    flex: none;
  }

  .kakao-float {
    right: 14px;
    bottom: 78px;
    display: none;
    min-height: 50px;
    padding: 9px 13px 9px 10px;
    font-size: 13px;
  }

  .kakao-float.is-lowered {
    display: inline-flex;
    bottom: 78px;
  }

  .kakao-float .kakao-icon {
    width: 31px;
    height: 24px;
    font-size: 8px;
  }

  .inquiry-submit {
    width: 100%;
  }

  .privacy-dialog {
    padding: 30px 22px 22px;
  }
}
