:root {
  --ink: #082d38;
  --ink-deep: #041d25;
  --teal: #0a4551;
  --sand: #d9d0c4;
  --warm: #f5f2ed;
  --paper: #fff;
  --accent: #d9c867;
  --line: rgba(8, 45, 56, .16);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -.025em;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 9999; padding: 12px 18px; background: #fff; color: var(--ink); }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 80px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .3s ease, height .3s ease;
}
.site-header.is-scrolled { height: 70px; background: rgba(4,29,37,.94); backdrop-filter: blur(14px); }
.header-inner { width: min(calc(100% - 48px), var(--container)); height: 100%; margin: auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; white-space: nowrap; font-size: 18px; font-weight: 750; letter-spacing: -.04em; }
.brand img { width: 43px; }
.header-tel { display: flex; align-items: baseline; gap: 10px; }
.header-tel span { font-size: 12px; opacity: .72; }
.header-tel b { color: var(--accent); font-size: 22px; letter-spacing: .01em; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--ink-deep); }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; animation: hero-in 1.6s ease both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,20,26,.96) 0%, rgba(2,20,26,.91) 39%, rgba(2,20,26,.34) 66%, rgba(2,20,26,.05) 82%), linear-gradient(0deg, rgba(2,20,26,.46), transparent 38%); }
.hero-content { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--container)); margin: auto; padding-top: 84px; }
.hero-script { margin: 0 0 16px; color: rgba(255,255,255,.75); font-family: Georgia, serif; font-size: clamp(26px, 2.7vw, 42px); font-style: italic; letter-spacing: .02em; }
.eyebrow { margin: 0 0 18px; font-size: 15px; font-weight: 650; letter-spacing: .02em; }
.hero h1 { margin: 0; white-space: nowrap; font-size: clamp(54px, 5.2vw, 76px); line-height: 1; letter-spacing: -.055em; }
.hero-summary { margin: 24px 0 0; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { min-height: 56px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.45); font-size: 15px; font-weight: 750; }
.button-accent { border-color: var(--accent); color: var(--ink-deep); background: var(--accent); }
.button-ghost { color: #fff; backdrop-filter: blur(4px); }
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 24px; display: grid; justify-items: center; gap: 8px; transform: translateX(-50%); font-size: 9px; letter-spacing: .18em; opacity: .68; }
.scroll-cue span { width: 1px; height: 32px; background: rgba(255,255,255,.65); }

.facts { background: var(--ink); color: #fff; }
.facts-inner { width: min(100%, var(--container)); margin: auto; display: grid; grid-template-columns: repeat(4,1fr); }
.facts article { min-height: 148px; padding: 30px; display: grid; align-content: center; gap: 7px; border-right: 1px solid rgba(255,255,255,.13); }
.facts article:first-child { border-left: 1px solid rgba(255,255,255,.13); }
.facts span { color: rgba(255,255,255,.58); font-size: 13px; }
.facts strong { font-size: 34px; font-weight: 620; letter-spacing: -.02em; }
.facts small { margin-left: 5px; font-size: 14px; font-weight: 500; }

.section-pad { padding: clamp(88px, 9vw, 138px) 0; }
.section-inner { width: min(calc(100% - 48px), var(--container)); margin: auto; }
.split-preview { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.section-kicker { margin: 0 0 20px; color: #817967; font-size: 12px; font-weight: 750; letter-spacing: .18em; }
.preview-copy h2 { margin: 0; font-size: clamp(40px, 4.2vw, 60px); line-height: 1.12; letter-spacing: -.045em; }
.preview-copy > p:last-child { max-width: 430px; margin: 34px 0 0; color: rgba(8,45,56,.68); font-size: 17px; line-height: 1.85; }
.preview-visual { margin: 0; overflow: hidden; background: var(--sand); }
.preview-visual img { width: 100%; aspect-ratio: 1.4; object-fit: cover; transition: transform .8s ease; }
.preview-visual:hover img { transform: scale(1.025); }

@keyframes hero-in { from { opacity: .5; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto!important; animation: none!important; transition-duration: .01ms!important; } }

@media (max-width: 760px) {
  .site-header { height: 64px; }
  .header-inner { width: calc(100% - 30px); }
  .brand { gap: 8px; font-size: 13px; }
  .brand img { width: 30px; }
  .header-tel span { display: none; }
  .header-tel b { font-size: 16px; }
  .hero { min-height: 700px; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(2,20,26,.82), rgba(2,20,26,.35)), linear-gradient(0deg, rgba(2,20,26,.6), transparent 54%); }
  .hero-content { width: calc(100% - 36px); padding-top: 70px; }
  .hero-script { font-size: 22px; }
  .eyebrow { max-width: 260px; font-size: 13px; line-height: 1.5; }
  .hero h1 { font-size: clamp(32px, 10vw, 39px); line-height: 1; }
  .hero-summary { margin-top: 20px; font-size: 14px; }
  .hero-actions { flex-direction: column; width: min(100%, 310px); }
  .scroll-cue { display: none; }
  .facts-inner { grid-template-columns: repeat(2,1fr); }
  .facts article { min-height: 116px; padding: 22px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .facts article:first-child { border-left: 0; }
  .facts strong { font-size: 27px; }
  .section-inner { width: calc(100% - 36px); }
  .split-preview { grid-template-columns: 1fr; }
  .preview-copy h2 { font-size: 37px; }
}

/* Full site */
body.menu-open { overflow: hidden; }
button, input, select { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.desktop-nav { display: flex; align-items: center; gap: clamp(17px, 2vw, 30px); margin-left: auto; margin-right: clamp(20px, 3vw, 42px); }
.desktop-nav a { position: relative; padding: 29px 0; font-size: 14px; font-weight: 650; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 1px; background: var(--accent); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 7px auto; background: #fff; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 45; padding: 100px 26px 34px; color: #fff; background: var(--ink-deep); }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 26px; font-weight: 660; }
.mobile-menu nav span { display: inline-block; width: 42px; color: var(--accent); font-size: 11px; font-weight: 500; vertical-align: middle; }
.mobile-menu-tel { display: block; margin-top: 32px; color: rgba(255,255,255,.65); font-size: 13px; }
.mobile-menu-tel strong { display: block; margin-top: 6px; color: var(--accent); font-size: 28px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.section-heading, .community-heading, .price-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: clamp(42px, 4.5vw, 64px); align-items: end; margin-bottom: 54px; }
.section-heading h2, .community-heading h2, .price-heading h2, .units-heading h2 { margin: 0; font-size: clamp(40px, 4vw, 56px); line-height: 1.12; letter-spacing: -.045em; }
.section-heading > p, .community-heading > p, .price-heading > p, .units-heading > p { max-width: 470px; margin: 0; color: rgba(8,45,56,.65); font-size: 17px; line-height: 1.8; }

.lifestyle-section { padding: 20px 0 clamp(100px, 11vw, 170px); background: var(--warm); }
.lifestyle-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: clamp(42px, 4.5vw, 64px); margin-bottom: 52px; }
.lifestyle-heading .section-kicker { grid-column: 1 / -1; }
.lifestyle-heading h2 { max-width: 700px; margin: 0; font-size: clamp(40px, 3.8vw, 54px); line-height: 1.12; letter-spacing: -.045em; }
.lifestyle-heading .heading-line { display: block; white-space: nowrap; }
.lifestyle-heading > p:last-child { align-self: end; justify-self: end; max-width: 430px; margin: 0; color: rgba(8,45,56,.65); font-size: 17px; line-height: 1.8; }
.lifestyle-grid { width: min(100%, 1540px); margin: auto; display: grid; grid-template-columns: repeat(2,1fr); }
.lifestyle-card { position: relative; min-height: 420px; overflow: hidden; background: var(--ink); }
.lifestyle-card::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(1,15,19,.78)); }
.lifestyle-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.lifestyle-card:hover img { transform: scale(1.035); }
.lifestyle-card > div { position: absolute; z-index: 2; left: 38px; right: 38px; bottom: 32px; display: flex; align-items: end; justify-content: space-between; color: #fff; }
.lifestyle-card span { color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .12em; }
.lifestyle-card strong { font-size: 25px; }

.project-section { background: #fff; }
.project-visual { position: relative; overflow: hidden; background: #cfd6d3; }
.project-visual img { width: 100%; aspect-ratio: 1.8; object-fit: cover; }
.project-visual span { position: absolute; left: 22px; bottom: 18px; padding: 8px 12px; color: rgba(255,255,255,.8); background: rgba(4,29,37,.64); font-size: 11px; }
.project-data { margin: 0; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.project-data > div { min-height: 155px; padding: 30px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project-data > div:nth-child(3n+1) { border-left: 1px solid var(--line); }
.project-data dt { margin-bottom: 16px; color: #8a8277; font-size: 12px; font-weight: 750; letter-spacing: .08em; }
.project-data dd { margin: 0; font-size: 18px; font-weight: 650; line-height: 1.55; }
.project-data small { color: rgba(8,45,56,.58); font-size: 13px; font-weight: 500; }
.project-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 70px; }
.project-gallery figure { position: relative; margin: 0; overflow: hidden; background: var(--ink); }
.project-gallery figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(1,18,23,.82)); }
.project-gallery img { width: 100%; aspect-ratio: 1.45; object-fit: cover; transition: transform .8s ease; }
.project-gallery figure:hover img { transform: scale(1.03); }
.project-gallery figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; display: grid; gap: 5px; color: #fff; }
.project-gallery b { font-size: 20px; }
.project-gallery span { color: rgba(255,255,255,.62); font-size: 12px; }

.location-section { background: #efeae3; }
.location-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 7vw, 90px); align-items: start; }
.location-copy { position: sticky; top: 120px; }
.location-copy h2 { margin: 0; font-size: clamp(40px, 3.7vw, 50px); line-height: 1.12; letter-spacing: -.045em; }
.location-copy .heading-line { display: block; white-space: nowrap; }
.location-lead { max-width: 470px; margin: 28px 0 0; color: rgba(8,45,56,.68); font-size: 17px; line-height: 1.8; }
.location-points { margin: 46px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.location-points li { display: grid; gap: 7px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.location-points b { color: #8b806d; font-size: 11px; letter-spacing: .12em; }
.location-points span { font-size: 15px; line-height: 1.55; }
.location-map { margin: 0; padding: 22px; background: #fff; box-shadow: 0 28px 70px rgba(8,45,56,.09); }
.location-map img { width: 100%; }
.location-map figcaption { padding-top: 16px; color: rgba(8,45,56,.5); font-size: 11px; line-height: 1.6; }

.community-section { color: #fff; background: var(--ink); }
.community-heading > p { color: rgba(255,255,255,.6); }
.community-section .section-kicker { color: var(--accent); }
.community-feature { position: relative; min-height: 580px; overflow: hidden; }
.community-feature::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(transparent, rgba(3,25,32,.85)); }
.community-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.community-feature > div { position: absolute; z-index: 2; left: clamp(26px, 5vw, 70px); bottom: clamp(26px, 5vw, 62px); }
.community-feature span { display: block; margin-bottom: 14px; color: var(--accent); font-size: 11px; letter-spacing: .14em; }
.community-feature strong { font-size: clamp(30px, 3.4vw, 46px); line-height: 1.18; }
.community-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.community-grid figure { margin: 0; background: #0e3b46; }
.community-grid img { width: 100%; aspect-ratio: 1.58; object-fit: cover; }
.community-grid figcaption { display: grid; gap: 5px; padding: 19px 20px 22px; }
.community-grid b { font-size: 16px; }
.community-grid span { color: rgba(255,255,255,.55); font-size: 12px; }
.community-services { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 18px; }
.community-services article { min-height: 240px; padding: clamp(28px,4vw,48px); border: 1px solid rgba(255,255,255,.14); background: #0e3b46; }
.community-services span { color: var(--accent); font-size: 11px; font-weight: 750; letter-spacing: .12em; }
.community-services h3 { margin: 38px 0 14px; font-size: clamp(24px,3vw,34px); letter-spacing: -.04em; }
.community-services p { max-width: 500px; margin: 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.75; }
.community-plans { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 70px; }
.community-plans figure { margin: 0; padding: 16px; color: var(--ink); background: #fff; }
.community-plans img { width: 100%; }
.community-plans figcaption { padding: 12px 4px 2px; font-size: 14px; font-weight: 750; }
.community-notice { margin: 18px 0 0; color: rgba(255,255,255,.42); font-size: 11px; line-height: 1.6; }

.units-section { background: var(--warm); }
.units-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); align-items: end; gap: clamp(42px, 4.5vw, 64px); margin-bottom: 50px; }
.units-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -36px; }
.plan-tabs { display: flex; border-bottom: 1px solid var(--line); }
.plan-tabs button { flex: 1; padding: 20px; border: 0; border-bottom: 3px solid transparent; color: rgba(8,45,56,.45); background: transparent; font-size: 17px; font-weight: 700; cursor: pointer; }
.plan-tabs button[aria-selected="true"] { color: var(--ink); border-bottom-color: var(--ink); }
.plan-panels { padding-top: 30px; }
.plan-panels figure { position: relative; margin: 0; padding: 24px; background: #fff; }
.plan-panels figure[hidden] { display: none; }
.plan-panels img { width: 100%; }
.plan-panels button, .price-grid button { position: absolute; right: 38px; bottom: 36px; padding: 11px 15px; border: 1px solid rgba(8,45,56,.25); background: rgba(255,255,255,.92); font-size: 12px; font-weight: 700; cursor: pointer; }
.notice-text { margin: 18px 0 0; color: rgba(8,45,56,.5); font-size: 11px; line-height: 1.6; }

.price-section { background: #fff; }
.price-summary { margin: 0 0 26px; padding: 16px; background: #f0ece5; }
.price-summary img { width: 100%; }
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.price-grid figure { position: relative; margin: 0; padding: 14px 14px 66px; border: 1px solid var(--line); background: #fff; }
.price-grid img { width: 100%; }
.price-grid button { right: 16px; bottom: 16px; }
.payment-summary { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 28px; color: #fff; background: var(--ink); }
.payment-summary article { display: flex; align-items: end; justify-content: space-between; min-height: 145px; padding: 28px; border-right: 1px solid rgba(255,255,255,.16); }
.payment-summary article:last-child { border-right: 0; }
.payment-summary span { color: rgba(255,255,255,.62); font-size: 13px; font-weight: 650; }
.payment-summary strong { color: var(--accent); font-size: 55px; line-height: 1; }
.payment-summary small { font-size: 18px; }
.price-table-wrap { overflow-x: auto; border-top: 2px solid var(--ink); }
.price-table { width: 100%; border-collapse: collapse; white-space: nowrap; }
.price-table caption { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.price-table th, .price-table td { padding: 20px 24px; border-bottom: 1px solid var(--line); text-align: left; }
.price-table thead th { color: #7d7468; background: #f4f1ec; font-size: 12px; letter-spacing: .04em; }
.price-table tbody th { color: var(--ink); font-size: 18px; }
.price-table tbody td { color: rgba(8,45,56,.72); font-size: 15px; }
.price-table tbody td:last-child { font-weight: 700; }

.reserve-section { padding: clamp(95px, 10vw, 150px) 0; color: #fff; background: var(--ink-deep); }
.reserve-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 9vw, 120px); align-items: start; }
.reserve-section .section-kicker { color: var(--accent); }
.reserve-copy h2 { margin: 0; font-size: clamp(44px, 4.2vw, 58px); line-height: 1.1; letter-spacing: -.045em; }
.reserve-tel { display: inline-block; margin-top: 32px; color: var(--accent); font-size: clamp(35px, 4.3vw, 56px); font-weight: 770; letter-spacing: -.02em; }
.reserve-copy > p:not(.section-kicker) { max-width: 410px; margin: 25px 0 0; color: rgba(255,255,255,.63); font-size: 15px; line-height: 1.75; }
.reserve-copy dl { margin: 45px 0 0; border-top: 1px solid rgba(255,255,255,.14); }
.reserve-copy dl > div { display: grid; grid-template-columns: 70px 1fr; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.reserve-copy dt { color: rgba(255,255,255,.45); font-size: 12px; }
.reserve-copy dd { margin: 0; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.5; }
.counsel-form { padding: clamp(28px, 4vw, 54px); color: var(--ink); background: #fff; }
.field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px 18px; }
.field-grid label { display: grid; gap: 9px; }
.field-grid label > span { font-size: 12px; font-weight: 720; }
.field-grid input, .field-grid select { width: 100%; height: 54px; padding: 0 14px; border: 1px solid rgba(8,45,56,.2); border-radius: 0; color: var(--ink); background: #fff; font-size: 14px; }
.field-grid input:focus, .field-grid select:focus { border-color: var(--teal); outline: 1px solid var(--teal); }
.agree-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 25px; color: rgba(8,45,56,.7); font-size: 12px; }
.agree-row label { display: flex; align-items: center; gap: 7px; }
.agree-row input { width: 17px; height: 17px; accent-color: var(--ink); }
.agree-row button { padding: 4px; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: 11px; cursor: pointer; }
.submit-button { width: 100%; height: 64px; margin-top: 25px; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; border: 0; color: #fff; background: var(--ink); font-size: 16px; font-weight: 760; cursor: pointer; }
.submit-button:disabled { opacity: .55; cursor: wait; }
.submit-button span { font-size: 25px; font-weight: 300; }
.form-status { min-height: 18px; margin: 12px 0 0; color: #33636c; font-size: 12px; }

.site-footer { padding: 55px 0 105px; color: rgba(255,255,255,.55); background: #03161c; }
.footer-inner { position: relative; }
.footer-brand { display: flex; align-items: center; gap: 15px; align-self: start; color: #fff; }
.footer-brand img { width: 42px; }
.footer-brand strong { font-size: 16px; }
.footer-info p { margin: 0 0 8px; font-size: 11px; line-height: 1.65; }
.footer-info a { display: inline-block; margin-top: 14px; color: var(--accent); font-size: 12px; }
.copyright { grid-column: 2; margin: 18px 0 0; font-size: 10px; letter-spacing: .08em; }

.quick-actions { position: fixed; z-index: 40; right: 20px; bottom: 20px; display: flex; box-shadow: 0 16px 38px rgba(1,20,26,.25); }
.quick-actions a { min-width: 155px; padding: 13px 17px; display: grid; gap: 3px; color: #fff; background: var(--ink); }
.quick-actions a:last-child { color: var(--ink-deep); background: var(--accent); }
.quick-actions span { font-size: 8px; letter-spacing: .12em; opacity: .65; }
.quick-actions b { font-size: 16px; }

dialog { border: 0; padding: 0; color: var(--ink); background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.35); }
dialog::backdrop { background: rgba(1,16,20,.8); backdrop-filter: blur(5px); }
.image-dialog { width: min(94vw, 1200px); max-height: 90vh; overflow: auto; }
.image-dialog img { width: 100%; }
.dialog-close { position: sticky; z-index: 2; top: 12px; float: right; width: 42px; height: 42px; margin: 12px; border: 0; color: #fff; background: rgba(4,29,37,.88); font-size: 25px; cursor: pointer; }
.privacy-dialog { width: min(90vw, 610px); padding: 42px; }
.privacy-dialog .dialog-close { position: absolute; right: 0; top: 0; }
.privacy-dialog h2 { margin: 0 0 30px; font-size: 25px; }
.privacy-dialog dl { margin: 0; }
.privacy-dialog dl > div { padding: 16px 0; border-top: 1px solid var(--line); }
.privacy-dialog dt { margin-bottom: 7px; font-size: 12px; font-weight: 750; }
.privacy-dialog dd, .privacy-dialog p { margin: 0; color: rgba(8,45,56,.68); font-size: 13px; line-height: 1.7; }
.privacy-dialog > p { margin-top: 20px; }
.dialog-confirm { width: 100%; height: 52px; margin-top: 25px; border: 0; color: #fff; background: var(--ink); cursor: pointer; }
.success-dialog { width: min(90vw, 520px); padding: 48px 46px 42px; text-align: center; }
.success-dialog .success-icon { display: grid; width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; place-items: center; color: var(--ink); background: var(--accent); font-size: 30px; font-weight: 800; }
.success-dialog .success-kicker { margin: 0 0 12px; color: #9b8541; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.success-dialog h2 { margin: 0; color: var(--ink); font-size: clamp(28px, 4vw, 38px); line-height: 1.24; }
.success-dialog h2 + p { margin: 20px 0 0; color: rgba(8,45,56,.68); font-size: 14px; line-height: 1.8; }

@media (min-width: 1081px) {
  .preview-copy h2,
  .section-heading h2,
  .community-heading h2,
  .price-heading h2,
  .units-heading h2,
  .location-copy h2,
  .reserve-copy h2 { white-space: nowrap; }
}

@media (max-width: 1080px) {
  .section-heading,
  .community-heading,
  .price-heading,
  .units-heading,
  .lifestyle-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 44px; }
  .units-heading .section-kicker { grid-column: auto; margin-bottom: -10px; }
  .section-heading > p,
  .community-heading > p,
  .price-heading > p,
  .units-heading > p,
  .lifestyle-heading > p:last-child { justify-self: start; }
  .community-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .header-tel { margin-left: auto; margin-right: 12px; }
  .menu-toggle { display: block; }
}

@media (max-width: 960px) {
  .location-layout { grid-template-columns: 1fr; gap: 45px; }
  .location-copy { position: static; }
}

@media (max-width: 760px) {
  body { padding-bottom: 66px; }
  .header-tel { display: none; }
  .section-heading, .community-heading, .price-heading, .units-heading, .lifestyle-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 42px; }
  .units-heading .section-kicker { grid-column: auto; margin-bottom: -10px; }
  .section-heading > p, .community-heading > p, .price-heading > p, .units-heading > p, .lifestyle-heading > p:last-child { justify-self: start; font-size: 15px; }
  .section-heading h2, .community-heading h2, .price-heading h2, .units-heading h2, .location-copy h2, .lifestyle-heading h2 { font-size: 36px; line-height: 1.14; letter-spacing: -.04em; }
  .location-copy h2 { font-size: clamp(31px, 9vw, 36px); }
  .lifestyle-heading h2 { max-width: none; font-size: 34px; }
  .lifestyle-heading .heading-line { display: inline; white-space: normal; }
  .lifestyle-heading .heading-line + .heading-line::before { content: " "; }
  .reveal { transform: translateY(18px); }
  .lifestyle-section { padding-top: 0; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-card { min-height: 270px; }
  .lifestyle-card > div { left: 22px; right: 22px; bottom: 20px; }
  .lifestyle-card strong { font-size: 19px; }
  .project-visual img { aspect-ratio: 1.2; }
  .project-visual span { position: static; display: block; color: rgba(8,45,56,.52); background: #f4f0ea; line-height: 1.5; }
  .project-data { grid-template-columns: 1fr; }
  .project-data > div, .project-data > div:nth-child(3n+1) { min-height: auto; padding: 22px 18px; border-left: 1px solid var(--line); }
  .project-data dd { font-size: 16px; }
  .project-gallery { grid-template-columns: 1fr; gap: 10px; margin-top: 42px; }
  .project-gallery figcaption { left: 20px; right: 20px; bottom: 18px; }
  .location-layout { grid-template-columns: 1fr; gap: 45px; }
  .location-copy { position: static; }
  .location-map { padding: 10px; }
  .community-feature { min-height: 360px; }
  .community-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .community-grid figcaption { padding: 13px; }
  .community-grid b { font-size: 14px; }
  .community-grid span { font-size: 10px; }
  .community-services { grid-template-columns: 1fr; gap: 10px; margin-top: 10px; }
  .community-services article { min-height: auto; padding: 28px 22px; }
  .community-services h3 { margin-top: 24px; }
  .community-plans { grid-template-columns: 1fr; gap: 10px; margin-top: 42px; }
  .community-plans figure { padding: 7px; }
  .community-plans figcaption { padding: 10px 7px 5px; }
  .plan-tabs { overflow-x: auto; }
  .plan-tabs button { min-width: 140px; padding: 17px 9px; font-size: 14px; }
  .plan-panels { padding-top: 16px; }
  .plan-panels figure { padding: 8px 8px 62px; }
  .plan-panels button { right: 16px; bottom: 14px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-summary { padding: 7px; }
  .payment-summary article { min-height: 104px; padding: 18px 13px; }
  .payment-summary span { font-size: 11px; }
  .payment-summary strong { font-size: 37px; }
  .payment-summary small { font-size: 13px; }
  .price-table th, .price-table td { padding: 16px 14px; }
  .price-table tbody th { font-size: 16px; }
  .price-table tbody td { font-size: 13px; }
  .reserve-layout { grid-template-columns: 1fr; }
  .reserve-copy h2 { font-size: 42px; }
  .counsel-form { padding: 26px 18px; }
  .field-grid { grid-template-columns: 1fr; gap: 18px; }
  .agree-row { align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 35px; }
  .copyright { grid-column: 1; }
  .quick-actions { inset: auto 0 0; }
  .quick-actions a { min-width: 0; flex: 1; padding: 12px 17px; }
  .site-footer { padding-bottom: 60px; }
  .privacy-dialog { padding: 35px 20px 25px; }
  .success-dialog { padding: 40px 22px 28px; }
}
