:root {
  --ink: #17211f;
  --muted: #64716d;
  --line: #dde5e1;
  --paper: #fbfcfa;
  --soft: #eef4ef;
  --green: #123d38;
  --green-2: #1e6259;
  --gold: #b88a3d;
  --white: #fff;
  --shadow: 0 18px 45px rgba(18, 61, 56, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Pretendard", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  background: var(--green);
  color: var(--white);
  padding: 10px 14px;
}
.skip:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(221, 229, 225, .78);
  backdrop-filter: blur(16px);
}
.bar {
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 232px; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}
.brand strong { display: block; font-size: 17px; line-height: 1.2; }
.brand em { display: block; font-style: normal; color: var(--muted); font-size: 12px; }
.desktop-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.desktop-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: #24312e;
  font-size: 15px;
  font-weight: 650;
}
.desktop-nav a:hover { background: var(--soft); color: var(--green); }
.header-call {
  padding: 10px 14px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  border-radius: 6px;
}
.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}
.menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--white); padding: 8px 20px 18px; }
.mobile-nav a { display: block; padding: 11px 0; font-weight: 700; border-bottom: 1px solid var(--line); }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #26322f;
}
.hero-media, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  background: linear-gradient(135deg, #143f39, #d9d2c1);
}
.hero-media img:not([src]), .hero-media img[src=""] { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 28, 26, .83), rgba(9, 28, 26, .42) 46%, rgba(9, 28, 26, .12));
}
.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 154px 0 174px;
  color: var(--white);
}
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 1.02;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.88);
  font-size: 20px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-actions a, .reservation-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 800;
}
.primary, .reservation-form button { background: var(--gold); color: #16120b; border: 0; }
.secondary { border: 1px solid rgba(255,255,255,.52); color: var(--white); }
.quick-strip {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
}
.quick-strip a { padding: 22px 24px; border-right: 1px solid var(--line); }
.quick-strip strong { display: block; font-size: 19px; color: var(--green); }
.quick-strip span { display: block; margin-top: 4px; color: var(--muted); font-size: 14px; }

.section { padding: 96px 0; }
.section.alt { background: var(--soft); }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .8fr);
  gap: 52px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(320px, .8fr) minmax(0, 1.1fr); }
h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 48px); line-height: 1.18; }
h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.3; }
.lead { color: #33413e; font-size: 18px; }
.section-head { max-width: 800px; margin-bottom: 34px; }

.summary-panel, .price-box, .rent-list, .fee-table {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: var(--shadow);
}
.summary-panel dl { margin: 0; }
.summary-panel div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.summary-panel dt { color: var(--muted); font-weight: 700; }
.summary-panel dd { margin: 0; font-weight: 800; }
.summary-panel small { display: block; margin-top: 16px; color: var(--muted); }

.plan-grid, .location-grid, .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.plan-card, .location-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
}
.image-slot {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #e7ece6, #c6d5cf);
  overflow: hidden;
}
.image-slot img { width: 100%; height: 100%; object-fit: cover; }
.image-slot span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(18, 61, 56, .9);
  color: var(--white);
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 850;
}
.plan-card p, .location-grid p { color: var(--muted); margin-bottom: 0; }

.price-box ul, .rent-list ol { margin: 0; padding-left: 22px; }
.price-box li, .rent-list li { margin: 10px 0; }
.location { background: #fff; }
.location-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.location-grid article { min-height: 232px; }
.location-grid span { color: var(--gold); font-weight: 900; }

.fee-table { padding: 0; overflow: hidden; }
.fee-table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid var(--line);
}
.fee-table div:last-child { border-bottom: 0; }
.fee-table strong, .fee-table span { padding: 18px 20px; }
.fee-table strong { background: var(--green); color: var(--white); }

.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
figure { margin: 0; background: var(--white); border: 1px solid var(--line); }
figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(135deg, #e6eee8, #cbd8d0);
}
figcaption { padding: 12px 14px; font-weight: 800; }

.faq-list { display: grid; gap: 12px; }
details {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0 22px;
}
summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 850;
}
details p { color: var(--muted); padding-bottom: 18px; margin-bottom: 0; }

.visit { background: var(--green); color: var(--white); }
.visit .section-kicker { color: #e7bc70; }
.visit-box {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1fr);
  gap: 42px;
  align-items: start;
}
.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 24px;
}
.reservation-form label { display: grid; gap: 7px; font-weight: 750; }
.reservation-form input, .reservation-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  padding: 0 12px;
}
.reservation-form .agree, .reservation-form button { grid-column: 1 / -1; }
.reservation-form .agree { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; }
.reservation-form .agree input { width: auto; min-height: 0; }

.site-footer { padding: 42px 0 86px; background: #101816; color: rgba(255,255,255,.76); }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; }
.site-footer strong, .site-footer a { display: block; color: var(--white); font-size: 20px; font-weight: 850; }
.site-footer span, .site-footer small { color: rgba(255,255,255,.58); }
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  box-shadow: var(--shadow);
}
.floating-cta a {
  padding: 13px 18px;
  background: var(--green);
  color: var(--white);
  font-weight: 850;
}
.floating-cta a + a { background: var(--gold); color: #18120a; }

@media (max-width: 980px) {
  .desktop-nav, .header-call { display: none; }
  .menu-button { display: block; margin-left: auto; }
  .mobile-nav.is-open { display: block; }
  .hero { min-height: 720px; }
  .quick-strip { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse, .visit-box { grid-template-columns: 1fr; }
  .plan-grid, .location-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .bar { width: calc(100% - 24px); height: 64px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 14px; }
  .brand em { display: none; }
  .hero-content { width: calc(100% - 24px); padding: 128px 0 214px; }
  .hero-lead { font-size: 17px; }
  .quick-strip { width: calc(100% - 24px); grid-template-columns: 1fr 1fr; }
  .quick-strip a { padding: 14px 12px; }
  .quick-strip strong { font-size: 16px; }
  .quick-strip span { font-size: 12px; }
  .section { padding: 68px 0; }
  .container { width: calc(100% - 24px); }
  .plan-grid, .location-grid, .gallery-grid { grid-template-columns: 1fr; }
  .summary-panel, .price-box, .rent-list, .fee-table { padding: 22px; }
  .fee-table { padding: 0; }
  .fee-table div { grid-template-columns: 1fr; }
  .reservation-form { grid-template-columns: 1fr; padding: 18px; }
  .footer-grid { display: grid; }
  .floating-cta { left: 0; right: 0; bottom: 0; }
  .floating-cta a { flex: 1; text-align: center; }
}
