* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Pretendard", "Noto Sans KR", -apple-system, sans-serif;
  color: #1a1a1a;
}

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

:root {
  --color-dark: #16181d;
  --color-gold: #b89355;
  --color-gold-light: #d4b98a;
  --color-white: #ffffff;
  --color-line: rgba(0, 0, 0, 0.08);
  --header-height: 86px;
  --transition-base: 0.35s ease;
  --content-max-width: 1400px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: transparent;
  color: var(--color-white);
  transition: background-color var(--transition-base), box-shadow var(--transition-base), color var(--transition-base);
}

.header.scrolled {
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: var(--content-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-logo {
  justify-self: start;
}

.header-logo a {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--color-gold-light);
  margin-top: 2px;
}

.header.scrolled .logo-sub {
  color: var(--color-gold);
}

.header-nav {
  display: flex;
  justify-content: center;
}

.main-menu {
  display: flex;
  gap: 60px;
}

.menu-item {
  position: relative;
}

.menu-link {
  display: block;
  padding: 32px 0;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}

.menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 26px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-base);
}

.menu-item:hover .menu-link::after {
  width: 100%;
}

.mega-dropdown {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--color-white);
  color: var(--color-dark);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mega-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-inner {
  position: relative;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 56px 40px;
  min-height: 320px;
}

.mega-col {
  position: absolute;
  top: 56px;
  width: max-content;
  max-width: 200px;
  text-align: center;
}

.mega-col a {
  display: block;
  font-size: 14.5px;
  color: #444;
  padding: 14px 0;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-col a:hover {
  color: var(--color-dark);
  transform: translateX(4px);
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  height: 44px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-outline {
  border: 1px solid currentColor;
}

.btn-outline:hover {
  background: currentColor;
  color: var(--color-dark);
}

.header.scrolled .btn-outline:hover {
  color: var(--color-white);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background: var(--color-white);
  color: var(--color-dark);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 32px 40px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-item {
  border-bottom: 1px solid var(--color-line);
}

.mobile-menu-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}

.mobile-menu-toggle::after {
  content: "+";
  font-size: 18px;
  color: var(--color-gold);
  transition: transform 0.25s ease;
}

.mobile-menu-item.open .mobile-menu-toggle::after {
  content: "\2212";
}

.mobile-menu-link {
  display: block;
  width: 100%;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 500;
  color: inherit;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu-item.open .mobile-submenu {
  max-height: 400px;
}

.mobile-submenu a {
  display: block;
  padding: 10px 0 10px 8px;
  font-size: 15px;
  color: #555;
}

.mobile-menu-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.mobile-menu-cta .btn {
  flex: 1;
  text-align: center;
  color: var(--color-dark);
}

.mobile-menu-cta .btn-primary {
  color: var(--color-white);
}

@media (max-width: 1200px) {
  .header-inner {
    padding: 0 24px;
  }
  .main-menu {
    gap: 40px;
  }
  .header-cta {
    gap: 8px;
  }
  .btn {
    padding: 0 16px;
  }
}

@media (max-width: 900px) {
  .header-nav,
  .header-cta,
  .mega-dropdown {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #1b1e26;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;

  filter: contrast(1.04) brightness(1.02);

  transform: scale(1);
  animation: heroZoom 22s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.42) 0%,
    rgba(10, 10, 15, 0.2) 30%,
    rgba(10, 10, 15, 0.16) 60%,
    rgba(10, 10, 15, 0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: 5vh;
  padding: 0 24px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;

  opacity: 0;
  animation: heroFadeUp 1s ease-out 0.3s forwards;
}

.hero-title {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.35;
  word-break: keep-all;
  margin-bottom: 22px;

  opacity: 0;
  animation: heroFadeUp 1.1s ease-out 0.6s forwards;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.85);
  word-break: keep-all;

  opacity: 0;
  animation: heroFadeUp 1.1s ease-out 0.95s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  opacity: 0;
  animation: heroFadeUp 1s ease-out 1.3s forwards;
}

.hero-scroll-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-scroll-icon {
  width: 8px;
  height: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  animation: heroScrollBounce 2s ease-in-out infinite;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.7; }
  50% { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}

@media (max-width: 900px) {
  .hero {
    height: 100vh;
    height: 100svh;
  }

  .hero-bg-img {
    object-fit: cover;
    object-position: center 38%;
  }

  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero-title {
    font-size: 34px;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .subpage-hero-bg img,
  .contact-visual-bg {
    object-position: center 35%;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 20px;
  }
  .hero-title {
    font-size: 27px;
    line-height: 1.35;
  }
  .hero-subtitle {
    font-size: 14px;
  }
}

.demo-content {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f3f3;
  font-size: 18px;
  color: #666;
}

html {
  scroll-snap-type: y proximity;
  scroll-padding-top: var(--header-height);
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
  }
}

.hero,
.section-snap {
  scroll-snap-align: start;
}

.section-placeholder {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  background: #f3f3f3;
}
.section-placeholder + .section-placeholder {
  background: #ececec;
}

.premium-section {
  position: relative;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: var(--color-white);
  color: var(--color-dark);
}

.premium-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.premium-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 62% 38%;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease, visibility 0.9s ease;
}

.premium-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 1;
}

.premium-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-color: #e8e8e8;
}

.premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

  filter: contrast(1.03) brightness(1.01);
}

.premium-content {
  position: relative;
  z-index: 2;
  background: var(--color-white);
  margin-left: -64px;
  padding: 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: -40px 0 60px rgba(0, 0, 0, 0.04);
}

.premium-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #999;
  margin-bottom: 8px;
}

.premium-category {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--color-gold);
  margin-bottom: 26px;
}

.premium-title {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.3px;
  word-break: keep-all;
  margin-bottom: 22px;
}

.premium-desc {
  font-size: 15.5px;
  line-height: 1.85;
  color: #555;
  word-break: keep-all;
  max-width: 380px;
}

.premium-nav {
  position: absolute;
  right: 72px;
  bottom: 56px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 28px;
}

.premium-count {
  font-size: 13px;
  letter-spacing: 1px;
  color: #999;
}

#premiumCurrent {
  color: var(--color-dark);
  font-weight: 600;
}

.premium-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--color-dark);
  cursor: pointer;
}

.premium-arrow-glyph {
  display: inline-block;
  transition: transform 0.3s ease;
}

.premium-prev:hover .premium-arrow-glyph {
  transform: translateX(-4px);
}
.premium-next:hover .premium-arrow-glyph {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  .premium-slide {
    grid-template-columns: 58% 42%;
  }
  .premium-content {
    margin-left: -40px;
    padding: 0 48px;
  }
  .premium-title {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .premium-section {
    height: auto;
    padding: 20px 0 28px;
    overflow: visible;
  }

  .premium-slider {
    position: static;
    height: auto;
  }

  .premium-slide {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .premium-slide.active {
    display: flex;
    flex-direction: column;
  }

  .premium-content {
    display: contents;
  }

  .premium-slide {
    padding: 0 24px;
  }

  .premium-label,
  .premium-category,
  .premium-title {
    order: 1;
  }
  .premium-image {
    order: 2;
  }
  .premium-desc {
    order: 3;
  }

  .premium-label {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .premium-category {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .premium-title {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  .premium-image {
    height: auto;
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .premium-desc {
    margin-top: 14px;
    font-size: 13.5px;
    line-height: 1.6;
    max-width: none;
  }

  .premium-nav {
    position: static;
    margin-top: 20px;
    padding: 0 24px;
    justify-content: center;
    gap: 24px;
  }

  .premium-arrow {
    padding: 10px 2px;
  }
}

@media (max-width: 480px) {
  .premium-slide {
    padding: 0 20px;
  }
  .premium-title {
    font-size: 19px;
    margin-bottom: 12px;
  }
  .premium-desc {
    font-size: 13px;
    margin-top: 12px;
  }
  .premium-nav {
    padding: 0 20px;
    gap: 18px;
  }
}

.unit-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 110px 0;
  background: var(--color-white);
  color: var(--color-dark);
  overflow: hidden;
}

.unit-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.unit-header {
  text-align: center;
  margin-bottom: 56px;
}

.unit-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.unit-title {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.3px;
  word-break: keep-all;
  margin-bottom: 16px;
}

.unit-desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  word-break: keep-all;
}

.unit-tabs {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 64px;
}

.unit-tab {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #bbb;
  padding-bottom: 14px;
  transition: color 0.3s ease;
}

.unit-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.unit-tab:hover {
  color: #888;
}

.unit-tab-selected {
  color: var(--color-dark);
  font-weight: 600;
}

.unit-tab-selected::after {
  width: 100%;
}

.unit-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}

.unit-image-area {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
}

.unit-image-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.unit-image-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.unit-plan-frame {
  position: relative;
  height: 100%;
}

.unit-hotspot {
  position: absolute;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 5;
}

.unit-hotspot-preview {
  position: fixed;
  width: 300px;
  display: flex;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1500;
}

.unit-hotspot-preview.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.unit-hotspot-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.unit-hotspot-preview.has-two img {
  width: 50%;
}

.unit-image-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}
.unit-image-slide.is-prev {
  opacity: 0;
  transform: translateX(-32px);
  z-index: 1;
}
.unit-image-slide.is-next {
  opacity: 0;
  transform: translateX(32px);
  z-index: 1;
}

.unit-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #999;
  background: linear-gradient(135deg, #eee, #f7f7f7);
  width: 100%;
  height: 100%;
  justify-content: center;
}

.unit-image-placeholder-code {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aaa;
}

.unit-image-placeholder-text {
  font-size: 13px;
  letter-spacing: 1px;
}

.unit-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.unit-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  font-size: 15px;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.unit-arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.unit-arrow-prev:hover {
  transform: translateX(-3px);
}
.unit-arrow-next:hover {
  transform: translateX(3px);
}

.unit-count {
  font-size: 13px;
  letter-spacing: 1px;
  color: #999;
}

#unitCurrent {
  color: var(--color-dark);
  font-weight: 600;
}

.unit-info-col {
  position: relative;
  min-height: 420px;
}

.unit-info-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.unit-info-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 2;
}
.unit-info-panel.is-prev {
  transform: translateY(-14px);
}
.unit-info-panel.is-next {
  transform: translateY(14px);
}

.unit-info-type {
  display: block;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.unit-info-pyeong {
  display: block;
  font-size: 15px;
  color: #888;
  margin-bottom: 28px;
}

.unit-info-area {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
  margin-bottom: 28px;
}

.unit-info-area-label {
  font-size: 13px;
  letter-spacing: 1px;
  color: #999;
}

.unit-info-area-value {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-gold);
}

.unit-info-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.unit-info-features li {
  font-size: 13.5px;
  letter-spacing: 0.3px;
  color: #555;
  padding: 8px 16px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
}

.unit-interior {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}

.unit-interior-label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 12px;
}

.unit-interior-btn {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 22px;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  transition: background-color 0.25s ease;
}

.unit-interior-btn:hover {
  background: var(--color-gold-light);
}

.unit-interior-note-text {
  font-size: 13.5px;
  line-height: 1.8;
  color: #777;
  margin-bottom: 14px;
  word-break: keep-all;
}

.unit-interior-note-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.unit-interior-btn-outline {
  background: none;
  border: 1px solid var(--color-dark);
  color: var(--color-dark);
  height: 40px;
  padding: 0 18px;
  font-size: 13.5px;
}

.unit-interior-btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

@media (max-width: 1200px) {
  .unit-body {
    gap: 48px;
  }
  .unit-title {
    font-size: 30px;
  }
  .unit-tabs {
    gap: 32px;
  }
  .unit-tab {
    font-size: 19px;
  }
}

@media (max-width: 900px) {
  .unit-section {
    padding: 56px 0;
  }
  .unit-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .unit-info-col {
    min-height: 480px;
  }
  .unit-tabs {
    gap: 24px;
    margin-bottom: 44px;
  }
  .unit-tab {
    font-size: 18px;
  }
  .unit-title {
    font-size: 26px;
  }

  .unit-hotspot-preview {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    max-height: min(72vh, 560px);
    overflow-y: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .unit-hotspot-preview img {
    max-height: min(38vh, 280px);
  }

  .unit-hotspot-preview.has-two {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
  }
  .unit-hotspot-preview.has-two img {
    flex: none;
    width: calc(50% - 4.5px);
    max-height: min(30vh, 220px);
  }

  .unit-hotspot-preview.unit-hotspot-preview-84a-living {
    max-height: calc(100vh - 32px);
    align-items: stretch;
    justify-content: flex-start;
  }
  .unit-hotspot-preview.unit-hotspot-preview-84a-living img {
    max-height: none;
  }
  .unit-hotspot-preview.unit-hotspot-preview-84a-living.has-two {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }
  .unit-hotspot-preview.unit-hotspot-preview-84a-living.has-two img {
    flex: initial;
    width: 100%;
    max-height: none;
  }
}

@media (max-width: 480px) {
  .unit-inner {
    padding: 0 24px;
  }
  .unit-tabs {
    gap: 18px;
  }
  .unit-tab {
    font-size: 16px;
  }
  .unit-title {
    font-size: 22px;
  }
  .unit-desc {
    font-size: 14px;
  }
  .unit-info-type {
    font-size: 28px;
  }
}


.contact-section {
  position: relative;
  background: var(--color-white);
  color: var(--color-dark);
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.contact-visual {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 64px;
  color: var(--color-white);
}

.contact-visual-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: contrast(1.03) brightness(0.92);
}

.contact-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 10, 15, 0.72) 0%, rgba(10, 10, 15, 0.4) 100%);
}

.contact-visual-content {
  position: relative;
  z-index: 2;
  max-width: 420px;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.contact-section.is-visible .contact-visual-content {
  opacity: 1;
  transform: translateY(0);
}

.contact-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-gold-light);
  margin-bottom: 20px;
}

.contact-title {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.3px;
  word-break: keep-all;
  margin-bottom: 20px;
}

.contact-desc {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  word-break: keep-all;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 72px;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease 0.15s, transform 0.9s ease 0.15s;
}

.contact-section.is-visible .contact-form-col {
  opacity: 1;
  transform: translateY(0);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 440px;
}

.contact-field label {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 12px;
}

.contact-field input[type="text"],
.contact-field input[type="tel"],
.contact-field input[type="date"],
.contact-field input[type="time"],
.contact-field select {
  width: 100%;
  border: none;
  background: none;
  padding: 10px 2px;
  font-size: 15.5px;
  font-family: inherit;
  color: var(--color-dark);
  box-shadow: 0 1px 0 0 var(--color-line);
  transition: box-shadow 0.3s ease;
}

.contact-field select {
  cursor: pointer;
}

.contact-field input[type="text"]:focus,
.contact-field input[type="tel"]:focus,
.contact-field input[type="date"]:focus,
.contact-field input[type="time"]:focus,
.contact-field select:focus {
  outline: none;
  box-shadow: 0 2px 0 0 var(--color-gold);
}

.contact-field input::placeholder {
  color: #bbb;
}

.contact-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-chip {
  padding: 12px 20px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: none;
  font-family: inherit;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.contact-chip:hover {
  border-color: var(--color-gold);
  color: var(--color-dark);
}

.contact-chip.is-selected {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.contact-chip-group.is-invalid {
  animation: contactShake 0.4s ease;
}
@keyframes contactShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.contact-agree {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #555;
}

.contact-checkbox input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.contact-checkbox-box {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  flex-shrink: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-checkbox input:checked + .contact-checkbox-box {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.contact-checkbox input:checked + .contact-checkbox-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-checkbox input:focus-visible + .contact-checkbox-box {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

.contact-checkbox-label,
.contact-checkbox-required {
  transition: color 0.15s ease;
}

.contact-checkbox input:checked ~ .contact-checkbox-label {
  color: #000;
}

.contact-agree-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 12.5px;
  color: #888;
  text-decoration: underline;
  padding: 0;
  transition: color 0.2s ease;
}

.contact-agree-toggle:hover {
  color: var(--color-dark);
}

.contact-agree-error {
  display: none;
  margin: 8px 0 0;
  font-size: 12.5px;
  color: #d64545;
}

.contact-agree-error.is-visible {
  display: block;
}

.contact-agree-detail {
  max-height: 0;
  overflow: hidden;
  background: #f7f7f7;
  border-radius: 4px;
  transition: max-height 0.35s ease;
}

.contact-agree-detail.is-open {
  max-height: 300px;
  margin-top: 10px;
}

.contact-agree-detail-inner {
  padding: 16px 18px;
  font-size: 13px;
  line-height: 1.9;
  color: #777;
  max-height: 264px;
  overflow-y: auto;
}

.contact-agree-detail-inner p + p {
  margin-top: 8px;
}

.contact-agree-detail-inner ul {
  margin: 4px 0 10px 18px;
}

.contact-agree-detail-inner li {
  list-style: disc;
  margin-bottom: 4px;
}

.contact-agree-detail-inner strong {
  color: #555;
  margin-right: 6px;
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 58px;
  margin-top: 6px;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.contact-submit-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact-submit:hover .contact-submit-arrow {
  transform: translateX(6px);
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.contact-success {
  margin-top: 24px;
  max-width: 440px;
  padding: 24px 26px;
  background: #f7f7f7;
  border-left: 3px solid var(--color-gold);
  font-size: 15px;
  line-height: 1.85;
  color: var(--color-dark);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}

.contact-success.is-shown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .contact-visual,
  .contact-form-col {
    padding: 80px 48px;
  }
  .contact-title {
    font-size: 32px;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .contact-visual {
    padding: 56px 32px;
    min-height: 320px;
  }
  .contact-form-col {
    padding: 56px 32px 72px;
  }
  .contact-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact-visual {
    padding: 56px 24px;
    min-height: 320px;
  }
  .contact-form-col {
    padding: 48px 24px 56px;
  }
  .contact-title {
    font-size: 24px;
  }
  .contact-chip {
    padding: 12px 18px;
    font-size: 13.5px;
  }
  .contact-submit {
    height: 54px;
    font-size: 15px;
  }
}

.menu-item.is-active .menu-link {
  font-weight: 600;
}
.menu-item.is-active .menu-link::after {
  width: 100%;
}
.mobile-menu-toggle.is-active,
.mobile-menu-link.is-active {
  color: var(--color-gold);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

.img-reveal {
  position: relative;
  overflow: hidden;
}
.img-reveal img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-reveal-panel {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 1.1s cubic-bezier(0.65, 0, 0.35, 1);
}
.img-reveal.is-visible .img-reveal-panel {
  transform: scaleX(0);
}

.subpage-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
}

.subpage-hero-bg {
  position: absolute;
  inset: 0;
}

.subpage-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: contrast(1.03) brightness(0.85);
  transform: scale(1.1);
  animation: subHeroZoom 1.8s ease-out forwards;
}

@keyframes subHeroZoom {
  from { transform: scale(1.14); }
  to { transform: scale(1.05); }
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 10, 15, 0.68), rgba(10, 10, 15, 0.42));
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.subpage-hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-gold-light);
  margin-bottom: 18px;

  opacity: 0;
  transform: translateY(20px);
  animation: subHeroFadeUp 0.8s ease-out 0.2s forwards;
}

.subpage-hero-title {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.3px;
  word-break: keep-all;
  margin-bottom: 16px;

  opacity: 0;
  transform: translateY(20px);
  animation: subHeroFadeUp 0.9s ease-out 0.4s forwards;
}

.subpage-hero-desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto;
  word-break: keep-all;

  opacity: 0;
  transform: translateY(20px);
  animation: subHeroFadeUp 0.9s ease-out 0.6s forwards;
}

@keyframes subHeroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.page-subnav {
  position: sticky;
  top: var(--header-height);
  z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}

.page-subnav-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 40px;
  overflow-x: auto;
}

.page-subnav a {
  position: relative;
  display: block;
  padding: 20px 0;
  font-size: 14.5px;
  font-weight: 500;
  color: #888;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.page-subnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

.page-subnav a:hover {
  color: #333;
}

.page-subnav a.is-active {
  color: var(--color-dark);
  font-weight: 600;
}
.page-subnav a.is-active::after {
  width: 100%;
}

.content-section {
  padding: 100px 0;
}

.content-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.content-heading {
  text-align: center;
  margin-bottom: 56px;
}

.content-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.content-title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.3px;
  word-break: keep-all;
  margin-bottom: 16px;
}

.content-desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  word-break: keep-all;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-split-reverse .content-split-media {
  order: 2;
}

.content-split-text h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 16px;
  word-break: keep-all;
}

.content-split-text p {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  word-break: keep-all;
}

.content-split-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee;
}

.content-split-media-auto {
  aspect-ratio: auto;
}
.content-split-media-auto img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.content-full-media {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #eee;
}

.content-full-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.content-cards-6 {
  grid-template-columns: repeat(6, 1fr);
}

.content-card {
  padding: 36px 28px;
  border: 1px solid var(--color-line);
}

.content-card-num {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.content-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.content-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.content-media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #999;
  background: linear-gradient(135deg, #eee, #f7f7f7);
  font-size: 13px;
  letter-spacing: 1px;
}

@media (max-width: 1200px) {
  .content-split {
    gap: 40px;
  }
  .content-title {
    font-size: 28px;
  }
  .content-cards-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .subpage-hero-title {
    font-size: 32px;
  }
  .content-section {
    padding: 72px 0;
  }
  .content-inner {
    padding: 0 24px;
  }
  .content-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .content-split-reverse .content-split-media {
    order: 0;
  }
  .page-subnav-inner {
    padding: 0 24px;
    gap: 28px;
  }
  .content-cards-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .subpage-hero-title {
    font-size: 26px;
  }
  .content-title {
    font-size: 24px;
  }
  .content-cards-6 {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.6);
}

.site-footer-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 64px 40px 32px;
}

.site-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-white);
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}
.site-footer-links a:hover {
  color: var(--color-white);
}

.site-footer-info {
  font-size: 12.5px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer-copyright {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .site-footer-inner {
    padding: 48px 24px 28px;
  }
}

.location-map-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.location-map-header .content-eyebrow,
.location-map-header .content-title {
  margin-bottom: 0;
}
.location-map-header .content-eyebrow {
  margin-bottom: 10px;
}

.location-map-badge {
  flex-shrink: 0;
  font-size: 12.5px;
  color: #888;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  padding: 8px 16px;
  white-space: nowrap;
  margin-top: 6px;
}

.location-map-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: #f7f7f7;
  cursor: zoom-in;
}

.location-map-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.location-map-lens {
  position: absolute;
  top: 0;
  left: 0;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 5;
}

.location-map-caption {
  margin-top: 14px;
  text-align: right;
  font-size: 13px;
  color: #888;
}

.location-map-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 22px 26px;
  background: #f7f7f7;
  border: 1px solid var(--color-line);
}

.location-map-notice-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #bbb;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map-notice-text p {
  font-size: 13px;
  line-height: 1.8;
  color: #777;
}
.location-map-notice-text p + p {
  margin-top: 4px;
}

.location-map-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 10, 15, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.location-map-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.location-map-popup-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
}
.location-map-popup-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.location-map-popup-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .location-map-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .location-map-badge {
    margin-top: 0;
  }
  .location-map-notice {
    padding: 18px 20px;
  }
  .location-map-frame {
    cursor: zoom-in;
  }
}

.landscape-slide-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
}

.landscape-slide-image-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.landscape-slide-image-item.is-active {
  opacity: 1;
}
.landscape-slide-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.landscape-slide-text {
  max-width: 560px;
  margin: 28px auto 0;
  text-align: center;
}
.landscape-slide-text h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  word-break: keep-all;
}
.landscape-slide-text p {
  font-size: 14.5px;
  line-height: 1.8;
  color: #666;
  word-break: keep-all;
}

.landscape-slide-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.landscape-slide-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}
.landscape-slide-btn:hover {
  border-color: var(--color-gold);
  color: var(--color-dark);
}
.landscape-slide-btn.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-white);
}

@media (max-width: 480px) {
  .landscape-slide-text h3 {
    font-size: 19px;
  }
  .landscape-slide-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .landscape-slide-nav {
    gap: 12px;
  }
}

.site-plan-notice {
  padding-bottom: 100px;
}
.site-plan-notice p {
  font-size: 12.5px;
  line-height: 1.9;
  color: #999;
  word-break: keep-all;
}
.site-plan-notice p + p {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .site-plan-notice {
    padding-bottom: 72px;
  }
}
