:root {
  --bg: #0f1f1a;
  --panel: #132722;
  --panel-2: #183129;
  --text: #f3efe6;
  --text-soft: #e7dfcf;
  --muted: #d2c8b8;
  --muted-2: #b6ad9f;
  --line: rgba(231, 223, 207, .12);
  --gold: #c8a96a;
  --gold-soft: rgba(200, 169, 106, .16);
  --shadow: 0 30px 80px rgba(0,0,0,.30);
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(200,169,106,.06), transparent 30%),
    linear-gradient(180deg, #12241e 0%, var(--bg) 28%, #10211c 100%);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 6rem 0; }
.eyebrow, .section-label, .address, .specs {
  text-transform: uppercase;
  letter-spacing: .24em;
}
.eyebrow, .section-label {
  color: var(--gold);
  font-size: .76rem;
}
.address, .specs {
  color: var(--muted-2);
  font-size: .77rem;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: .96;
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(3.6rem, 10vw, 7.1rem);
  max-width: 10ch;
  text-shadow: 0 8px 30px rgba(0,0,0,.22);
}
h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  max-width: 12ch;
}
h3 { font-size: 1.56rem; }
p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}
.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,16,13,.36), rgba(6,16,13,.62)),
    linear-gradient(to right, rgba(5,14,11,.76), rgba(5,14,11,.24));
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
.subhead {
  max-width: 38rem;
  font-size: 1.17rem;
  margin-top: 1.3rem;
  color: var(--text-soft);
}
.address { margin-top: 1.5rem; }
.price-block {
  margin-top: 2.1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(231,223,207,.18);
  max-width: 58rem;
}
.price {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  font-weight: 600;
  color: var(--text);
}
.specs {
  margin-top: .8rem;
  max-width: 60rem;
  line-height: 1.9;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-size: .83rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
  backdrop-filter: blur(8px);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}
.btn-gold {
  background: var(--gold);
  color: #10211c;
}
.btn-outline {
  border-color: rgba(231,223,207,.24);
  background: rgba(243,239,230,.04);
}
.intro {
  border-bottom: 1px solid var(--line);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: start;
}
.highlights {
  background: linear-gradient(to bottom, rgba(24,49,41,.8), rgba(15,31,26,.92));
  border-bottom: 1px solid var(--line);
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.card {
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(243,239,230,.04), rgba(243,239,230,.02));
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}
.card span {
  width: 3rem;
  height: 3px;
  background: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.card h3 {
  margin-bottom: .65rem;
  color: var(--text);
}
.feature {
  display: grid;
  gap: 2rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
  padding: 2.2rem 0;
}
.feature-grid img,
.outdoor-gallery img {
  border-radius: 1.7rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature-grid .text {
  padding: 1rem;
}
.feature-grid h2,
.outdoor-text h2,
.contact h2,
.intro h2 {
  margin: .85rem 0 1rem;
}
.outdoor {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(200,169,106,.07), rgba(19,39,34,.32));
}
.outdoor-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}
.outdoor-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-box {
  background: linear-gradient(180deg, rgba(243,239,230,.045), rgba(243,239,230,.02));
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 2rem;
  box-shadow: var(--shadow);
}
.agent {
  padding: 1.6rem;
  border-radius: 1.5rem;
  background: rgba(243,239,230,.025);
  border: 1px solid var(--line);
}
.agent-name {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .4rem;
}
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition: opacity 1s ease, transform 1s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@media (max-width: 980px) {
  .intro-grid, .feature-grid, .feature-grid.alt, .outdoor-wrap, .contact-box {
    grid-template-columns: 1fr;
  }
  .cards { grid-template-columns: 1fr 1fr; }
  h1 { max-width: 12ch; }
}
@media (max-width: 640px) {
  .section { padding: 4.2rem 0; }
  .cards, .outdoor-gallery { grid-template-columns: 1fr; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  .card, .agent, .contact-box { padding: 1.25rem; }
}


.explore {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(200,169,106,.08), transparent 24%),
    linear-gradient(180deg, rgba(243,239,230,.02), rgba(243,239,230,.01));
}
.explore-head {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.explore-note {
  max-width: 38rem;
}
.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 42vw);
  gap: 1.25rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(200,169,106,.45) rgba(243,239,230,.06);
}
.gallery-rail::-webkit-scrollbar {
  height: 10px;
}
.gallery-rail::-webkit-scrollbar-track {
  background: rgba(243,239,230,.06);
  border-radius: 999px;
}
.gallery-rail::-webkit-scrollbar-thumb {
  background: rgba(200,169,106,.45);
  border-radius: 999px;
}
.gallery-card {
  scroll-snap-align: start;
  min-height: 100%;
  border-radius: 1.8rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(243,239,230,.05), rgba(243,239,230,.02));
  box-shadow: var(--shadow);
  padding: 1.15rem;
  display: grid;
  gap: 1rem;
}
.gallery-copy h3 {
  color: var(--text);
  margin: .55rem 0 .7rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.02;
}
.gallery-mosaic {
  display: grid;
  gap: .8rem;
}
.gallery-mosaic.two { grid-template-columns: 1fr 1fr; }
.gallery-mosaic.three,
.gallery-mosaic.four,
.gallery-mosaic.six { grid-template-columns: 1fr 1fr; }
.gallery-mosaic.six { grid-template-columns: 1fr 1fr 1fr; }
.gallery-shot {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}
.gallery-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.08));
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-shot:hover::after { opacity: 1; }
.gallery-shot img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-shot:hover img {
  transform: scale(1.035);
}
.gallery-shot.wide {
  grid-column: 1 / -1;
}
.gallery-shot.wide img {
  min-height: 260px;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,10,8,.86);
  display: grid;
  place-items: center;
  padding: 2rem;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-image {
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  border-radius: 1.4rem;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 980px) {
  .explore-head { grid-template-columns: 1fr; }
  .gallery-rail { grid-auto-columns: minmax(78vw, 78vw); }
  .gallery-mosaic.six { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .gallery-rail { grid-auto-columns: 88vw; }
  .gallery-mosaic.two,
  .gallery-mosaic.three,
  .gallery-mosaic.four,
  .gallery-mosaic.six { grid-template-columns: 1fr; }
  .gallery-shot.wide { grid-column: auto; }
  .gallery-shot img,
  .gallery-shot.wide img { min-height: 200px; }

}

.explore { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gallery-preview {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(243,239,230,.03), rgba(243,239,230,.01));
}
.gallery-preview-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(243,239,230,.04), rgba(243,239,230,.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.gallery-preview-copy h2 { margin: .85rem 0 1rem; }
.gallery-preview-stack {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
}
.gallery-preview-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1.4rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.gallery-preview-stack img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}
.subhero {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top, rgba(200,169,106,.08), transparent 35%),
    linear-gradient(180deg, rgba(19,39,34,.95), rgba(15,31,26,1));
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: .92rem;
}
.gallery-title {
  font-size: clamp(3rem, 7vw, 5.4rem);
  max-width: 10ch;
}
.gallery-subhead { max-width: 44rem; }
.gallery-page { padding-top: 3rem; }
.gallery-page-grid {
  display: grid;
  gap: 3rem;
}
.photo-section {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(243,239,230,.04), rgba(243,239,230,.02));
  box-shadow: var(--shadow);
}
.photo-section-head {
  max-width: 58rem;
  margin-bottom: 1.6rem;
}
.photo-section-head h2 { margin: .8rem 0 1rem; max-width: 14ch; }
.photo-grid {
  display: grid;
  gap: 1rem;
}
.photo-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.photo-card {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}
.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform .45s ease;
}
.photo-card:hover img { transform: scale(1.03); }
.photo-card.large img { min-height: 460px; }
.photo-card.tall img { min-height: 560px; }
.photo-card.wide { grid-column: 1 / -1; }
.photo-card.wide img { min-height: 420px; }
.gallery-rail {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
.gallery-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 1.4rem;
  padding: 1.5rem;
  border-radius: 1.8rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(243,239,230,.035), rgba(243,239,230,.018));
  box-shadow: var(--shadow);
}
.gallery-copy h3 { color: var(--text); margin: .8rem 0 1rem; }
.gallery-mosaic {
  display: grid;
  gap: .75rem;
}
.gallery-mosaic.two { grid-template-columns: repeat(2, 1fr); }
.gallery-mosaic.three { grid-template-columns: repeat(2, 1fr); }
.gallery-mosaic.four { grid-template-columns: repeat(2, 1fr); }
.gallery-mosaic.six { grid-template-columns: repeat(3, 1fr); }
.gallery-shot {
  appearance: none;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-shot img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}
.gallery-shot.wide { grid-column: 1 / -1; }
.gallery-shot.wide img { min-height: 320px; }
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(5, 10, 8, .88);
  z-index: 999;
}
.lightbox.open { display: flex; }
.lightbox-image {
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 25px 80px rgba(0,0,0,.45);
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 980px) {
  .intro-grid, .feature-grid, .feature-grid.alt, .outdoor-wrap, .contact-box, .gallery-preview-wrap, .gallery-card {
    grid-template-columns: 1fr;
  }
  .cards { grid-template-columns: 1fr 1fr; }
  .gallery-preview-stack,
  .gallery-mosaic.six,
  .gallery-mosaic.four,
  .gallery-mosaic.two,
  .photo-grid.cols-2 {
    grid-template-columns: 1fr;
  }
  .photo-card.wide,
  .gallery-shot.wide { grid-column: auto; }
  .photo-card img,
  .photo-card.large img,
  .photo-card.tall img,
  .photo-card.wide img,
  .gallery-shot img,
  .gallery-shot.wide img { min-height: 260px; }
}
@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .cards { grid-template-columns: 1fr; }
  .gallery-preview-wrap, .photo-section, .contact-box { padding: 1.3rem; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
}
