
:root {
  --ink: #151714;
  --ink-soft: #30332e;
  --ivory: #f4f0e8;
  --paper: #fbf9f4;
  --brass: #b89a62;
  --line: rgba(21, 23, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 19px clamp(24px, 5vw, 76px);
  color: white;
  background: #111714;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-monogram {
  display: grid;
  width: 50px;
  height: 34px;
  place-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  border: 1px solid currentColor;
}

.brand-name {
  font-size: 10px;
  font-weight: 700;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar nav > a:not(.nav-cta) {
  opacity: 0.76;
  transition: opacity 180ms ease;
}

.topbar nav > a:not(.nav-cta):hover {
  opacity: 1;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: white;
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 92px);
  min-height: max(720px, calc(100svh - 92px));
  place-items: end start;
  overflow: hidden;
  background: #20211f;
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  animation: heroReveal 1.2s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 12, 10, 0.72) 0%, rgba(10, 12, 10, 0.36) 48%, rgba(10, 12, 10, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 9, 8, 0.66) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 48px));
  margin: 0 0 clamp(76px, 10vh, 118px) clamp(24px, 7vw, 112px);
}

.eyebrow {
  margin: 0 0 22px;
  color: #ddd1b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8b7349;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 6.6vw, 102px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-footer {
  display: flex;
  max-width: 760px;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(42px, 7vh, 74px);
}

.hero-footer > div {
  display: grid;
  gap: 7px;
}

.price-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 400;
}

.primary-button {
  display: inline-flex;
  min-width: 206px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 20px;
  color: var(--ink);
  background: var(--ivory);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

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

.scroll-hint {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 68px);
  bottom: 42px;
  display: grid;
  justify-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.62);
}

.stats {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1120px, calc(100% - 48px));
  grid-template-columns: repeat(4, 1fr);
  margin: -34px auto 0;
  padding: 28px 10px;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 16px 50px rgba(23, 25, 22, 0.12);
}

.stats div {
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 8px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
}

.stats span {
  color: #72766e;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-shell {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.about {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(42px, 8vw, 124px);
  padding-top: clamp(110px, 14vw, 190px);
  padding-bottom: clamp(100px, 12vw, 160px);
}

.section-kicker {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-top: 5px;
  color: #6d716a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--brass);
}

.section-kicker p {
  margin: 0;
}

.section-kicker p::before {
  display: inline-block;
  width: 38px;
  height: 1px;
  margin: 0 12px 3px 0;
  background: currentColor;
  content: "";
}

.about-copy h2,
.gallery-heading h2,
.investment h2,
.feature-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

.about-copy h2 {
  max-width: 870px;
}

.copy-columns {
  display: grid;
  max-width: 860px;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 5vw, 72px);
  margin-top: 54px;
  color: #656961;
  font-size: 15px;
  line-height: 1.85;
}

.copy-columns p {
  margin: 0;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) 1.22fr;
  min-height: 670px;
  color: white;
  background: var(--ink);
}

.feature-intro {
  display: grid;
  align-content: end;
  padding: clamp(48px, 7vw, 108px);
  background:
    linear-gradient(0deg, rgba(14, 15, 13, 0.94), rgba(14, 15, 13, 0.12)),
    url("../images/hero.png") center / cover;
}

.feature-intro h2 {
  max-width: 440px;
  font-size: clamp(42px, 5vw, 72px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.feature-grid article {
  display: flex;
  min-height: 335px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 4.4vw, 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 220ms ease;
}

.feature-grid article:hover {
  background: rgba(255, 255, 255, 0.04);
}

.feature-grid article > span {
  margin-bottom: auto;
  color: var(--brass);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.feature-grid h3 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

.feature-grid p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.65;
}

.gallery-section {
  padding: clamp(100px, 12vw, 164px) 0 0;
  color: white;
  background: #20221f;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(42px, 8vw, 124px);
  margin-bottom: 68px;
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.48);
}

.gallery-heading h2 {
  max-width: 720px;
}

.gallery-instruction {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.photo-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 18vw;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.photo-card {
  position: relative;
  min-height: 220px;
  padding: 0;
  overflow: hidden;
  border: 0;
  cursor: zoom-in;
  background: #363934;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.photo-card:hover img {
  transform: scale(1.035);
  filter: brightness(0.78);
}

.photo-1,
.photo-5 {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-3,
.photo-7 {
  grid-column: span 2;
}

.expand-mark {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.photo-card:hover .expand-mark {
  opacity: 1;
  transform: translateY(0);
}

.investment {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(50px, 9vw, 138px);
  align-items: center;
  padding-top: clamp(100px, 13vw, 170px);
  padding-bottom: clamp(100px, 13vw, 170px);
}

.investment-copy > p:last-child {
  max-width: 650px;
  margin: 34px 0 0;
  color: #676b63;
  font-size: 15px;
  line-height: 1.8;
}

.investment-card {
  display: grid;
  padding: clamp(34px, 5vw, 62px);
  color: white;
  background: var(--ink);
}

.investment-card > span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.investment-card strong {
  margin: 22px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.investment-card small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.investment-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding: 18px 0 5px;
  color: #e2d3b5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 40px;
  padding: 58px clamp(24px, 6vw, 90px);
  color: white;
  background: #111210;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

footer > div {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

footer > a:last-child {
  justify-self: end;
  color: #d9c9aa;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 15;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 13px 12px 18px;
  color: white;
  background: #1e6d43;
  border-radius: 999px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  background: #175c37;
  transform: translateY(-2px);
}

.floating-whatsapp b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #1e6d43;
  background: white;
  border-radius: 50%;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 60px 90px;
  color: white;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 8, 0.96);
  backdrop-filter: blur(8px);
}

.lightbox > img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.36);
  animation: lightboxIn 220ms ease both;
}

.lightbox button {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.lightbox button:hover {
  color: var(--ink);
  background: white;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 27px;
}

.lightbox-nav {
  top: 50%;
  width: 46px;
  height: 62px;
  font-size: 21px;
  transform: translateY(-50%);
}

.lightbox-previous {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-count {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: 50%;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 920px) {
  .topbar nav > a:not(.nav-cta) {
    display: none;
  }

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

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-intro {
    min-height: 520px;
  }

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

  .photo-grid {
    grid-auto-rows: 25vw;
    grid-template-columns: repeat(3, 1fr);
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  footer > div {
    display: none;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 76px;
    padding: 15px 20px;
  }

  .brand-monogram {
    width: 45px;
    height: 31px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 9px;
  }

  .hero {
    min-height: calc(100vh - 76px);
    min-height: max(700px, calc(100svh - 76px));
  }

  .hero-image {
    object-position: 56% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 12, 10, 0.61), rgba(10, 12, 10, 0.18)),
      linear-gradient(0deg, rgba(8, 9, 8, 0.88) 0%, rgba(8, 9, 8, 0.12) 68%);
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px 82px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-footer {
    display: grid;
    gap: 26px;
    margin-top: 38px;
  }

  .primary-button {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }

  .stats {
    width: calc(100% - 28px);
    grid-template-columns: repeat(2, 1fr);
    margin-top: -22px;
    padding: 13px 0;
  }

  .stats div {
    padding: 16px 8px;
  }

  .stats div:nth-child(2) {
    border-right: 0;
  }

  .stats div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .about {
    padding-top: 102px;
    padding-bottom: 98px;
  }

  .about-copy h2,
  .gallery-heading h2,
  .investment h2,
  .feature-intro h2 {
    font-size: 44px;
  }

  .copy-columns {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .feature-intro {
    min-height: 480px;
    padding: 38px 24px;
  }

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

  .feature-grid article {
    min-height: 255px;
    padding: 30px 24px;
  }

  .gallery-section {
    padding-top: 94px;
  }

  .gallery-heading {
    margin-bottom: 42px;
  }

  .photo-grid {
    grid-auto-rows: 45vw;
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-card {
    min-height: 150px;
  }

  .photo-1,
  .photo-5 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .photo-3,
  .photo-7 {
    grid-column: span 1;
  }

  .expand-mark {
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    opacity: 1;
    transform: none;
  }

  .investment {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .investment-card {
    padding: 34px 24px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 48px 20px 104px;
  }

  footer > a:last-child {
    justify-self: start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .lightbox {
    padding: 72px 12px;
  }

  .lightbox > img {
    max-height: calc(100vh - 144px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;
    width: 50px;
    height: 44px;
    transform: none;
  }

  .lightbox-previous {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }

  .lightbox-count {
    bottom: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
