:root{
  --navy:#0b1f3b;
  --gold:#b8872e;
  --slate:#334155;
  --muted:#64748b;
  --bg:#ffffff;
  --card:#f8fafc;
  --border:#e2e8f0;
  --max:1100px;
  --radius:18px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,"Noto Sans","Apple Color Emoji","Segoe UI Emoji";
  color:var(--slate);
  background:var(--bg);
  line-height:1.55;
}
a{color:var(--navy); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--max); margin:0 auto; padding:22px}
.nav{
  position:sticky; top:0; z-index:10;
  background:rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 22px; max-width:var(--max); margin:0 auto;}
.brand{display:flex; align-items:center; gap:12px; font-weight:700; letter-spacing:0.6px; color:var(--navy)}
.brand img{height:34px; width:auto}
.brand span{display:block; font-size:14px; font-weight:700}
.menu{display:flex; gap:18px; flex-wrap:wrap; font-weight:600}
.menu a{padding:8px 10px; border-radius:10px}
.menu a.active, .menu a:hover{background:var(--card)}
.hero{
  padding:54px 0 24px;
  background:linear-gradient(180deg, #ffffff 0%, #f8fafc 70%, #ffffff 100%);
}
.hero-grid{display:grid; grid-template-columns: 1.1fr 0.9fr; gap:28px; align-items:center;}
@media (max-width:900px){ .hero-grid{grid-template-columns:1fr; } .brand img{height:30px}}
.h1{font-size:44px; line-height:1.1; margin:0 0 10px; color:var(--navy); letter-spacing:-0.5px}
.kicker{font-weight:700; color:var(--gold); letter-spacing:1px; text-transform:uppercase; font-size:13px}
.lead{font-size:18px; color:var(--slate); margin:10px 0 18px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:8px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:14px;
  border:1px solid var(--border);
  font-weight:700;
}
.btn.primary{background:var(--navy); color:#fff; border-color:var(--navy)}
.btn.primary:hover{opacity:0.92; text-decoration:none}
.btn.secondary{background:#fff}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 1px 0 rgba(15,23,42,0.04);
}
.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;}
@media (max-width:900px){ .grid3{grid-template-columns:1fr;} .h1{font-size:36px}}
.h2{font-size:22px; margin:0 0 8px; color:var(--navy)}
.small{color:var(--muted); font-size:14px}
.section{padding:22px 0}
.footer{
  border-top:1px solid var(--border);
  padding:18px 0;
  color:var(--muted);
  font-size:13px;
}
.notice{
  font-size:12px;
  color:var(--muted);
  background:#fff;
  border:1px dashed var(--border);
  border-radius:14px;
  padding:12px 14px;
}
hr.sep{border:0; border-top:1px solid var(--border); margin:18px 0}
.form{
  display:grid;
  gap:12px;
}
input, textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  font:inherit;
}
textarea{min-height:140px; resize:vertical}
.label{font-weight:700; font-size:13px; color:var(--navy)}
.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width:900px){ .gallery{grid-template-columns:1fr;} }
.thumb{
  border-radius:16px;
  border:1px solid var(--border);
  background:linear-gradient(135deg,#e2e8f0,#f8fafc);
  padding:14px;
  min-height:120px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.badge{display:inline-flex; font-size:12px; font-weight:800; color:var(--navy); background:#fff; border:1px solid var(--border); padding:6px 10px; border-radius:999px;}