@font-face {
  font-family: 'Marlboro';
  src: url('assets/fonts/Marlboro.ttf') format('truetype');
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050505;
  color: #f5f1e8;
  font-family: 'Inter', sans-serif;
}

.no-scroll {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 22px 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,0.72), rgba(0,0,0,0));
}

.nav-left {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-right {
  display: flex;
  gap: 26px;
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid rgba(245,241,232,0.18);
  background: rgba(12,12,12,0.28);
  color: #f5f1e8;
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-right a {
  color: rgba(245,241,232,0.82);
  text-decoration: none;
  font-size: 0.92rem;
}

.nav-right a:hover {
  color: white;
}

.mobile-menu {
  position: fixed;
  top: 78px;
  left: 22px;
  right: 22px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(245,241,232,0.12);
  background: rgba(8,8,8,0.94);
  box-shadow: 0 18px 60px rgba(0,0,0,0.34);
  backdrop-filter: blur(18px);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #f5f1e8;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
}

.hero {
  height: 100vh;
  background-image: url('assets/packwood-01.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.22), rgba(0,0,0,0.78));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px;
}

.hero h1 {
  margin: 0 auto;
  max-width: 1000px;
  font-family: 'Marlboro', serif;
  font-size: clamp(4.5rem, 10vw, 10rem);
  line-height: 0.9;
  font-weight: normal;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 700px;
  margin-top: 26px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(245,241,232,0.84);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
  justify-content: center;
}


.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 920px);
  margin-top: 42px;
}

.hero-fact {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(245,241,232,0.12);
  background: rgba(8,8,8,0.28);
  backdrop-filter: blur(10px);
}

.hero-fact span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245,241,232,0.58);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-fact strong {
  font-size: 1rem;
  line-height: 1.2;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: #f5f1e8;
  color: #101010;
}

.button.secondary {
  border: 1px solid rgba(245,241,232,0.42);
  color: #f5f1e8;
}

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

.showcase-section {
  padding: 120px 36px 30px;
}

.showcase-section .section-inner {
  max-width: 980px;
}

.showcase-title {
  margin: 18px 0 26px;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.showcase-copy {
  max-width: 900px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(245,241,232,0.68);
}

.section-header--narrow {
  max-width: 920px;
}

.overview-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.overview-placeholder-item,
.embed-shell,
.showing-cta {
  border-radius: 22px;
  border: 1px solid rgba(245,241,232,0.12);
  background: rgba(255,255,255,0.035);
}

.overview-placeholder-item {
  padding: 24px;
}

.overview-placeholder-item span,
.embed-topline span {
  display: block;
  margin-bottom: 10px;
  color: rgba(245,241,232,0.54);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.overview-placeholder-item p,
.embed-topline p,
.showing-cta p {
  margin: 0;
  color: rgba(245,241,232,0.72);
  line-height: 1.7;
}

.alt-section {
  background: rgba(255,255,255,0.02);
}

.thematic-section {
  padding-top: 26px;
}

.thematic-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.section-gallery-toggle {
  display: block;
  margin: 18px auto 0;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,0.22);
  background: transparent;
  color: #f5f1e8;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.thematic-gallery img,
.gallery-placeholder-card {
  min-height: 300px;
  border-radius: 20px;
}

.thematic-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.gallery-placeholder-card,
.location-note,
.opportunity-card,
.investment-panel {
  border-radius: 22px;
  border: 1px solid rgba(245,241,232,0.12);
  background:
    radial-gradient(circle at top left, rgba(143,113,73,0.14), transparent 30%),
    rgba(255,255,255,0.03);
}

.gallery-placeholder-card {
  padding: 24px;
  display: flex;
  align-items: end;
}

.gallery-placeholder-card span {
  color: rgba(245,241,232,0.8);
  font-size: 1rem;
  line-height: 1.45;
}

.thematic-gallery > *:nth-child(n + 7) {
  display: none;
}

.thematic-gallery.expanded > *:nth-child(n + 7) {
  display: block;
}

.residence-layout,
.location-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.residence-gallery-column,
.residence-support,
.location-notes {
  display: grid;
  gap: 16px;
}

.compact-plan img {
  max-height: 420px;
  object-fit: contain;
}

.content-section {
  padding: 76px 36px;
}

.section-header {
  margin-bottom: 34px;
}

.section-label {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.72);
  font-weight: 700;
}

.section-title {
  margin: 18px 0 0;
  font-size: clamp(2.8rem, 4.6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.section-copy {
  max-width: 780px;
  margin-top: 24px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(245,241,232,0.68);
}

.details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.detail-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(245,241,232,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: rgba(245,241,232,0.86);
  font-weight: 600;
}

.detail-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  color: rgba(245,241,232,0.74);
}

.detail-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.responsive-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 22px;
  background: #000;
}

.responsive-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.embed-shell {
  padding: 18px;
  background:
    radial-gradient(circle at top left, rgba(143,113,73,0.12), transparent 22%),
    rgba(255,255,255,0.03);
}

.embed-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
}

.embed-topline p {
  text-align: right;
}

.matterport-shell .responsive-embed {
  border: 1px solid rgba(245,241,232,0.08);
}

.opportunity-grid,
.investment-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.opportunity-card {
  padding: 28px;
}

.opportunity-card strong,
.investment-metric strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.2;
}

.opportunity-card p {
  margin: 14px 0 0;
  color: rgba(245,241,232,0.7);
  line-height: 1.7;
}

.investment-panel {
  padding: 18px;
}

.investment-metric {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.investment-metric span {
  display: block;
  margin-bottom: 10px;
  color: rgba(245,241,232,0.54);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-note {
  padding: 24px;
}

.location-note span {
  display: block;
  margin-bottom: 10px;
  color: rgba(245,241,232,0.54);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-note p {
  margin: 0;
  color: rgba(245,241,232,0.74);
  line-height: 1.7;
}

.map-embed {
  padding-top: 48%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-grid img:first-child {
  grid-column: span 2;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 3;
}

.gallery-image {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.01);
  opacity: 0.92;
}

.see-more-button {
  display: none;
  margin: 22px auto 0;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,0.34);
  background: transparent;
  color: #f5f1e8;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.floorplans-single {
  max-width: 1180px;
}

.floorplans-single img {
  width: 100%;
  border-radius: 18px;
  background: white;
}

.agent-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 1180px;
  padding: 34px;
  border-radius: 22px;
  border: 1px solid rgba(245,241,232,0.14);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.04), transparent 28%),
    rgba(255,255,255,0.04);
  overflow: hidden;
}

.agent-brand {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(245,241,232,0.08);
  background: rgba(10,10,10,0.26);
  backdrop-filter: blur(10px);
}

.agent-brand-logo {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  opacity: 0.92;
}

.agent-photo {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
}

.agent-info h3 {
  margin: 0;
  font-size: 2rem;
}

.agent-info p {
  margin: 10px 0 18px;
  color: rgba(245,241,232,0.65);
}

.agent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.agent-links a {
  display: inline-flex;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,0.2);
  color: #f5f1e8;
  text-decoration: none;
  font-size: 0.92rem;
}

.agent-links a:hover {
  background: rgba(255,255,255,0.08);
}

.showing-cta {
  margin-top: 24px;
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

footer {
  padding: 60px 36px;
  text-align: center;
  color: rgba(245,241,232,0.45);
  border-top: 1px solid rgba(245,241,232,0.08);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.94);
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: none;
  background: rgba(255,255,255,0.08);
  color: white;
  cursor: pointer;
  border-radius: 999px;
}

.lightbox-close {
  top: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  font-size: 2rem;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  font-size: 2rem;
}

.lightbox-prev {
  left: 26px;
}

.lightbox-next {
  right: 26px;
}

@media (max-width: 1100px) {
  .site-nav {
    padding: 18px 22px;
  }

  .nav-left {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .nav-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-overlay {
    padding: 34px;
  }

  .hero-facts,
  .overview-placeholder,
  .thematic-gallery,
  .residence-layout,
  .location-grid,
  .opportunity-grid,
  .investment-panel {
    grid-template-columns: 1fr;
  }

  .showcase-section {
    padding: 90px 22px 0;
  }

  .content-section {
    padding: 60px 22px;
  }

  .showcase-title {
    font-size: 2.65rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .details-grid {
    gap: 10px;
  }

  .detail-card {
    width: 100%;
    border-radius: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(2) {
    grid-column: span 1;
    height: auto;
  }

  .gallery-grid:not(.expanded) img:nth-child(n + 5) {
    display: none;
  }

  .see-more-button {
    display: block;
  }

  .map-embed {
    padding-top: 75%;
  }

  .thematic-gallery:not(.expanded) > *:nth-child(n + 2) {
    display: none;
  }

  .section-gallery-toggle {
    display: block;
  }

  .thematic-gallery.expanded {
    grid-template-columns: repeat(2, 1fr);
  }

  .thematic-gallery.expanded > *:first-child {
    grid-column: 1 / -1;
  }

  .thematic-gallery.expanded > *:first-child.gallery-image {
    min-height: 280px;
    height: 280px;
  }

  .thematic-gallery.expanded > *:nth-child(n + 2).gallery-image {
    min-height: 150px;
    height: 150px;
  }

  .embed-topline,
  .showing-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .embed-topline p {
    text-align: left;
  }

  .agent-card {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 82px;
  }

  .agent-brand {
    top: 18px;
    right: 18px;
    left: auto;
  }

  .agent-links {
    flex-direction: column;
    width: 100%;
  }

  .agent-links a {
    justify-content: center;
  }
}
