:root {
  --bg: #03050a;
  --ink: #f7f9ff;
  --muted: #d8c4c8;
  --line: rgba(255, 255, 255, .14);
  --glass: rgba(18, 14, 15, .56);
  --glass-strong: rgba(20, 15, 16, .78);
  --blue: #e78799;
  --blue-2: #f4a1b2;
  --navy: #07111f;
  --pink: #e8899d;
  --warm: #ffcf9a;
  --radius: 8px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .38);
  --max: 1120px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(circle at 12% 0%, rgba(232, 137, 157, .2), transparent 32rem), radial-gradient(circle at 88% 18%, rgba(255, 205, 158, .16), transparent 28rem), linear-gradient(180deg, #090604 0%, #120d0c 44%, #030303 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 74%, transparent);
  z-index: -1;
}

body.is-loading {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: #fff;
  background: radial-gradient(circle at 50% 42%, rgba(232, 137, 157, .18), transparent 18rem), linear-gradient(180deg, #070404 0%, #020202 100%);
  transition: opacity .65s ease, visibility .65s ease;
}

body.is-ready .loading-screen {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-mark {
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-top-color: var(--blue-2);
  box-shadow: 0 0 38px rgba(232, 137, 157, .28);
  animation: loadingSpin 1s linear infinite;
}

.loading-screen p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@keyframes loadingSpin {
  to { transform: rotate(360deg); }
}

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

.text-link {
  color: var(--blue-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: #fff;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(8, 7, 7, .38);
  backdrop-filter: blur(20px);
  overflow-x: clip;
}

.nav {
  width: min(100% - 32px, var(--max));
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 212px;
  max-width: 42vw;
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(232, 137, 157, .18));
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 13px;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #db6f84, #ee91a3 56%, #d56d85);
  box-shadow: 0 16px 40px rgba(232, 137, 157, .3);
  font-weight: 700;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  white-space: nowrap;
}

.nav-cta {
  min-height: 38px;
  padding: 0 15px;
  font-size: 12px;
}

.nav-cta.secondary {
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 22px 54px rgba(232, 137, 157, .38);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  opacity: 0;
  will-change: opacity;
  transition: opacity 1.35s ease;
}

.hero-bg.is-active {
  opacity: 1;
}

.hero-bg-day {
  background-image: url("assets/images/hero-day.jpg");
  opacity: 0;
}

body.is-loading .hero-bg-day {
  opacity: 1;
}

.hero-bg-evening {
  background-image: url("assets/images/hero-evening.jpg");
}

.hero-bg-night {
  background-image: url("assets/images/hero-night.jpg");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(6, 4, 4, .02) 0%, rgba(8, 5, 5, .08) 52%, rgba(3, 3, 3, .92) 100%), linear-gradient(90deg, rgba(4, 3, 3, .76) 0%, rgba(7, 5, 5, .36) 38%, rgba(7, 5, 5, .02) 78%);
}

@media (min-width: 2200px) {
  .hero-bg {
    background-size: 100% auto;
    background-position: center top;
    transform: none;
  }
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 92px 0 24px;
  display: grid;
  align-content: center;
  gap: 34px;
}

.hero-copy {
  max-width: 690px;
  padding-top: 0;
}

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

h1 {
  margin-bottom: 22px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(46px, 7vw, 90px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-highlight {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #f7f4ef 0%, #f4c4cd 42%, #e8899d 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  max-width: 550px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.8;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

main {
  position: relative;
  z-index: 1;
}

section {
  padding: 92px 0;
}

section:not(.hero):not(.notice) {
  background: radial-gradient(circle at 16% 4%, rgba(232, 137, 157, .12), transparent 26rem), linear-gradient(180deg, rgba(5, 4, 4, .98), rgba(14, 10, 10, .98));
}

.section-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-width: 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
  min-width: 0;
}

.compare-section .section-head {
  max-width: 880px;
}

h2 {
  margin-bottom: 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.glass-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .22);
}

.step h3 {
  margin: 20px 0 10px;
  font-size: 21px;
  line-height: 1.35;
}

.step p,
.visual-copy p {
  color: var(--muted);
  font-size: 14px;
}

.flow {
  background: linear-gradient(180deg, rgba(13, 9, 9, .9), rgba(3, 3, 3, .94)), radial-gradient(circle at 18% 12%, rgba(232, 137, 157, .16), transparent 34rem);
  border-block: 1px solid rgba(255, 255, 255, .07);
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: 88px 1fr clamp(120px, 14vw, 168px);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(18px);
}

.step-art {
  display: grid;
  place-items: center;
  align-self: center;
}

.step-art svg {
  width: 100%;
  height: auto;
}

.step-art .sa-line,
.step-art .sa-accent,
.step-art .sa-warm,
.step-art .sa-dash {
  fill: none;
  stroke: rgba(247, 249, 255, .8);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-art .sa-accent {
  stroke: var(--blue-2);
}

.step-art .sa-warm {
  stroke: var(--warm);
}

.step-art .sa-dash {
  stroke-dasharray: 2 5;
}

.step-art .sa-fill {
  fill: rgba(232, 137, 157, .12);
}

.step-art .sa-dot {
  fill: rgba(247, 249, 255, .8);
}

.step-num {
  display: grid;
  place-items: center;
  width: 64px;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 137, 157, .5);
  border-radius: 50%;
  color: var(--blue-2);
  background: rgba(232, 137, 157, .1);
  font-weight: 900;
}

.step h3 {
  margin-top: 0;
}

.property-listing-section {
  padding-top: 92px;
  padding-bottom: 40px;
}

.property-section-head {
  margin-bottom: 24px;
}

.visual-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}

.property-gallery {
  min-width: 0;
  min-height: 570px;
  height: 100%;
  position: relative;
}

.property-visual {
  min-height: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .13);
  background: #0b090a;
  box-shadow: var(--shadow);
}

.property-listing-section .property-visual {
  background: #0b090a;
}

.property-gallery-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transition: opacity .24s ease;
}

.property-gallery-image.is-switching {
  opacity: .18;
}

.property-gallery-controls {
  position: absolute;
  right: 16px;
  bottom: 88px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(7, 6, 7, .76);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.property-gallery-nav {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.property-gallery-nav:hover {
  color: #111;
  background: var(--pink);
  transform: translateY(-1px);
}

.property-gallery-nav:focus-visible,
.property-gallery-thumb:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.property-gallery-nav svg {
  width: 19px;
  height: 19px;
}

.property-gallery-counter {
  min-width: 48px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.property-gallery-counter b {
  color: #fff;
  font-weight: 800;
}

.property-gallery-thumbnails {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  background: rgba(7, 6, 7, .74);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
  scrollbar-width: thin;
  scrollbar-color: rgba(229, 119, 145, .55) rgba(255, 255, 255, .06);
}

.property-gallery-thumb {
  width: 76px;
  height: 58px;
  position: relative;
  flex: 0 0 76px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 5px;
  background: #0b090a;
  cursor: pointer;
  opacity: .58;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.property-gallery-thumb:hover,
.property-gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--pink);
  transform: translateY(-1px);
}

.property-gallery-thumb.is-active::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 2px rgba(10, 8, 9, .8);
}

.property-gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.visual-copy {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.visual-copy h3 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
  margin-bottom: 16px;
}

.property-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 22px;
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
}

.property-price span {
  color: var(--blue-2);
  font-size: 16px;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.spec-list span {
  color: var(--muted);
}

.property-reserve-btn {
  width: 100%;
  margin-top: 22px;
}

.compare-section {
  padding: 78px 0 40px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  min-width: 0;
}

.compare-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .032));
  box-shadow: 0 22px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(20px);
}

.compare-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 34%), radial-gradient(circle at 86% 10%, rgba(232, 137, 157, .2), transparent 15rem);
  opacity: .8;
}

.compare-card > * {
  position: relative;
}

.compare-card-primary {
  border-color: rgba(232, 137, 157, .36);
  background: linear-gradient(180deg, rgba(232, 137, 157, .18), rgba(255, 255, 255, .045)), rgba(12, 8, 8, .6);
}

.compare-card-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .026)), rgba(8, 8, 10, .52);
}

.compare-card h3 {
  margin-bottom: 18px;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
}

.compare-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .8);
  font-size: 14px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: normal;
}

.compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 3px rgba(6, 5, 5, .62);
}

.compare-card-primary li::before {
  border-color: rgba(244, 161, 178, .72);
  background: var(--blue);
  box-shadow: 0 0 22px rgba(232, 137, 157, .38);
}

.notice {
  background: linear-gradient(180deg, rgba(18, 12, 12, .98), rgba(4, 4, 4, .98));
  color: var(--ink);
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, .08);
}

.notice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 137, 157, .14), transparent 42%), linear-gradient(315deg, rgba(255, 207, 154, .08), transparent 48%);
  pointer-events: none;
}

.notice .section-inner {
  position: relative;
}

.notice h2,
.notice p {
  color: var(--ink);
}

.notice-detail {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.notice-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(16px);
}

.notice-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.notice-card p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.9;
}

.notice-card p:last-child {
  margin-bottom: 0;
}

.notice-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.notice-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.85;
}

.notice-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(232, 137, 157, .42);
}

.notice-card strong {
  color: #fff;
}

label {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(2, 5, 10, .54);
  outline: none;
  padding: 13px 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(121, 197, 255, .8);
  box-shadow: 0 0 0 4px rgba(58, 160, 255, .12);
  background: rgba(7, 13, 22, .86);
}

.company-section {
  padding: 92px 0;
  background: linear-gradient(180deg, rgba(3, 3, 3, .98), rgba(12, 8, 8, .98));
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.company-card {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  backdrop-filter: blur(18px);
}

.company-card h2 {
  margin-bottom: 12px;
}

.company-card p {
  color: var(--muted);
}

.company-table {
  display: grid;
  gap: 0;
  margin: 0;
}

.company-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.company-row dt {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
}

.company-row dd {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
}

.company-row ul {
  margin: 0;
  padding-left: 1.2em;
}

footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .46);
  font-size: 12px;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1300px) and (min-width: 881px) {
  .hero-bg {
    background-size: auto 100svh;
    background-position: 58% top;
    background-repeat: no-repeat;
    background-color: #17110f;
  }
}

@media (max-width: 880px) {
  .hero-bg {
    background-size: auto 72svh;
    background-position: 62% 66px;
    background-repeat: no-repeat;
    background-color: #17110f;
  }

  .hero-bg-evening,
  .hero-bg-night {
    filter: brightness(1.35) saturate(1.08);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 5, 5, .01) 0%, rgba(7, 5, 5, .16) 48%, rgba(3, 3, 3, .4) 100%), linear-gradient(90deg, rgba(5, 4, 4, .2), rgba(5, 4, 4, .04));
  }

  .hero-inner {
    padding-top: 66px;
    align-content: start;
  }

  .hero-copy {
    padding-top: 0;
  }

  .visual-layout,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .company-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(100% - 16px, var(--max));
    min-height: 56px;
    height: 56px;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    gap: 6px;
  }

  .brand span {
    display: none;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
  }

  .brand-logo {
    width: clamp(72px, 19vw, 96px);
    max-width: 100%;
  }

  .nav-actions {
    width: auto;
    min-width: 0;
    justify-content: flex-end;
    gap: 4px;
  }

  .nav-cta {
    min-height: 30px;
    padding: 0 5px;
    font-size: 8px;
  }

  .hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, var(--max));
  }

  .hero-inner {
    padding-top: 58px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .compare-section .section-head {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .compare-section .section-head h2 {
    max-width: 14ch;
    margin-inline: 0;
    text-wrap: balance;
    font-size: clamp(30px, 7.2vw, 40px);
    line-height: 1.18;
  }

  .compare-section .section-head p {
    font-size: 15px;
    line-height: 1.85;
  }

  .compare-card {
    padding: 20px;
  }

  .compare-card h3 {
    font-size: clamp(18px, 6.4vw, 24px);
    line-height: 1.42;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(23px, 7vw, 35px);
    line-height: 1.03;
  }

  .hero .lead {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.58;
  }

  .hero-bg {
    background-size: auto 64svh;
    background-position: 68% 66px;
    background-repeat: no-repeat;
    background-color: #17110f;
  }

  h1 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  section {
    padding: 72px 0;
  }

  .visual-copy,
  .compare-card {
    padding: 22px;
  }

  .compare-section {
    padding: 58px 0 28px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-art {
    max-width: 200px;
    justify-self: center;
  }

  .property-visual {
    min-height: 470px;
  }

  .company-card {
    padding: 22px;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 430px) {
  .brand-logo {
    width: clamp(62px, 16vw, 84px);
    max-width: 34vw;
  }

  .nav-cta {
    min-height: 28px;
    padding: 0 4px;
    font-size: 7px;
  }

  .hero-bg {
    background-size: auto 61svh;
    background-position: 70% 66px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-inner {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: clamp(21px, 7.6vw, 32px);
  }

  .hero .lead {
    margin-bottom: 16px;
    font-size: 12px;
    line-height: 1.55;
  }

  .step {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px 16px;
    align-items: start;
  }

  .step > div {
    display: contents;
  }

  .step-num {
    grid-row: 1 / span 2;
    width: 56px;
  }

  .step h3 {
    grid-column: 2;
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.35;
  }

  .step p {
    grid-column: 2;
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
  }
}

@media (max-width: 767px) {
  .site-header {
    background: rgba(8, 7, 7, .5);
  }

  .nav {
    width: min(100% - 20px, var(--max));
    height: 62px;
    min-height: 62px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    align-items: center;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
  }

  .brand-logo {
    width: clamp(128px, 35vw, 170px);
    max-width: 100%;
  }

  .nav-actions {
    min-width: 0;
    gap: 6px;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 10px;
    font-size: clamp(11px, 2.7vw, 12px);
  }

  .hero {
    min-height: 100svh;
    max-height: 100svh;
  }

  .hero-bg {
    /* Keep both people visible on narrow screens by using height-led scaling */ background-size: auto 75svh;
    background-position: 77% 62px;
    background-repeat: no-repeat;
    background-color: #17110f;
  }

  .hero-bg-evening,
  .hero-bg-night {
    filter: brightness(1.4) saturate(1.08);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(5, 4, 4, .04) 0%, rgba(7, 5, 5, .12) 42%, rgba(3, 3, 3, .72) 100%), linear-gradient(90deg, rgba(5, 4, 4, .28), rgba(5, 4, 4, .08) 56%, rgba(5, 4, 4, .02) 100%);
  }

  .hero-inner {
    width: min(100% - 24px, var(--max));
    min-height: 100svh;
    padding: 84px 0 10px;
    align-content: end;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 0;
    margin-bottom: clamp(92px, 15svh, 140px);
  }

  .hero h1 {
    margin-bottom: 14px;
    font-size: clamp(38px, 12.2vw, 50px);
    line-height: 1.04;
  }

  .hero .lead {
    margin-bottom: 12px;
    max-width: 92%;
    font-size: 13px;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
  }

  .compare-section {
    padding-top: 24px;
  }

  .property-gallery {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .property-visual {
    min-height: 0;
    height: 100%;
    aspect-ratio: auto;
  }

  .property-gallery-controls {
    right: 10px;
    bottom: 76px;
    padding: 4px;
  }

  .property-gallery-nav {
    width: 34px;
    height: 34px;
  }

  .property-gallery-counter {
    min-width: 42px;
    font-size: 11px;
  }

  .property-gallery-thumbnails {
    gap: 7px;
    right: 8px;
    bottom: 0;
    left: 8px;
    padding: 6px;
  }

  .property-gallery-thumb {
    width: 68px;
    height: 52px;
    flex-basis: 68px;
  }

  .nav {
    width: calc(100% - 16px);
    gap: 6px;
  }

  .brand-logo {
    width: clamp(118px, 32vw, 142px);
  }

  .nav-actions {
    gap: 4px;
  }

  .nav-cta {
    min-height: 34px;
    padding-inline: 9px;
    font-size: clamp(10px, 2.7vw, 11px);
  }

  .section-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .section-head {
    width: 100%;
    max-width: none;
    margin-bottom: 24px;
  }

  .section-head h2,
  .compare-section .section-head h2,
  .company-card h2 {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 1.3;
    text-wrap: balance;
  }

  .section-head p,
  .company-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .compare-section {
    padding: 44px 0 48px;
  }

  .compare-section .section-head {
    margin-bottom: 22px;
  }

  .compare-section .section-head p {
    font-size: 14px;
    line-height: 1.8;
  }

  .compare-grid {
    gap: 12px;
  }

  .compare-card {
    min-height: 0;
    padding: 20px;
  }

  .compare-card h3 {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.45;
  }

  .compare-card ul {
    gap: 10px;
  }

  .compare-card li {
    padding-left: 24px;
    font-size: 14px;
    line-height: 1.7;
  }

  .compare-card li::before {
    width: 11px;
    height: 11px;
  }

  .property-listing-section {
    padding: 52px 0 36px;
  }

  .property-section-head {
    margin-bottom: 18px;
  }

  .visual-layout {
    gap: 12px;
  }

  .property-gallery-controls {
    bottom: 68px;
  }

  .property-gallery-nav {
    width: 32px;
    height: 32px;
  }

  .property-gallery-counter {
    min-width: 38px;
  }

  .property-gallery-thumbnails {
    gap: 6px;
  }

  .property-gallery-thumb {
    width: 60px;
    height: 46px;
    flex-basis: 60px;
  }

  .visual-copy {
    justify-content: flex-start;
    gap: 18px;
    padding: 20px;
  }

  .visual-copy h3 {
    margin: 0 0 12px;
    font-size: clamp(22px, 6.2vw, 25px);
    line-height: 1.3;
    text-wrap: balance;
  }

  .property-price {
    margin: 8px 0 16px;
    font-size: 38px;
  }

  .visual-copy p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .spec-list {
    gap: 0;
  }

  .spec-list li {
    gap: 12px;
    padding: 12px 0;
    font-size: 14px;
  }

  .spec-list strong {
    max-width: 68%;
    text-align: right;
    overflow-wrap: anywhere;
  }

  .property-reserve-btn {
    min-height: 48px;
    margin-top: 4px;
  }

  .flow {
    padding: 52px 0;
  }

  .flow .section-head {
    margin-bottom: 22px;
  }

  .steps {
    gap: 10px;
  }

  .step {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px;
  }

  .step > div:not(.step-num) {
    display: block;
    min-width: 0;
  }

  .step > .step-num {
    display: grid;
    place-items: center;
    width: 46px;
    grid-row: auto;
    font-size: 13px;
  }

  .step h3 {
    margin: 0 0 6px;
    font-size: 19px;
    line-height: 1.4;
  }

  .step p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
  }

  .step-art {
    grid-column: 2;
    max-width: 200px;
    margin-top: 6px;
  }

  .notice {
    padding: 52px 0;
  }

  .notice-detail {
    gap: 10px;
    margin-top: 20px;
  }

  .notice-card {
    padding: 20px;
  }

  .notice-card h3 {
    font-size: 19px;
    line-height: 1.5;
  }

  .notice-card p,
  .notice-card li {
    font-size: 14px;
    line-height: 1.8;
  }

  .company-section {
    padding: 52px 0;
  }

  .company-card {
    gap: 24px;
    padding: 20px;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .company-row dd {
    overflow-wrap: anywhere;
  }

  footer {
    padding: 20px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 640px) {
  .hero-bg {
    background-size: auto 73svh;
    background-position: 79% 62px;
  }

  .hero-copy {
    margin-bottom: clamp(78px, 13svh, 120px);
  }
}

@media (max-width: 430px) {
  .hero-bg {
    background-size: auto 71svh;
    background-position: 81% 62px;
  }

  .hero-copy {
    margin-bottom: clamp(66px, 11svh, 102px);
  }
}

/* Consolidated mobile layout: keep every section readable and aligned. */

@media (max-width: 360px) {
  .brand-logo {
    width: 108px;
  }

  .nav-cta {
    padding-inline: 7px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 40px);
  }
}
