:root{
  --bg:#fbf7ef;
  --card:#ffffff;
  --ink:#17221d;
  --muted:#55655d;
  --brand:#0f3b2e;
  --accent:#c9a14a;
  --border:rgba(23,34,29,.12);
  --shadow:0 14px 40px rgba(0,0,0,.10);
  --r:18px;
  --max:1120px;
}
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--ink);
  background:
    radial-gradient(1100px 520px at 8% -10%, rgba(201,161,74,.22), transparent 60%),
    radial-gradient(900px 520px at 92% 10%, rgba(15,59,46,.16), transparent 62%),
    var(--bg);
  line-height:1.55;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 18px; }
header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(251,247,239,.78);
  border-bottom:1px solid rgba(23,34,29,.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{ display:flex; align-items:center; gap:10px; min-width: 220px; }
.logo{
  width:34px; height:34px; border-radius:12px;
  background: conic-gradient(from 210deg, var(--accent), var(--brand), var(--accent));
  box-shadow: var(--shadow);
}
.brandTitle{ font-weight:900; letter-spacing:.2px; }
.brandSub{ font-size:12px; color:var(--muted); font-weight:700; }
nav{ display:flex; gap:2px; align-items:center; }
nav a{
  font-size:14px; color:var(--muted);
  padding:10px 10px;
  border-radius:14px;
}
nav a:hover{ background: rgba(15,59,46,.08); color:var(--ink); }
.actions{ display:flex; gap:10px; align-items:center; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  font-weight:800;
  border:1px solid var(--border);
  background: rgba(255,255,255,.70);
  box-shadow: 0 8px 26px rgba(0,0,0,.08);
  transition: transform .12s ease, background .12s ease;
  white-space:nowrap;
  font-size:14px;
}
.btn:hover{ transform: translateY(-1px); background:#fff; }
.btn.primary{
  background: var(--brand);
  color:#fff;
  border-color: rgba(255,255,255,.18);
}
.btn.primary:hover{ background:#0c3126; }
.badge{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.95);
}
main{ padding-bottom: 22px; }
.hero{ padding:48px 0 10px; }
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.card{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(23,34,29,.10);
  border-radius: calc(var(--r) + 6px);
  box-shadow: var(--shadow);
}
.heroCard{ padding:26px; position:relative; overflow:hidden; }
.heroCard:before{
  content:"";
  position:absolute; inset:-70px -90px auto auto;
  width: 280px; height: 280px; border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(201,161,74,.55), transparent 62%);
  transform: rotate(16deg);
  pointer-events:none;
}
h1{
  margin:0 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height:1.08;
  letter-spacing:-.6px;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  max-width: 62ch;
}
.heroActions{ display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 14px; }
.pills{ display:flex; flex-wrap:wrap; gap:10px; }
.pill{
  font-size: 13px;
  color: rgba(23,34,29,.88);
  background: rgba(15,59,46,.08);
  border: 1px solid rgba(15,59,46,.14);
  padding: 8px 10px;
  border-radius: 999px;
}
.side{
  background: linear-gradient(180deg, rgba(15,59,46,.96), rgba(15,59,46,.86));
  color:#fff;
  border-radius: calc(var(--r) + 6px);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  padding:22px;
  position:relative;
  overflow:hidden;
  display:flex; flex-direction:column; justify-content:space-between;
}
.side:before{
  content:"";
  position:absolute; inset:auto -130px -140px auto;
  width:360px; height:360px; border-radius:999px;
  background: radial-gradient(circle at 36% 36%, rgba(201,161,74,.52), rgba(201,161,74,.06) 58%, transparent 72%);
  pointer-events:none;
}
.side h3{ margin:0 0 6px; font-size: 18px; letter-spacing:-.2px; }
.side p{ margin:0; opacity:.92; font-size:14px; }
.kv{ margin-top:14px; display:grid; gap:10px; }
.kvRow{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 12px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  font-size:14px;
}
.kvRow b{ font-weight:900; }
section{ padding:34px 0; }
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; margin-bottom:16px;
}
h2{ margin:0; font-size:22px; letter-spacing:-.2px; }
.hint{ margin:0; color:var(--muted); font-size:14px; }
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.item{ padding:16px; border-radius: var(--r); }
.item h3{ margin:0 0 6px; font-size:16px; letter-spacing:-.2px; }
.item p{ margin:0 0 10px; color:var(--muted); font-size:14px; }
.tags{ display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  font-size:12px;
  padding:6px 8px;
  border-radius:999px;
  border:1px solid rgba(23,34,29,.12);
  background: rgba(255,255,255,.72);
  color: rgba(23,34,29,.86);
}
.priceGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.priceCard{ padding:16px; border-radius: var(--r); }
.line{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 0;
  border-bottom: 1px dashed rgba(23,34,29,.18);
  font-size:14px;
}
.line:last-child{ border-bottom:none; }
.name{ color:var(--muted); }
.val{ font-weight:900; }
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.gImg{
  border-radius: var(--r);
  overflow:hidden;
  border:1px solid rgba(23,34,29,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  background:#fff;
}
.gImg img{ width:100%; height: 170px; object-fit: cover; }
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:stretch;
}
.contactCard{ padding:16px; border-radius: var(--r); }
.kLink{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(23,34,29,.12);
  background: rgba(255,255,255,.65);
  margin-top:10px;
  font-size:14px;
  color: rgba(23,34,29,.88);
}
.kLink:hover{ background:#fff; }
form{ display:grid; gap:10px; }
label{ font-size:13px; color: var(--muted); font-weight:700; }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(23,34,29,.14);
  background: rgba(255,255,255,.75);
  font: inherit;
}
textarea{ min-height: 120px; resize: vertical; }
.formRow{ display:grid; gap:6px; }
.notice{ font-size:13px; color: var(--muted); margin: 8px 0 0; }
.alert{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(23,34,29,.12);
  background: rgba(255,255,255,.75);
  font-size: 14px;
}
.mapWrap iframe{
  width:100%;
  height: 320px;
  border:0;
  border-radius: var(--r);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}
footer{
  padding: 26px 0;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(23,34,29,.10);
}
@media (max-width: 980px){
  .heroGrid{ grid-template-columns: 1fr; }
  nav{ display:none; }
  .grid3{ grid-template-columns: 1fr; }
  .priceGrid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .contactGrid{ grid-template-columns: 1fr; }
  .gImg img{ height: 200px; }
}