
:root{
  --bg:#fbfbf8;
  --surface:#ffffff;
  --text:#101418;
  --muted:#5a646e;
  --line:rgba(16,20,24,.10);
  --gold:#c8a24a;
  --gold2:#d8b86a;
  --shadow: 0 18px 45px rgba(16,20,24,.10);
  --radius:18px;
}
*{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";
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(200,162,74,.12), transparent 60%),
    radial-gradient(900px 450px at 80% 0%, rgba(200,162,74,.10), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}
a{color:inherit;text-decoration:none}
.container{width:min(1160px, calc(100% - 44px)); margin-inline:auto;}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(251,251,248,.78);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px; font-weight:700; letter-spacing:.2px;}
.brand img{height:34px; width:auto}
.brand .name{font-size:14px; color:var(--muted); font-weight:600}
.nav-links{display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  height:38px; padding:0 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  border-radius:999px;
  color:var(--text);
  font-weight:650;
  box-shadow: 0 8px 20px rgba(16,20,24,.06);
}
.pill:hover{border-color: rgba(200,162,74,.55)}
.pill.primary{
  background: linear-gradient(180deg, rgba(216,184,106,.98), rgba(200,162,74,.95));
  border-color: rgba(200,162,74,.70);
  color:#111;
}
.icon-pill{
  width:38px; padding:0; gap:0;
}
.icon{width:18px; height:18px; display:block}
.hero{padding:56px 0 22px}
.hero-grid{
  display:grid; gap:22px;
  grid-template-columns: 1.15fr .85fr;
  align-items:stretch;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
}
.card{
  background: rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy{padding:28px}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:700; color:rgba(16,20,24,.85);
}
.kicker .dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  box-shadow: 0 0 0 4px rgba(200,162,74,.16);
}
h1{margin:10px 0 10px; font-size:40px; line-height:1.15; letter-spacing:-.4px}
@media (max-width: 520px){h1{font-size:34px}}
.sub{color:var(--muted); font-size:16px; margin:0 0 18px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-media{
  overflow:hidden; position:relative;
}
.hero-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  min-height:360px;
  filter: saturate(1.06) contrast(1.02);
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(800px 420px at 25% 15%, rgba(200,162,74,.18), transparent 55%),
    linear-gradient(180deg, rgba(16,20,24,.10), transparent 35%, rgba(16,20,24,.08));
  pointer-events:none;
}
.hero-media .wm{
  position:absolute; right:18px; bottom:18px; width:74px; opacity:.22;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}
.section{padding:34px 0}
.section h2{margin:0 0 10px; font-size:26px; letter-spacing:-.2px}
.grid-3{display:grid; gap:14px; grid-template-columns: repeat(3, 1fr)}
@media (max-width: 920px){.grid-3{grid-template-columns: 1fr}}
.feature{padding:18px}
.feature h3{margin:0 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted)}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border:1px solid rgba(200,162,74,.35);
  border-radius:999px;
  background: rgba(255,255,255,.8);
  color: rgba(16,20,24,.88);
  font-weight:700;
}
.badge svg{width:16px; height:16px}
.gallery-head{display:flex; align-items:flex-end; justify-content:space-between; gap:16px; flex-wrap:wrap}
.filters{display:flex; gap:10px; flex-wrap:wrap}
.filter{
  cursor:pointer;
  height:38px; padding:0 12px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.85);
  font-weight:700;
}
.filter.active{
  border-color: rgba(200,162,74,.70);
  box-shadow: 0 10px 26px rgba(200,162,74,.14);
}
.gallery{
  margin-top:14px;
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px){.gallery{grid-template-columns: repeat(2, 1fr)}}
@media (max-width: 560px){.gallery{grid-template-columns: 1fr}}
.tile{
  overflow:hidden; position:relative;
  border-radius: 16px;
  border:1px solid rgba(16,20,24,.10);
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 42px rgba(16,20,24,.08);
}
.tile img{width:100%; height:240px; object-fit:cover; display:block; background:#f2f3f4}
.tile::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 55%, rgba(16,20,24,.18));
  pointer-events:none;
}
.tile .wm{
  position:absolute; right:12px; bottom:12px; width:52px; opacity:.22;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
}
.tile .tag{
  position:absolute; left:12px; bottom:12px;
  padding:7px 10px; border-radius:999px;
  background: rgba(255,255,255,.88);
  border:1px solid rgba(200,162,74,.35);
  font-weight:800; font-size:12px;
}
.form-card{padding:18px}
form{display:grid; gap:12px; margin-top:10px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(16,20,24,.14);
  background: rgba(255,255,255,.92);
  font-size:15px;
}
textarea{min-height:120px; resize:vertical}
.small{color:var(--muted); font-size:13px}
.footer{
  padding:28px 0 44px;
  color:var(--muted);
}
.footer a{color:var(--muted); text-decoration:underline; text-underline-offset:3px}
