
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Montserrat:wght@300;400;600;700&display=swap');
:root{--brand:#242C49;--accent:#CFAF3E;--ink:#1F2333;--muted:#6E6E6E;--bg:#FAFAFA;--card:#fff;--line:#E8E8E8}
*{box-sizing:border-box}html,body{margin:0;padding:0}
body{font-family:Montserrat,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--bg);color:var(--ink);line-height:1.6}
h1,h2{font-family:"Playfair Display",serif}
.container{max-width:1180px;margin:0 auto;padding:0 20px}
header{position:sticky;top:0;background:rgba(255,255,255,.96);backdrop-filter:saturate(140%) blur(10px);border-bottom:1px solid var(--line);z-index:10}
.nav{display:flex;align-items:center;justify-content:space-between;height:180px}
.brand img{height:240px}
@media (max-width:900px){ .brand img{height:120px} .nav{height:140px} }
.nav a{color:var(--ink);text-decoration:none;margin:0 12px;font-weight:600}
.nav a.btn{display:inline-flex;align-items:center;gap:8px;border:2px solid var(--brand);border-radius:14px;padding:12px 18px;background:#fff;color:var(--brand);text-decoration:none;font-weight:800;box-shadow:0 0 0 3px var(--accent) inset}
.hero{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:center;padding:48px 0}
.hero h1{font-size:48px;line-height:1.08;margin:0 0 12px;color:var(--brand)}
.hero p{color:var(--muted);font-size:18px}
.badge{display:inline-block;padding:6px 10px;border:1px solid var(--line);border-radius:999px;color:var(--brand);background:#f2f4fa;font-weight:700;letter-spacing:.08em;text-transform:uppercase;font-size:12px}
.card{background:var(--card);border:1px solid var(--line);border-radius:16px;box-shadow:0 6px 24px rgba(0,0,0,.06);padding:28px}
.grid{display:grid;gap:20px}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
h2{font-size:28px;margin:20px 0 8px;color:var(--brand)}
section{padding:28px 0}
.btn{display:inline-flex;align-items:center;gap:8px;border:2px solid var(--brand);border-radius:14px;padding:12px 18px;background:#fff;color:var(--brand);text-decoration:none;font-weight:800;box-shadow:0 0 0 3px var(--accent) inset}
.btn.primary{background:var(--brand);color:#fff;border-color:var(--brand)}
.btn.gold{background:var(--accent);color:#1b1b1b;border-color:var(--accent)}
footer{margin-top:40px;padding:24px 0;border-top:1px solid var(--line);color:#666}
.figure{border-radius:14px;overflow:hidden;box-shadow:0 4px 18px rgba(0,0,0,.08);height:540px}
.figure img{width:100%;height:100%;object-fit:cover;display:block}
.gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.gallery .item{border-radius:14px;overflow:hidden;box-shadow:0 3px 14px rgba(0,0,0,.08);height:260px}
.gallery .item img{width:100%;height:100%;object-fit:cover}
@media (max-width:1000px){.hero{grid-template-columns:1fr}.grid-3{grid-template-columns:1fr}.grid-2{grid-template-columns:1fr}.figure{height:400px}.gallery{grid-template-columns:1fr 1fr}}


/* === Export Hero — fit image without cropping === */
.figure.export{height:auto;padding:0;background:#fff}
.figure.export img{width:100%;height:auto;object-fit:contain;display:block}
