/* ==============================================
   Water Main Repair CA — wm-style.css
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --wm-navy:        #0d1f33;
  --wm-blue:        #1a4a7a;
  --wm-mid-blue:    #2c6fad;
  --wm-light-blue:  #4a9fd4;
  --wm-sky:         #d6eaf8;
  --wm-steel:       #4a5568;
  --wm-slate:       #718096;
  --wm-silver:      #a0aec0;
  --wm-mist:        #edf2f7;
  --wm-white:       #ffffff;
  --wm-accent:      #e07b2e;
  --wm-accent-lt:   #f4a660;
  --wm-danger:      #c0392b;
  --wm-success:     #27ae60;
  --wm-text:        #1a202c;
  --wm-text-light:  #4a5568;
  --wm-border:      #e2e8f0;

  --wm-font-serif:  'DM Serif Display', Georgia, serif;
  --wm-font-body:   'IBM Plex Sans', sans-serif;
  --wm-font-mono:   'IBM Plex Mono', monospace;

  --wm-radius-sm:   4px;
  --wm-radius:      8px;
  --wm-radius-lg:   16px;
  --wm-radius-xl:   28px;

  --wm-shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --wm-shadow:      0 4px 16px rgba(13,31,51,0.10);
  --wm-shadow-lg:   0 12px 40px rgba(13,31,51,0.15);
  --wm-shadow-xl:   0 24px 64px rgba(13,31,51,0.20);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--wm-font-body);
  color: var(--wm-text);
  background: var(--wm-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Typography ---- */
.wm-heading-display {
  font-family: var(--wm-font-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.15;
  color: var(--wm-navy);
  letter-spacing: -0.01em;
}

.wm-heading-lg {
  font-family: var(--wm-font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  color: var(--wm-navy);
}

.wm-heading-md {
  font-family: var(--wm-font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.25;
  color: var(--wm-navy);
}

.wm-heading-sm {
  font-family: var(--wm-font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wm-navy);
  letter-spacing: 0.01em;
}

.wm-label {
  font-family: var(--wm-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wm-mid-blue);
}

.wm-body-lg  { font-size: 1.125rem; line-height: 1.75; color: var(--wm-text-light); }
.wm-body     { font-size: 1rem;     line-height: 1.7;  color: var(--wm-text-light); }
.wm-body-sm  { font-size: 0.875rem; line-height: 1.65; color: var(--wm-slate); }

/* ---- Layout ---- */
.wm-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wm-container-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.wm-section { padding: 80px 0; }
.wm-section-lg { padding: 120px 0; }
.wm-section-sm { padding: 48px 0; }

.wm-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.wm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.wm-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.wm-grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

.wm-flex { display: flex; align-items: center; }
.wm-flex-between { display: flex; align-items: center; justify-content: space-between; }
.wm-flex-center { display: flex; align-items: center; justify-content: center; }
.wm-flex-col { display: flex; flex-direction: column; }

.wm-gap-sm { gap: 12px; }
.wm-gap    { gap: 20px; }
.wm-gap-lg { gap: 32px; }

/* ---- Navigation ---- */
.wm-nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.wm-nav-inner {
  background: rgba(13,31,51,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wm-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wm-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wm-nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--wm-mid-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wm-nav-logo-text {
  font-family: var(--wm-font-serif);
  font-size: 1.2rem;
  color: var(--wm-white);
  line-height: 1.1;
}

.wm-nav-logo-sub {
  font-family: var(--wm-font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--wm-light-blue);
  display: block;
  text-transform: uppercase;
}

.wm-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.wm-nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  padding: 8px 14px;
  border-radius: var(--wm-radius-sm);
  transition: all 0.2s;
}

.wm-nav-links a:hover {
  color: var(--wm-white);
  background: rgba(255,255,255,0.08);
}

.wm-nav-links a.wm-active {
  color: var(--wm-light-blue);
}

.wm-nav-cta {
  background: var(--wm-mid-blue) !important;
  color: var(--wm-white) !important;
  border-radius: var(--wm-radius-sm) !important;
  padding: 9px 18px !important;
}

.wm-nav-cta:hover {
  background: var(--wm-blue) !important;
}

.wm-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.wm-nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wm-white);
  border-radius: 2px;
  transition: all 0.3s;
}

.wm-mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--wm-navy);
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
}

.wm-mobile-menu.wm-open { display: block; }

.wm-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.wm-mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  border-radius: var(--wm-radius-sm);
}

.wm-mobile-menu a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--wm-white);
}

/* ---- Buttons ---- */
.wm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--wm-font-body);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--wm-radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.wm-btn-primary {
  background: var(--wm-mid-blue);
  color: var(--wm-white);
  box-shadow: 0 4px 14px rgba(44,111,173,0.35);
}

.wm-btn-primary:hover {
  background: var(--wm-blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44,111,173,0.45);
  color: var(--wm-white);
}

.wm-btn-secondary {
  background: transparent;
  color: var(--wm-mid-blue);
  border: 2px solid var(--wm-mid-blue);
}

.wm-btn-secondary:hover {
  background: var(--wm-sky);
  color: var(--wm-blue);
}

.wm-btn-white {
  background: var(--wm-white);
  color: var(--wm-navy);
}

.wm-btn-white:hover {
  background: var(--wm-mist);
  color: var(--wm-navy);
  transform: translateY(-1px);
}

.wm-btn-outline-white {
  background: transparent;
  color: var(--wm-white);
  border: 2px solid rgba(255,255,255,0.4);
}

.wm-btn-outline-white:hover {
  border-color: var(--wm-white);
  background: rgba(255,255,255,0.08);
  color: var(--wm-white);
}

.wm-btn-sm { padding: 9px 18px; font-size: 0.825rem; }
.wm-btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ---- Hero ---- */
.wm-hero-industrial {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wm-navy);
  padding-top: 68px;
}

.wm-hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.wm-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,159,212,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,159,212,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.wm-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,51,0.95) 0%, rgba(26,74,122,0.7) 50%, rgba(44,111,173,0.4) 100%);
}

.wm-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.wm-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(44,111,173,0.25);
  border: 1px solid rgba(74,159,212,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.wm-hero-tag span {
  font-family: var(--wm-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wm-light-blue);
}

.wm-hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wm-light-blue);
  animation: wm-pulse 2s infinite;
}

.wm-hero-title {
  font-family: var(--wm-font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--wm-white);
  margin-bottom: 28px;
  max-width: 700px;
}

.wm-hero-title em {
  font-style: italic;
  color: var(--wm-light-blue);
}

.wm-hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.wm-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.wm-hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  flex-wrap: wrap;
}

.wm-hero-stat-num {
  font-family: var(--wm-font-serif);
  font-size: 2rem;
  color: var(--wm-white);
  line-height: 1;
}

.wm-hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  font-family: var(--wm-font-mono);
  letter-spacing: 0.05em;
}

.wm-hero-visual {
  position: relative;
}

.wm-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--wm-radius-lg);
  padding: 28px;
  backdrop-filter: blur(12px);
}

.wm-hero-card-title {
  font-family: var(--wm-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wm-light-blue);
  margin-bottom: 20px;
}

.wm-issue-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.wm-issue-item:last-child { border-bottom: none; }

.wm-issue-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.wm-issue-dot.wm-red    { background: #e74c3c; }
.wm-issue-dot.wm-orange { background: var(--wm-accent); }
.wm-issue-dot.wm-yellow { background: #f1c40f; }
.wm-issue-dot.wm-green  { background: var(--wm-success); }

.wm-issue-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}

.wm-issue-status {
  margin-left: auto;
  font-family: var(--wm-font-mono);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 100px;
}

.wm-status-urgent   { background: rgba(231,76,60,0.2);   color: #e74c3c; }
.wm-status-watch    { background: rgba(224,123,46,0.2);  color: var(--wm-accent); }
.wm-status-monitor  { background: rgba(241,196,15,0.2);  color: #d4ac0d; }
.wm-status-ok       { background: rgba(39,174,96,0.2);   color: var(--wm-success); }

/* ---- Section Headers ---- */
.wm-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.wm-section-header .wm-label {
  display: block;
  margin-bottom: 12px;
}

.wm-section-header p {
  color: var(--wm-text-light);
  font-size: 1.05rem;
  margin-top: 16px;
}

/* ---- Service Cards ---- */
.wm-service-card {
  background: var(--wm-white);
  border: 1px solid var(--wm-border);
  border-radius: var(--wm-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.wm-service-card:hover {
  border-color: var(--wm-light-blue);
  box-shadow: var(--wm-shadow-lg);
  transform: translateY(-4px);
}

.wm-service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.wm-service-card-body {
  padding: 28px;
}

.wm-service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--wm-sky);
  border-radius: var(--wm-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--wm-mid-blue);
  font-size: 1.4rem;
}

.wm-service-card h3 {
  font-family: var(--wm-font-serif);
  font-size: 1.25rem;
  color: var(--wm-navy);
  margin-bottom: 10px;
}

.wm-service-card p {
  font-size: 0.9rem;
  color: var(--wm-text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}

.wm-service-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wm-mid-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.wm-service-card-link:hover { gap: 10px; color: var(--wm-blue); }

/* ---- Process Steps ---- */
.wm-process-section {
  background: var(--wm-navy);
  position: relative;
  overflow: hidden;
}

.wm-process-bg-accent {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44,111,173,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.wm-process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.wm-process-step:last-child { border-bottom: none; }

.wm-process-num {
  font-family: var(--wm-font-mono);
  font-size: 0.75rem;
  color: var(--wm-light-blue);
  background: rgba(74,159,212,0.12);
  border: 1px solid rgba(74,159,212,0.25);
  width: 40px;
  height: 40px;
  border-radius: var(--wm-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 500;
}

.wm-process-text h4 {
  font-family: var(--wm-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wm-white);
  margin-bottom: 6px;
}

.wm-process-text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ---- Quiz ---- */
.wm-quiz-wrapper {
  background: var(--wm-white);
  border: 1px solid var(--wm-border);
  border-radius: var(--wm-radius-xl);
  box-shadow: var(--wm-shadow-xl);
  overflow: hidden;
  max-width: 680px;
  margin: 0 auto;
}

.wm-quiz-header {
  background: linear-gradient(135deg, var(--wm-navy) 0%, var(--wm-blue) 100%);
  padding: 32px 40px;
  color: var(--wm-white);
}

.wm-quiz-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 100px;
  margin-bottom: 20px;
  overflow: hidden;
}

.wm-quiz-progress-fill {
  height: 100%;
  background: var(--wm-light-blue);
  border-radius: 100px;
  transition: width 0.4s ease;
}

.wm-quiz-step-label {
  font-family: var(--wm-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.wm-quiz-question {
  font-family: var(--wm-font-serif);
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--wm-white);
}

.wm-quiz-body {
  padding: 36px 40px;
}

.wm-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.wm-quiz-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 2px solid var(--wm-border);
  border-radius: var(--wm-radius);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--wm-white);
  width: 100%;
  text-align: left;
  font-size: 0.925rem;
  color: var(--wm-text);
  font-family: var(--wm-font-body);
}

.wm-quiz-option:hover {
  border-color: var(--wm-light-blue);
  background: var(--wm-sky);
}

.wm-quiz-option.wm-selected {
  border-color: var(--wm-mid-blue);
  background: rgba(44,111,173,0.06);
  color: var(--wm-blue);
}

.wm-quiz-option-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.wm-quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wm-quiz-result {
  text-align: center;
  padding: 20px 0;
}

.wm-quiz-result-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.wm-quiz-result-title {
  font-family: var(--wm-font-serif);
  font-size: 1.6rem;
  color: var(--wm-navy);
  margin-bottom: 12px;
}

.wm-quiz-result-desc {
  color: var(--wm-text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ---- FAQ Accordion ---- */
.wm-faq-item {
  border-bottom: 1px solid var(--wm-border);
  overflow: hidden;
}

.wm-faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--wm-navy);
  font-family: var(--wm-font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.wm-faq-toggle:hover { color: var(--wm-mid-blue); }

.wm-faq-icon {
  width: 28px;
  height: 28px;
  background: var(--wm-sky);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wm-mid-blue);
  font-size: 1.1rem;
  font-weight: 300;
  transition: all 0.3s;
}

.wm-faq-item.wm-open .wm-faq-icon {
  background: var(--wm-mid-blue);
  color: var(--wm-white);
  transform: rotate(45deg);
}

.wm-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.wm-faq-body-inner {
  padding: 0 0 24px;
  color: var(--wm-text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ---- Testimonials ---- */
.wm-testimonials-section {
  background: var(--wm-mist);
  position: relative;
  overflow: hidden;
}

.wm-testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.wm-testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.wm-testimonial-card {
  min-width: 100%;
  padding: 0 40px;
}

.wm-testimonial-inner {
  background: var(--wm-white);
  border-radius: var(--wm-radius-lg);
  padding: 40px;
  box-shadow: var(--wm-shadow);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.wm-testimonial-quote {
  font-family: var(--wm-font-serif);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--wm-navy);
  margin-bottom: 28px;
  font-style: italic;
}

.wm-testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: var(--wm-sky);
  line-height: 0;
  vertical-align: -1rem;
  margin-right: 4px;
  font-family: Georgia, serif;
}

.wm-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wm-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--wm-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wm-font-serif);
  font-size: 1.2rem;
  color: var(--wm-mid-blue);
  overflow: hidden;
}

.wm-testimonial-name {
  font-weight: 600;
  color: var(--wm-navy);
  font-size: 0.95rem;
}

.wm-testimonial-location {
  font-size: 0.8rem;
  color: var(--wm-slate);
}

.wm-testimonial-stars {
  margin-left: auto;
  color: #f39c12;
  font-size: 0.85rem;
}

.wm-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.wm-carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--wm-border);
  background: var(--wm-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wm-navy);
  transition: all 0.2s;
  font-size: 1rem;
}

.wm-carousel-btn:hover {
  border-color: var(--wm-mid-blue);
  background: var(--wm-mid-blue);
  color: var(--wm-white);
}

.wm-carousel-dots {
  display: flex;
  gap: 8px;
}

.wm-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wm-silver);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.wm-carousel-dot.wm-active {
  background: var(--wm-mid-blue);
  width: 24px;
  border-radius: 100px;
}

/* ---- Team Cards ---- */
.wm-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.wm-team-card {
  position: relative;
  border-radius: var(--wm-radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.wm-team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.wm-team-card:hover .wm-team-photo {
  transform: scale(1.04);
}

.wm-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,51,0.92) 0%, transparent 55%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
}

.wm-team-hover-info {
  position: absolute;
  inset: 0;
  background: rgba(13,31,51,0.93);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.wm-team-card:hover .wm-team-hover-info { opacity: 1; }

.wm-team-name {
  font-family: var(--wm-font-serif);
  font-size: 1.1rem;
  color: var(--wm-white);
  margin-bottom: 4px;
}

.wm-team-role {
  font-family: var(--wm-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--wm-light-blue);
  text-transform: uppercase;
}

.wm-team-bio {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
}

/* ---- Area Checker ---- */
.wm-area-checker {
  background: var(--wm-navy);
  border-radius: var(--wm-radius-lg);
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.wm-area-checker-bg {
  position: absolute;
  top: -60px; right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(44,111,173,0.2) 0%, transparent 70%);
}

.wm-area-input-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.wm-area-input {
  flex: 1;
  padding: 13px 18px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--wm-radius);
  background: rgba(255,255,255,0.08);
  color: var(--wm-white);
  font-family: var(--wm-font-body);
  font-size: 0.925rem;
  transition: border-color 0.2s;
}

.wm-area-input::placeholder { color: rgba(255,255,255,0.35); }
.wm-area-input:focus { outline: none; border-color: var(--wm-light-blue); }

.wm-area-result {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--wm-radius);
  font-size: 0.9rem;
  display: none;
}

.wm-area-result.wm-success-bg {
  background: rgba(39,174,96,0.15);
  border: 1px solid rgba(39,174,96,0.3);
  color: #6fcf97;
  display: block;
}

.wm-area-result.wm-info-bg {
  background: rgba(74,159,212,0.15);
  border: 1px solid rgba(74,159,212,0.3);
  color: var(--wm-light-blue);
  display: block;
}

/* ---- Timeline ---- */
.wm-timeline {
  position: relative;
  padding-left: 48px;
}

.wm-timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--wm-mid-blue), var(--wm-danger));
}

.wm-timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.wm-timeline-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid var(--wm-white);
  z-index: 1;
}

.wm-timeline-dot.wm-t1 { background: var(--wm-success); }
.wm-timeline-dot.wm-t2 { background: #f1c40f; }
.wm-timeline-dot.wm-t3 { background: var(--wm-accent); }
.wm-timeline-dot.wm-t4 { background: #e74c3c; }
.wm-timeline-dot.wm-t5 { background: #8e44ad; }

.wm-timeline-week {
  font-family: var(--wm-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--wm-slate);
  margin-bottom: 4px;
}

.wm-timeline-title {
  font-weight: 600;
  color: var(--wm-navy);
  margin-bottom: 6px;
}

.wm-timeline-desc {
  font-size: 0.875rem;
  color: var(--wm-text-light);
  line-height: 1.65;
}

/* ---- Selector Tool ---- */
.wm-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.wm-selector-card {
  border: 2px solid var(--wm-border);
  border-radius: var(--wm-radius-lg);
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  background: var(--wm-white);
}

.wm-selector-card:hover {
  border-color: var(--wm-light-blue);
  box-shadow: var(--wm-shadow);
  transform: translateY(-2px);
}

.wm-selector-card.wm-selected {
  border-color: var(--wm-mid-blue);
  background: rgba(44,111,173,0.05);
}

.wm-selector-icon { font-size: 2.2rem; margin-bottom: 10px; }
.wm-selector-label { font-weight: 600; color: var(--wm-navy); font-size: 0.9rem; margin-bottom: 4px; }
.wm-selector-sub { font-size: 0.78rem; color: var(--wm-slate); }

.wm-selector-result {
  background: var(--wm-sky);
  border-radius: var(--wm-radius);
  padding: 24px 28px;
  display: none;
}

.wm-selector-result.wm-visible { display: block; }

/* ---- Contact Form ---- */
.wm-form-group {
  margin-bottom: 20px;
}

.wm-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wm-navy);
  margin-bottom: 8px;
}

.wm-form-input,
.wm-form-select,
.wm-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--wm-border);
  border-radius: var(--wm-radius);
  font-family: var(--wm-font-body);
  font-size: 0.925rem;
  color: var(--wm-text);
  background: var(--wm-white);
  transition: border-color 0.2s;
}

.wm-form-input:focus,
.wm-form-select:focus,
.wm-form-textarea:focus {
  outline: none;
  border-color: var(--wm-mid-blue);
}

.wm-form-input.wm-error,
.wm-form-select.wm-error,
.wm-form-textarea.wm-error {
  border-color: var(--wm-danger);
}

.wm-form-error-msg {
  font-size: 0.8rem;
  color: var(--wm-danger);
  margin-top: 5px;
  display: none;
}

.wm-form-error-msg.wm-visible { display: block; }

.wm-form-textarea { resize: vertical; min-height: 120px; }

/* ---- Info Boxes ---- */
.wm-info-box {
  border-radius: var(--wm-radius);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wm-info-box-blue {
  background: rgba(44,111,173,0.07);
  border-left: 4px solid var(--wm-mid-blue);
}

.wm-info-box-orange {
  background: rgba(224,123,46,0.07);
  border-left: 4px solid var(--wm-accent);
}

.wm-info-box-green {
  background: rgba(39,174,96,0.07);
  border-left: 4px solid var(--wm-success);
}

.wm-info-box-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.wm-info-box-text { font-size: 0.9rem; color: var(--wm-text-light); line-height: 1.65; }
.wm-info-box-text strong { color: var(--wm-navy); }

/* ---- Page Hero ---- */
.wm-page-hero {
  background: linear-gradient(135deg, var(--wm-navy) 0%, var(--wm-blue) 100%);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}

.wm-page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,159,212,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,159,212,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.wm-page-hero h1 {
  font-family: var(--wm-font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--wm-white);
  margin-bottom: 16px;
}

.wm-page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
}

.wm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.wm-breadcrumb a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.wm-breadcrumb a:hover { color: var(--wm-white); }
.wm-breadcrumb span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.wm-breadcrumb .wm-current { color: rgba(255,255,255,0.85); }

/* ---- Article Card ---- */
.wm-article-card {
  background: var(--wm-white);
  border: 1px solid var(--wm-border);
  border-radius: var(--wm-radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

.wm-article-card:hover {
  box-shadow: var(--wm-shadow-lg);
  transform: translateY(-3px);
  border-color: var(--wm-light-blue);
}

.wm-article-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wm-article-card-body {
  padding: 24px 28px;
}

.wm-article-card-tag {
  font-family: var(--wm-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wm-mid-blue);
  margin-bottom: 10px;
  display: block;
}

.wm-article-card h3 {
  font-family: var(--wm-font-serif);
  font-size: 1.2rem;
  color: var(--wm-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.wm-article-card p {
  font-size: 0.875rem;
  color: var(--wm-text-light);
  line-height: 1.65;
}

/* ---- Stat Cards ---- */
.wm-stat-card {
  background: var(--wm-white);
  border: 1px solid var(--wm-border);
  border-radius: var(--wm-radius-lg);
  padding: 28px;
  text-align: center;
}

.wm-stat-num {
  font-family: var(--wm-font-serif);
  font-size: 2.4rem;
  color: var(--wm-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.wm-stat-label {
  font-size: 0.875rem;
  color: var(--wm-slate);
}

/* ---- Footer ---- */
.wm-footer {
  background: var(--wm-navy);
  color: rgba(255,255,255,0.65);
}

.wm-footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wm-footer-brand {
  margin-bottom: 20px;
}

.wm-footer-brand-name {
  font-family: var(--wm-font-serif);
  font-size: 1.4rem;
  color: var(--wm-white);
  margin-bottom: 4px;
}

.wm-footer-brand-tagline {
  font-family: var(--wm-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--wm-light-blue);
  text-transform: uppercase;
}

.wm-footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.wm-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.wm-footer-contact-icon { font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.wm-footer-contact-item a { color: rgba(255,255,255,0.65); }
.wm-footer-contact-item a:hover { color: var(--wm-light-blue); }

.wm-footer-col-title {
  font-family: var(--wm-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wm-light-blue);
  margin-bottom: 16px;
}

.wm-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wm-footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.wm-footer-links a:hover { color: var(--wm-white); }

.wm-footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.wm-footer-bottom-text { font-size: 0.8rem; }

.wm-footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.wm-footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.wm-footer-legal-links a:hover { color: rgba(255,255,255,0.8); }

/* ---- Cookie Banner ---- */
.wm-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--wm-navy);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--wm-radius-lg);
  padding: 24px 28px;
  box-shadow: var(--wm-shadow-xl);
  z-index: 9999;
  display: none;
  backdrop-filter: blur(12px);
}

.wm-cookie-banner.wm-visible { display: block; }

.wm-cookie-title {
  font-weight: 600;
  color: var(--wm-white);
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wm-cookie-text {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.wm-cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wm-cookie-accept {
  background: var(--wm-mid-blue);
  color: var(--wm-white);
  border: none;
  padding: 10px 22px;
  border-radius: var(--wm-radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--wm-font-body);
  transition: background 0.2s;
}

.wm-cookie-accept:hover { background: var(--wm-blue); }

.wm-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: var(--wm-radius);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--wm-font-body);
  transition: all 0.2s;
}

.wm-cookie-decline:hover { color: var(--wm-white); border-color: rgba(255,255,255,0.4); }

/* ---- Utility Classes ---- */
.wm-text-center { text-align: center; }
.wm-text-white  { color: var(--wm-white) !important; }
.wm-text-light  { color: var(--wm-text-light); }
.wm-text-accent { color: var(--wm-accent); }
.wm-text-blue   { color: var(--wm-mid-blue); }

.wm-bg-mist  { background: var(--wm-mist); }
.wm-bg-navy  { background: var(--wm-navy); }
.wm-bg-white { background: var(--wm-white); }

.wm-mt-sm { margin-top: 12px; }
.wm-mt    { margin-top: 24px; }
.wm-mt-lg { margin-top: 40px; }
.wm-mb-sm { margin-bottom: 12px; }
.wm-mb    { margin-bottom: 24px; }
.wm-mb-lg { margin-bottom: 40px; }

.wm-divider {
  border: none;
  border-top: 1px solid var(--wm-border);
  margin: 40px 0;
}

.wm-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--wm-font-mono);
  letter-spacing: 0.05em;
}

.wm-badge-blue   { background: rgba(44,111,173,0.1); color: var(--wm-mid-blue); }
.wm-badge-green  { background: rgba(39,174,96,0.1);  color: var(--wm-success); }
.wm-badge-orange { background: rgba(224,123,46,0.1); color: var(--wm-accent); }

.wm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- SVG Separator ---- */
.wm-separator-wave {
  line-height: 0;
  overflow: hidden;
}

.wm-separator-wave svg { display: block; width: 100%; }

/* ---- Legal Pages ---- */
.wm-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.wm-legal-content h2 {
  font-family: var(--wm-font-serif);
  font-size: 1.6rem;
  color: var(--wm-navy);
  margin: 40px 0 14px;
}

.wm-legal-content h3 {
  font-weight: 600;
  color: var(--wm-navy);
  margin: 28px 0 10px;
}

.wm-legal-content p {
  color: var(--wm-text-light);
  margin-bottom: 16px;
  line-height: 1.75;
}

.wm-legal-content ul {
  color: var(--wm-text-light);
  padding-left: 24px;
  margin-bottom: 16px;
}

.wm-legal-content li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.wm-legal-updated {
  font-family: var(--wm-font-mono);
  font-size: 0.75rem;
  color: var(--wm-slate);
  margin-bottom: 40px;
  padding: 12px 16px;
  background: var(--wm-mist);
  border-radius: var(--wm-radius);
  display: inline-block;
}

/* ---- Article Pages ---- */
.wm-article-layout {
  display: grid;
  /* grid-template-columns: 1fr 340px; */
  gap: 48px;
  align-items: start;
  padding: 60px 0 80px;
}

.wm-article-body h2 {
  font-family: var(--wm-font-serif);
  font-size: 1.7rem;
  color: var(--wm-navy);
  margin: 40px 0 16px;
}

.wm-article-body h3 {
  font-family: var(--wm-font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wm-navy);
  margin: 28px 0 10px;
}

.wm-article-body p {
  color: var(--wm-text-light);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.025rem;
}

.wm-article-body ul, .wm-article-body ol {
  color: var(--wm-text-light);
  padding-left: 28px;
  margin-bottom: 20px;
}

.wm-article-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.wm-article-body img {
  width: 100%;
  border-radius: var(--wm-radius-lg);
  margin: 28px 0;
}

.wm-article-sidebar {
  position: sticky;
  top: 88px;
}

.wm-sidebar-card {
  background: var(--wm-white);
  border: 1px solid var(--wm-border);
  border-radius: var(--wm-radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.wm-sidebar-title {
  font-weight: 600;
  color: var(--wm-navy);
  font-size: 0.95rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--wm-sky);
}

.wm-toc-list {
  list-style: none;
}

.wm-toc-list li {
  border-bottom: 1px solid var(--wm-border);
}

.wm-toc-list a {
  display: block;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--wm-text-light);
  transition: color 0.2s;
}

.wm-toc-list a:hover { color: var(--wm-mid-blue); padding-left: 4px; }

/* ---- Maps ---- */
.wm-map-container {
  border-radius: var(--wm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--wm-border);
}

/* ---- Thank You ---- */
.wm-thankyou-section {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wm-navy) 0%, var(--wm-blue) 100%);
  padding: 80px 24px;
}

.wm-thankyou-card {
  background: var(--wm-white);
  border-radius: var(--wm-radius-xl);
  padding: 60px 56px;
  text-align: center;
  max-width: 560px;
  box-shadow: var(--wm-shadow-xl);
}

.wm-thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(39,174,96,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.2rem;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .wm-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .wm-article-layout { grid-template-columns: 1fr; }
  .wm-article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .wm-nav-links { display: none; }
  .wm-nav-hamburger { display: flex; }
  .wm-grid-2,
  .wm-grid-3,
  .wm-grid-4 { grid-template-columns: 1fr; }
  .wm-hero-stats { gap: 24px; }
  .wm-section { padding: 60px 0; }
  .wm-section-lg { padding: 80px 0; }
  .wm-container { padding: 0 16px; }
  .wm-testimonial-card { padding: 0 16px; }
  .wm-testimonial-inner { padding: 28px 24px; }
  .wm-quiz-body { padding: 24px; }
  .wm-quiz-header { padding: 24px; }
  .wm-area-input-row { flex-direction: column; }
  .wm-thankyou-card { padding: 36px 24px; }
  .wm-hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .wm-hero-title { font-size: 2.2rem; }
  .wm-grid-4 { grid-template-columns: 1fr; }
  .wm-footer-bottom { flex-direction: column; text-align: center; }
}

/* ========================================
   ARTICLE PAGES
   ======================================== */

.wm-article-hero {
  position: relative;
  padding: 9rem 0 5rem;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.wm-article-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.wm-article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,31,51,0.5) 0%, rgba(13,31,51,0.92) 100%);
}
.wm-article-hero-content {
  position: relative;
  z-index: 2;
}
.wm-article-breadcrumb {
  font-family: var(--wm-mono);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.wm-article-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.wm-article-breadcrumb a:hover { color: var(--wm-light-blue); }
.wm-article-hero-title {
  font-family: var(--wm-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 1rem;
  max-width: 780px;
  line-height: 1.25;
}
.wm-article-hero-meta {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--wm-mono);
}
.wm-meta-sep { opacity: 0.4; }

/* Article layout */
.wm-article-layout { padding: 4rem 0 5rem; }
.wm-article-body-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.wm-article-content h2 {
  font-family: var(--wm-serif);
  font-size: 1.6rem;
  color: var(--wm-navy);
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(13,31,51,0.08);
}
.wm-article-content h3 {
  font-family: var(--wm-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wm-navy);
  margin: 1.8rem 0 0.6rem;
}
.wm-article-content p {
  color: #3d4a5c;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.wm-article-lead p {
  font-size: 1.1rem;
  color: #2a3a4e;
  line-height: 1.85;
}
.wm-article-img-block {
  margin: 2rem 0;
}
.wm-article-img {
  width: 100%;
  border-radius: var(--wm-radius-lg);
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.wm-article-img-caption {
  display: block;
  font-size: 0.82rem;
  color: #7a8a9a;
  margin-top: 0.6rem;
  font-style: italic;
  line-height: 1.5;
}
.wm-article-callout {
  background: rgba(13,31,51,0.05);
  border-left: 4px solid var(--wm-blue);
  border-radius: 0 var(--wm-radius) var(--wm-radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.wm-article-callout-blue {
  background: var(--wm-navy);
  border-left-color: var(--wm-light-blue);
  color: rgba(255,255,255,0.85);
}
.wm-article-callout-blue strong { color: #fff; }
.wm-callout-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.wm-article-cta {
  background: linear-gradient(135deg, var(--wm-navy) 0%, #0a2d50 100%);
  border-radius: var(--wm-radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0 1rem;
}
.wm-article-cta h3 {
  font-family: var(--wm-serif);
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
.wm-article-cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

/* Sidebar */
.wm-article-sidebar { position: sticky; top: 5rem; }
.wm-sidebar-card {
  background: var(--wm-surface);
  border: 1px solid rgba(13,31,51,0.08);
  border-radius: var(--wm-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.wm-sidebar-heading {
  font-family: var(--wm-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wm-blue);
  margin-bottom: 1rem;
}
.wm-article-toc ul { list-style: none; padding: 0; margin: 0; }
.wm-article-toc li { margin-bottom: 0.5rem; }
.wm-article-toc a {
  color: #4a5a6e;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
}
.wm-article-toc a:hover { color: var(--wm-blue); }
.wm-sidebar-links { list-style: none; padding: 0; margin: 0; }
.wm-sidebar-links li { border-bottom: 1px solid rgba(13,31,51,0.07); }
.wm-sidebar-links li:last-child { border-bottom: none; }
.wm-sidebar-links a {
  display: block;
  padding: 0.6rem 0;
  color: #3d4a5c;
  font-size: 0.9rem;
  text-decoration: none;
  line-height: 1.4;
}
.wm-sidebar-links a:hover { color: var(--wm-blue); }
.wm-sidebar-contact { background: var(--wm-navy); }
.wm-sidebar-contact .wm-sidebar-heading { color: var(--wm-light-blue); }
.wm-sidebar-contact p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1rem; }
.wm-btn-block { display: block; text-align: center; }

/* Articles listing */
.wm-articles-intro { max-width: 700px; margin-bottom: 3rem; }
.wm-articles-intro p { color: #4a5a6e; font-size: 1.05rem; line-height: 1.8; }
.wm-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.wm-article-card {
  background: var(--wm-surface);
  border-radius: var(--wm-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(13,31,51,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wm-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wm-shadow-lg);
}
.wm-article-card-img-link { display: block; }
.wm-article-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.wm-article-card-body { padding: 1.5rem; }
.wm-article-tag {
  display: inline-block;
  font-family: var(--wm-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wm-blue);
  background: rgba(44,111,173,0.1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}
.wm-article-card-title {
  font-family: var(--wm-serif);
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.wm-article-card-title a {
  color: var(--wm-navy);
  text-decoration: none;
}
.wm-article-card-title a:hover { color: var(--wm-blue); }
.wm-article-card-excerpt {
  font-size: 0.92rem;
  color: #5a6a7e;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.wm-article-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(13,31,51,0.07);
  padding-top: 1rem;
}
.wm-article-read-time {
  font-family: var(--wm-mono);
  font-size: 0.8rem;
  color: #8a9aaa;
}
.wm-article-read-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--wm-blue);
  text-decoration: none;
}
.wm-article-read-link:hover { color: var(--wm-navy); }
.wm-articles-disclaimer {
  background: rgba(13,31,51,0.04);
  border-radius: var(--wm-radius);
  padding: 1.5rem 2rem;
  border-left: 3px solid rgba(13,31,51,0.15);
}
.wm-articles-disclaimer p {
  font-size: 0.88rem;
  color: #6a7a8e;
  line-height: 1.7;
  margin: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.wm-contact-hero { min-height: 360px; }
.wm-contact-main { background: #f8fafb; }
.wm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.wm-contact-form-intro {
  color: #5a6a7e;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.97rem;
}
.wm-contact-info-card,
.wm-contact-hours-card,
.wm-contact-response-card {
  background: #fff;
  border-radius: var(--wm-radius-lg);
  padding: 1.8rem;
  border: 1px solid rgba(13,31,51,0.08);
  margin-bottom: 1.5rem;
}
.wm-contact-info-heading {
  font-family: var(--wm-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wm-blue);
  margin-bottom: 1.2rem;
}
.wm-contact-detail-list { list-style: none; padding: 0; margin: 0; }
.wm-contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.wm-contact-detail-item:last-child { margin-bottom: 0; }
.wm-contact-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.wm-contact-detail-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9aabb8;
  margin-bottom: 2px;
  font-family: var(--wm-mono);
}
.wm-contact-detail-value {
  display: block;
  color: var(--wm-navy);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.5;
}
.wm-contact-detail-value:hover { color: var(--wm-blue); }
.wm-hours-table { width: 100%; border-collapse: collapse; }
.wm-hours-table td { padding: 0.45rem 0; font-size: 0.9rem; }
.wm-hours-day { color: #4a5a6e; font-weight: 500; }
.wm-hours-time { color: #3d4a5c; text-align: right; }
.wm-hours-closed .wm-hours-time { color: #9aabb8; }
.wm-hours-note {
  font-size: 0.82rem;
  color: #8a9aaa;
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 0;
}
.wm-response-steps { list-style-type: decimal; padding-left: 1.3rem; }
.wm-response-steps li {
  color: #4a5a6e;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}
.wm-response-steps li:last-child { margin-bottom: 0; }
.wm-response-steps strong { color: var(--wm-navy); }

/* Map section */
.wm-map-section { padding: 4rem 0 0; }
.wm-map-embed { overflow: hidden; }
.wm-map-embed iframe { display: block; }

/* Contact FAQ grid */
.wm-contact-faq { background: #f8fafb; }
.wm-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.wm-faq-mini-item {
  background: #fff;
  border-radius: var(--wm-radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(13,31,51,0.08);
}
.wm-faq-mini-item h4 {
  font-family: var(--wm-sans);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--wm-navy);
  margin-bottom: 0.6rem;
}
.wm-faq-mini-item p {
  font-size: 0.9rem;
  color: #5a6a7e;
  line-height: 1.65;
  margin: 0;
}

/* Form extras */
.wm-form-consent { margin-top: 0.5rem; }
.wm-checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.88rem;
  color: #4a5a6e;
  line-height: 1.55;
}
.wm-checkbox-label input[type="checkbox"] { display: none; }
.wm-checkbox-custom {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #c0ccd8;
  border-radius: 4px;
  margin-top: 2px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.wm-checkbox-label input:checked + .wm-checkbox-custom {
  background: var(--wm-blue);
  border-color: var(--wm-blue);
}
.wm-checkbox-label input:checked + .wm-checkbox-custom::after {
  content: '✓';
  color: #fff;
  font-size: 11px;
  font-weight: bold;
}
.wm-form-note {
  font-size: 0.82rem;
  color: #8a9aaa;
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.wm-legal-hero {
  background: var(--wm-navy);
  padding: 8rem 0 3rem;
}
.wm-legal-title {
  font-family: var(--wm-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.5rem;
}
.wm-legal-date {
  font-family: var(--wm-mono);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}
.wm-legal-layout { padding: 4rem 0 6rem; }
.wm-legal-body { max-width: 780px; }
.wm-legal-body h2 {
  font-family: var(--wm-serif);
  font-size: 1.4rem;
  color: var(--wm-navy);
  margin: 2.5rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(13,31,51,0.08);
}
.wm-legal-body h3 {
  font-family: var(--wm-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--wm-navy);
  margin: 1.5rem 0 0.5rem;
}
.wm-legal-body p {
  color: #3d4a5c;
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 1.1rem;
}
.wm-legal-intro {
  background: rgba(44,111,173,0.06);
  border-left: 4px solid var(--wm-blue);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--wm-radius) var(--wm-radius) 0;
  margin-bottom: 2rem;
}
.wm-legal-intro p { margin: 0; }
.wm-legal-list { padding-left: 1.4rem; margin-bottom: 1.1rem; }
.wm-legal-list li {
  color: #3d4a5c;
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 0.35rem;
}
.wm-legal-table-wrap { overflow-x: auto; margin: 1.5rem 0; }
.wm-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.wm-legal-table th {
  background: var(--wm-navy);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  padding: 0.75rem 1rem;
  text-align: left;
}
.wm-legal-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(13,31,51,0.08);
  color: #3d4a5c;
}
.wm-legal-table tr:last-child td { border-bottom: none; }
.wm-legal-nav {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(13,31,51,0.04);
  border-radius: var(--wm-radius-lg);
  max-width: 360px;
}
.wm-legal-nav h4 {
  font-size: 0.8rem;
  font-family: var(--wm-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a9aaa;
  margin-bottom: 0.75rem;
}
.wm-legal-nav ul { list-style: none; padding: 0; margin: 0; }
.wm-legal-nav li { margin-bottom: 0.4rem; }
.wm-legal-nav a { color: var(--wm-blue); font-size: 0.9rem; text-decoration: none; }
.wm-legal-nav a:hover { text-decoration: underline; }

/* CTA Strip */
.wm-cta-strip { background: var(--wm-navy); padding: 3.5rem 0; }
.wm-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.wm-cta-strip-title {
  font-family: var(--wm-serif);
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.wm-cta-strip-sub {
  color: rgba(255,255,255,0.65);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for new pages */
@media (max-width: 1024px) {
  .wm-article-body-grid { grid-template-columns: 1fr; }
  .wm-article-sidebar { position: static; }
  .wm-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .wm-articles-grid { grid-template-columns: 1fr; }
  .wm-faq-grid { grid-template-columns: 1fr; }
  .wm-cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .wm-legal-body { max-width: 100%; }
}



.logo{
  max-width: 90px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}