/* ============================================================
   WINGED HUSSAR PR — Main Stylesheet
   ============================================================ */

/* 1. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0; }

/* 2. DESIGN TOKENS */
:root {
  --color-red-primary: #E04025;
  --color-red-button: #C8341E;
  --color-red-button-hover: #A52B19;
  --color-dark-base: #151515;
  --color-dark-services: #121212;
  --color-warm-glow: #341612;
  --color-dark-border: #828282;
  --color-dark-border-bright: #C8A591;
  --color-cream: #EDE6D7;
  --color-cream-dark: #E3DBCA;
  --color-cream-border: #877A66;
  --color-ink: #28231E;
  --color-ink-bold: #14110E;
  --color-ink-muted: #5F5850;
  --color-white: #FFFFFF;
  --color-muted-white: #BEBEBE;
  --color-text-dim: #878787;
  --section-padding-x: 110px;
  --container-max-width: 1180px;
}

/* 3. SITE HEADER */
.whp-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--section-padding-x);
  border-bottom: 2px solid var(--color-dark-border);
}
.whp-site-header--dark { background: var(--color-dark-base); color: var(--color-white); }
.whp-site-header--light {
  background: var(--color-cream);
  color: var(--color-ink-bold);
  border-bottom-color: var(--color-cream-border);
}
.whp-site-header__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.whp-site-header__brand {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}
.whp-site-header__menu { display: flex; gap: 40px; }
.whp-site-header__menu a {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.whp-site-header__menu a:hover { color: var(--color-red-primary); }
.whp-site-header--dark .whp-site-header__menu a { color: rgba(255, 255, 255, 0.88); }

/* 4. SHARED COMPONENTS */
.whp-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 1rem;
  color: var(--color-red-primary);
  margin: 0;
}
.whp-eyebrow__line { width: 50px; height: 2px; background: currentColor; display: block; }
.whp-eyebrow--small { font-size: 0.875rem; letter-spacing: 0.2em; }

.whp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red-button);
  color: var(--color-white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: inherit;
}
.whp-button:hover { background: var(--color-red-button-hover); }
.whp-button--primary { font-size: 1.375rem; padding: 22px 60px; width: max-content; max-width: 100%; }
.whp-button--small { font-size: 1rem; padding: 14px 30px; }

.whp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9375rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}
.whp-link--secondary { color: var(--color-muted-white); }
.whp-link--secondary .whp-arrow { color: var(--color-red-primary); }
.whp-link--continue { color: var(--color-ink-bold); font-size: 0.8125rem; }

.whp-hero__cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  margin-top: 8px;
}
.whp-hero__cta-stack .whp-button { margin-bottom: 0; }
.whp-hero__cta-stack .whp-link--secondary {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  border-bottom: none;
  padding-bottom: 0;
}
.whp-hero__cta-stack .whp-link--secondary span.whp-link__label {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.whp-arrow { width: 16px; height: 12px; flex-shrink: 0; }
.whp-arrow--chunky { width: 18px; height: 12px; }

/* 5. HERO SECTION */
.whp-hero {
  background: radial-gradient(
    ellipse 60% 40% at center 42%,
    var(--color-warm-glow) 0%,
    var(--color-dark-base) 100%
  );
  color: var(--color-white);
  padding: 0 var(--section-padding-x);
  position: relative;
  overflow: hidden;
}
.whp-hero__container { max-width: var(--container-max-width); margin: 0 auto; padding: 40px 0 30px; }
.whp-hero__content { text-align: center; padding: 16px 0 0; }
.whp-hero__logo { width: 420px; max-width: 80vw; margin: 0 auto 20px; }
.whp-hero__wordmark {
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.01em;
  margin: 24px 0 0;
  color: var(--color-white);
}
.whp-hero__tagline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red-primary);
  margin: 20px 0 0;
}
.whp-hero__description {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-muted-white);
  line-height: 1.5;
  margin: 24px 0 36px;
}
.whp-credentials { margin-top: 56px; }
.whp-credentials__attribution {
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
  margin-bottom: 14px;
}
.whp-credentials__strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--color-dark-border);
  border-bottom: 2px solid var(--color-dark-border);
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 24px;
}
.whp-credentials__group { display: flex; align-items: center; gap: 22px; }
.whp-credentials__label {
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--color-text-dim);
}
.whp-credentials__items {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
}
.whp-credentials__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-red-primary);
  display: inline-block;
}

/* 6. ABOUT SECTION */
.whp-about { background: var(--color-cream); padding: 40px var(--section-padding-x) 32px; }
.whp-about__container { max-width: var(--container-max-width); margin: 0 auto; }
.whp-about__header {
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.375rem);
  color: var(--color-red-primary);
  text-align: center;
  margin: 24px 0 32px;
  letter-spacing: 0.01em;
}
.whp-about__columns {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}
.whp-about__logo-column { display: flex; flex-direction: column; align-items: center; }
.whp-about__logo-box {
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse 70% 70% at center 50%, var(--color-warm-glow) 0%, #141414 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 22px;
}
.whp-about__logo-box::before,
.whp-about__logo-box::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-red-primary);
}
.whp-about__logo-box::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.whp-about__logo-box::after { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.whp-about__logo-box img { width: 78%; height: auto; }
.whp-about__text-box {
  background: var(--color-cream-dark);
  border: 1px solid var(--color-cream-border);
  padding: 40px;
  position: relative;
  min-height: 400px;
}
.whp-about__text-box::before,
.whp-about__text-box::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-red-primary);
}
.whp-about__text-box::before { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.whp-about__text-box::after { bottom: 18px; right: 18px; border-left: none; border-top: none; }
.whp-about__text-box p { font-size: 1.125rem; line-height: 1.65; color: var(--color-ink); margin-bottom: 20px; }
.whp-about__text-box p:last-child { margin-bottom: 0; }
.whp-about__cta { display: flex; flex-direction: column; align-items: center; margin-top: 32px; }
.whp-about__question {
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--color-red-primary);
  margin-bottom: 28px;
  text-align: center;
}
.whp-about__buttons { display: flex; align-items: center; gap: 30px; }

/* 7. SERVICES SECTION */
.whp-services {
  background: radial-gradient(ellipse 50% 50% at center 58%, var(--color-warm-glow) 0%, var(--color-dark-services) 100%);
  color: var(--color-white);
  padding: 50px var(--section-padding-x) 50px;
}
.whp-services__container { max-width: var(--container-max-width); margin: 0 auto; }
.whp-services__headline {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.1875rem);
  color: var(--color-white);
  text-align: center;
  margin: 48px 0 0;
  line-height: 1.1;
}
.whp-services__subhead {
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--color-muted-white);
  text-align: center;
  margin-top: 24px;
}
.whp-pillars {
  margin-top: 55px;
  border-top: 2px solid var(--color-dark-border-bright);
  border-bottom: 2px solid var(--color-dark-border-bright);
}
.whp-pillar {
  display: grid;
  grid-template-columns: 472px 65px 1fr 1fr;
  grid-template-areas: 'title divider items-left items-right';
  align-items: center;
  padding: 40px 0;
  border-bottom: 2px solid var(--color-dark-border-bright);
  position: relative;
  min-height: 240px;
}
.whp-pillar:last-child { border-bottom: none; }
.whp-pillar__title { grid-area: title; display: flex; flex-direction: column; }
.whp-pillar__title-line {
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-red-primary);
  line-height: 1.1;
}
.whp-pillar__plus {
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--color-red-primary);
  padding-left: 8px;
  margin: 4px 0;
}
.whp-pillar__divider {
  grid-area: divider;
  width: 2px;
  height: calc(100% - 72px);
  background: var(--color-dark-border-bright);
  justify-self: center;
}
.whp-pillar__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}
.whp-pillar__items--left { grid-area: items-left; }
.whp-pillar__items--right { grid-area: items-right; }
.whp-pillar__items li { position: relative; padding-left: 17px; }
.whp-pillar__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-red-primary);
}
.whp-pillar__inquire {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: var(--color-red-primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.whp-services__bottom-cta { text-align: center; margin-top: 50px; }
.whp-services__bottom-cta p { margin-bottom: 60px; font-size: 1.3125rem; }
.whp-services__bottom-cta strong { color: var(--color-white); font-weight: 700; margin-right: 18px; }
.whp-services__bottom-cta span { color: var(--color-muted-white); font-weight: 500; }

/* 8. CONTACT SECTION (homepage) */
.whp-contact { background: var(--color-cream); padding: 50px var(--section-padding-x) 50px; }
.whp-contact__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  text-align: center;
}
.whp-contact__headline {
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--color-red-primary);
  margin: 48px 0 64px;
}
.whp-contact__form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-cream-dark);
  border: 1px solid var(--color-cream-border);
  padding: 60px 56px;
  position: relative;
  text-align: left;
}
.whp-contact__form-wrapper::before,
.whp-contact__form-wrapper::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-red-primary);
}
.whp-contact__form-wrapper::before { top: 18px; left: 18px; border-right: none; border-bottom: none; }
.whp-contact__form-wrapper::after { bottom: 18px; right: 18px; border-left: none; border-top: none; }

.whp-contact__form-wrapper .ff-el-form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #A89A82;
  border-radius: 0;
  padding: 8px 0 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-ink);
  width: 100%;
}
.whp-contact__form-wrapper .ff-el-form-control:focus { outline: none; border-bottom-color: var(--color-red-primary); }
.whp-contact__form-wrapper .ff-el-input--label label {
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 8px;
  display: block;
}
.whp-contact__form-wrapper .ff-btn-submit {
  background: var(--color-red-button);
  color: var(--color-white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  padding: 16px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 24px;
}
.whp-contact__form-wrapper .ff-btn-submit:hover { background: var(--color-red-button-hover); }

.whp-contact__closing-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}
.whp-contact__closing-line { width: 90px; height: 1px; background: var(--color-red-primary); }
.whp-contact__closing-diamond {
  width: 12px;
  height: 12px;
  background: var(--color-red-primary);
  transform: rotate(45deg);
}

/* 9. SITE FOOTER */
.whp-site-footer {
  background: var(--color-dark-base);
  color: var(--color-muted-white);
  padding: 60px var(--section-padding-x) 30px;
}
.whp-site-footer__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-dark-border);
  align-items: start;
}
.whp-site-footer__brand .whp-site-footer__name { white-space: nowrap; }
.whp-site-footer__name {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 8px;
}
.whp-site-footer__tagline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-red-primary);
  line-height: 1.2;
}
.whp-site-footer__column h4 {
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin: 0 0 16px;
}
.whp-site-footer__column ul li { margin-bottom: 8px; }
.whp-site-footer__column a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-muted-white);
  transition: color 0.2s ease;
}
.whp-site-footer__column a:hover { color: var(--color-red-primary); }
.whp-site-footer__bottom {
  max-width: var(--container-max-width);
  margin: 30px auto 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-dim);
}

/* 10. RESPONSIVE */
@media (max-width: 900px) {
  :root { --section-padding-x: 32px; }

  .whp-site-header__container { flex-direction: column; gap: 16px; padding: 16px 0; }
  .whp-site-header__menu { flex-wrap: wrap; gap: 20px; justify-content: center; }

  .whp-hero__logo { width: min(300px, 70vw); }
  .whp-hero__wordmark { font-size: clamp(2rem, 9vw, 3.5rem); }
  .whp-hero__tagline { font-size: clamp(1.5rem, 6vw, 2rem); }
  .whp-hero__description br { display: none; }

  .whp-credentials__strip { flex-direction: column; align-items: flex-start; }

  .whp-about__columns { grid-template-columns: 1fr; gap: 40px; }
  .whp-about__logo-box { width: 100%; max-width: 400px; height: auto; aspect-ratio: 1; }
  .whp-about__buttons { flex-direction: column; gap: 24px; }

  .whp-pillar {
    grid-template-columns: 1fr;
    grid-template-areas: 'title' 'items-left' 'items-right';
    gap: 24px;
    padding: 40px 0;
  }
  .whp-pillar__divider { display: none; }
  .whp-pillar__inquire { position: static; margin-top: 16px; }

  .whp-contact__form-wrapper { padding: 40px 24px; }

  .whp-site-footer__container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .whp-hero__container { padding: 32px 0 24px; }
  .whp-hero__description { margin: 40px 0 60px; }
  .whp-button--primary { font-size: 1.125rem; padding: 18px 32px; }
  .whp-site-footer__container { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   POLISH ROUND 4
   ============================================================ */

/* Override Astra parent theme wrappers to remove unwanted white spacing */
body { background: var(--color-dark-base); }
.site-content,
#content,
.ast-container,
.ast-container-fluid {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
.site-content > .ast-container { max-width: none !important; }

/* Hover states — make ALL nav items + brand link behave consistently in red */
.whp-site-header__brand:hover { color: var(--color-red-primary); }
.whp-site-header--dark .whp-site-header__menu a:hover,
.whp-site-header--light .whp-site-header__menu a:hover,
.whp-site-header__menu a:hover { color: var(--color-red-primary) !important; }

/* Services headline — fit on one line by reducing max font-size */
.whp-services__headline {
  font-size: clamp(1.75rem, 4.4vw, 2.75rem);
  white-space: nowrap;
  overflow: visible;
}
@media (max-width: 720px) {
  .whp-services__headline {
    white-space: normal;
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* Services section — tighten spacing */
.whp-services {
  padding: 32px var(--section-padding-x) 40px;
}
.whp-services__headline { margin: 28px 0 0; }
.whp-services__subhead { margin-top: 16px; }
.whp-pillars { margin-top: 36px; }
.whp-pillar { padding: 28px 0; min-height: 200px; }
.whp-services__bottom-cta { margin-top: 36px; }
.whp-services__bottom-cta p { margin-bottom: 36px; }

/* Footer — tighter padding + logo on left */
.whp-site-footer { padding: 40px var(--section-padding-x) 20px; }
.whp-site-footer__container {
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 28px;
}
.whp-site-footer__brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.whp-site-footer__logo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.whp-site-footer__brand-text { display: flex; flex-direction: column; }
.whp-site-footer__bottom { margin: 18px auto 0; }

@media (max-width: 900px) {
  .whp-site-footer__container { grid-template-columns: 1fr 1fr; gap: 28px; }
  .whp-site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .whp-site-footer__container { grid-template-columns: 1fr; gap: 24px; }
  .whp-site-footer__brand { flex-direction: row; }
}

/* Homepage Contact section — match standalone Contact page typography */
.whp-contact__title {
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.375rem);
  color: var(--color-red-primary);
  text-align: center;
  margin: 32px 0 0;
  letter-spacing: 0.01em;
  line-height: 1;
}
.whp-contact__tagline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red-primary);
  margin: 20px 0 48px;
  text-align: center;
}

/* ============================================================
   POLISH ROUND 5 — homepage contact dark, footer redesign,
   header logo, bigger fonts, hover scheme cleanup
   ============================================================ */

/* HEADER — add logo to brand, increase brand text size */
.whp-site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  padding-left: 8px;
}
.whp-site-header__brand-logo {
  width: 60px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.whp-site-header__brand-text { display: inline-block; }

/* HOMEPAGE CONTACT SECTION — full dark hero treatment */
.whp-contact {
  position: relative;
  background: radial-gradient(
    ellipse 60% 50% at center 50%,
    var(--color-warm-glow) 0%,
    var(--color-dark-base) 100%
  );
  color: var(--color-white);
  padding: 80px var(--section-padding-x) 80px;
  overflow: hidden;
  isolation: isolate;
}
.whp-contact__backdrop {
  position: absolute;
  inset: 0;
  background-image: var(--whp-hero-mark);
  background-repeat: no-repeat;
  background-position: center 50%;
  background-size: min(640px, 60vw) auto;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.whp-contact__container {
  position: relative;
  z-index: 1;
}
.whp-contact__title {
  color: var(--color-white) !important;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  text-align: center;
  margin: 0;
  line-height: 1;
  letter-spacing: 0.02em;
}
.whp-contact__tagline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red-primary);
  text-align: center;
  margin: 20px 0 48px;
}
/* Form wrapper still cream so it pops on dark BG (already styled) */

/* FOOTER — major redesign */
.whp-site-footer {
  padding: 32px var(--section-padding-x) 16px;
}
.whp-site-footer__container {
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 20px;
  align-items: center;
}
.whp-site-footer__brand {
  display: flex;
  align-items: center;
  gap: 22px;
}
.whp-site-footer__logo {
  width: 110px !important;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.whp-site-footer__name {
  font-weight: 900;
  font-size: 1.625rem;
  color: var(--color-white);
  margin: 0 0 4px;
  white-space: nowrap;
}
.whp-site-footer__tagline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-red-primary);
  margin: 0;
}
.whp-site-footer__column h4 {
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red-primary);
  margin: 0 0 14px;
}
.whp-site-footer__column ul li { margin-bottom: 6px; }
.whp-site-footer__column a {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-muted-white);
  transition: color 0.2s ease;
}
.whp-site-footer__column a:hover { color: var(--color-red-primary); }
.whp-site-footer__bottom { margin: 12px auto 0; padding-top: 0; }

/* HOVER SCHEME CLEANUP — kill any remaining blue (Astra default), enforce red everywhere */
.whp-site-header__brand:hover,
.whp-site-header__brand:hover .whp-site-header__brand-text,
.whp-site-header__menu a:hover,
.whp-link:hover,
.whp-link--secondary:hover,
.whp-link--continue:hover,
.whp-blog-card__title a:hover,
.whp-blog-card__link:hover,
.whp-pillar__inquire:hover {
  color: var(--color-red-primary) !important;
}
/* Override Astra default link hover on dark headers specifically */
.whp-site-header--dark a:hover { color: var(--color-red-primary) !important; }

/* INSIGHTS CARDS — bigger image area */
.whp-blog-card__image {
  aspect-ratio: 3 / 2;  /* taller than 16/9 — more visible */
}

@media (max-width: 900px) {
  .whp-site-footer__container { grid-template-columns: 1fr; gap: 28px; }
  .whp-site-footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   POLISH ROUND 6 — homepage contact cream, blue hover for red items
   ============================================================ */

/* Revert homepage Contact section to cream (visual separation from Services) */
.whp-contact {
  position: static;
  background: var(--color-cream) !important;
  color: var(--color-ink) !important;
  padding: 50px var(--section-padding-x) 50px;
  overflow: visible;
  isolation: auto;
}
.whp-contact__backdrop { display: none !important; }
.whp-contact__title {
  color: var(--color-red-primary) !important;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.375rem);
  text-align: center;
  margin: 32px 0 0;
  line-height: 1;
  letter-spacing: 0.01em;
}
.whp-contact__tagline {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red-primary);
  text-align: center;
  margin: 20px 0 48px;
}

/* Red links → hover BLUE (per "only blue hover when item starts as red" rule) */
/* Use a tasteful steel blue, not a harsh primary blue */
.whp-pillar__inquire,
.whp-pillar__inquire * { color: var(--color-red-primary) !important; }
.whp-pillar__inquire:hover,
.whp-pillar__inquire:hover * { color: #4A7CB5 !important; }

.whp-blog-card__link,
.whp-blog-card__link * { color: var(--color-red-primary) !important; }
.whp-blog-card__link:hover,
.whp-blog-card__link:hover * { color: #4A7CB5 !important; }

/* Insights hero backdrop — bigger to match Contact visual */
.whp-blog-hero__backdrop {
  background-size: min(900px, 80vw) auto !important;
  opacity: 0.12 !important;
}
.whp-blog-hero {
  padding: 120px var(--section-padding-x) 140px;
}

/* ============================================================
   POLISH ROUND 7 — homepage contact compact (original look),
   Contact dedicated page hero matches Insights for uniformity
   ============================================================ */

/* Homepage Contact section — back to original compact treatment */
.whp-contact {
  position: static;
  background: var(--color-cream) !important;
  color: var(--color-ink) !important;
  padding: 50px var(--section-padding-x) 50px;
  overflow: visible;
  isolation: auto;
}
.whp-contact__backdrop { display: none !important; }
.whp-contact__title { display: none !important; }
.whp-contact__tagline { display: none !important; }
.whp-contact__headline {
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--color-red-primary);
  text-align: center;
  margin: 48px 0 64px;
}

/* ============================================================
   POLISH ROUND 8 — header/footer parity, kill cream bars
   ============================================================ */

/* Header logo + brand text — matching footer dimensions */
.whp-site-header__brand {
  font-size: 1.625rem;
  gap: 18px;
  padding-left: 0;
}
.whp-site-header__brand-logo {
  width: 80px !important;
  height: auto !important;
}

/* Slightly tighter header padding so logo doesn't make nav too tall */
.whp-site-header__container {
  padding: 16px 0;
}

/* Kill cream bars — Astra parent theme wrapper padding/margin */
body { background: var(--color-dark-base) !important; }
#page,
.site,
.hfeed,
#content,
.site-content,
.ast-container,
.ast-container-fluid,
.ast-content,
.ast-row,
.ast-grid-common-col,
.entry-header,
.entry-content,
.ast-archive-description,
.ast-default-color,
.ast-no-sidebar,
main#main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Remove default body padding from Astra */
body.ast-no-sidebar #content,
body #content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Remove top spacer area — Astra adds <div class="ast-row"> with margin */
.ast-row { margin: 0 !important; }
