:root {
  --wa-background: #0b0b0d;
  --wa-surface: #111214;
  --wa-surface-2: #141418;
  --wa-text: #f2f2f2;
  --wa-muted: #a8adb7;
  --wa-border: #27272a;
  --wa-primary: #ff2a23;
  --wa-primary-hover: #ff4a43;
  --wa-radius: 14px;
  --wa-max-width: 1200px;
}

/* Base */
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background: var(--wa-background);
  color: var(--wa-text);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.wa-container {
  width: min(100% - 2rem, var(--wa-max-width));
  margin-inline: auto;
}

.wa-section {
  padding: 5rem 0;
}

.wa-grid {
  display: grid;
  gap: 1.5rem;
}

.wa-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wa-card {
  background: var(--wa-surface-2);
  border: 1px solid var(--wa-border);
  border-radius: var(--wa-radius);
  padding: 1.5rem;
}

.wa-button,
.wp-block-button__link.wa-button {
  background: var(--wa-primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  display: inline-block;
  border: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.wa-button:hover,
.wp-block-button__link.wa-button:hover {
  background: var(--wa-primary-hover);
  color: #fff;
  transform: translateY(-1px);
}

.wa-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  color: var(--wa-primary);
  font-family: Oswald, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.wa-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.wa-hero__inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.wa-hero h1 {
  margin: 0 0 1rem;
}

.wa-hero p {
  max-width: 48rem;
  margin: 0;
  color: #e5e7eb;
}

/* Gallery */
.wa-gallery-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wa-gallery-filters .is-active {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Header */
.wa-site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(11, 11, 13, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-site-header__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wa-site-branding__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.wa-header-logo {
  height: 40px;
  width: auto;
  display: block;
}

.wa-site-title {
  font-family: Oswald, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wa-primary-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.wa-desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.wa-nav-link,
.wa-nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--wa-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wa-nav-link:hover,
.wa-nav-dropdown__toggle:hover {
  color: var(--wa-text);
}

.wa-nav-dropdown {
  position: relative;
}

.wa-nav-chevron {
  width: 12px;
  height: 12px;
}

.wa-nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(4px);
}

.wa-nav-dropdown:hover .wa-nav-dropdown__menu,
.wa-nav-dropdown:focus-within .wa-nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-nav-dropdown__menu a {
  display: block;
  background: var(--wa-surface-2);
  border-right: 1px solid var(--wa-border);
  border-left: 1px solid var(--wa-border);
  color: var(--wa-muted);
  text-decoration: none;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.wa-nav-dropdown__menu a:first-child {
  border-top: 1px solid var(--wa-border);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.wa-nav-dropdown__menu a:last-child {
  border-bottom: 1px solid var(--wa-border);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.wa-nav-dropdown__menu a:hover {
  color: var(--wa-text);
  background: #1c1d21;
}

.wa-site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.wa-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wa-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.wa-header-phone:hover {
  color: var(--wa-primary-hover);
}

.wa-header-phone__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-header-phone__icon svg {
  width: 16px;
  height: 16px;
}

.wa-mobile-toggle {
  display: none;
  margin-left: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wa-text);
  cursor: pointer;
}

.wa-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.wa-mobile-toggle__close {
  display: none;
}

.wa-mobile-toggle[aria-expanded="true"] .wa-mobile-toggle__open {
  display: none;
}

.wa-mobile-toggle[aria-expanded="true"] .wa-mobile-toggle__close {
  display: inline-flex;
}

.wa-mobile-menu {
  border-top: 1px solid var(--wa-border);
  background: var(--wa-background);
}

.wa-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.wa-mobile-link,
.wa-mobile-submenu__toggle,
.wa-mobile-sublink {
  color: var(--wa-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.wa-mobile-link:hover,
.wa-mobile-submenu__toggle:hover,
.wa-mobile-sublink:hover {
  color: var(--wa-text);
}

.wa-mobile-submenu__toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.3rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.wa-mobile-submenu__chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.wa-mobile-submenu__toggle[aria-expanded="true"] .wa-mobile-submenu__chevron {
  transform: rotate(180deg);
}

.wa-mobile-submenu__panel {
  margin-top: 0.75rem;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.wa-header-phone--mobile {
  margin-top: 0.5rem;
}

/* Push page content below fixed header */
body {
  padding-top: 64px;
}

@media (max-width: 980px) {
  .wa-primary-nav,
  .wa-site-header__actions {
    display: none;
  }

  .wa-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Footer */
.wa-site-footer {
  background: #111214;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0;
}

.wa-footer-shell {
  width: min(100% - 4rem, 1720px);
  margin-inline: auto;
  padding-top: 4rem;
  padding-bottom: 1.75rem;
}

.wa-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 5.5rem;
  align-items: start;
}

.wa-footer-brand {
  max-width: 520px;
}

.wa-footer-logo-link {
  display: inline-block;
  margin-bottom: 1.75rem;
  text-decoration: none;
}

.wa-footer-logo {
  height: 40px;
  width: auto;
  display: block;
}

.wa-footer-logo-text {
  font-family: Oswald, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}

.wa-footer-description {
  margin: 0;
  max-width: 470px;
  color: #a8adb7;
  font-size: 15px;
  line-height: 1.9;
}

.wa-footer-heading {
  margin: 0 0 1.7rem;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.wa-footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wa-footer-links a {
  color: #a8adb7;
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wa-footer-links a:hover {
  color: var(--wa-primary);
}

.wa-footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ff2a23;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.wa-footer-phone:hover {
  color: #ff4a43;
}

.wa-footer-phone-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-footer-phone-icon svg {
  width: 16px;
  height: 16px;
}

.wa-footer-socials {
  display: flex;
  gap: 12px;
}

.wa-social-button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #222428;
  color: #8e949d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wa-social-button:hover {
  background: #2a2d32;
  color: var(--wa-primary);
  transform: translateY(-1px);
}

.wa-social-button svg {
  width: 17px;
  height: 17px;
  display: block;
}

.wa-footer-bottom {
  margin-top: 2.9rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.wa-footer-bottom p {
  margin: 0;
  color: #a8adb7;
  font-size: 13px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
  .wa-footer-grid {
    gap: 3rem;
  }
}

@media (max-width: 980px) {
  .wa-primary-nav,
  .wa-site-header__actions {
    display: none;
  }

  .wa-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .wa-grid--3 {
    grid-template-columns: 1fr;
  }

  .wa-section {
    padding: 3.5rem 0;
  }

  .wa-grid[style*="grid-template-columns:1.1fr .9fr"] {
    grid-template-columns: 1fr !important;
  }

  .wa-footer-shell {
    width: min(100% - 2rem, 1720px);
    padding-top: 3rem;
  }

  .wa-footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .wa-footer-brand {
    max-width: none;
  }

  .wa-footer-description {
    max-width: 100%;
  }

  .wa-footer-bottom {
    margin-top: 2rem;
  }
}

/* WordPress admin bar offset */
body.admin-bar .wa-site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .wa-site-header {
    top: 46px;
  }
}

/* Home page */
.wa-button--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.wa-button--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.wa-home-section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}

.wa-home-section-heading h2,
.wa-home-about__content h2,
.wa-home-cta__inner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.wa-home-section-heading h2 span,
.wa-home-about__content h2 span,
.wa-home-cta__inner h2 span {
  color: var(--wa-primary);
}

.wa-home-section-heading p {
  margin: 0.75rem auto 0;
  max-width: 34rem;
  color: var(--wa-muted);
  font-size: 0.9rem;
}

.wa-home-hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding-bottom: 6rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wa-home-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.2);
}

.wa-home-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2rem;
}

.wa-home-hero__lead {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 300;
  color: #fff;
}

.wa-home-hero__sublead {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--wa-muted);
}

.wa-home-hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.wa-home-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 1;
}

.wa-home-scroll-indicator__mouse {
  width: 24px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(168, 173, 183, 0.3);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wa-home-scroll-indicator__dot {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--wa-primary);
  animation: wa-scroll-bob 2s infinite;
}

@keyframes wa-scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.wa-home-feature-band {
  background: var(--wa-background);
  padding: 4rem 0;
}

.wa-home-feature-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.wa-home-feature-card {
  text-align: center;
  padding: 1.75rem;
  border-radius: 14px;
  border: 1px solid var(--wa-border);
  background: var(--wa-surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.wa-home-feature-card:hover {
  border-color: rgba(255, 42, 35, 0.4);
  transform: translateY(-2px);
}

.wa-home-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 42, 35, 0.1);
  color: var(--wa-primary);
  font-size: 1.1rem;
}

.wa-home-feature-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.wa-home-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--wa-muted);
}

.wa-home-about {
  background: var(--wa-background);
}

.wa-home-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.wa-home-about__image-wrap {
  position: relative;
}

.wa-home-about__image-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
}

.wa-home-about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wa-home-about__accent {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 42, 35, 0.3);
  border-radius: 14px;
  z-index: -1;
}

.wa-home-about__content p {
  margin: 0 0 1rem;
  line-height: 1.85;
  color: var(--wa-muted);
}

.wa-home-about__content .wa-button {
  margin-top: 1rem;
}

.wa-home-services {
  background: var(--wa-surface);
}

.wa-home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.wa-home-service-card {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--wa-border);
  background: var(--wa-background);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.wa-home-service-card:hover {
  border-color: rgba(255, 42, 35, 0.4);
  transform: translateY(-2px);
}

.wa-home-service-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.wa-home-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wa-home-service-card:hover .wa-home-service-card__media img {
  transform: scale(1.05);
}

.wa-home-service-card__body {
  padding: 1.5rem;
}

.wa-home-service-card__body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.wa-home-service-card__body p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--wa-muted);
}

.wa-home-service-card__body span {
  color: var(--wa-primary);
  font-size: 0.9rem;
  font-weight: 600;
}

.wa-home-testimonials {
  background: var(--wa-background);
}

.wa-home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.wa-home-testimonial-card {
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--wa-border);
  background: var(--wa-surface);
}

.wa-home-testimonial-stars {
  margin-bottom: 1rem;
  color: var(--wa-primary);
  letter-spacing: 0.1em;
}

.wa-home-testimonial-text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--wa-muted);
  font-style: italic;
}

.wa-home-testimonial-name {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.wa-home-faq {
  background: var(--wa-surface);
}

.wa-home-faq__container {
  max-width: 52rem;
}

.wa-home-faq__list {
  display: grid;
  gap: 0.75rem;
}

.wa-home-faq__item {
  border: 1px solid var(--wa-border);
  border-radius: 14px;
  background: var(--wa-background);
  padding: 0;
  overflow: hidden;
}

.wa-home-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.wa-home-faq__item summary::-webkit-details-marker {
  display: none;
}

.wa-home-faq__answer {
  padding: 0 1.5rem 1.25rem;
}

.wa-home-faq__answer p {
  margin: 0;
  color: var(--wa-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.wa-home-cta {
  position: relative;
  overflow: hidden;
  background: var(--wa-background);
}

.wa-home-cta__accent {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 42, 35, 0.05), transparent 45%);
}

.wa-home-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wa-home-cta__inner p {
  max-width: 34rem;
  margin: 1rem auto 2rem;
  color: var(--wa-muted);
  font-size: 0.9rem;
}

.wa-home-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .wa-home-about__grid,
  .wa-home-services__grid,
  .wa-home-testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .wa-home-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .wa-home-about__grid,
  .wa-home-services__grid,
  .wa-home-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .wa-home-hero {
    min-height: calc(100vh - 64px);
    padding-bottom: 5rem;
  }

  .wa-home-hero__lead {
    font-size: 1.1rem;
  }

  .wa-home-hero__sublead {
    font-size: 0.9rem;
  }
}

/* Home hero button tuning */
.wa-home-hero__actions .wa-button {
  min-width: 280px;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.wa-home-hero__actions .wa-button--outline {
  background: rgba(10, 10, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.wa-home-hero__actions .wa-button--outline:hover {
  background: rgba(18, 18, 22, 0.98);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.wa-home-hero__phone {
  gap: 0.7rem;
}

.wa-home-hero__phone-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-home-hero__phone-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* About + CTA button tuning */
.wa-home-about .wa-button,
.wa-home-cta .wa-button {
  min-width: 220px;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wa-home-about .wa-button {
  min-width: 190px;
}

.wa-home-cta__actions .wa-button {
  min-width: 260px;
}

.wa-home-cta__actions .wa-button--outline {
  background: rgba(10, 10, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.wa-home-cta__actions .wa-button--outline:hover {
  background: rgba(18, 18, 22, 0.98);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* Homepage heading contrast + smaller sizing */
.wa-home-section-heading h2,
.wa-home-about__content h2,
.wa-home-cta__inner h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.75rem, 2.7vw, 2.45rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.wa-home-section-heading h2 span,
.wa-home-about__content h2 span,
.wa-home-cta__inner h2 span {
  color: var(--wa-primary);
}

.wa-home-section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.wa-home-section-heading p {
  margin: 0.55rem auto 0;
  max-width: 34rem;
  color: var(--wa-muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.wa-home-about__content h2 {
  margin-bottom: 1rem;
}

.wa-home-cta__inner h2 {
  margin-bottom: 0.75rem;
}

/* FAQ plus/minus icon */
.wa-home-faq__item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.wa-home-faq__item summary::-webkit-details-marker {
  display: none;
}

.wa-home-faq__item summary::before,
.wa-home-faq__item summary::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
  transform: translateY(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.wa-home-faq__item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.wa-home-faq__item[open] summary::after {
  opacity: 0;
}

.wa-home-faq__item summary:hover::before,
.wa-home-faq__item summary:hover::after {
  background: var(--wa-primary);
}

.wa-home-faq__answer p {
  margin: 0;
  color: #b8bcc5;
  font-size: 0.88rem;
  line-height: 1.75;
}

/* About image closer to React version */
.wa-home-about__grid {
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3.5rem;
  align-items: center;
}

.wa-home-about__image-wrap {
  max-width: 640px;
}

.wa-home-about__image-frame {
  aspect-ratio: 1.08 / 1;
  border-radius: 6px;
}

.wa-home-about__image {
  border-radius: 6px;
}

.wa-home-about__accent {
  display: none;
}

/* Home feature cards closer to React */
.wa-home-feature-band {
  padding: 2.5rem 0 3.5rem;
}

.wa-home-feature-grid {
  max-width: 58rem;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.wa-home-feature-card {
  padding: 1.35rem 1.15rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #121317;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  box-shadow: none;
  transform: none;
}

.wa-home-feature-card:hover {
  border-color: rgba(255, 42, 35, 0.18);
  transform: translateY(-1px);
}

.wa-home-feature-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  background: rgba(255, 42, 35, 0.12);
  color: var(--wa-primary);
  font-size: 0.78rem;
}

.wa-home-feature-card h3 {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.wa-home-feature-card p {
  margin: 0;
  max-width: 24ch;
  font-size: 0.74rem;
  line-height: 1.65;
  color: #a8adb7;
}

.wa-home-feature-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* Service cards closer to React */
.wa-home-service-card {
  border-radius: 6px;
}

.wa-home-service-card__media {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.wa-home-service-card__body h3 {
  color: #fff;
}

/* Service card heading icons */
.wa-home-service-card__body h3 {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
}

.wa-home-service-card__body h3 span:last-child {
  color: #fff;
}

.wa-home-service-card__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wa-primary);
  flex: 0 0 auto;
}

.wa-home-service-card__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Make service cards a little wider / roomier */
.wa-home-services .wa-container {
  width: min(100% - 2rem, 1360px);
}

.wa-home-services__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.wa-home-service-card__body {
  padding: 1.4rem 1.35rem 1.45rem;
}

.wa-home-service-card__body p {
  max-width: none;
  width: 100%;
}

/* =========================
   Shared service pages
   ========================= */

.wa-service-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wa-service-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.72);
}

.wa-service-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.wa-service-hero__inner h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 2.1vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.wa-service-hero__inner h1 span,
.wa-service-intro__content h2 span,
.wa-service-section-heading h2 span {
  color: var(--wa-primary);
}

.wa-service-intro {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.wa-service-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.wa-service-intro__content h2,
.wa-service-section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.3rem, 1.7vw, 1.85rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.wa-service-section-heading {
  text-align: center;
  margin-bottom: 2.25rem;
}

.wa-service-intro__content p {
  margin: 0 0 1rem;
  color: var(--wa-muted);
  line-height: 1.85;
  font-size: 0.92rem;
}

.wa-service-intro__image-wrap {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--wa-border);
}

.wa-service-intro__image {
  width: 100%;
  height: 288px;
  object-fit: cover;
  display: block;
}

.wa-service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.wa-service-card {
  padding: 1.5rem;
  background: var(--wa-background);
  border: 1px solid var(--wa-border);
  border-radius: 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.wa-service-card:hover {
  border-color: rgba(255, 42, 35, 0.25);
  transform: translateY(-1px);
}

.wa-service-card h3 {
  margin: 0 0 0.6rem;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.15;
}

.wa-service-card p {
  margin: 0;
  color: var(--wa-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.wa-service-icon-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.wa-service-icon-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
}

.wa-service-icon-item__icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wa-primary);
  flex: 0 0 auto;
}

.wa-service-icon-item__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.wa-service-benefits {
  background: var(--wa-surface);
}

.wa-service-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.wa-service-benefit-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--wa-background);
  border: 1px solid var(--wa-border);
  border-radius: 8px;
}

.wa-service-benefit-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 42, 35, 0.1);
  color: var(--wa-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.wa-service-benefit-card__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.wa-service-benefit-card__body h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  line-height: 1.15;
}

.wa-service-benefit-card__body p {
  margin: 0;
  color: var(--wa-muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.wa-service-note {
  margin: 2rem auto 0;
  max-width: 42rem;
  text-align: center;
  color: var(--wa-muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .wa-service-intro__grid,
  .wa-service-card-grid,
  .wa-service-benefits__grid {
    grid-template-columns: 1fr 1fr;
  }

  .wa-service-icon-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .wa-service-intro__grid,
  .wa-service-card-grid,
  .wa-service-benefits__grid,
  .wa-service-icon-grid {
    grid-template-columns: 1fr;
  }

  .wa-service-hero {
    min-height: 260px;
  }
}

/* =========================
   Commerical Page Edits
   ========================= */

.wa-com-page .wa-service-icon-grid {
  max-width: 1080px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.wa-com-page .wa-service-icon-item {
  padding: 0.75rem 0.85rem;
  gap: 0.55rem;
  font-size: 0.78rem;
  border-radius: 6px;
}

.wa-com-page .wa-service-icon-item__icon {
  width: 14px;
  height: 14px;
}

.wa-com-page .wa-service-icon-item__icon svg {
  width: 14px;
  height: 14px;
}

.wa-com-page .wa-service-benefit-card {
  display: block;
  padding: 1.25rem 1.15rem;
  border-radius: 6px;
}

.wa-com-page .wa-service-benefit-card__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 0.9rem;
}

.wa-com-page .wa-service-benefit-card__icon svg {
  width: 15px;
  height: 15px;
}

.wa-com-page .wa-service-benefit-card__body h3 {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
}

.wa-com-page .wa-service-benefit-card__body p {
  max-width: 30ch;
  font-size: 0.8rem;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .wa-com-page .wa-service-icon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wa-com-page .wa-service-icon-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Shared specialty pages
   ========================= */

.wa-specialty-page .wa-service-intro__content {
  max-width: 560px;
}

.wa-specialty-page .wa-service-section-heading h2,
.wa-specialty-page .wa-service-intro__content h2,
.wa-specialty-page .wa-service-hero__inner h1 {
  color: #fff;
}

.wa-specialty-page .wa-service-card-grid--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.wa-specialty-page .wa-service-card-grid--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wa-specialty-page .wa-service-icon-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 920px;
}

.wa-specialty-page .wa-service-icon-grid--compact {
  max-width: 860px;
}

.wa-specialty-page .wa-service-card h3 {
  font-size: 0.96rem;
}

.wa-specialty-page .wa-service-card p {
  font-size: 0.86rem;
}

.wa-specialty-page .wa-service-benefit-card {
  border-radius: 8px;
}

.wa-specialty-page .wa-service-benefit-card__body h3 {
  font-size: 0.88rem;
}

.wa-specialty-page .wa-service-benefit-card__body p {
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .wa-specialty-page .wa-service-card-grid--wide,
  .wa-specialty-page .wa-service-icon-grid--4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .wa-specialty-page .wa-service-card-grid--4,
  .wa-specialty-page .wa-service-card-grid--wide,
  .wa-specialty-page .wa-service-icon-grid--4 {
    grid-template-columns: 1fr;
  }
}

/* Utility page heroes */
.wa-page-hero {
  padding: 7rem 0 4rem;
  background: linear-gradient(180deg, rgba(255,42,35,0.08), transparent 55%);
  border-bottom: 1px solid var(--wa-border);
}

.wa-page-hero__inner {
  text-align: center;
}

.wa-page-hero__inner h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 2.6vw, 2.9rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.wa-page-hero__inner h1 span {
  color: var(--wa-primary);
}

.wa-page-hero__inner p {
  margin: 1rem auto 0;
  max-width: 38rem;
  color: var(--wa-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* Contact */
.wa-contact-page__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.wa-contact-page__form,
.wa-contact-page__panel {
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: 8px;
  padding: 1.5rem;
}

.wa-contact-page__form h2,
.wa-contact-page__panel h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.3rem, 1.7vw, 1.85rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.wa-contact-page__form h2 span,
.wa-contact-page__panel h2 span {
  color: var(--wa-primary);
}

.wa-contact-page__info {
  display: grid;
  gap: 1rem;
}

.wa-contact-page__panel h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.wa-contact-list {
  display: grid;
  gap: 1rem;
}

.wa-contact-list__item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.wa-contact-list__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 42, 35, 0.1);
  color: var(--wa-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.wa-contact-list__icon svg {
  width: 18px;
  height: 18px;
}

.wa-contact-list a,
.wa-contact-list p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.wa-contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.wa-contact-socials a {
  color: var(--wa-muted);
  text-decoration: none;
}

.wa-contact-socials a:hover {
  color: var(--wa-primary);
}

.wa-contact-page__local-note {
  margin: 0;
  color: var(--wa-muted);
  line-height: 1.8;
}

.wa-contact-page__local-note span {
  color: #fff;
  font-weight: 600;
}

.wa-contact-page__form-note {
  margin: 1rem 0 0;
  color: var(--wa-muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

/* WPForms inside theme */
.wa-contact-page .wpforms-container {
  margin: 0 !important;
}

.wa-contact-page .wpforms-field-label {
  color: #fff !important;
}

.wa-contact-page input,
.wa-contact-page textarea,
.wa-contact-page select {
  background: var(--wa-background) !important;
  border: 1px solid var(--wa-border) !important;
  color: #fff !important;
  border-radius: 8px !important;
}

.wa-contact-page .wpforms-submit {
  background: var(--wa-primary) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 0.9rem 1.4rem !important;
}

/* Gallery */
.wa-gallery-page .wa-gallery-filters {
  justify-content: center;
  margin-bottom: 2rem;
}

.wa-gallery-filter {
  background: var(--wa-surface);
  color: var(--wa-muted);
  border: 1px solid var(--wa-border);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  cursor: pointer;
}

.wa-gallery-filter.is-active,
.wa-gallery-filter:hover {
  background: var(--wa-primary);
  color: #fff;
  border-color: var(--wa-primary);
}

.wa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.wa-gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--wa-border);
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.wa-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.wa-gallery-item:hover img {
  transform: scale(1.06);
}

.wa-gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.72) 100%);
}

.wa-gallery-item__tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: var(--wa-primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.wa-gallery-item__caption {
  color: #fff;
  font-size: 0.82rem;
  text-align: left;
}

/* Lightbox */
.wa-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.wa-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,0.85);
  cursor: pointer;
}

.wa-lightbox__dialog {
  position: relative;
  z-index: 2;
  width: min(95vw, 1100px);
  margin: 5vh auto 0;
  background: var(--wa-surface);
  border: 1px solid var(--wa-border);
  border-radius: 10px;
  overflow: hidden;
}

.wa-lightbox__dialog img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #000;
}

.wa-lightbox__meta {
  padding: 1rem;
}

.wa-lightbox__meta p {
  margin: 0;
  color: #fff;
}

.wa-lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--wa-border);
  background: rgba(17,18,20,0.92);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* 404 */
.wa-404-page {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wa-surface);
}

.wa-404-page__inner {
  text-align: center;
}

.wa-404-page__inner h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #fff;
}

.wa-404-page__inner p {
  margin: 0 0 1.5rem;
  color: var(--wa-muted);
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .wa-contact-page__grid,
  .wa-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .wa-contact-page__grid,
  .wa-gallery-grid {
    grid-template-columns: 1fr;
  }

  .wa-page-hero {
    padding: 6rem 0 3rem;
  }
}

/* WordPress menu-driven header */
.wa-menu,
.wa-menu ul,
.wa-mobile-menu__list,
.wa-mobile-menu__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wa-desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.wa-desktop-nav > li {
  position: relative;
}

.wa-desktop-nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--wa-muted);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.wa-desktop-nav > li:hover > a,
.wa-desktop-nav > li.current-menu-item > a,
.wa-desktop-nav > li.current-menu-ancestor > a {
  color: var(--wa-text);
}

.wa-desktop-nav .menu-item-has-children > a::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 0.2rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
}

.wa-desktop-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.wa-desktop-nav li:hover > .sub-menu,
.wa-desktop-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-desktop-nav .sub-menu li a {
  display: block;
  background: var(--wa-surface-2);
  border-left: 1px solid var(--wa-border);
  border-right: 1px solid var(--wa-border);
  color: var(--wa-muted);
  text-decoration: none;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.wa-desktop-nav .sub-menu li:first-child a {
  border-top: 1px solid var(--wa-border);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.wa-desktop-nav .sub-menu li:last-child a {
  border-bottom: 1px solid var(--wa-border);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.wa-desktop-nav .sub-menu li a:hover {
  color: var(--wa-text);
  background: #1c1d21;
}

/* Mobile menu */
.wa-mobile-menu__list {
  display: grid;
  gap: 0.85rem;
}

.wa-mobile-menu__list > li > a {
  color: var(--wa-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.wa-mobile-menu__list > li > a:hover {
  color: var(--wa-text);
}

.wa-mobile-menu__list .sub-menu {
  margin-top: 0.6rem;
  margin-left: 1rem;
  display: grid;
  gap: 0.55rem;
}

.wa-mobile-menu__list .sub-menu a {
  color: var(--wa-muted);
  text-decoration: none;
  font-size: 0.82rem;
}

.wa-mobile-menu__list .sub-menu a:hover {
  color: var(--wa-text);
}

/* Footer Address*/
.wa-footer-address {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  color: #a8adb7;
  font-size: 15px;
  line-height: 1.6;
}

.wa-footer-address-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wa-primary);
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.wa-footer-address-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.wa-footer-address-text {
  display: flex;
  flex-direction: column;
}

/* Contact page refinements */
.wa-contact-socials--icons {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.wa-contact-socials--icons a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #222428;
  color: #8e949d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.wa-contact-socials--icons a:hover {
  background: #2a2d32;
  color: var(--wa-primary);
  transform: translateY(-1px);
}

.wa-contact-socials--icons svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* WPForms checkboxes / radios / helper text */
.wa-contact-page .wpforms-field-choice label,
.wa-contact-page .wpforms-field-checkbox label,
.wa-contact-page .wpforms-field-radio label,
.wa-contact-page .wpforms-field-sublabel,
.wa-contact-page .wpforms-field-description,
.wa-contact-page .wpforms-field-limit-text {
  color: #fff !important;
}

.wa-contact-page .wpforms-field-choice input + label,
.wa-contact-page .wpforms-field-checkbox input + label,
.wa-contact-page .wpforms-field-radio input + label {
  color: #fff !important;
}

.wa-contact-page .wpforms-container input::placeholder,
.wa-contact-page .wpforms-container textarea::placeholder {
  color: #8e949d !important;
}

.wa-contact-list__item > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wa-contact-list__item > div p,
.wa-contact-list__item > div a {
  margin: 0;
}


/* Right-align desktop header menu near phone */
.wa-primary-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.wa-desktop-nav,
.wa-menu {
  justify-content: flex-end;
}

/* Home hero text contrast boost */
.wa-home-hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(11, 11, 13, 0.34) 0%,
    rgba(11, 11, 13, 0.42) 45%,
    rgba(11, 11, 13, 0.5) 100%
  );
}

.wa-home-hero__content {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.wa-home-hero__lead {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.wa-home-hero__sublead {
  max-width: 44rem;
  margin: 0 auto 2.25rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

@media (max-width: 760px) {
  .wa-home-hero__lead {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
  }

  .wa-home-hero__sublead {
    font-size: 0.94rem;
    line-height: 1.7;
  }
}