/* ═══════════════════════════════════════════════════════
   광주송정 한양립스 에듀포레
   Design: Range-inspired — Normal scroll, Pretendard Bold
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #FFFFFF;
  --bg2:     #F5F3EF;
  --dark:    #1A1A1A;
  --dark2:   #0D2B2A;
  --text:    #555;
  --text-lt: #999;
  --accent:  #1B4D3F;
  --accent2: #2A6B5A;
  --border:  rgba(0,0,0,.08);
  --ff: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --hd-h: 72px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--ff); background: var(--bg); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; font-family: var(--ff); cursor: pointer; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Typography ─────────────────────────── */
.sec-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.sec-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.2;
  color: var(--dark); letter-spacing: -.02em;
}

/* ── Scroll Animations ──────────────────── */
[data-anim] {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-anim].in-view { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--hd-h);
  background: transparent;
  transition: background .4s, box-shadow .4s;
}
#header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}
#header.scrolled .logo-main,
#header.scrolled .gnb a { color: var(--dark); }
#header.scrolled .hd-cta { background: var(--dark); color: #fff; border-color: var(--dark); }
#header.scrolled .ham span { background: var(--dark); }

.hd-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 48px; max-width: 1440px; margin: 0 auto;
}

.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
  font-size: 18px; font-weight: 800; letter-spacing: .1em; color: #fff;
  transition: color .3s;
}
.logo-sub { font-size: 9px; font-weight: 600; letter-spacing: .2em; color: rgba(255,255,255,.5); }
#header.scrolled .logo-sub { color: var(--accent); }

.gnb { display: flex; gap: 32px; }
.gnb a {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
  letter-spacing: .04em; transition: color .3s;
  position: relative;
}
.gnb a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: currentColor;
  transition: width .3s var(--ease);
}
.gnb a:hover { color: #fff; }
.gnb a:hover::after { width: 100%; }
#header.scrolled .gnb a:hover { color: var(--accent); }

.hd-right { display: flex; align-items: center; gap: 16px; }
.hd-cta {
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,.4); color: #fff;
  transition: all .3s;
}
.hd-cta:hover { background: #fff; color: var(--dark); border-color: #fff; }

.ham { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.ham span {
  display: block; width: 22px; height: 1.5px; background: #fff;
  transition: all .35s; transform-origin: center;
}
.ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mmenu {
  position: fixed; inset: 0; z-index: 850; background: var(--dark);
  transform: translateX(100%); transition: transform .5s var(--ease);
}
.mmenu.open { transform: none; }
.mmenu-inner {
  display: flex; flex-direction: column; justify-content: center;
  height: 100%; padding: 80px 40px;
}
.mmenu ul { display: flex; flex-direction: column; gap: 8px; }
.mmenu a {
  display: block; padding: 18px 0;
  font-size: 28px; font-weight: 700; color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .3s;
}
.mmenu a:hover { color: #fff; }

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative; width: 100%; height: 100vh;
  min-height: 600px; overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease-out;
}
.hero-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.05) 40%, rgba(0,0,0,.4) 100%);
}

.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.hero-label {
  font-size: 12px; font-weight: 700; letter-spacing: .3em;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800; color: #fff; line-height: 1.2;
  letter-spacing: -.02em;
  text-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.hero-location {
  margin-top: 20px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.6);
}
.hero-location i { margin-right: 6px; font-size: 12px; }

/* Hero bottom bar */
.hero-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center;
  background: rgba(13,43,42,.85);
  backdrop-filter: blur(16px);
  padding: 0 48px; height: 72px;
}
.hero-bar-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 0 32px;
}
.hero-bar-item:first-child { padding-left: 0; }
.hb-label { font-size: 10px; font-weight: 600; letter-spacing: .1em; color: rgba(255,255,255,.4); text-transform: uppercase; }
.hb-value { font-size: 14px; font-weight: 700; color: #fff; }
.hero-bar-divider { width: 1px; height: 32px; background: rgba(255,255,255,.12); flex-shrink: 0; }
.hero-bar-cta {
  margin-left: auto;
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  color: #fff; padding: 12px 32px;
  border: 1px solid rgba(255,255,255,.3);
  transition: all .3s; white-space: nowrap;
}
.hero-bar-cta:hover { background: #fff; color: var(--dark2); border-color: #fff; }
.hero-bar-cta i { margin-left: 8px; font-size: 11px; }

/* Hero dots */
.hero-dots {
  position: absolute; bottom: 88px; left: 50%;
  transform: translateX(-50%); z-index: 4;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 40px; height: 3px; background: rgba(255,255,255,.25);
  cursor: pointer; transition: background .3s;
}
.hero-dot.active { background: #fff; }

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.sec-about {
  padding: 120px 48px 80px;
  max-width: 1200px; margin: 0 auto;
}
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.about-desc {
  font-size: 16px; line-height: 1.9; color: var(--text);
  margin-top: 8px;
}
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stat {
  padding: 36px 24px; text-align: center;
  border-right: 1px solid var(--border);
}
.about-stat:last-child { border-right: none; }
.about-stat b {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 200; color: var(--dark); line-height: 1;
}
.about-stat span { font-size: 14px; font-weight: 600; color: var(--accent); margin-left: 2px; }
.about-stat p { font-size: 11px; color: var(--text-lt); margin-top: 8px; letter-spacing: .06em; }

/* ═══════════════════════════════════════════
   FEATURES — 2-card split
   ═══════════════════════════════════════════ */
.sec-features { padding: 0; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; }
.feat-card {
  position: relative; height: 65vh; min-height: 400px;
  overflow: hidden; display: flex;
  align-items: flex-end; cursor: pointer;
}
.feat-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease);
}
.feat-card:hover .feat-card-img { transform: scale(1.06); }
.feat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, transparent 60%);
}
.feat-card-text {
  position: relative; z-index: 1;
  padding: 40px 48px; color: #fff; width: 100%;
}
.feat-card-text h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800; margin-bottom: 8px;
}
.feat-card-text p { font-size: 14px; color: rgba(255,255,255,.7); }
.feat-card-arrow {
  position: absolute; top: 40px; right: 48px;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
  transition: all .3s;
}
.feat-card:hover .feat-card-arrow { background: #fff; color: var(--dark); border-color: #fff; }

/* ═══════════════════════════════════════════
   COMMUNITY — Accordion + Image
   ═══════════════════════════════════════════ */
.sec-comm {
  padding: 120px 48px;
  background: var(--bg2);
}
.comm-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  max-width: 1200px; margin: 0 auto;
}
.comm-sub {
  font-size: 15px; color: var(--text); line-height: 1.7;
  margin-top: 16px; margin-bottom: 40px;
}

/* Accordion */
.accordion { display: flex; flex-direction: column; }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-head {
  width: 100%; display: flex; align-items: center;
  padding: 20px 0; font-size: 18px; font-weight: 700;
  color: var(--dark); text-align: left; gap: 12px;
  transition: color .3s;
}
.acc-head:hover { color: var(--accent); }
.acc-area { font-size: 12px; font-weight: 500; color: var(--text-lt); margin-left: auto; }
.acc-icon {
  font-size: 12px; color: var(--text-lt);
  transition: transform .3s; flex-shrink: 0;
}
.acc-item.active .acc-icon { transform: rotate(180deg); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s;
  padding: 0 0;
}
.acc-item.active .acc-body { max-height: 200px; padding-bottom: 20px; }
.acc-body p { font-size: 14px; line-height: 1.8; color: var(--text); }

/* Community image */
.comm-img-wrap {
  position: relative; aspect-ratio: 3/2;
  overflow: hidden; border-radius: 4px;
}
.comm-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; transition: opacity .5s ease;
}
.comm-img.active { opacity: 1; }

/* ═══════════════════════════════════════════
   FLOORPLAN
   ═══════════════════════════════════════════ */
.sec-fp {
  padding: 120px 0;
  background: var(--dark2); color: #fff;
}
.fp-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 48px;
}
.fp-head { margin-bottom: 36px; }
.fp-head .sec-label { color: rgba(255,255,255,.4); }
.fp-head .sec-title { color: #fff; }
.fp-sub { font-size: 15px; color: rgba(255,255,255,.45); margin-top: 12px; }
.fp-tap-hint { display: none; }

/* Tabs */
.fp-tabs { display: flex; gap: 0; margin-bottom: 36px; }
.fp-tab {
  padding: 12px 28px;
  font-family: var(--ff); font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.1);
  background: transparent; cursor: pointer;
  transition: all .3s; letter-spacing: .02em;
}
.fp-tab:first-child { border-radius: 4px 0 0 4px; }
.fp-tab:last-child  { border-radius: 0 4px 4px 0; }
.fp-tab + .fp-tab { border-left: none; }
.fp-tab.active {
  background: var(--accent); color: #fff;
  border-color: var(--accent); font-weight: 700;
}
.fp-tab:not(.active):hover {
  background: rgba(255,255,255,.05); color: #fff;
}

/* Panel */
.fp-panel { display: none; grid-template-columns: 55fr 45fr; gap: 48px; align-items: start; }
.fp-panel.active { display: grid; }

.fp-panel-img {
  background: rgba(255,255,255,.03); border-radius: 8px;
  overflow: hidden; border: 1px solid rgba(255,255,255,.06);
}
.fp-panel-img img { width: 100%; height: auto; display: block; }

.fp-panel-info h3 {
  font-size: clamp(28px, 3vw, 40px); font-weight: 800;
  color: var(--accent2); letter-spacing: -.02em;
  margin-bottom: 16px;
}
.fp-pyeong {
  font-size: .4em; font-weight: 600;
  color: rgba(42,107,90,.7); margin-left: 6px;
}
.fp-desc {
  font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,.6); margin-bottom: 28px;
}
.fp-desc strong { font-weight: 600; color: var(--accent2); }

.fp-specs { margin-bottom: 22px; }
.fp-spec {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.fp-spec span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); }
.fp-spec b { font-size: 14px; font-weight: 500; color: #fff; }
.fp-spec em { font-style: normal; font-size: 24px; font-weight: 700; color: var(--accent2); }

.fp-features { margin-bottom: 24px; }
.fp-feat-label {
  display: block; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.45); letter-spacing: .05em; margin-bottom: 12px;
}
.fp-feat-list { display: flex; gap: 8px; flex-wrap: wrap; }
.fp-feat {
  padding: 8px 16px; font-size: 13px; font-weight: 600;
  color: var(--accent2);
  background: rgba(42,107,90,.08);
  border: 1px solid rgba(42,107,90,.3); border-radius: 6px;
}

.fp-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 16px; gap: 8px;
  background: rgba(255,255,255,.04); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: .06em;
  border: 1px solid rgba(255,255,255,.08); border-radius: 4px;
  transition: background .3s, border-color .3s; cursor: pointer;
}
.fp-cta:hover { background: rgba(42,107,90,.15); border-color: rgba(42,107,90,.4); }
.fp-cta i { font-size: 12px; }

/* 모바일 모달 */
.fp-modal {
  position: fixed; inset: 0; z-index: 9600;
  display: flex; align-items: flex-end; justify-content: center;
  pointer-events: none; opacity: 0; transition: opacity .3s;
}
.fp-modal.open { pointer-events: auto; opacity: 1; }
.fp-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
}
.fp-modal-sheet {
  position: relative; z-index: 1;
  width: 100%; max-height: 88vh;
  background: var(--dark2); border-radius: 20px 20px 0 0;
  padding: 20px 20px 32px; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%);
  transition: transform .35s var(--ease);
}
.fp-modal.open .fp-modal-sheet { transform: translateY(0); }
.fp-modal-close {
  position: sticky; top: 0; float: right; z-index: 2;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1); border: none; border-radius: 50%;
  color: #fff; font-size: 22px; line-height: 36px;
  text-align: center; cursor: pointer;
}

/* Site plan */
.fp-siteplan {
  max-width: 900px; margin: 64px auto 0;
  padding: 0 48px;
}
.fp-sp-head { text-align: center; margin-bottom: 24px; }
.fp-sp-head h3 { font-size: 24px; font-weight: 800; color: var(--dark); }
.fp-sp-head p { font-size: 14px; color: var(--text); margin-top: 6px; }
.fp-sp-img {
  position: relative; cursor: pointer;
  border: 1px solid var(--border); overflow: hidden;
}
.fp-sp-img img { width: 100%; }
.fp-sp-zoom {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,.6); color: #fff;
  font-size: 12px; padding: 6px 16px;
}
.fp-sp-legend {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--text);
}
.fp-sp-legend .dot {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; margin-right: 4px; vertical-align: middle;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lb-close { position: absolute; top: 24px; right: 24px; font-size: 36px; color: #fff; cursor: pointer; }
.lb-body { max-width: 90vw; max-height: 90vh; }
.lb-body img { max-width: 90vw; max-height: 90vh; width: auto; height: auto; object-fit: contain; }

/* ═══════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════ */
.sec-loc {
  padding: 120px 48px;
  background: #F7F3EA; color: #1a1a1a;
}
.loc-inner { max-width: 1200px; margin: 0 auto; }
.loc-head { text-align: center; margin-bottom: 56px; }
.sec-label--dark { color: rgba(0,0,0,.35); }
.sec-title--dark { color: #1a1a1a; }
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.loc-card {
  background: #fff;
  border-radius: 20px; overflow: hidden;
  padding: 44px 36px 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.1); }

/* 이모지 스타일 이미지 */
.loc-card-emoji {
  width: 120px; height: 120px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
}
.loc-card-emoji img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.12));
  transition: transform .4s;
}
.loc-card:hover .loc-card-emoji img { transform: scale(1.1) rotate(-3deg); }

.loc-card-sub {
  font-size: 14px; font-weight: 600; color: #666;
  margin-bottom: 8px; letter-spacing: .02em;
}
.loc-card-big {
  font-size: 36px; font-weight: 900; color: var(--accent);
  margin-bottom: 24px; letter-spacing: -.02em;
  line-height: 1.2;
}
.loc-unit {
  font-size: 20px; font-weight: 700; color: #1a1a1a;
  margin-left: 2px;
}
.loc-card ul {
  display: flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.loc-card li {
  font-size: 13px; color: #666;
  padding-left: 14px; position: relative; line-height: 1.6;
}
.loc-card li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}
.loc-disc {
  text-align: center; font-size: 11px;
  color: rgba(0,0,0,.3); margin-top: 36px;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.sec-contact { padding: 120px 48px; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1100px; margin: 0 auto;
  align-items: start;
}
.contact-desc { font-size: 15px; color: var(--text); line-height: 1.8; margin-top: 16px; }
.contact-info { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.ci-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text);
}
.ci-row i { color: var(--accent); font-size: 14px; width: 20px; text-align: center; }

/* Form */
.fg { margin-bottom: 20px; }
.fg label {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--text-lt); margin-bottom: 8px;
  letter-spacing: .06em; text-transform: uppercase;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 14px 0;
  background: transparent; border: none;
  border-bottom: 1px solid rgba(0,0,0,.12);
  color: var(--dark); font-size: 15px;
  font-family: var(--ff); transition: border-color .3s;
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-bottom-color: var(--dark); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(0,0,0,.2); }
.fg select option { background: var(--bg); }
.fg textarea {
  border: 1px solid rgba(0,0,0,.1); padding: 14px; resize: vertical;
}
.fg-chk { margin: 24px 0; }
.fg-chk label {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: 13px; color: var(--text);
}
.fg-chk input { display: none; }
.chk {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.fg-chk input:checked + .chk { background: var(--dark); border-color: var(--dark); }
.fg-chk input:checked + .chk::after { content: '\2713'; color: #fff; font-size: 11px; }
.btn-submit {
  width: 100%; padding: 18px;
  background: var(--dark); color: #fff;
  font-size: 14px; font-weight: 700; letter-spacing: .06em;
  border: none; display: flex; align-items: center;
  justify-content: center; gap: 10px;
  cursor: pointer; transition: background .3s;
}
.btn-submit:hover { background: var(--accent); }
.btn-submit i { font-size: 12px; }

/* ═══════════════════════════════════════════
   HERO INLINE CTA (mobile only)
   ═══════════════════════════════════════════ */
.hero-cta-wrap { display: none; }
.hero-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: #fff; color: var(--dark);
  font-size: 14px; font-weight: 700; letter-spacing: .04em;
  transition: all .3s; cursor: pointer;
}
.hero-cta-primary:hover { background: var(--accent); color: #fff; }
.hero-cta-primary i { font-size: 12px; }
.hero-cta-line {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,.4); color: #fff;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  transition: all .3s; cursor: pointer;
}
.hero-cta-line:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ═══════════════════════════════════════════
   FLOATING CTA — Glow Effect
   ═══════════════════════════════════════════ */
.float-cta {
  position: fixed; right: 20px; bottom: 28px; z-index: 800;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity .4s, transform .3s;
}
.float-cta.show { opacity: 1; pointer-events: auto; }
.float-cta:hover { transform: scale(1.08); }

/* 글로잉 링 */
.float-cta__glow {
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,77,63,.25) 0%, transparent 70%);
  animation: ctaGlow 2.4s ease-in-out infinite;
}
.float-cta__glow::before,
.float-cta__glow::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(27,77,63,.3);
  animation: ctaRipple 2.4s ease-out infinite;
}
.float-cta__glow::after { animation-delay: 1.2s; }

@keyframes ctaGlow {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
@keyframes ctaRipple {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* 중앙 버튼 */
.float-cta__center {
  position: relative; z-index: 1;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow:
    0 4px 20px rgba(27,77,63,.45),
    0 0 40px rgba(27,77,63,.2),
    inset 0 1px 0 rgba(255,255,255,.15);
  transition: box-shadow .3s;
}
.float-cta:hover .float-cta__center {
  box-shadow:
    0 6px 32px rgba(27,77,63,.55),
    0 0 60px rgba(27,77,63,.3),
    inset 0 1px 0 rgba(255,255,255,.2);
}
.float-cta__center i { font-size: 16px; color: #fff; }
.float-cta__center span {
  font-size: 12px; font-weight: 800; text-align: center;
  line-height: 1.25; letter-spacing: .02em; color: #fff;
  margin-top: 3px;
}

/* Toast */
.toast {
  position: fixed; bottom: 36px; left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 9000; background: var(--dark); color: #fff;
  font-size: 14px; padding: 14px 28px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s, transform .4s;
}
.toast i { color: var(--accent2); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  position: relative; min-height: 60vh;
  overflow: hidden; color: #fff;
}
.footer-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.footer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,43,42,.7) 0%, rgba(13,43,42,.92) 100%);
}
.footer-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 48px 40px;
}
.footer-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px;
}
.footer-brand .logo-main { font-size: 22px; font-weight: 800; letter-spacing: .1em; color: #fff; display: block; }
.footer-brand .logo-sub { font-size: 10px; font-weight: 600; letter-spacing: .2em; color: rgba(255,255,255,.4); }
.footer-copy { font-size: 11px; color: rgba(255,255,255,.3); }

.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h5 {
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block; font-size: 14px; color: rgba(255,255,255,.4);
  margin-bottom: 10px; transition: color .3s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  :root { --hd-h: 64px; }
  .hd-inner { padding: 0 24px; }
  .gnb { display: none; }
  .hd-cta { display: none; }
  .ham { display: flex; }

  .sec-about, .sec-comm, .sec-contact, .sec-loc { padding-left: 24px; padding-right: 24px; }
  .fp-inner { padding: 0 24px; }
  .fp-panel.active { grid-template-columns: 1fr; gap: 28px; }
  .fp-scroll { padding: 0 24px 24px; }
  .fp-siteplan { padding: 0 24px; }
  .footer-inner { padding: 60px 24px 32px; }

  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; }
  .about-stat:nth-child(odd) { border-right: 1px solid var(--border); }

  .feat-grid { grid-template-columns: 1fr; }
  .comm-inner { grid-template-columns: 1fr; gap: 40px; }
  .loc-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }

  .hero-bar { padding: 0 24px; }
  .hero-bar-item { padding: 0 16px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  :root { --hd-h: 56px; }

  /* — Header — */
  .hd-inner { padding: 0 20px; }
  .logo-main { font-size: 15px; }
  .logo-sub { font-size: 8px; }

  /* — Mobile Menu — */
  .mmenu-inner { padding: calc(var(--hd-h) + 40px) 28px 40px; }
  .mmenu a { font-size: 24px; padding: 16px 0; }

  /* — Hero — */
  .hero { height: 100vh; height: 100svh; min-height: 560px; }
  .hero-content {
    align-items: flex-start; text-align: left;
    padding: 0 24px; justify-content: center;
  }
  .hero-label { font-size: 10px; letter-spacing: .2em; margin-bottom: 16px; }
  .hero-title { font-size: clamp(28px, 8vw, 40px); }
  .hero-location { font-size: 13px; margin-top: 16px; }

  /* CTA를 히어로 콘텐츠 안에 표시 */
  .hero-cta-wrap {
    display: flex; gap: 12px; margin-top: 32px;
    flex-wrap: wrap;
  }

  /* 히어로 바 숨김 (데이터는 About 섹션에서 표시) */
  .hero-bar { display: none; }

  .hero-dots { bottom: 28px; left: 24px; transform: none; }
  .hero-dot { width: 28px; }

  /* 플로팅 CTA 모바일 사이즈 */
  .float-cta { right: 14px; bottom: 18px; width: 72px; height: 72px; }
  .float-cta__center { width: 72px; height: 72px; }
  .float-cta__center i { font-size: 14px; }
  .float-cta__center span { font-size: 11px; }

  /* — About — */
  .sec-about { padding: 80px 20px 60px; }
  .about-desc { font-size: 15px; line-height: 1.8; }
  .about-stats { margin-top: 48px; }
  .about-stat { padding: 28px 16px; }
  .about-stat b { font-size: clamp(32px, 10vw, 48px); }
  .about-stat span { font-size: 13px; }
  .about-stat p { font-size: 10px; }

  /* — Features — */
  .feat-card { height: 50vh; min-height: 320px; }
  .feat-card-text { padding: 24px 20px; }
  .feat-card-text h3 { font-size: 22px; }
  .feat-card-text p { font-size: 13px; }
  .feat-card-arrow { top: 20px; right: 20px; width: 40px; height: 40px; font-size: 14px; }

  /* — Community — */
  .sec-comm { padding: 80px 20px; }
  .comm-inner { gap: 32px; }
  .comm-left { order: 2; }
  .comm-right { order: 1; }
  .comm-sub { font-size: 14px; margin-bottom: 28px; }
  .acc-head { font-size: 16px; padding: 18px 0; min-height: 52px; }
  .acc-area { font-size: 11px; }
  .acc-body p { font-size: 13px; line-height: 1.7; }

  /* — Floorplan — */
  .sec-fp { padding: 64px 0; }
  .fp-inner { padding: 0 20px; }
  .fp-head { margin-bottom: 20px; }
  .fp-sub { font-size: 13px; }
  .fp-tap-hint {
    display: inline-block; font-size: 13px; font-weight: 600;
    color: #ff3b3b; background: rgba(255,59,59,.12);
    border: 1.5px solid rgba(255,59,59,.4);
    border-radius: 20px; padding: 5px 14px;
    margin-left: 8px; vertical-align: middle;
    animation: fpHintPulse 1.8s ease-in-out infinite;
  }
  @keyframes fpHintPulse { 0%,100%{opacity:1} 50%{opacity:.5} }

  /* 탭 숨기고 2x2 그리드 */
  .fp-tabs { display: none; }
  .fp-body {
    display: grid !important;
    grid-template-columns: 1fr 1fr; gap: 12px;
  }
  .fp-panel {
    display: block !important;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px; padding: 10px;
    cursor: pointer;
  }
  .fp-panel-img { border-radius: 8px; margin-bottom: 10px; }
  .fp-panel-info h3 { font-size: 14px; margin-bottom: 4px; }
  .fp-pyeong { display: none; }
  .fp-desc { display: none; }
  .fp-specs { margin-bottom: 0; }
  .fp-spec { padding: 4px 0; border: none; }
  .fp-spec span { font-size: 10px; }
  .fp-spec b { font-size: 12px; }
  .fp-spec em { font-size: 14px; }
  .fp-features { display: none; }
  .fp-cta { display: none; }

  /* 모달 내부 복원 */
  .fp-modal-content .fp-panel { background: none; border: none; padding: 0; cursor: default; }
  .fp-modal-content .fp-panel-img { margin-bottom: 16px; }
  .fp-modal-content .fp-panel-info h3 { font-size: clamp(22px, 5vw, 30px); margin-bottom: 10px; }
  .fp-modal-content .fp-pyeong { display: inline; font-size: 14px; }
  .fp-modal-content .fp-desc { display: block; font-size: 13px; margin-bottom: 18px; line-height: 1.8; }
  .fp-modal-content .fp-spec { display: flex; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .fp-modal-content .fp-spec span { font-size: 12px; }
  .fp-modal-content .fp-spec b { font-size: 13px; }
  .fp-modal-content .fp-features { display: block; margin-bottom: 20px; }
  .fp-modal-content .fp-cta { display: flex; padding: 15px; font-size: 14px; }

  .fp-siteplan { margin-top: 48px; padding: 0; }
  .fp-sp-head h3 { font-size: 20px; }
  .fp-sp-head p { font-size: 13px; }
  .fp-sp-legend { gap: 12px; font-size: 11px; }

  /* — Location — */
  .sec-loc { padding: 80px 0; }
  .loc-head { margin-bottom: 36px; padding: 0 20px; }
  .loc-grid {
    display: flex; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 0 20px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .loc-grid::-webkit-scrollbar { display: none; }
  .loc-card {
    flex: 0 0 280px; scroll-snap-align: start;
    padding: 36px 28px 32px;
  }
  .loc-card-emoji { width: 100px; height: 100px; margin-bottom: 20px; }
  .loc-card-sub { font-size: 13px; }
  .loc-card-big { font-size: 30px; margin-bottom: 18px; }
  .loc-unit { font-size: 17px; }
  .loc-card li { font-size: 12px; }
  .loc-disc { font-size: 10px; margin-top: 24px; padding: 0 20px; }

  /* — Contact — */
  .sec-contact { padding: 80px 20px; }
  .contact-inner { gap: 40px; }
  .contact-desc { font-size: 14px; }
  .ci-row { font-size: 13px; }
  .fg input, .fg select, .fg textarea { font-size: 16px; padding: 12px 0; }
  .fg textarea { padding: 12px; }
  .fg label { font-size: 11px; margin-bottom: 6px; }
  .fg-chk label { font-size: 13px; }
  .btn-submit { padding: 16px; font-size: 15px; min-height: 52px; }

  /* — Footer — */
  .site-footer { min-height: auto; }
  .footer-inner { padding: 48px 20px 28px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 40px; }
  .footer-brand .logo-main { font-size: 18px; }
  .footer-cols { gap: 28px; padding-bottom: 32px; }
  .footer-col h5 { font-size: 11px; margin-bottom: 12px; }
  .footer-col a, .footer-col span { font-size: 13px; margin-bottom: 8px; }
  .footer-bottom { flex-direction: column; gap: 6px; font-size: 10px; }

  /* — Toast — */
  .toast { font-size: 13px; padding: 12px 20px; left: 20px; right: 20px; width: auto; transform: translateY(16px); }
  .toast.show { transform: translateY(0); }
}

/* ── Small Mobile ── */
@media (max-width: 480px) {
  :root { --hd-h: 52px; }

  .hero { min-height: 500px; }
  .hero-content { padding: 0 16px; }
  .hero-title { font-size: 26px; line-height: 1.3; }
  .hero-label { font-size: 9px; margin-bottom: 12px; }
  .hero-location { font-size: 12px; margin-top: 14px; }
  .hero-cta-wrap { margin-top: 24px; gap: 10px; }
  .hero-cta-primary { padding: 14px 24px; font-size: 12px; }
  .hero-cta-line { padding: 14px 20px; font-size: 12px; }
  .hero-dots { bottom: 24px; left: 16px; }

  .float-cta { right: 12px; bottom: 14px; width: 64px; height: 64px; }
  .float-cta__center { width: 64px; height: 64px; }
  .float-cta__center i { font-size: 13px; }
  .float-cta__center span { font-size: 10px; }

  .sec-about { padding: 64px 16px 48px; }
  .sec-title { font-size: clamp(24px, 7vw, 32px); }
  .sec-label { font-size: 10px; margin-bottom: 12px; }
  .about-desc { font-size: 14px; }
  .about-stats { margin-top: 36px; }
  .about-stat { padding: 20px 12px; }
  .about-stat b { font-size: 28px; }
  .about-stat span { font-size: 12px; }

  .feat-card { height: 44vh; min-height: 260px; }
  .feat-card-text { padding: 20px 16px; }
  .feat-card-text h3 { font-size: 19px; }
  .feat-card-text p { font-size: 12px; }
  .feat-card-arrow { top: 16px; right: 16px; width: 36px; height: 36px; font-size: 12px; }

  .sec-comm { padding: 64px 16px; }
  .comm-sub { font-size: 13px; }
  .acc-head { font-size: 15px; min-height: 48px; padding: 14px 0; }
  .acc-area { font-size: 10px; }

  .fp-inner { padding: 0 16px; }
  .fp-body { gap: 10px; }
  .fp-panel { padding: 8px; }
  .fp-panel-info h3 { font-size: 13px; }
  .fp-siteplan { margin-top: 32px; }
  .fp-sp-head h3 { font-size: 18px; }

  .sec-loc { padding: 64px 0; }
  .loc-head { margin-bottom: 24px; padding: 0 16px; }
  .loc-grid { padding: 0 16px 12px; gap: 12px; }
  .loc-card { flex: 0 0 250px; padding: 32px 24px 28px; }
  .loc-card-emoji { width: 80px; height: 80px; margin-bottom: 16px; }
  .loc-card-sub { font-size: 12px; }
  .loc-card-big { font-size: 26px; margin-bottom: 16px; }
  .loc-unit { font-size: 15px; }
  .loc-card li { font-size: 11px; }
  .loc-disc { padding: 0 16px; }

  .sec-contact { padding: 64px 16px; }
  .contact-info { margin-top: 28px; gap: 12px; }

  .footer-inner { padding: 36px 16px 20px; }
  .footer-top { margin-bottom: 32px; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand .logo-main { font-size: 16px; }

  .mmenu-inner { padding: calc(var(--hd-h) + 32px) 20px 32px; }
  .mmenu a { font-size: 22px; padding: 14px 0; }
}

/* ── Safe Area — notched phones ── */
@supports (padding: max(0px)) {
  @media (max-width: 768px) {
    .hero-bar {
      padding-bottom: max(16px, calc(env(safe-area-inset-bottom) + 8px));
    }
    .footer-bottom {
      padding-bottom: max(24px, calc(env(safe-area-inset-bottom) + 12px));
    }
    .toast {
      bottom: max(20px, calc(env(safe-area-inset-bottom) + 12px));
    }
    .mmenu-inner {
      padding-bottom: max(40px, calc(env(safe-area-inset-bottom) + 32px));
    }
    .btn-submit {
      padding-bottom: max(16px, calc(env(safe-area-inset-bottom) + 8px));
    }
    .float-cta {
      bottom: max(16px, calc(env(safe-area-inset-bottom) + 8px));
    }
  }
}

/* ═══════════════════════════════════════════
   USP BANNER
   ═══════════════════════════════════════════ */
.sec-usp {
  border-bottom: 1px solid var(--border);
}
.usp-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1200px; margin: 0 auto;
}
.usp-item {
  padding: 52px 32px; text-align: center;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: var(--bg2); }
.usp-icon {
  font-size: 28px; color: var(--accent);
  margin-bottom: 20px; line-height: 1;
}
.usp-num {
  display: block;
  font-size: clamp(36px, 3.5vw, 52px);
}
.usp-num--text {
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700; color: var(--dark);
  line-height: 1; margin-bottom: 12px;
  letter-spacing: -.02em;
}
.usp-num span,
.usp-num .usp-unit {
  font-size: .45em; font-weight: 600;
  color: var(--accent); margin-left: 3px;
  vertical-align: middle;
}
.usp-label {
  font-size: 13px; color: var(--text-lt);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════
   AMENITY — 커뮤니티 시설
   ═══════════════════════════════════════════ */
.sec-amenity {
  padding: 120px 48px;
  background: var(--bg);
}
.amenity-inner {
  max-width: 1200px; margin: 0 auto;
}
.amenity-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: 52px;
}
.amenity-sub {
  font-size: 15px; color: var(--text); line-height: 1.8;
  max-width: 380px; flex-shrink: 0;
  padding-bottom: 4px;
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.amenity-card--wide {
  grid-column: 1 / -1;
}
.amenity-card {
  position: relative; overflow: hidden;
  border-radius: 4px; background: var(--bg2);
}
.amenity-card-img {
  width: 100%; display: block;
  aspect-ratio: 16/10; object-fit: cover;
  transition: transform .6s var(--ease);
}
.amenity-card--wide .amenity-card-img {
  aspect-ratio: 16/7;
}
.amenity-card:hover .amenity-card-img { transform: scale(1.04); }
.amenity-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 24px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,.60) 0%, transparent 100%);
  color: #fff;
}
.amenity-card-label h4 {
  font-size: 16px; font-weight: 700; margin-bottom: 4px;
  display: flex; align-items: center; gap: 8px;
}
.amenity-card-label h4 i { font-size: 14px; opacity: .85; }
.amenity-card-label p {
  font-size: 12px; color: rgba(255,255,255,.65);
}
.amenity-card--wide .amenity-card-label h4 { font-size: 20px; }
.amenity-card--wide .amenity-card-label p { font-size: 13px; }
.amenity-note {
  font-size: 11px; color: var(--text-lt);
  margin-top: 16px; text-align: right;
}

/* ═══════════════════════════════════════════
   URGENCY — 관심고객 유도 배너
   ═══════════════════════════════════════════ */
.sec-urgency {
  position: relative;
  padding: 120px 48px;
  text-align: center; overflow: hidden;
}
.urgency-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.urgency-overlay {
  position: absolute; inset: 0;
  background: rgba(11, 32, 64, 0.84);
}
.urgency-inner {
  position: relative; z-index: 1;
  max-width: 680px; margin: 0 auto;
}
.urgency-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  color: rgba(255,255,255,.6); text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 22px; margin-bottom: 32px;
}
.urgency-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; color: #fff; line-height: 1.25;
  letter-spacing: -.02em; margin-bottom: 20px;
}
.urgency-desc {
  font-size: 16px; color: rgba(255,255,255,.5);
  line-height: 1.8; margin-bottom: 44px;
}
.urgency-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 52px;
  background: #fff; color: var(--dark2);
  font-size: 14px; font-weight: 700; letter-spacing: .08em;
  transition: background .3s, color .3s;
}
.urgency-cta:hover { background: var(--accent); color: #fff; }
.urgency-cta i { font-size: 12px; }

/* ── Responsive: USP / Amenity / Urgency ── */
@media (max-width: 1024px) {
  .usp-inner { grid-template-columns: repeat(2, 1fr); }
  .usp-item { border-right: none; border-bottom: 1px solid var(--border); }
  .usp-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .usp-item:nth-last-child(-n+2) { border-bottom: none; }

  .sec-amenity { padding-left: 24px; padding-right: 24px; }
  .amenity-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .amenity-sub { max-width: 100%; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-card--wide { grid-column: 1 / -1; }

  .sec-urgency { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 768px) {
  .usp-item { padding: 36px 20px; }
  .usp-icon { font-size: 24px; margin-bottom: 14px; }
  .usp-num { font-size: clamp(28px, 8vw, 42px); margin-bottom: 8px; }
  .usp-label { font-size: 12px; }

  .sec-amenity { padding: 80px 20px; }
  .amenity-head { margin-bottom: 36px; }
  .amenity-sub { font-size: 14px; }
  .amenity-grid { gap: 10px; }
  .amenity-card--wide .amenity-card-img { aspect-ratio: 16/7; }
  .amenity-card-label h4 { font-size: 14px; }
  .amenity-card-label p { font-size: 11px; }
  .amenity-note { font-size: 10px; }

  .sec-urgency { padding: 80px 20px; }
  .urgency-badge { font-size: 10px; letter-spacing: .12em; padding: 7px 18px; margin-bottom: 24px; }
  .urgency-desc { font-size: 14px; margin-bottom: 32px; }
  .urgency-cta { padding: 16px 36px; font-size: 13px; }
}

@media (max-width: 480px) {
  .usp-item { padding: 28px 16px; }

  .sec-amenity { padding: 64px 16px; }
  .amenity-grid { grid-template-columns: 1fr; }
  .amenity-card--wide { grid-column: 1; }
  .amenity-card--wide .amenity-card-img { aspect-ratio: 16/9; }

  .sec-urgency { padding: 64px 16px; }
  .urgency-title { font-size: clamp(22px, 6.5vw, 32px); }
  .urgency-desc { font-size: 13px; }
}
