/* Header + logo — shared across all pages */
.nav {
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;            /* space for big logo */
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #111; }
.logo-img { height: 88px; width: auto; display: block; object-fit: contain; }
.logo-text { display: none; }  /* hide text next to image */

/* Force the same size everywhere, even if index has inline <style> */
header .nav .logo .logo-img { height: 88px !important; }
@media (max-width:900px){ header .nav .logo .logo-img { height: 64px !important; } }
@media (max-width:480px){ header .nav .logo .logo-img { height: 48px !important; } }

/* And ensure header has room */
.nav { min-height: 92px !important; }


* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, system-ui, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fafafa;
}

.site-header { background: #ffffff; border-bottom: 1px solid #eee; position: sticky; top: 0; }
.nav { max-width: 1000px; margin: 0 auto; padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; }

/* REPLACED: make the logo a small flex row so image + text align nicely */
.logo { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 700; 
  text-decoration: none; 
  color: #111; 
}
.logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.logo-text { line-height: 1; }

.links a { margin-left: 14px; text-decoration: none; color: #0a4bd7; font-weight: 600; }
.links a[aria-current="page"] { text-decoration: underline; }

.container { max-width: 1000px; margin: 32px auto; padding: 0 16px; }
.site-footer { text-align: center; padding: 24px; color: #666; border-top: 1px solid #eee; background: #fff; }

.contact-form { display: grid; gap: 12px; max-width: 520px; }
.contact-form label { display: grid; gap: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 8px; background: #fff;
}
.contact-form button {
  padding: 10px 14px; border: 0; border-radius: 8px; font-weight: 700; cursor: pointer;
  background: #0a4bd7; color: #fff;
}

@media (max-width: 600px) {
  .links a { margin-left: 10px; }
}

/* Mobile logo size tweak */
@media (max-width: 480px) {
  .logo-img { height: 32px; }
}
