:root {
  --green: #00bd83;
  --green-dark: #008d64;
  --green-soft: #dcf9ec;
  --navy: #071833;
  --navy-2: #0c1b2d;
  --ink: #07142b;
  --muted: #5a6d8f;
  --line: #e4eaf2;
  --surface: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 30, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  letter-spacing: 0;
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.topbar.is-scrolled,
.topbar.menu-active {
  background: rgba(7, 24, 51, 0.88);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  font-family: "Gmarket Sans", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
  white-space: nowrap;
  transform: translateY(2px);
}

.brand span {
  font-weight: 500;
  opacity: 0.9;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3.2vw, 44px);
  font-size: 15px;
  font-weight: 700;
}

.navlinks a {
  opacity: 0.88;
}

.navlinks a:hover {
  opacity: 1;
  color: #bffbe6;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  color: #005940;
  background: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.42)),
    url("park-golf-hero.png") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.36));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  padding-top: 72px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 153, 112, 0.92);
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 18px 36px rgba(0, 141, 100, 0.24);
}

.badge::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #baf6e3;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hero h1 {
  margin-top: 28px;
  font-size: clamp(46px, 6.3vw, 82px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.accent {
  color: var(--white);
}

.hero p {
  width: min(680px, 100%);
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  word-break: keep-all;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 68px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  transform: translateX(-50%);
}

.stats {
  padding: 108px 0 104px;
  background: var(--white);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-label {
  display: block;
  color: #8292b6;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.stat-value {
  display: block;
  margin-top: 14px;
  color: #009665;
  font-size: clamp(42px, 4.8vw, 56px);
  line-height: 1;
  font-weight: 900;
}

.stat-desc {
  margin-top: 8px;
  color: #476285;
  font-size: 17px;
  line-height: 1.4;
}

section {
  scroll-margin-top: 86px;
}

.story {
  padding: 82px 0 92px;
  background: var(--surface);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: center;
}

.photo-panel {
  min-height: 590px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.22)),
    url("premium-screen-park-golf.png") center / cover;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
  word-break: keep-all;
}

.lead {
  margin-top: 30px;
  color: #435b80;
  font-size: 20px;
  line-height: 1.75;
  word-break: keep-all;
}

.feature-list {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--green-dark);
  background: #c9f8e4;
}

.icon-box svg,
.icon-box i {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  stroke-width: 2.5;
}

.feature .icon-box {
  width: 48px;
  height: 48px;
  border: 1px solid #d9e8e2;
  border-radius: 12px;
  color: #007253;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(0, 80, 62, 0.08);
}

.feature .icon-box svg,
.feature .icon-box i {
  width: 24px;
  height: 24px;
  stroke-width: 2.1;
}

.feature strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.feature > div > span {
  display: block;
  margin-top: 7px;
  color: #5d7091;
  font-size: 17px;
  line-height: 1.55;
  word-break: keep-all;
}

.section-head {
  margin-bottom: 48px;
}

.section-head .lead {
  margin-top: 14px;
}

.price {
  padding: 92px 0 86px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 189, 131, 0.12), transparent 34%),
    linear-gradient(115deg, #09172d, #0d2132 54%, #071323);
}

.price .section-title,
.price .lead {
  color: var(--white);
}

.price .lead {
  opacity: 0.86;
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(300px, 420px);
  gap: 28px;
  align-items: stretch;
  justify-content: center;
  margin-top: 56px;
}

.price-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.price-title {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  font-size: clamp(26px, 3vw, 30px);
  line-height: 1.25;
  font-weight: 900;
}

.price-title::before {
  content: "";
  width: 7px;
  height: 27px;
  border-radius: 999px;
  background: var(--green);
}

.price-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 34px;
}

.price-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 124px;
  padding: 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.price-option.room {
  border-color: rgba(0, 215, 150, 0.34);
  background: rgba(0, 189, 131, 0.12);
}

.price-kicker {
  margin-top: 8px;
  color: #9aabc2;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.price-name {
  color: var(--white);
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
  word-break: keep-all;
}

.amount {
  color: var(--green);
  font-size: clamp(36px, 4vw, 44px);
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.amount small {
  margin-left: 4px;
  color: #9aabc2;
  font-size: 15px;
  font-weight: 700;
}

.price-poster {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.price-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.contact {
  padding: 92px 0 90px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.82fr);
  gap: 52px;
  align-items: stretch;
  margin-top: 72px;
}

.map-card {
  display: grid;
  place-items: center;
  min-height: 412px;
  padding: 40px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(244, 247, 251, 0.94), rgba(231, 238, 247, 0.94)),
    url("https://images.unsplash.com/photo-1593111774240-d529f12cf4bb?auto=format&fit=crop&w=1200&q=80") center / cover;
  box-shadow: inset 0 1px 4px rgba(7, 24, 51, 0.09);
  text-align: center;
}

.pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  color: var(--green);
}

.map-card h3 {
  color: #143358;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 900;
  word-break: keep-all;
}

.map-card p {
  margin-top: 8px;
  color: #58709a;
  font-size: 18px;
}

.map-card .btn {
  min-height: 54px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 999px;
  color: #007253;
  background: var(--white);
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.11);
  font-size: 17px;
}

.contact-list {
  display: grid;
  gap: 26px;
}

.contact-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 98px;
  padding: 22px;
  border-radius: 16px;
  background: #f7f9fc;
}

.contact-item .icon-box {
  width: 54px;
  height: 54px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(0, 30, 61, 0.08);
}

.contact-label {
  color: #93a3c0;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.contact-value {
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
  word-break: keep-all;
}

.footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #071323;
  font-size: 14px;
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer strong {
  color: var(--white);
}

.footer-info {
  flex: 1 1 520px;
  max-width: 760px;
  margin-left: auto;
  text-align: right;
  line-height: 1.7;
  word-break: keep-all;
}

.footer-copy {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

@media (max-width: 980px) {
  .wrap {
    width: min(100% - 36px, 760px);
  }

  .menu-btn {
    display: inline-flex;
  }

  .navlinks {
    position: fixed;
    inset: 72px 18px auto 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    background: rgba(7, 24, 51, 0.96);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
  }

  .navlinks.is-open {
    display: grid;
  }

  .navlinks a {
    padding: 16px;
    border-radius: 12px;
  }

  .navlinks a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero {
    min-height: 690px;
  }

  .stat-grid,
  .price-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    gap: 46px 20px;
  }

  .photo-panel {
    min-height: 420px;
  }

  .contact-grid {
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 520px);
  }

  .nav {
    min-height: 66px;
  }

  .brand {
    display: block;
    max-width: calc(100vw - 92px);
    font-size: 18px;
    white-space: normal;
  }

  .brand span {
    display: block;
    margin-top: 2px;
    font-size: 14px;
  }

  .navlinks {
    inset: 66px 14px auto 14px;
  }

  .hero {
    min-height: 650px;
    align-items: flex-end;
    padding-bottom: 86px;
    background-position: 58% center;
  }

  .hero-content {
    padding-top: 96px;
  }

  .badge {
    padding: 9px 14px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 17px;
  }

  .btn {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 17px;
  }

  .stats,
  .story,
  .price,
  .contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .stat-value {
    font-size: 42px;
  }

  .section-title {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  .photo-panel {
    min-height: 0;
    height: 260px;
  }

  .feature {
    grid-template-columns: 48px 1fr;
  }

  .icon-box,
  .contact-item .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .price-box {
    padding: 30px 24px 34px;
  }

  .price-grid {
    margin-top: 44px;
  }

  .price-options {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .price-option {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 24px;
  }

  .amount {
    font-size: 40px;
  }

  .contact-grid {
    margin-top: 44px;
  }

  .map-card {
    min-height: 330px;
    padding: 28px 20px;
    border-radius: 26px;
  }

  .contact-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .footer-info {
    margin-left: 0;
    text-align: left;
  }
}
