:root {
  --ink: #1d2b24;
  --muted: #5c6b63;
  --brand: #2f6b4f;       /* country green */
  --brand-dark: #234f3b;
  --accent: #c9772f;      /* warm clay */
  --line: #e3e8e4;
  --bg: #f7f6f2;
  --card: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Inter", system-ui, -apple-system, sans-serif; color: var(--ink);
  background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
h1, h2 { line-height: 1.12; }
h1, h2, .price-main { font-family: "Fraunces", Georgia, "Times New Roman", serif; font-weight: 600; }

/* Hero */
.hero { background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; }
.hero-inner { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem 3.5rem; text-align: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; opacity: .85; margin: 0 0 .5rem; }
.hero h1 { margin: 0; font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.01em; }
.addr { margin: .4rem 0 1.3rem; opacity: .9; font-size: 1.05rem; }
.price { display: inline-flex; align-items: center; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.price-main { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; }
.price-tag { background: var(--accent); color: #fff; padding: .25rem .7rem; border-radius: 999px; font-weight: 600; font-size: .85rem; }
.facts { list-style: none; display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  padding: 0; margin: 1.6rem 0 1.8rem; }
.facts li { background: rgba(255,255,255,.12); border-radius: 12px; padding: .7rem 1.2rem; min-width: 92px; }
.facts strong { display: block; font-size: 1.5rem; }
.facts span { font-size: .8rem; opacity: .85; text-transform: uppercase; letter-spacing: .05em; }

/* Buttons */
.btn { display: inline-block; padding: .8rem 1.4rem; border-radius: 10px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: 2px solid transparent; font-size: 1rem; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #b3651f; }
.btn-outline { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn-outline:hover { background: rgba(47,107,79,.08); }
.btn-call { background: var(--brand); color: #fff; }
.btn-call:hover { background: var(--brand-dark); }
.hero .btn-primary { box-shadow: 0 6px 18px rgba(0,0,0,.18); }

/* Sections */
main { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 2.5rem 0; border-bottom: 1px solid var(--line); }
.section h2 { font-size: 1.6rem; margin: 0 0 1rem; color: var(--brand-dark); }
.lead { font-size: 1.12rem; color: var(--ink); max-width: 70ch; }
.kv { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 1.2rem; }
.kv div { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 1rem 1.1rem; }
.kv span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: .25rem; }

/* Gallery */
/* Carousel - click/swipe through, click to view full size */
.carousel { display: flex; align-items: center; gap: .5rem; }
.car-stage { flex: 1; position: relative; background: #14201a; border-radius: 16px; overflow: hidden;
  aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; cursor: zoom-in;
  box-shadow: 0 6px 22px rgba(0,0,0,.14); }
.car-stage img { width: 100%; height: 100%; object-fit: contain; }
.car-counter { position: absolute; right: 12px; bottom: 12px; background: rgba(0,0,0,.6); color: #fff;
  padding: .25rem .6rem; border-radius: 999px; font-size: .8rem; font-weight: 600; }
.car-arrow { flex: none; width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--brand); color: #fff; font-size: 1.8rem; line-height: 1; box-shadow: 0 2px 8px rgba(0,0,0,.18); }
.car-arrow:hover { background: var(--brand-dark); }
.car-thumbs { position: relative; display: flex; gap: 8px; overflow-x: auto; padding: 12px 2px 4px; scrollbar-width: thin; }
.car-thumb { flex: none; width: 96px; height: 68px; padding: 0; border: 3px solid transparent; border-radius: 8px;
  overflow: hidden; cursor: pointer; background: #ddd; opacity: .7; transition: opacity .2s, border-color .2s; }
.car-thumb img { width: 100%; height: 100%; object-fit: cover; }
.car-thumb:hover { opacity: 1; }
.car-thumb.active { border-color: var(--accent); opacity: 1; }
.car-hint { text-align: center; color: var(--muted); font-size: .85rem; margin: .4rem 0 0; }
@media (max-width: 560px) { .car-arrow { width: 40px; height: 40px; font-size: 1.4rem; } }

/* Features */
.features { columns: 2; column-gap: 2rem; list-style: none; padding: 0; }
.features li { break-inside: avoid; margin-bottom: .7rem; padding-left: 1.6rem; position: relative; }
.features li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }
@media (max-width: 640px) { .features { columns: 1; } }

/* Survey */
.survey-link { display: inline-block; text-decoration: none; color: var(--brand-dark); font-weight: 600; }
.survey-link img { border: 1px solid var(--line); border-radius: 12px; max-width: 720px; margin-bottom: .4rem; }

/* Contact */
.contact { background: var(--card); border-radius: 16px; border: 1px solid var(--line);
  padding: 2rem; margin: 2.5rem 0; }
.contact-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1rem 0 1.5rem; }
.contact-form label { display: block; font-weight: 600; margin-bottom: .9rem; color: var(--muted); font-size: .9rem; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form input, .contact-form textarea { display: block; width: 100%; margin-top: .3rem;
  padding: .6rem .7rem; border: 1px solid var(--line); border-radius: 8px; font: inherit; color: var(--ink); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brand); }
.form-note { color: var(--muted); font-size: .85rem; margin: .6rem 0 0; }

/* Footer */
footer { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 3rem; color: var(--muted); font-size: .9rem; }
.fine { font-size: .8rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); display: flex; align-items: center;
  justify-content: center; flex-direction: column; z-index: 100; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 6px; }
#lb-cap { color: #fff; margin: .8rem; font-size: 1rem; }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255,255,255,.15); color: #fff;
  border: none; font-size: 2rem; cursor: pointer; border-radius: 10px; width: 54px; height: 54px; }
.lb-close { top: 18px; right: 18px; font-size: 1.4rem; }
.lb-prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 14px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.3); }
.lb-counter { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: #fff;
  background: rgba(255,255,255,.15); padding: .25rem .8rem; border-radius: 999px; font-size: .85rem; }
