/* Layout fixes */
.navColumn--c9Jwf6kO { display: none !important; }
.layout--bign-ofP { grid-template-columns: 1fr !important; background: none !important; }
[class*="headBreadcrumb--"] { display: none !important; }
.longContent--HDeDOmXE { padding: 0 24px; }

/* Brand header (logo left, contact right) */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  flex-wrap: wrap;
}
.brand-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}
.brand-name {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #1e3a8a;
}
.brand-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: #64748b;
  margin-top: 6px;
  text-transform: uppercase;
}
.brand-logo-img {
  max-height: 56px;
  width: auto;
  display: block;
}
.brand-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brand-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1e3a8a;
  text-decoration: none;
  white-space: nowrap;
}
.brand-contact-item:hover { color: #2563eb; }
.brand-contact-item svg { flex-shrink: 0; }

/* Hero slideshow (full-bleed Ken Burns) */
.hero-slideshow {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(320px, 42vw, 560px);
  overflow: hidden;
  background: #000;
}
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
  animation: heroKenBurns 24s ease-in-out infinite;
}
.hero-slideshow .hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slideshow .hero-slide:nth-child(2) { animation-delay: 8s; }
.hero-slideshow .hero-slide:nth-child(3) { animation-delay: 16s; }
@keyframes heroKenBurns {
  0%   { opacity: 0; transform: scale(1); }
  4%   { opacity: 1; transform: scale(1.01); }
  29%  { opacity: 1; transform: scale(1.10); }
  33%  { opacity: 0; transform: scale(1.11); }
  100% { opacity: 0; transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .hero-slide { animation-duration: 60s; }
}

/* Footer */
.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 60px;
  background: #0f172a;
  color: #cbd5e1;
  padding: 40px 32px 28px;
}
.site-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; align-items: baseline; gap: 12px; }
.footer-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #fff;
}
.footer-tagline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #94a3b8;
  text-transform: uppercase;
}
.footer-logo-img { max-height: 48px; width: auto; }
.footer-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-contact a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.footer-contact a:hover { color: #fff; }
.footer-address {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
}
.footer-copy {
  font-size: 12px;
  color: #94a3b8;
  flex-basis: 100%;
  border-top: 1px solid #1e293b;
  padding-top: 16px;
  margin-top: 8px;
}

/* Admin page (loaded separately by admin.php; harmless if injected on other pages) */
.admin-wrap {
  max-width: 640px;
  margin: 40px auto;
  padding: 32px;
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
}
.admin-wrap h1 { font-size: 24px; margin: 0 0 8px; }
.admin-wrap p.lead { color: #64748b; margin: 0 0 24px; }
.admin-wrap form { display: flex; flex-direction: column; gap: 16px; }
.admin-wrap label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: #334155; }
.admin-wrap input[type="text"],
.admin-wrap input[type="email"],
.admin-wrap input[type="file"] {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
}
.admin-wrap input[type="text"]:focus,
.admin-wrap input[type="email"]:focus { outline: 2px solid #2563eb; border-color: transparent; }
.admin-wrap .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-wrap .actions { display: flex; gap: 12px; align-items: center; margin-top: 8px; }
.admin-wrap button {
  background: #1e3a8a;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.admin-wrap button.secondary { background: #e2e8f0; color: #1e293b; }
.admin-wrap button:hover { background: #2563eb; }
.admin-wrap .logo-preview {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 10px;
  margin-top: 4px;
}
.admin-wrap .logo-preview img { max-height: 56px; max-width: 200px; }
.admin-wrap .flash {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}
.admin-wrap .flash.ok { background: #dcfce7; color: #166534; }
.admin-wrap .flash.err { background: #fee2e2; color: #991b1b; }
