:root{
  --bg:#FFFFFF;
  --text:#111827;
  --muted:#4B5563;
  --border:#E5E7EB;
  --accent:#2D6CDF;
  --hero-from:#2D6CDF;
  --hero-to:#8CB4FF;
  --card:#F9FAFB;
  --shadow:0 10px 30px rgba(17,24,39,.08);
  --radius:18px;
  --radius-sm:12px;
  --max:1160px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%; height:auto; display:block}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:64px 0}
.section-tight{padding:40px 0}
.kicker{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
  color:var(--muted);
  margin:0 0 10px;
}
h1,h2,h3{line-height:1.15}
h1{font-size:clamp(2rem, 4vw, 3rem); margin:.2rem 0 0}
h2{font-size:clamp(1.5rem, 3vw, 2.1rem); margin:0 0 14px}
h3{font-size:1.1rem; margin:0 0 10px}
p{margin:0 0 14px; color:var(--text)}
small, .muted{color:var(--muted)}
hr{border:none; border-top:1px solid var(--border); margin:24px 0}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto; padding:10px 12px;
  background:#fff; border:1px solid var(--border); border-radius:10px; z-index:9999;
}

/* Header / Nav */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px; min-width:220px;
}
.logo{
  width:36px; height:36px; border-radius:12px;
  background:linear-gradient(135deg, var(--hero-from), var(--hero-to));
  box-shadow:var(--shadow);
}
.brand-title{font-weight:700}
.brand-sub{font-size:.85rem; color:var(--muted)}
.nav{
  display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end;
}
.nav a{
  color:var(--text);
  font-size:.95rem;
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{background:var(--card); text-decoration:none}
.nav a[aria-current="page"]{background:var(--card); font-weight:600}

/* Hero */
.hero{
  background:linear-gradient(135deg, var(--hero-from), var(--hero-to));
  color:#fff;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:stretch;
}
.hero-card{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
  border-radius:var(--radius);
  padding:22px;
}
.hero p{color:rgba(255,255,255,.92)}
.hero-badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  background:rgba(17,24,39,.18);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  font-size:.9rem;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:600;
}
.btn-primary{background:#fff; color:var(--text)}
.btn-primary:hover{opacity:.95; text-decoration:none}
.btn-ghost{background:transparent; color:#000000; border-color:rgba(255,255,255,.35)}
.btn-ghost:hover{background:rgba(255,255,255,.12); text-decoration:none}

.hero-media{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.25);
  box-shadow:var(--shadow);
  background:rgba(255,255,255,.12);
}
.hero-media img{width:100%; height:100%; object-fit:cover}

/* Cards & grids */
.grid-2{display:grid; grid-template-columns:repeat(2, 1fr); gap:16px}
.grid-3{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px}
.grid-4{display:grid; grid-template-columns:repeat(4, 1fr); gap:16px}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:none;
}
.card-plain{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
}
.card h3{margin-top:2px}
.list{
  margin:0; padding:0 0 0 18px;
  color:var(--text);
}
.list li{margin:8px 0}
.pills{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.pill{
  background:#fff;
  border:1px solid var(--border);
  padding:8px 10px;
  border-radius:999px;
  font-size:.9rem;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
}
.gallery-main, .gallery-side{
  display:grid; gap:16px;
}
.gallery-main .shot,
.gallery-side .shot{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:var(--card);
  min-height:220px;
}
.shot img{width:100%; height:100%; object-fit:cover}
.caption{padding:12px 14px; border-top:1px solid var(--border); background:#fff}

/* Tables */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
}
.table th, .table td{
  text-align:left;
  padding:12px 14px;
  border-bottom:1px solid var(--border);
  vertical-align:top;
}
.table th{background:var(--card); font-weight:700}
.table tr:last-child td{border-bottom:none}

/* Forms */
.form{
  display:grid; gap:12px;
}
.field{display:grid; gap:6px}
label{font-weight:600; font-size:.95rem}
input, textarea, select{
  font:inherit;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  outline:none;
}
textarea{min-height:140px; resize:vertical}
input:focus, textarea:focus, select:focus{
  border-color:rgba(45,108,223,.45);
  box-shadow:0 0 0 4px rgba(45,108,223,.12);
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.form-actions{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.note{
  padding:12px 14px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
}

/* Footer */
footer{
  border-top:1px solid var(--border);
  background:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:16px;
  padding:28px 0;
}
.footer-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text); text-decoration:underline}
.footer-bottom{
  padding:14px 0 26px;
  border-top:1px solid var(--border);
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  color:var(--muted);
  font-size:.92rem;
}

/* Utility */
.anchor-links{display:flex; gap:10px; flex-wrap:wrap}
.anchor-links a{
  background:#fff;
  border:1px solid var(--border);
  padding:8px 10px;
  border-radius:999px;
  color:var(--text);
}
.anchor-links a:hover{border-color:rgba(45,108,223,.35); text-decoration:none}
.callout{
  background:#fff;
  border:1px solid var(--border);
  border-left:6px solid var(--accent);
  border-radius:var(--radius);
  padding:16px;
}
.map{
  width:100%;
  height:420px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--card);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .grid-4{grid-template-columns:repeat(2, 1fr)}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
}

/* ===== Mobile Header (Burger + Drawer) ===== */
.burger{
  display:none; /* visible on mobile only */
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.burger:hover{background:var(--card)}
.burger:focus{
  outline:none;
  border-color:rgba(45,108,223,.45);
  box-shadow:0 0 0 4px rgba(45,108,223,.12);
}

.burger-lines{
  position:relative;
  width:18px; height:2px;
  background:var(--text);
  border-radius:2px;
  display:block;
}
.burger-lines::before,
.burger-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:18px; height:2px;
  background:var(--text);
  border-radius:2px;
}
.burger-lines::before{top:-6px}
.burger-lines::after{top:6px}

/* Drawer */
.nav-drawer{
  display:none;
  margin:12px 0 14px;
  padding:14px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#fff;
}

.nav-drawer.is-open{display:block}

.nav-drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.nav-drawer-links{
  display:grid;
  gap:10px;
}
.nav-drawer-links a{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  font-weight:600;
}
.nav-drawer-links a:hover{
  border-color:rgba(45,108,223,.35);
  text-decoration:none;
}

/* Prevent body scroll when menu open */
body.nav-open{overflow:hidden}

/* Responsive behavior */
@media (max-width: 980px){
  .burger{display:inline-flex}
  .nav-desktop{display:none}
}

/* Brand logo slot */
.brand{display:flex; align-items:center; gap:10px; min-width:220px}
.brand-mark{
  width:40px; height:40px;
  border-radius:12px;
  background:linear-gradient(135deg, var(--hero-from), var(--hero-to));
  box-shadow:var(--shadow);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.brand-logo{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

/* Optional: keep text tidy on small screens */
.brand-text{display:block}
.brand-title{font-weight:700}
.brand-sub{font-size:.85rem; color:var(--muted)}
@media (max-width: 420px){
  .brand-sub{display:none}
  .brand{min-width:auto}
}
