:root {
  --psw-blue: #2f4e91;
  --psw-blue-dark: #243c70;
  --psw-yellow: #ffc600;
  --psw-text: #444444;
  --psw-muted: #6b7280;
  --psw-bg: #ffffff;
  --psw-soft: #f4f6fb;
  --psw-max: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 400;
  color: var(--psw-text);
  background: var(--psw-bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; }

a { color: var(--psw-blue); text-decoration: none; }
a:hover { color: var(--psw-blue-dark); }

.psw-wrap {
  width: min(100% - 2rem, var(--psw-max));
  margin-inline: auto;
}

.psw-topbar {
  background: var(--psw-blue);
  color: #fff;
  font-size: 0.92rem;
}

.psw-topbar a,
.psw-topbar button { color: #fff; }

.psw-topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.45rem 0;
}

.psw-top-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.psw-hours-toggle,
.psw-nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.psw-header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.psw-logo img { height: 72px; width: auto; }

.psw-nav ul {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.psw-nav a {
  color: var(--psw-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}

.psw-nav-toggle { display: none; }
.psw-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--psw-blue);
  margin: 5px 0;
}

.psw-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  place-items: end stretch;
  background:
    linear-gradient(120deg, rgba(47, 78, 145, 0.88), rgba(17, 17, 17, 0.55)),
    #1a2748;
  color: #fff;
}

.psw-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(17, 17, 17);
  opacity: 0.3;
  pointer-events: none;
}

.psw-hero-content { position: relative; padding: 4.5rem 0 3rem; text-align: center; }
.psw-hero-actions { justify-content: center; }

.psw-kicker {
  margin: 0 0 0.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--psw-yellow);
}

.psw-hero h1 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
}

.psw-hero-actions,
.psw-hero-social { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.psw-hero-social { margin-top: 1.2rem; justify-content: center; }
.psw-hero-social a {
  color: #fff;
  font-weight: 700;
  width: 130px;
  text-align: center;
  font-size: 0.72rem;
}
.psw-hero-social img {
  display: block;
  max-width: 60px;
  margin: 0 auto 0.35rem;
}

.psw-btn {
  display: inline-block;
  background: var(--psw-yellow);
  color: var(--psw-blue);
  font-weight: 700;
  border: 0;
  padding: 0.75rem 1.2rem;
  cursor: pointer;
}

.psw-btn:hover { background: #ffe08a; color: var(--psw-blue-dark); }

.psw-btn-ghost {
  background: transparent;
  color: #fff;
  outline: 2px solid #fff;
}

.psw-btn-ghost:hover { background: #fff; color: var(--psw-blue); }

.psw-main { padding: 2.5rem 0 4rem; }

.psw-intro h2,
.psw-services h2,
.psw-article h1 {
  color: var(--psw-blue);
  font-weight: 900;
}

.psw-intro-body { overflow: hidden; }
.psw-welcome-photo {
  float: right;
  max-width: 300px;
  width: 100%;
  margin: 0 0 1.2rem 1.6rem;
}
.psw-prose { max-width: 78ch; }
.psw-prose h2 { color: var(--psw-blue); font-weight: 900; margin-top: 1.6rem; }
.psw-services-note {
  margin-top: 1.8rem;
  font-size: 0.88rem;
  color: #4b5563;
  max-width: 90ch;
}

.psw-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.psw-card {
  background: var(--psw-soft);
  padding: 1.1rem;
  border-top: 4px solid var(--psw-blue);
}

.psw-card img { height: 72px; width: auto; }
.psw-card h3 { margin: 0.6rem 0 0.35rem; color: var(--psw-blue); }
.psw-card p { margin: 0 0 0.7rem; font-size: 0.95rem; }
.psw-card a { font-weight: 700; }

.psw-article { padding-top: 0.5rem; }
.psw-article h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.psw-service-hero { height: 96px; width: auto; }

.psw-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.psw-band {
  background: var(--psw-blue);
  color: #fff;
}

.psw-band a { color: #fff; font-weight: 700; margin-left: 1rem; }

.psw-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.psw-footer { background: #111827; color: #e5e7eb; }
.psw-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.psw-footer a { color: #fff; }
.psw-footer ul { list-style: none; margin: 0; padding: 0; }
.psw-footer li { margin: 0.35rem 0; }
.psw-copy { text-align: center; margin: 0; padding: 0 0 1.4rem; color: #9ca3af; font-size: 0.85rem; }

.psw-dialog {
  border: 0;
  padding: 1.5rem 1.6rem;
  width: min(420px, 92vw);
  color: var(--psw-text);
}

.psw-dialog::backdrop { background: rgba(17, 17, 17, 0.55); }
.psw-dialog h2 { color: var(--psw-blue); margin-top: 0; }
.psw-dialog dl { display: grid; gap: 0.6rem; }
.psw-dialog dt { font-weight: 700; }
.psw-dialog dd { margin: 0; }

@media (max-width: 800px) {
  .psw-welcome-photo { float: none; display: block; margin: 0 0 1rem; max-width: 100%; }
  .psw-nav-toggle { display: block; }
  .psw-nav { display: none; }
  .psw-header.is-open .psw-nav { display: block; position: absolute; inset: auto 1rem auto 1rem; background: #fff; padding: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,.08); z-index: 20; }
  .psw-nav ul { flex-direction: column; }
  .psw-header { position: relative; }
  .psw-topbar-inner { flex-direction: column; align-items: flex-start; }
}
