:root{
  --slate:#1F2937;
  --white:#F9FAFB;
  --gray:#D1D5DB;
  --bronze:#B08968;
  --text:#111827;
  --muted:#4B5563;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:var(--white);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:0 20px}
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(249,250,251,.92);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid rgba(17,24,39,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px}
.brand-mark{display:inline-flex; width:34px; height:34px; align-items:center; justify-content:center;
  border:1px solid rgba(17,24,39,.12); border-radius:12px; background:white;
}
.brand-text{font-size:16px}
.site-nav{display:flex; gap:18px; align-items:center}
.nav-link{
  font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius:12px;
}
.nav-link:hover{background:rgba(17,24,39,.05); color:var(--text)}
.nav-link.active{color:var(--text); background:rgba(176,137,104,.12)}
.nav-toggle{
  display:none; border:1px solid rgba(17,24,39,.12);
  background:white; border-radius:14px; padding:10px 12px; cursor:pointer;
}
.nav-toggle span{display:block;width:18px;height:2px;background:var(--slate);margin:3px 0;border-radius:2px}

.hero{
  padding:26px 0 18px;
}
.hero-media{
  position:relative; overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(17,24,39,.10);
  background:#e5e7eb;
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
}
.hero-media img{
  width:100%; height:520px; object-fit:cover; display:block;
  transform:scale(1.02);
}
.hero-dots{
  position:absolute; left:16px; bottom:16px; display:flex; gap:8px;
  background:rgba(17,24,39,.45); padding:8px 10px; border-radius:999px;
}
.hero-dots button{
  width:8px;height:8px;border-radius:999px;border:0;
  background:rgba(249,250,251,.55); cursor:pointer;
}
.hero-dots button.active{background:var(--white)}
.hero-copy{
  padding:18px 2px 0;
  max-width:820px;
}
.h1{font-size:40px; line-height:1.1; margin:14px 0 10px; letter-spacing:-.6px}
.lead{font-size:16px; color:var(--muted); margin:0 0 18px}
.btn-row{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; font-weight:600; font-size:14px;
  border:1px solid rgba(17,24,39,.12);
}
.btn.primary{background:var(--bronze); border-color:rgba(176,137,104,.45); color:#111827}
.btn.primary:hover{filter:brightness(.98)}
.btn.ghost{background:transparent}
.section{padding:34px 0}
.section-title{font-size:18px; margin:0 0 14px; letter-spacing:-.2px}
.grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:14px;
}
.card{
  grid-column:span 3;
  background:white;
  border:1px solid rgba(17,24,39,.10);
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 22px rgba(17,24,39,.06);
}
.card h3{margin:0 0 8px; font-size:14px}
.card p{margin:0; color:var(--muted); font-size:13px}
.list{
  display:grid; gap:10px; margin:0; padding-left:18px; color:var(--muted);
}
.gallery{
  display:grid; gap:14px;
  grid-template-columns:repeat(3,1fr);
}
.gallery a{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(17,24,39,.10);
  background:#e5e7eb;
  box-shadow:0 10px 22px rgba(17,24,39,.06);
}
.gallery img{width:100%; height:240px; object-fit:cover; display:block; transition:transform .25s ease}
.gallery a:hover img{transform:scale(1.03)}
.band{
  background:rgba(176,137,104,.10);
  border-top:1px solid rgba(17,24,39,.08);
  border-bottom:1px solid rgba(17,24,39,.08);
}
.band-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:18px 0;
}
.band h2{margin:0; font-size:18px}
.band p{margin:0; color:var(--muted); font-size:13px}
.form-wrap{
  background:white;
  border:1px solid rgba(17,24,39,.10);
  border-radius:22px;
  box-shadow:0 14px 30px rgba(17,24,39,.08);
  padding:18px;
}
.form-grid{
  display:grid; grid-template-columns:repeat(12,1fr); gap:12px;
}
.field{grid-column:span 4; display:flex; flex-direction:column; gap:6px}
label{font-size:12px; color:var(--muted)}
input, textarea{
  border:1px solid rgba(17,24,39,.14);
  border-radius:14px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
  background:var(--white);
}
input:focus, textarea:focus{border-color:rgba(176,137,104,.7); box-shadow:0 0 0 4px rgba(176,137,104,.18)}
.checks{margin-top:6px; display:grid; gap:12px}
.check{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px;
  border:1px solid rgba(17,24,39,.10);
  border-radius:18px;
  background:rgba(249,250,251,.9);
}
.check input{margin-top:3px}
.check .check-title{font-weight:700; font-size:13px; margin:0 0 4px}
.check .check-text{margin:0; font-size:13px; color:var(--muted)}
.legal-inline{
  margin-top:10px;
  font-size:13px;
  color:var(--muted);
}
.legal-inline a{color:var(--slate)}
.legal-inline a:hover{color:#0f172a}
.site-footer{
  margin-top:34px;
  background:#0f172a;
  color:#e5e7eb;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-inner{
  display:flex; justify-content:space-between; gap:24px;
  padding:22px 0 18px;
}
.footer-title{font-weight:800; margin-bottom:8px}
.footer-line{color:#cbd5e1; font-size:13px; margin:4px 0}
.footer-line a{color:#e5e7eb; text-decoration:underline}
.footer-links{display:flex; flex-direction:column; gap:10px}
.legal-link{color:#e5e7eb}
.footer-bottom{
  padding:12px 0 18px;
  color:#cbd5e1;
  font-size:12px;
  border-top:1px solid rgba(255,255,255,.08);
}

.page-head{padding:18px 0 10px}
.page-title{font-size:28px; margin:10px 0 6px; letter-spacing:-.4px}
.page-sub{margin:0; color:var(--muted)}

@media (max-width: 920px){
  .card{grid-column:span 6}
  .field{grid-column:span 12}
  .gallery{grid-template-columns:repeat(2,1fr)}
  .hero-media img{height:420px}
}
@media (max-width: 720px){
  .nav-toggle{display:inline-flex}
  .site-nav{display:none; position:absolute; right:20px; top:62px; flex-direction:column;
    background:white; border:1px solid rgba(17,24,39,.10); border-radius:18px; padding:10px; gap:6px;
    box-shadow:0 20px 50px rgba(17,24,39,.10);
  }
  .site-nav.open{display:flex}
  .nav-link{width:100%}
  .gallery{grid-template-columns:1fr}
  .hero-media img{height:360px}
  .h1{font-size:32px}
  .band-inner{flex-direction:column; align-items:flex-start}
}