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

:root {
  --off-white: #f0ebe4;
  --charcoal: #1e1b18;
  --ink: #050505;
  --ink-soft: rgba(5, 5, 5, 0.72);
  --ink-muted: rgba(5, 5, 5, 0.52);
  --ink-faint: rgba(5, 5, 5, 0.28);
  --ui-sans: 'Urbanist', Arial, sans-serif;
  --ui-mono: 'DM Mono', 'Courier New', monospace;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background: #8b7e72;
  color: var(--ink);
  cursor: default;
  font-family: var(--ui-sans);
  transition: background-color 700ms ease;
}

button,
a {
  cursor: pointer;
}

#cur,
#cur-ring {
  display: none;
}

#cur {
  z-index: 9999;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
}

#cur-ring {
  z-index: 9998;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  background: var(--charcoal);
  transition: opacity 900ms ease;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.48em;
  color: rgba(240, 235, 228, 0.92);
  font-family: var(--ui-mono);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0;
}

.loader-logo span {
  display: inline-block;
  opacity: 0.26;
  transform: translateY(10px);
  animation: loaderLetter 1.35s ease-in-out infinite;
  animation-delay: calc(var(--letter-index) * 120ms);
}

@keyframes loaderLetter {
  0%,
  100% {
    opacity: 0.26;
    transform: translateY(10px);
  }

  42%,
  62% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-bar {
  position: relative;
  width: 80px;
  height: 1px;
  overflow: hidden;
  background: rgba(240, 235, 228, 0.1);
}

.loader-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #9e8578;
  transition: width 1300ms cubic-bezier(0.4, 0, 0.2, 1);
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 3.5vw;
  pointer-events: none;
}

.nav-logo,
.nav-center,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo-mark {
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-faint);
  border-radius: 50%;
}

.nav-logo-mark svg {
  width: 14px;
  height: 14px;
}

.nav-logo-text {
  color: var(--ink);
  font-family: var(--ui-mono);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.36em;
}

.nav-center {
  justify-content: flex-start;
  gap: 2.8rem;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink-muted);
  font-family: var(--ui-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  pointer-events: auto;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.nav-item svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.nav-item:hover {
  color: var(--ink);
}

.nav-right {
  gap: 1.8rem;
}

.nav-like-btn {
  display: inline-flex;
  min-width: 58px;
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
  font-family: var(--ui-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  pointer-events: auto;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.nav-like-btn:hover,
.nav-like-btn.liked {
  border-color: rgba(5, 5, 5, 0.44);
  background: rgba(5, 5, 5, 0.08);
}

.nav-like-icon {
  width: 13px;
  height: 13px;
  transition: fill 220ms ease, transform 220ms ease;
}

.nav-like-btn.liked .nav-like-icon {
  fill: currentColor;
}

.heart-pop {
  animation: heartPop 460ms cubic-bezier(0.18, 0.82, 0.24, 1);
}

@keyframes heartPop {
  0% { transform: scale(1); }
  42% { transform: scale(1.16); }
  100% { transform: scale(1); }
}

.nav-profile-btn {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--ui-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  pointer-events: auto;
  text-transform: uppercase;
}

.nav-profile-btn:hover {
  color: var(--ink-soft);
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(20, 18, 16, 0.52);
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.auth-overlay[hidden] {
  display: none;
}

.auth-card {
  position: relative;
  width: min(92vw, 500px);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  padding: 2.5rem;
  background: #eee8df;
  box-shadow: 0 32px 90px rgba(5, 5, 5, 0.28);
}

.auth-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 200;
  line-height: 1;
}

.auth-eyebrow {
  margin-bottom: 0.65rem;
  color: var(--ink-muted);
  font-family: var(--ui-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.auth-card h2 {
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
  font-weight: 500;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(5, 5, 5, 0.16);
}

.auth-tab {
  padding: 0.8rem;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink-muted);
  font-family: var(--ui-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-tab.active {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.auth-form {
  display: none;
  gap: 1rem;
}

.auth-form.active {
  display: grid;
}

.auth-account {
  display: none;
  justify-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0 0.2rem;
  text-align: center;
}

.auth-account.active {
  display: grid;
}

.auth-avatar {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(5, 5, 5, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  font-family: var(--ui-mono);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.auth-account h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

.auth-account p {
  margin-bottom: 0.8rem;
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.auth-account .auth-submit {
  width: 100%;
}

.auth-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink-muted);
  font-family: var(--ui-mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-form input,
.auth-form select {
  width: 100%;
  height: 42px;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);
  font: 400 0.88rem var(--ui-sans);
  padding: 0 0.8rem;
}

.auth-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%),
    linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 13px) 18px,
    calc(100% - 9px) 18px;
  background-repeat: no-repeat;
  background-size: 4px 4px, 4px 4px;
  padding-right: 1.6rem;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: rgba(5, 5, 5, 0.62);
}

.auth-phone-field {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 0.6rem;
}

.auth-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.auth-submit {
  min-height: 44px;
  margin-top: 0.35rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--off-white);
  font-family: var(--ui-mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.auth-message {
  min-height: 1em;
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 0.76rem;
}

.auth-message.success {
  color: #315b3a;
}

.auth-message.error {
  color: #7a3030;
}

.auth-submit:disabled {
  cursor: wait;
  opacity: 0.58;
}

.auth-switch {
  color: var(--ink-muted);
  font-size: 0.78rem;
  text-align: center;
}

.auth-switch button {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.nav-menu-btn {
  display: flex;
  width: 22px;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: transparent;
  pointer-events: auto;
}

.nav-menu-btn span {
  display: block;
  height: 1px;
  background: var(--ink-muted);
}

.nav-menu-btn span:nth-child(2) {
  width: 70%;
}

.mobile-menu {
  display: none;
}

.divider {
  display: none;
}

#viewport,
#strip {
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.panel {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
}

.pane {
  position: absolute;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pane-left {
  left: 0;
  width: 50%;
}

.pane-right {
  right: 0;
  width: 50%;
}

.pane-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--slide-color);
  will-change: transform;
}

.left-content {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0 7vw 0 5.5vw;
}

.ghost-num {
  position: absolute;
  right: 2%;
  bottom: -0.06em;
  color: rgba(0, 0, 0, 0.1);
  font-size: 34vw;
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.label,
.project-title,
.project-desc,
.meta-row,
.btn-view {
  opacity: 0;
  transform: translateY(-28px);
}

.panel.active .label,
.panel.active .project-title,
.panel.active .project-desc,
.panel.active .meta-row,
.panel.active .btn-view {
  animation: textDrop 820ms cubic-bezier(0.18, 0.82, 0.24, 1) forwards;
}

.panel.active .project-title {
  animation-delay: 90ms;
}

.panel.active .project-desc {
  animation-delay: 180ms;
}

.panel.active .meta-row {
  animation-delay: 270ms;
}

.panel.active .btn-view {
  animation-delay: 360ms;
}

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

.label {
  margin-bottom: 1.6rem;
  color: var(--ink-muted);
  font-family: var(--ui-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.project-title {
  margin-bottom: 1.6rem;
  color: var(--ink);
  font-family: var(--ui-sans);
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.project-title em {
  font-style: normal;
  font-weight: 500;
}

.project-desc {
  max-width: 20rem;
  margin-bottom: 2.2rem;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.72;
}

.meta-row {
  display: flex;
  gap: 2.6rem;
  margin-bottom: 2.6rem;
}

.meta-key {
  margin-bottom: 0.28rem;
  color: var(--ink-muted);
  font-family: var(--ui-mono);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.meta-val {
  color: var(--ink-soft);
  font-family: var(--ui-sans);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
}

.btn-view {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.9rem;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: var(--ui-mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn-view::after {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: width 350ms ease;
}

.btn-view:hover::after {
  width: 54px;
}

.right-content {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--slide-color);
}

.image-frame {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 80%;
  overflow: hidden;
  background: var(--slide-color);
  box-shadow: 0 36px 100px rgba(30, 27, 24, 0.16);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.14), transparent 62%);
  pointer-events: none;
}

.project-floor-plan .right-content {
  isolation: isolate;
}

.project-floor-plan .right-content::before {
  display: none;
}

.project-floor-plan .right-content::after {
  display: none;
}

.project-floor-plan .image-frame {
  width: 80%;
  height: 80%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.project-floor-plan .image-frame img {
  object-fit: contain;
  border: 0;
  background: transparent;
  filter: contrast(1.03) saturate(0.96);
}

.project-floor-plan .photo-overlay {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 38%),
    linear-gradient(to top, rgba(30, 27, 24, 0.1), transparent 26%);
}

.spec-tag {
  position: absolute;
  right: 1.5rem;
  bottom: 1.6rem;
  z-index: 10;
  color: var(--ink-muted);
  font-family: var(--ui-mono);
  font-size: 0.48rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
}

.p0-left,
.p0-right { background: #8b7e72; }
.p1-left,
.p1-right { background: #5e6668; }
.p2-left,
.p2-right { background: #9e8578; }
.p3-left,
.p3-right { background: #7a6060; }
.p4-left,
.p4-right { background: #7a6e58; }

.counter {
  position: fixed;
  top: 50%;
  left: 2.4vw;
  z-index: 400;
  transform: translateY(-50%);
  pointer-events: none;
}

.counter-big {
  color: rgba(5, 5, 5, 0.22);
  font-family: var(--ui-mono);
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1;
}

.counter-small {
  margin-top: 0.3rem;
  color: var(--ink-muted);
  font-family: var(--ui-mono);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.pagination {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  z-index: 400;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-faint);
  transition: background 400ms, transform 400ms;
}

.dot.active {
  background: var(--ink);
  transform: scale(1.4);
}

.scroll-hint {
  position: fixed;
  right: 3.5vw;
  bottom: 1.9rem;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}

.scroll-hint span {
  color: var(--ink-muted);
  font-family: var(--ui-mono);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.arrow-line {
  position: relative;
  width: 36px;
  height: 1px;
  overflow: hidden;
  background: var(--ink-faint);
}

.arrow-line::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--ink);
  animation: arrowLine 2.8s ease-in-out infinite;
  content: "";
}

@keyframes arrowLine {
  0% { left: -100%; }
  50% { left: 0; }
  100% { left: 100%; }
}

@media (max-width: 760px) {
  html,
  body {
    min-height: 100%;
    overflow: hidden;
  }

  body {
    cursor: auto;
    -webkit-tap-highlight-color: transparent;
  }

  button,
  a {
    cursor: pointer;
  }

  #cur,
  #cur-ring,
  .divider {
    display: none;
  }

  .nav-center {
    display: none;
  }

  nav {
    height: 64px;
    padding: 0 1rem;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: auto;
  }

  .nav-logo {
    left: 50%;
  }

  .nav-logo-mark {
    width: 30px;
    height: 30px;
  }

  .nav-logo-text {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
  }

  .nav-right {
    gap: 0.72rem;
  }

  .nav-like-btn {
    min-width: 50px;
    height: 28px;
    gap: 0.35rem;
    padding: 0 0.65rem;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.52rem;
  }

  .nav-profile-btn {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }

  .auth-overlay {
    align-items: end;
    padding: 0;
  }

  .auth-card {
    width: 100%;
    max-height: 88vh;
    padding: 2rem 1.15rem 1.5rem;
  }

  .auth-card h2 {
    font-size: 2rem;
  }

  .auth-field-grid {
    gap: 0.75rem;
  }

  .auth-phone-field {
    grid-template-columns: 105px 1fr;
    gap: 0.5rem;
  }

  .nav-menu-btn {
    width: 20px;
    height: 28px;
    align-items: flex-end;
    justify-content: center;
    transition: transform 240ms ease;
  }

  .nav-menu-btn span {
    transition: transform 240ms ease, opacity 200ms ease, width 240ms ease;
  }

  nav.menu-open .nav-menu-btn span:first-child {
    width: 100%;
    transform: translateY(5px) rotate(42deg);
  }

  nav.menu-open .nav-menu-btn span:nth-child(2) {
    opacity: 0;
    width: 100%;
  }

  nav.menu-open .nav-menu-btn span:last-child {
    width: 100%;
    transform: translateY(-5px) rotate(-42deg);
  }

  .mobile-menu {
    position: absolute;
    top: 58px;
    right: 0.85rem;
    left: 0.85rem;
    z-index: 520;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(5, 5, 5, 0.14);
    background: rgba(238, 232, 223, 0.92);
    box-shadow: 0 28px 70px rgba(5, 5, 5, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 240ms ease, transform 240ms ease;
    backdrop-filter: blur(22px);
  }

  nav.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu .nav-item {
    display: flex;
    min-height: 54px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(5, 5, 5, 0.1);
    color: var(--ink);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    padding: 0 1rem;
  }

  .mobile-menu .nav-item:last-child {
    border-bottom: 0;
  }

  .mobile-menu .nav-item svg {
    order: 2;
    width: 16px;
    height: 16px;
    opacity: 0.72;
  }

  .panel {
    flex-direction: column;
  }

  .pane-left,
  .pane-right {
    left: 0;
    right: 0;
    width: 100%;
  }

  .pane-left {
    top: 0;
    bottom: auto;
    height: 52%;
  }

  .pane-right {
    top: 52%;
    height: 48%;
  }

  .left-content {
    justify-content: flex-end;
    padding: 5.2rem 1.15rem 1.5rem;
  }

  .ghost-num {
    right: -0.08em;
    bottom: -0.13em;
    font-size: 52vw;
    opacity: 0.42;
  }

  .label {
    margin-bottom: 0.95rem;
    font-size: 0.5rem;
    letter-spacing: 0.18em;
  }

  .project-title {
    max-width: 92%;
    margin-bottom: 0.9rem;
    font-size: clamp(2.35rem, 13vw, 4rem);
    line-height: 0.96;
  }

  .project-desc {
    max-width: none;
    margin-bottom: 1rem;
    font-size: clamp(0.88rem, 3.7vw, 1rem);
    line-height: 1.52;
  }

  .meta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.15rem;
  }

  .meta-key {
    font-size: 0.46rem;
    letter-spacing: 0.14em;
  }

  .meta-val {
    font-size: 0.74rem;
  }

  .btn-view {
    font-size: 0.52rem;
    letter-spacing: 0.13em;
  }

  .btn-view::after {
    width: 24px;
  }

  .right-content {
    align-items: flex-start;
    padding-top: 0.4rem;
  }

  .image-frame {
    width: min(84vw, 390px);
    height: min(37vh, 330px);
    box-shadow: 0 22px 56px rgba(5, 5, 5, 0.16);
  }

  .project-floor-plan .right-content {
    align-items: center;
    padding-top: 0;
  }

  .project-floor-plan .right-content::before {
    inset: 8% 9%;
    background-size: 24px 24px;
  }

  .project-floor-plan .image-frame {
    width: min(84vw, 390px);
    height: min(37vh, 330px);
    padding: 0;
    box-shadow: none;
  }

  .spec-tag {
    right: 0.75rem;
    bottom: 1.1rem;
    font-size: 0.42rem;
    letter-spacing: 0.14em;
  }

  .counter {
    top: auto;
    bottom: 0.95rem;
    left: 1rem;
    transform: none;
  }

  .counter-big {
    font-size: 1.15rem;
  }

  .counter-small {
    font-size: 0.42rem;
  }

  .pagination {
    bottom: 1.15rem;
    gap: 0.42rem;
  }

  .dot {
    width: 4px;
    height: 4px;
  }

  .scroll-hint {
    right: 1rem;
    bottom: 1.02rem;
    gap: 0.5rem;
  }

  .scroll-hint span {
    font-size: 0.43rem;
    letter-spacing: 0.14em;
  }

  .arrow-line {
    width: 25px;
  }
}

@media (max-width: 380px) {
  .left-content {
    padding-top: 4.65rem;
    padding-bottom: 1.2rem;
  }

  .project-title {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }

  .project-desc {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .meta-row {
    margin-bottom: 0.85rem;
  }

  .image-frame {
    width: 82vw;
    height: 34vh;
  }

  .project-floor-plan .image-frame {
    width: 82vw;
    height: 34vh;
  }
}
