:root {
  --ink: #1c1d1f;
  --muted: #5f6368;
  --line: #e3e1dd;
  --bg: #ffffff;
  --sand: #f6f4f0;
  --accent: #1f5c4b;
  --accent-ink: #ffffff;
  --radius: 10px;
  --maxw: 860px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2 { line-height: 1.2; letter-spacing: -0.015em; }

img { max-width: 100%; display: block; }

a { color: var(--accent); }

main { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

section { padding-block: 40px; border-top: 1px solid var(--line); }
section:first-child { border-top: none; }
section h2 { font-size: 1.45rem; margin: 0 0 14px; }
section p { margin: 0 0 14px; max-width: 62ch; }

.hero { background: var(--sand); }
.hero-img { width: 100%; height: clamp(220px, 46vw, 460px); object-fit: cover; }
.hero-body { max-width: var(--maxw); margin: 0 auto; padding: 26px 20px 34px; }

.eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1 { margin: 0 0 14px; font-size: clamp(1.6rem, 5.5vw, 2.3rem); }

.rent { margin: 0 0 14px; font-size: 2rem; font-weight: 650; }
.rent .per { font-size: 1rem; font-weight: 400; color: var(--muted); }

.quickfacts {
  display: flex; flex-wrap: wrap; gap: 8px;
  list-style: none; margin: 0 0 14px; padding: 0;
}
.quickfacts li {
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 13px; font-size: 0.9rem;
}

.avail { margin: 0 0 20px; color: var(--muted); }

.cta { display: flex; flex-wrap: wrap; gap: 10px; }
.btn {
  display: inline-block; padding: 12px 22px;
  border: 1px solid var(--accent); border-radius: var(--radius);
  color: var(--accent); background: #fff;
  text-decoration: none; font-weight: 550;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }

.band {
  background: var(--sand); border-top: none;
  margin-inline: -20px; padding-inline: 20px;
}
.band h2 { font-size: 1.15rem; margin-bottom: 8px; }
.band p { margin: 0; color: var(--muted); }

.gallery {
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.shot {
  padding: 0; border: none; background: none; cursor: pointer;
  border-radius: 8px; overflow: hidden; line-height: 0;
}
.shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.shot:first-child { grid-column: 1 / -1; }
.shot:first-child img { aspect-ratio: 16 / 9; }

.specs { margin: 0; display: grid; gap: 0; }
.specs > div {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 11px 0; border-bottom: 1px solid var(--line);
}
.specs dt { color: var(--muted); }
.specs dd { margin: 0; text-align: right; font-weight: 500; }

.note { margin-top: 16px; font-size: 0.9rem; color: var(--muted); }

.bullets { margin: 0 0 16px; padding-left: 20px; }
.bullets li { margin-bottom: 6px; }
.maplink { font-weight: 550; }

form { display: grid; gap: 14px; max-width: 460px; }
label { display: grid; gap: 5px; font-size: 0.9rem; color: var(--muted); }
input, textarea {
  font: inherit; color: var(--ink);
  padding: 11px 12px; border: 1px solid var(--line);
  border-radius: 8px; background: #fff; width: 100%;
}
input:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
textarea { resize: vertical; }
form button {
  font: inherit; font-weight: 600; cursor: pointer;
  padding: 13px 22px; border: none; border-radius: var(--radius);
  background: var(--accent); color: var(--accent-ink);
}
form button[disabled] { opacity: 0.55; cursor: default; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; }
.formnote { margin: 0; font-size: 0.9rem; min-height: 1.4em; }
.formnote.ok { color: var(--accent); }
.formnote.err { color: #a8322a; }

footer {
  border-top: 1px solid var(--line);
  max-width: var(--maxw); margin: 0 auto;
  padding: 28px 20px 48px; color: var(--muted); font-size: 0.9rem;
}
footer p { margin: 0 0 4px; }
.fine { font-size: 0.8rem; }

.lightbox {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(12, 12, 14, 0.94);
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none !important; }
#lbImg { max-width: 94vw; max-height: 82vh; object-fit: contain; }
.lb-cap {
  position: absolute; bottom: 18px; left: 0; right: 0;
  text-align: center; color: #e8e6e2; font-size: 0.9rem; margin: 0; padding: 0 20px;
}
.lightbox button {
  position: absolute; background: rgba(255,255,255,0.12); color: #fff;
  border: none; cursor: pointer; border-radius: 50%;
  width: 46px; height: 46px; font-size: 1.7rem; line-height: 1;
}
.lb-close { top: 14px; right: 14px; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

@media (max-width: 520px) {
  .lb-prev, .lb-next { width: 40px; height: 40px; }
  .cta .btn { flex: 1 1 auto; min-width: 0; text-align: center; padding-inline: 14px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ececea; --muted: #a0a09d; --line: #33343a;
    --bg: #17181b; --sand: #1f2125; --accent: #6cc2a5; --accent-ink: #10231d;
  }
  .quickfacts li, input, textarea, .btn { background: #202227; }
}
