*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0c0b09;
  --cream: #f1ece3;
  --gold: #d8c2ad;
  --gold-dim: rgba(216,194,173,.4);
  --cream-dim: rgba(241,236,227,.6);
  --border: rgba(216,194,173,.12);
  --dark2: #13120f;
  --dark3: #1a1710;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--cream);
  min-height: 100vh;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: #c2ad99; }

/* ── NAV ── */
nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  justify-self: start;
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-name {
  font-family: 'Petrona', serif;
  font-size: 27px;
  letter-spacing: .02em;
  color: var(--cream);
  font-weight: 500;
}
.nav-logo-sub {
  font-size: 10px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: rgba(216,194,173,.55);
  margin-top: 6px;
  padding-left: 3px;
}
.nav-links {
  justify-self: center;
  display: flex;
  gap: 44px;
  font-size: 15px;
  list-style: none;
}
.nav-links a { color: rgba(241,236,227,.7); }
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  justify-self: end;
  padding: 13px 28px;
  border: 1px solid rgba(216,194,173,.3);
  border-radius: 6px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-cta:hover {
  background: rgba(216,194,173,.08);
  color: var(--gold);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(12,11,9,.55) 0%,
    rgba(12,11,9,.35) 45%,
    rgba(12,11,9,.75) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.hero-title {
  font-family: 'Petrona', serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 1.05;
  font-weight: 400;
  color: #f8f4ec;
  letter-spacing: .01em;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-location {
  font-size: 14px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(248,244,236,.75);
  margin-top: 24px;
  font-weight: 500;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  background: var(--gold);
  color: #000;
  padding: 10px 32px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── SECTIONS COMMON ── */
.section-label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-family: 'Petrona', serif;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 400;
}
.section-title .accent { color: var(--gold); }
.section-body {
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--cream-dim);
}

/* ── ACCROCHE ── */
.accroche {
  background: var(--bg);
  padding: 88px 40px;
  border-bottom: 1px solid rgba(216,194,173,.08);
}
.accroche-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.accroche-inner .section-title { margin-bottom: 24px; }

/* ── GALERIE ── */
.galerie {
  background: var(--bg);
  padding: 0 0 96px;
}
.galerie-track-wrap {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}
.photo-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.photo-track::-webkit-scrollbar { display: none; }
.photo-card {
  flex: 0 0 clamp(300px, 44%, 470px);
  scroll-snap-align: start;
  min-height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background: repeating-linear-gradient(45deg,
    #151310, #151310 12px,
    #1b1813 12px, #1b1813 24px);
  border: 1px solid rgba(216,194,173,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.photo-label {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(216,194,173,.35);
  text-transform: uppercase;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(216,194,173,.3);
  background: rgba(12,11,9,.78);
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
  transition: background .2s;
}
.carousel-btn:hover { background: rgba(216,194,173,.12); }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

/* ── LOTS ── */
.lots-section {
  background: #f3eee7;
  color: #0c0b09;
  padding: 88px 40px;
}
.lots-inner {
  max-width: 840px;
  margin: 0 auto;
}
.map-placeholder {
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(12,11,9,.12);
  background: repeating-linear-gradient(45deg,
    #e7e1d7, #e7e1d7 14px,
    #efeae1 14px, #efeae1 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}
.map-pin {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  background: #0c0b09;
  transform: rotate(-45deg);
  box-shadow: 0 6px 14px rgba(0,0,0,.2);
}
.map-label {
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(12,11,9,.4);
  text-transform: uppercase;
  text-align: center;
  padding: 0 20px;
}
.lots-section .section-label { color: rgba(12,11,9,.35); }
.lots-section .section-title { text-align: center; margin-bottom: 0; }
.accordion { margin-top: 40px; }
.accordion-item { border-top: 1px solid rgba(12,11,9,.14); }
.accordion-item:last-child::after {
  content: '';
  display: block;
  border-top: 1px solid rgba(12,11,9,.14);
}
.accordion-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
}
.accordion-left {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.accordion-nom {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
  color: #0c0b09;
}
.accordion-resume {
  font-size: 13px;
  color: rgba(12,11,9,.45);
  font-weight: 400;
}
.accordion-icon {
  font-size: 26px;
  font-weight: 300;
  color: #0c0b09;
  line-height: 1;
  transition: transform .3s;
  flex-shrink: 0;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.accordion-body.open {
  max-height: 2000px;
}
.accordion-body-inner { padding: 4px 4px 24px; }
.lot-row {
  padding: 16px 2px;
  border-bottom: 1px dotted rgba(12,11,9,.18);
  font-size: 16px;
  color: #0c0b09;
  line-height: 1.5;
}
.lot-row:last-child { border-bottom: none; }
.lot-link {
  color: rgba(12,11,9,.42);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 5px;
  font-size: 15px;
}
.lots-cta-wrap {
  text-align: center;
  margin-top: 40px;
}
.btn-dark {
  padding: 15px 40px;
  background: #0c0b09;
  color: #f1ece3;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity .2s;
}
.btn-dark:hover { opacity: .85; }

/* ── PTZ ── */
.ptz-section {
  background: var(--bg);
  padding: 88px 40px;
  border-bottom: 1px solid rgba(216,194,173,.08);
}
.ptz-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.ptz-inner .section-title { margin-bottom: 24px; }
.btn-gold {
  padding: 16px 40px;
  background: var(--gold);
  color: #0c0b09;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: opacity .2s;
}
.btn-gold:hover { opacity: .88; }
.btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ── FORM ── */
.form-band {
  background: var(--dark2);
  padding: 88px 40px;
}
.form-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.form-title {
  font-family: 'Petrona', serif;
  font-size: clamp(28px, 3.5vw, 34px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.form-sub {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 28px;
}
.form-row {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 10px;
  flex-wrap: wrap;
}
.form-input {
  flex: 1;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 5px;
  border: 1px solid rgba(216,194,173,.12);
  background: var(--dark3);
  color: var(--cream);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: rgba(216,194,173,.4); }
.form-input::placeholder { color: rgba(241,236,227,.3); }
.form-textarea {
  flex: 1;
  min-width: 100%;
  min-height: 80px;
  resize: vertical;
  padding: 14px 16px;
  border-radius: 5px;
  border: 1px solid rgba(216,194,173,.12);
  background: var(--dark3);
  color: var(--cream);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.form-textarea:focus { border-color: rgba(216,194,173,.4); }
.form-textarea::placeholder { color: rgba(241,236,227,.3); }
.form-submit {
  background: var(--gold);
  color: #0c0b09;
  border: none;
  padding: 16px 44px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  transition: opacity .2s;
}
.form-submit:hover { opacity: .88; }

/* ── FOOTER ── */
footer { background: var(--bg); }
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 48px 26px;
}
.footer-cols {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 14px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col-head {
  font-weight: 600;
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.footer-col a { color: rgba(255,255,255,.4); }
.footer-col a:hover { color: rgba(255,255,255,.7); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 36px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.footer-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  font-size: 14px;
}
.footer-made {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin-left: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
    padding: 18px 24px;
  }
  .nav-links { display: none; }
  .nav-cta { font-size: 12px; padding: 10px 16px; }
  .hero-title { font-size: clamp(36px, 10vw, 60px); }
  .accroche, .ptz-section, .form-band, .lots-section { padding: 60px 24px; }
  .galerie-track-wrap { padding: 0 16px; }
  .carousel-btn { display: none; }
  .footer-inner { padding: 48px 24px 24px; }
  .footer-cols { flex-direction: column; }
  .footer-copy { position: static; transform: none; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-made { margin-left: 0; }
}
