:root {
  --ghwm-navy: #102846;
  --ghwm-navy-dark: #071a30;
  --ghwm-green: #355f00;
  --ghwm-white: #ffffff;
  --ghwm-border: #c8d0da;
  --ghwm-text: #132238;
  --ghwm-focus: #005fcc;
  --ghwm-shadow: 0 12px 32px rgba(8, 26, 48, 0.18);
  --ghwm-header-height: 122px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ghwm-text);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.ghwm-menu-open { overflow: hidden; }

img, svg { display: block; }
button { font: inherit; }

:focus { outline: none; }

:focus-visible {
  outline: 3px solid var(--ghwm-focus);
  outline-offset: 4px;
}

/* Visible skip link without changing the header design. */
.ghwm-skip-link {
  position: fixed;
  z-index: 10001;
  top: 8px;
  left: 8px;
  display: inline-block;
  padding: 9px 14px;
  color: #fff;
  background: var(--ghwm-navy-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.ghwm-skip-link:hover {
  background: #000f20;
}

/* ---------- Sticky header ---------- */

.ghwm-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: var(--ghwm-header-height);
  background: #fff;
  border-bottom: 1px solid #c8d0da;
}

.ghwm-header-inner {
  width: min(100% - 48px, 1800px);
  min-height: var(--ghwm-header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.ghwm-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 44px;
  min-height: 44px;
}

.ghwm-logo-link img {
  width: 181px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* ---------- Main navigation ---------- */

.ghwm-desktop-nav { justify-self: center; }

.ghwm-main-menu,
.ghwm-main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ghwm-main-menu {
  display: flex;
  align-items: center;
  gap: 46px;
}

.ghwm-menu-item,
.ghwm-dropdown-parent,
.ghwm-nested-parent { position: relative; }

.ghwm-nav-control {
  display: flex;
  align-items: center;
}

.ghwm-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 0;
  color: var(--ghwm-navy-dark);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ghwm-nav-link:hover,
.ghwm-nav-link.ghwm-active {
  color: var(--ghwm-green);
}

.ghwm-submenu-toggle,
.ghwm-nested-toggle {
  border: 0;
  background: transparent;
  color: var(--ghwm-navy-dark);
  cursor: pointer;
}

.ghwm-submenu-toggle {
  width: 42px;
  min-width: 42px;
  min-height: 48px;
  display: inline-grid;
  place-items: center;
}

.ghwm-chevron {
  width: 9px;
  height: 9px;
  display: block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.ghwm-submenu-toggle[aria-expanded="true"] .ghwm-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.ghwm-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 1100;
  min-width: 230px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--ghwm-border);
  border-radius: 8px;
  box-shadow: var(--ghwm-shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.ghwm-dropdown-parent.ghwm-open > .ghwm-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.ghwm-dropdown li { position: relative; }

.ghwm-dropdown a,
.ghwm-nested-toggle {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  color: var(--ghwm-navy-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  border-radius: 5px;
}

.ghwm-dropdown a:hover,
.ghwm-nested-toggle:hover {
  color: var(--ghwm-green);
  background: #eef5e8;
}

.ghwm-services-dropdown { min-width: 330px; }
.ghwm-investor-dropdown { min-width: 245px; }

.ghwm-nested-toggle {
  justify-content: space-between;
}

.ghwm-side-chevron {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.ghwm-nested-toggle[aria-expanded="true"] .ghwm-side-chevron {
  transform: rotate(135deg);
}

.ghwm-nested-dropdown {
  top: -10px;
  left: calc(100% + 10px);
  transform: translate(0, -8px);
}

.ghwm-nested-parent.ghwm-open > .ghwm-nested-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0, 0);
}

/* ---------- Social ---------- */

.ghwm-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ghwm-social-link {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--ghwm-navy);
  border-radius: 50%;
  text-decoration: none;
}

.ghwm-social-link:hover { background: var(--ghwm-navy-dark); }

.ghwm-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ---------- Mobile ---------- */

.ghwm-mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ghwm-border);
  border-radius: 7px;
  background: #fff;
  color: var(--ghwm-navy-dark);
  cursor: pointer;
}

.ghwm-hamburger {
  width: 23px;
  display: grid;
  gap: 5px;
}

.ghwm-hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}



/* IMPORTANT: this is the SAME .ghwm-desktop-nav.
   There is no separate mobile menu. */
@media (max-width: 900px) {
  :root { --ghwm-header-height: 88px; }

  .ghwm-header-inner {
    width: min(100% - 28px, 760px);
    min-height: var(--ghwm-header-height);
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .ghwm-dropdown-parent.ghwm-open > .ghwm-dropdown{
    transform: translate(0%, 0);
  }

  .ghwm-logo-link img { width: 155px; }
  .ghwm-social { display: none; }
  .ghwm-mobile-menu-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .ghwm-desktop-nav {
    position: fixed;
    z-index: 1999;
    top: 0;
    left: 0;
    width: min(390px, 88vw);
    height: 100dvh;
    padding: 20px 22px 35px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    box-shadow: 18px 0 40px rgba(8, 26, 48, .20);
    transform: translateX(-105%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .ghwm-desktop-nav.ghwm-mobile-open {
    transform: translateX(0);
    visibility: visible;
  }

  .ghwm-main-menu {
    display: block;
    padding-top: 35px;
  }

  .ghwm-menu-item,
  .ghwm-dropdown-parent {
    border-bottom: 1px solid #d9e0e7;
  }

  .ghwm-nav-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .ghwm-nav-link {
    min-height: 54px;
    padding: 12px 0;
    font-size: 18px;
  }

  .ghwm-submenu-toggle {
    width: 48px;
    height: 48px;
  }

  .ghwm-dropdown,
  .ghwm-nested-dropdown {
    position: static;
    width: auto;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 0 5px 14px;
    border: 0;
    border-left: 2px solid #cbd9c0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .ghwm-dropdown-parent.ghwm-open > .ghwm-dropdown,
  .ghwm-nested-parent.ghwm-open > .ghwm-nested-dropdown {
    display: block;
  }

  .ghwm-dropdown a,
  .ghwm-nested-toggle {
    min-height: 48px;
    font-size: 16px;
  }

  .ghwm-services-dropdown,
  .ghwm-investor-dropdown { min-width: 0; }

  .ghwm-nested-dropdown {
    margin-left: 8px;
  }
}



/* ---------- Common section container ---------- */

.ghwm-container {
  width: min(calc(100% - 48px), 1100px);
  margin: 0 auto;
}

@media (max-width: 600px) {
  .ghwm-container {
    width: calc(100% - 32px);
  }
}







@media (max-width: 480px) {
  .ghwm-header-inner { width: calc(100% - 20px); }
  .ghwm-logo-link img { width: 150px; }
  .ghwm-desktop-nav {
    width: min(370px, 91vw);
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (forced-colors: active) {
  :focus-visible {
    outline: 3px solid CanvasText;
    outline-offset: 3px;
  }
}
/* ---------- Mobile drawer header ---------- */
.ghwm-mobile-drawer-header {
  display: none;
}

@media (max-width: 900px) {
  .ghwm-mobile-drawer-header {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 0 12px;
    border-bottom: 1px solid var(--ghwm-border);
  }

  .ghwm-mobile-drawer-logo {
    display: inline-flex;
    align-items: center;
    min-width: 44px;
    min-height: 44px;
  }

  .ghwm-mobile-drawer-logo img {
    width: 150px;
    height: auto;
    max-width: 100%;
  }

  .ghwm-mobile-drawer-close {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--ghwm-border);
    border-radius: 7px;
    background: #fff;
    color: var(--ghwm-navy-dark);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }

  .ghwm-main-menu {
    padding-top: 18px;
  }
}

/* Skip link: hidden until it receives keyboard focus. */
.ghwm-skip-link {
  transform: translateY(-160%);
  transition: transform 120ms ease;
}

.ghwm-skip-link:focus,
.ghwm-skip-link:focus-visible {
  transform: translateY(0);
}



/* =========================================================
   GHWM BANNER / HERO SECTION
   WCAG 2.2 AA-oriented
   ========================================================= */

.ghwm-banner {
   position: relative;
   isolation: isolate;
   min-height: clamp(520px, 72vh, 760px);

   display: flex;
   align-items: center;

   background-image: url("../images/slider-1-2.jpg");
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;

   overflow: hidden;
}

/*
   Dark overlay is important because the background image
   must not reduce text contrast.
*/
.ghwm-banner-overlay {
   position: absolute;
   z-index: -1;
   inset: 0;

   /*
      Strong dark overlay for WCAG text contrast.
      The image remains visible underneath.
   */
   background:
      linear-gradient(
         90deg,
         rgba(7, 26, 48, 0.88) 0%,
         rgba(7, 26, 48, 0.76) 45%,
         rgba(7, 26, 48, 0.55) 100%
      );
}


/* Content width */
.ghwm-banner-content {
   width: min(100%, 780px);
       padding: 23px;
    background-color: #102846;

}

/* Eyebrow */
.ghwm-banner-eyebrow {
   margin: 0 0 18px;

   color: #ffffff;

   font-size: 18px;
   font-weight: 800;
   line-height: 1.4;

   letter-spacing: 0.08em;
   text-transform: uppercase;
}

/* Main heading */
.ghwm-banner h1 {
   margin: 0;

   max-width: 800px;

   color: #ffffff;

   font-size: clamp(2.25rem, 5vw, 4.5rem);
   font-weight: 700;
   line-height: 1.08;
   letter-spacing: -0.02em;
}

/* Description */
.ghwm-banner-description {
   max-width: 680px;

   margin: 24px 0 0;

   color: #ffffff;

   font-size: clamp(1rem, 1.5vw, 1.2rem);
   font-weight: 400;
   line-height: 1.7;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.ghwm-banner-actions {
   display: flex;
   align-items: center;
   flex-wrap: wrap;

   gap: 14px;

   margin-top: 32px;
}

/*
   Both buttons are real links because they navigate
   to another page.
*/
.ghwm-banner-btn {
   min-width: 160px;
   min-height: 50px;

   display: inline-flex;
   align-items: center;
   justify-content: center;

   padding: 12px 24px;

   border: 2px solid transparent;
   border-radius: 4px;

   font-size: 16px;
   font-weight: 700;
   line-height: 1.3;

   text-align: center;
   text-decoration: none;

   cursor: pointer;

   transition:
      background-color 160ms ease,
      color 160ms ease,
      border-color 160ms ease,
      transform 160ms ease;
}

/* Primary button */
.ghwm-banner-btn-primary {
   color: #ffffff;
   background: #355f00;
   border-color: #355f00;
}

/* Primary hover */
.ghwm-banner-btn-primary:hover {
   color: #ffffff;
   background: #244500;
   border-color: #244500;

   transform: translateY(-1px);
}

/* Secondary button */
.ghwm-banner-btn-secondary {
   color: #071a30;
   background: #ffffff;
   border-color: #ffffff;
}

/* Secondary hover */
.ghwm-banner-btn-secondary:hover {
   color: #ffffff;
   background: transparent;
   border-color: #ffffff;

   transform: translateY(-1px);
}

/*
   Strong keyboard focus.

   Do NOT remove this outline.
*/
.ghwm-banner-btn:focus-visible {
   outline: 3px solid #ffffff;
   outline-offset: 4px;
}

/*
   Extra visual distinction for the secondary button
   when it has keyboard focus.
*/
.ghwm-banner-btn-secondary:focus-visible {
   outline-color: #ffffff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1200px) {
   .ghwm-banner-content {
      width: min(100%, 700px);
   }
}


@media (max-width: 768px) {

   .ghwm-banner {
      min-height: 600px;

      background-position: center center;
   }

   .ghwm-banner-overlay {
      background:
         linear-gradient(
            90deg,
            rgba(7, 26, 48, 0.90) 0%,
            rgba(7, 26, 48, 0.78) 100%
         );
   }

   
   .ghwm-banner-eyebrow {
      margin-bottom: 14px;

      font-size: 15px;
   }

   .ghwm-banner h1 {
      font-size: clamp(2rem, 8vw, 3.2rem);
      line-height: 1.12;
   }

   .ghwm-banner-description {
      margin-top: 20px;

      font-size: 1rem;
      line-height: 1.65;
   }

   .ghwm-banner-actions {
      margin-top: 28px;
   }

   .ghwm-banner-btn {
      min-height: 52px;
   }
}


@media (max-width: 480px) {

   .ghwm-banner {
      min-height: 620px;

      align-items: center;

      background-position: 58% center;
   }

   
   .ghwm-banner-eyebrow {
      font-size: 14px;
      letter-spacing: 0.06em;
   }

   .ghwm-banner h1 {
      font-size: clamp(1.9rem, 10vw, 2.6rem);
   }

   .ghwm-banner-description {
      font-size: 1rem;
   }

   .ghwm-banner-actions {
      width: 100%;

      flex-direction: column;
      align-items: stretch;
   }

   .ghwm-banner-btn {
      width: 100%;
      min-height: 52px;
   }
}


/* =========================================================
   VERY SMALL SCREENS
   ========================================================= */

@media (max-width: 360px) {

   .ghwm-banner {
      min-height: 640px;
   }

   

   .ghwm-banner-eyebrow {
      font-size: 13px;
   }

   .ghwm-banner h1 {
      font-size: 1.85rem;
   }

   .ghwm-banner-description {
      font-size: 0.98rem;
   }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

   .ghwm-banner-btn {
      transition: none;
   }

   .ghwm-banner-btn:hover {
      transform: none;
   }
}


/* =========================================================
   FORCED COLORS / HIGH CONTRAST MODE
   ========================================================= */

@media (forced-colors: active) {

   .ghwm-banner-overlay {
      background: #000000;
   }

   .ghwm-banner-eyebrow,
   .ghwm-banner h1,
   .ghwm-banner-description {
      color: CanvasText;
   }

   .ghwm-banner-btn {
      border: 2px solid ButtonText;
   }

   .ghwm-banner-btn-primary,
   .ghwm-banner-btn-secondary {
      color: ButtonText;
      background: ButtonFace;
   }

   .ghwm-banner-btn:focus-visible {
      outline: 3px solid Highlight;
      outline-offset: 4px;
   }
}


/* =========================================================
   ABOUT US SECTION
   WCAG 2.2 AA-oriented
   ========================================================= */

.ghwm-about {
   position: relative;

   width: 100%;

   padding: clamp(70px, 8vw, 120px) 0;

   background: #ffffff;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.ghwm-about-container {
   display: grid;

   grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 0.95fr);

   align-items: center;

   gap: clamp(45px, 7vw, 100px);
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.ghwm-about-content {
   width: 100%;
   max-width: 620px;
}


/* Small heading */
.ghwm-section-eyebrow {
   margin: 0 0 14px;

   color: #355f00;

   font-size: 17px;
   font-weight: 800;

   line-height: 1.4;

   letter-spacing: 0.08em;

   text-transform: uppercase;
}


/* Main heading */
.ghwm-about h2 {
   margin: 0;

   color: #071a30;

   font-size: clamp(2rem, 4vw, 3.25rem);

   font-weight: 700;

   line-height: 1.15;

   letter-spacing: -0.02em;
}


/* Paragraphs */
.ghwm-about-text {
   max-width: 620px;

   margin: 22px 0 0;

   color: #26384c;

   font-size: 17px;

   font-weight: 400;

   line-height: 1.75;
}


/* =========================================================
   CTA
   ========================================================= */

.ghwm-about-action {
   margin-top: 32px;
}


.ghwm-about-btn {
   min-width: 190px;
   min-height: 52px;

   display: inline-flex;

   align-items: center;
   justify-content: center;

   gap: 12px;

   padding: 13px 23px;

   color: #ffffff;

   background: #355f00;

   border: 2px solid #355f00;

   border-radius: 4px;

   font-size: 16px;

   font-weight: 700;

   line-height: 1.3;

   text-align: center;

   text-decoration: none;

   transition:
      background-color 160ms ease,
      border-color 160ms ease,
      transform 160ms ease;
}


/* Button icon */
.ghwm-about-btn-icon {
   width: 20px;
   height: 20px;

   display: inline-flex;

   align-items: center;
   justify-content: center;

   flex: 0 0 auto;
}


.ghwm-about-btn-icon svg {
   width: 20px;
   height: 20px;

   fill: none;

   stroke: currentColor;

   stroke-width: 2;

   stroke-linecap: round;

   stroke-linejoin: round;
}


/* Hover */
.ghwm-about-btn:hover {
   color: #ffffff;

   background: #244500;

   border-color: #244500;

   transform: translateY(-1px);
}


/* Keyboard focus */
.ghwm-about-btn:focus-visible {
   outline: 3px solid #005fcc;

   outline-offset: 4px;
}


/* =========================================================
   RIGHT IMAGE
   ========================================================= */

.ghwm-about-image-wrap {
   width: 100%;

   position: relative;
}


.ghwm-about-image-frame {
   position: relative;

   width: 100%;

   overflow: hidden;

   border-radius: 6px;

   background: #eef1f4;
}


/*
   Decorative frame behind image.
   It does not contain information and therefore
   is not exposed to screen readers.
*/
.ghwm-about-image-frame::before {
   content: "";

   position: absolute;

   z-index: 0;

   top: -14px;
   right: -14px;

   width: 100%;
   height: 100%;

   border: 2px solid #355f00;

   border-radius: 6px;

   pointer-events: none;
}


.ghwm-about-image-frame img {
   position: relative;

   z-index: 1;

   width: 100%;

   height: auto;

   min-height: 420px;

   display: block;

   object-fit: cover;

   object-position: center;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

   .ghwm-about-container {
      gap: 55px;
   }

   .ghwm-about h2 {
      font-size: clamp(2rem, 4vw, 2.8rem);
   }

   .ghwm-about-text {
      font-size: 16px;
      line-height: 1.7;
   }

   .ghwm-about-image-frame img {
      min-height: 380px;
   }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

   .ghwm-about {
      padding: 75px 0;
   }


   .ghwm-about-container {
   grid-template-columns: 1fr;
   gap: 50px;
}

   .ghwm-about-content {
      max-width: none;
   }


   .ghwm-about-text {
      max-width: 760px;
   }


   .ghwm-about-image-wrap {
      max-width: 720px;

      margin: 0 auto;
   }


   .ghwm-about-image-frame img {
      min-height: 0;

      aspect-ratio: 16 / 10;

      object-fit: cover;
   }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

   .ghwm-about {
      padding: 65px 0;
   }


   .ghwm-about-container {
      gap: 42px;
   }


   .ghwm-section-eyebrow {
      margin-bottom: 12px;

      font-size: 14px;
   }


   .ghwm-about h2 {
      font-size: clamp(1.9rem, 8vw, 2.5rem);

      line-height: 1.15;
   }


   .ghwm-about-text {
      margin-top: 18px;

      font-size: 16px;

      line-height: 1.7;
   }


   .ghwm-about-action {
      margin-top: 27px;
   }


   .ghwm-about-btn {
      width: 100%;

      min-height: 54px;
   }


   .ghwm-about-image-frame::before {
      top: -9px;
      right: -9px;
   }


   .ghwm-about-image-frame img {
      aspect-ratio: 4 / 3;
   }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

   .ghwm-about-container {
       gap: 42px;
   }


   .ghwm-about {
      padding: 55px 0;
   }


   .ghwm-about h2 {
      font-size: 1.8rem;
   }


   .ghwm-about-text {
      font-size: 15px;
   }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

   .ghwm-about-btn {
      transition: none;
   }


   .ghwm-about-btn:hover {
      transform: none;
   }
}


/* =========================================================
   FORCED COLORS / HIGH CONTRAST
   ========================================================= */

@media (forced-colors: active) {

   .ghwm-section-eyebrow,
   .ghwm-about h2,
   .ghwm-about-text {
      color: CanvasText;
   }


   .ghwm-about-image-frame {
      border: 1px solid CanvasText;
   }


   .ghwm-about-image-frame::before {
      border-color: CanvasText;
   }


   .ghwm-about-btn {
      color: ButtonText;

      background: ButtonFace;

      border-color: ButtonText;
   }


   .ghwm-about-btn:focus-visible {
      outline: 3px solid Highlight;

      outline-offset: 4px;
   }
}





/* =========================================================
   SERVICES SECTION
   WCAG 2.2 AA-oriented
   ========================================================= */

.ghwm-services {
   padding: clamp(70px, 8vw, 120px) 0;
   background: #f7f9fb;
}


/* ---------- Section heading ---------- */

.ghwm-services-heading {
   max-width: 760px;
   margin: 0 auto 50px;
   text-align: center;
}

.ghwm-services-heading .ghwm-section-eyebrow {
   margin-bottom: 14px;
}

.ghwm-services-heading h2 {
   margin: 0;

   color: var(--ghwm-navy-dark);

   font-size: clamp(2rem, 4vw, 3.25rem);
   font-weight: 700;
   line-height: 1.15;
   letter-spacing: -0.02em;
}

.ghwm-services-intro {
   max-width: 700px;

   margin: 20px auto 0;

   color: #26384c;

   font-size: 17px;
   font-weight: 400;
   line-height: 1.7;
}


/* ---------- Services grid ---------- */

.ghwm-services-grid {
   display: grid;

   grid-template-columns:
      repeat(4, minmax(0, 1fr));

   gap: 24px;
}


/* ---------- Service card ---------- */

.ghwm-service-card {
   display: flex;
   flex-direction: column;

   min-width: 0;

   background: #ffffff;

   border: 1px solid #d9e0e7;
   border-radius: 6px;

   overflow: hidden;

   box-shadow:
      0 8px 24px rgba(8, 26, 48, 0.08);

   transition:
      transform 160ms ease,
      box-shadow 160ms ease;
}


/* Card hover */

.ghwm-service-card:hover {
   transform: translateY(-4px);

   box-shadow:
      0 14px 32px rgba(8, 26, 48, 0.14);
}


/* ---------- Service image ---------- */

.ghwm-service-image {
   position: relative;

   width: 100%;

   aspect-ratio: 7 / 4;

   overflow: hidden;

   background: #e9edf1;
}

.ghwm-service-image img {
   width: 100%;
   height: 100%;

   display: block;

   object-fit: cover;

   transition: transform 220ms ease;
}

.ghwm-service-card:hover .ghwm-service-image img {
   transform: scale(1.03);
}


/* ---------- Service content ---------- */

.ghwm-service-content {
   display: flex;
   flex-direction: column;

   flex: 1;

   padding: 26px 24px 28px;
}


/* Service title */

.ghwm-service-content h3 {
   margin: 0;

   color: var(--ghwm-navy-dark);

   font-size: 21px;
   font-weight: 700;

   line-height: 1.3;
}


/* Description */

.ghwm-service-content p {
   margin: 14px 0 0;

   color: #26384c;

   font-size: 16px;
   line-height: 1.65;
}


/* ---------- Read More ---------- */

.ghwm-service-btn {
   width: fit-content;
   min-height: 46px;

   display: inline-flex;
   align-items: center;
   justify-content: center;

   gap: 10px;

   margin-top: auto;
   padding: 12px 0 0;

   color: var(--ghwm-green);

   background: transparent;

   border: 0;

   font-size: 16px;
   font-weight: 700;
   line-height: 1.4;

   text-decoration: none;
}

.ghwm-service-btn:hover {
   color: #244500;
}

.ghwm-service-btn-icon {
   width: 19px;
   height: 19px;

   display: inline-flex;
   align-items: center;
   justify-content: center;

   flex: 0 0 auto;
}

.ghwm-service-btn-icon svg {
   width: 19px;
   height: 19px;

   fill: none;

   stroke: currentColor;
   stroke-width: 2;

   stroke-linecap: round;
   stroke-linejoin: round;
}


/* ---------- Keyboard focus ---------- */

.ghwm-service-btn:focus-visible {
   outline: 3px solid var(--ghwm-focus);
   outline-offset: 5px;

   border-radius: 3px;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

   .ghwm-services-grid {
      grid-template-columns:
         repeat(2, minmax(0, 1fr));

      gap: 28px;
   }

   .ghwm-service-content h3 {
      font-size: 22px;
   }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

   .ghwm-services {
      padding: 75px 0;
   }

   .ghwm-services-heading {
      margin-bottom: 42px;
   }

   .ghwm-services-intro {
      font-size: 16px;
   }

   .ghwm-services-grid {
      gap: 24px;
   }

   .ghwm-service-content {
      padding: 24px 22px 26px;
   }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

   .ghwm-services {
      padding: 65px 0;
   }

   .ghwm-services-heading {
      margin-bottom: 35px;
      text-align: left;
   }

   .ghwm-services-heading h2 {
      font-size: clamp(1.9rem, 8vw, 2.5rem);
   }

   .ghwm-services-intro {
      margin-top: 17px;
      font-size: 16px;
      line-height: 1.7;
   }

   .ghwm-services-grid {
      grid-template-columns: 1fr;
      gap: 22px;
   }

   .ghwm-service-content {
      padding: 24px 22px 27px;
   }

   .ghwm-service-content h3 {
      font-size: 21px;
   }

   .ghwm-service-btn {
      min-height: 48px;
   }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

   .ghwm-services {
      padding: 55px 0;
   }

   .ghwm-service-content {
      padding: 22px 20px 25px;
   }

   .ghwm-service-content h3 {
      font-size: 19px;
   }

   .ghwm-service-content p {
      font-size: 15px;
   }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

   .ghwm-service-card,
   .ghwm-service-image img {
      transition: none;
   }

   .ghwm-service-card:hover {
      transform: none;
   }

   .ghwm-service-card:hover .ghwm-service-image img {
      transform: none;
   }
}


/* =========================================================
   FORCED COLORS / HIGH CONTRAST
   ========================================================= */

@media (forced-colors: active) {

   .ghwm-services {
      background: Canvas;
   }

   .ghwm-service-card {
      background: Canvas;
      border: 1px solid CanvasText;
      box-shadow: none;
   }

   .ghwm-services-heading h2,
   .ghwm-services-intro,
   .ghwm-service-content h3,
   .ghwm-service-content p {
      color: CanvasText;
   }

   .ghwm-service-btn {
      color: LinkText;
   }

   .ghwm-service-btn:focus-visible {
      outline: 3px solid Highlight;
      outline-offset: 4px;
   }
}





/* =========================================================
   CONTACT SECTION
   WCAG 2.2 AA-ORIENTED
   ========================================================= */

.ghwm-contact {
   padding: clamp(70px, 8vw, 120px) 0;

   background: #ffffff;
}


/* =========================================================
   MAIN CONTACT GRID
   ========================================================= */

.ghwm-contact-container {
   display: grid;

   grid-template-columns:
      minmax(0, 0.85fr)
      minmax(0, 1.15fr);

   align-items: stretch;

   gap: clamp(45px, 7vw, 90px);
}


/* =========================================================
   LEFT CONTACT INFORMATION
   ========================================================= */

.ghwm-contact-info {
   width: 100%;

   max-width: 500px;

   padding-top: 10px;
}


.ghwm-contact-info h2 {
   margin: 0;

   color: #071a30;

   font-size: clamp(2rem, 4vw, 3.25rem);

   font-weight: 700;

   line-height: 1.15;

   letter-spacing: -0.02em;
}


.ghwm-contact-intro {
   max-width: 500px;

   margin: 20px 0 0;

   color: #26384c;

   font-size: 17px;

   line-height: 1.75;
}


/* =========================================================
   CONTACT ITEMS
   ========================================================= */

.ghwm-contact-item {
   display: grid;

   grid-template-columns: 52px minmax(0, 1fr);

   align-items: start;

   gap: 18px;

   margin-top: 32px;
}


.ghwm-contact-icon {
   width: 50px;
   height: 50px;

   display: inline-flex;

   align-items: center;
   justify-content: center;

   color: #355f00;

   background: #f0f5ea;

   border: 1px solid #d7e2cd;

   border-radius: 6px;
}


.ghwm-contact-icon svg {
   width: 24px;
   height: 24px;

   fill: none;

   stroke: currentColor;

   stroke-width: 1.8;

   stroke-linecap: round;
   stroke-linejoin: round;
}


.ghwm-contact-item-content {
   min-width: 0;
}


.ghwm-contact-item-content h3 {
   margin: 0 0 8px;

   color: #071a30;

   font-size: 18px;

   font-weight: 700;

   line-height: 1.4;
}


.ghwm-contact-item-content a {
   display: block;

   width: fit-content;

   margin-top: 4px;

   color: #355f00;

   font-size: 16px;

   font-weight: 600;

   line-height: 1.6;

   text-decoration: underline;

   text-decoration-thickness: 1px;

   text-underline-offset: 3px;
}


.ghwm-contact-item-content a:hover {
   color: #244500;
}


.ghwm-contact-item-content address {
   margin: 0;

   color: #26384c;

   font-size: 16px;

   font-style: normal;

   line-height: 1.7;
}


/* =========================================================
   FORM CARD
   ========================================================= */

.ghwm-contact-form-wrap {
   width: 100%;

   padding: clamp(30px, 4vw, 45px);

   background: #f7f9fb;

   border: 1px solid #d9e0e7;

   border-radius: 8px;

   box-shadow:
      0 12px 35px rgba(8, 26, 48, 0.08);
}


/* =========================================================
   FORM HEADER
   ========================================================= */

.ghwm-contact-form-eyebrow {
   margin: 0 0 10px;

   color: #355f00;

   font-size: 14px;

   font-weight: 800;

   line-height: 1.4;

   letter-spacing: 0.08em;

   text-transform: uppercase;
}


.ghwm-contact-form-header h3 {
   margin: 0;

   color: #071a30;

   font-size: clamp(1.6rem, 3vw, 2.2rem);

   font-weight: 700;

   line-height: 1.2;
}


.ghwm-contact-form-header > p:last-child {
   margin: 14px 0 0;

   color: #26384c;

   font-size: 16px;

   line-height: 1.65;
}


/* =========================================================
   FORM INSTRUCTIONS
   ========================================================= */

.ghwm-form-instructions {
   margin: 24px 0 0;

   color: #26384c;

   font-size: 14px;

   line-height: 1.6;
}


.ghwm-required-text {
   margin-left: 3px;
}


/* =========================================================
   FORM STATUS
   ========================================================= */

.ghwm-form-status {
   min-height: 0;

   margin-top: 16px;

   padding: 0;

   color: #245000;

   font-size: 15px;

   font-weight: 600;

   line-height: 1.5;
}


/*.ghwm-form-status:not(:empty) {
   padding: 12px 14px;

   background: #edf6e7;

   border: 1px solid #a9c695;

   border-radius: 5px;
}*/


/* =========================================================
   FORM GRID
   ========================================================= */

.ghwm-contact-form {
   display: grid;

   grid-template-columns:
      repeat(2, minmax(0, 1fr));

   gap: 22px;

   margin-top: 24px;
}


.ghwm-form-field {
   min-width: 0;
}


.ghwm-form-field-full {
   grid-column: 1 / -1;
}


/* =========================================================
   LABEL
   ========================================================= */

.ghwm-form-field label {
   display: block;

   margin: 0 0 8px;

   color: #071a30;

   font-size: 15px;

   font-weight: 700;

   line-height: 1.4;
}


.ghwm-form-field label span {
   color: #7a1f1f;

   font-weight: 800;
}


/* =========================================================
   INPUTS
   ========================================================= */

.ghwm-form-field input,
.ghwm-form-field select,
.ghwm-form-field textarea {
   width: 100%;

   min-height: 50px;

   display: block;

   padding: 12px 14px;

   color: #071a30;

   background: #ffffff;

   border: 1px solid #8b98a6;

   border-radius: 4px;

   font-family: inherit;

   font-size: 16px;

   line-height: 1.5;

   box-sizing: border-box;
}


.ghwm-form-field textarea {
   min-height: 145px;

   resize: vertical;
}


.ghwm-form-field select {
   cursor: pointer;
}


/* Placeholder */

.ghwm-form-field input::placeholder,
.ghwm-form-field textarea::placeholder {
   color: #536273;

   opacity: 1;
}


/* =========================================================
   FOCUS
   ========================================================= */

.ghwm-form-field input:focus-visible,
.ghwm-form-field select:focus-visible,
.ghwm-form-field textarea:focus-visible {
   outline: 3px solid #005fcc;

   outline-offset: 2px;

   border-color: #005fcc;
}


/* =========================================================
   INVALID FIELD
   ========================================================= */

.ghwm-form-field input[aria-invalid="true"],
.ghwm-form-field select[aria-invalid="true"],
.ghwm-form-field textarea[aria-invalid="true"] {
   border-color: #9b1c1c;
}


.ghwm-form-field input[aria-invalid="true"]:focus-visible,
.ghwm-form-field select[aria-invalid="true"]:focus-visible,
.ghwm-form-field textarea[aria-invalid="true"]:focus-visible {
   outline-color: #005fcc;

   border-color: #9b1c1c;
}


/* =========================================================
   FIELD HELP
   ========================================================= */

.ghwm-field-help {
   margin: 7px 0 0;

   color: #536273;

   font-size: 13px;

   line-height: 1.5;
}


/* =========================================================
   ERROR MESSAGE
   ========================================================= */

.ghwm-field-error {
   min-height: 0;

   margin: 6px 0 0;

   color: #8b1e1e;

   font-size: 14px;

   font-weight: 600;

   line-height: 1.5;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.ghwm-form-submit {
   grid-column: 1 / -1;

   margin-top: 4px;
}


.ghwm-contact-submit {
   min-width: 180px;

   min-height: 52px;

   display: inline-flex;

   align-items: center;
   justify-content: center;

   gap: 11px;

   padding: 13px 23px;

   color: #ffffff;

   background: #355f00;

   border: 2px solid #355f00;

   border-radius: 4px;

   font-family: inherit;

   font-size: 16px;

   font-weight: 700;

   line-height: 1.3;

   cursor: pointer;

   transition:
      background-color 160ms ease,
      border-color 160ms ease,
      transform 160ms ease;
}


.ghwm-contact-submit:hover {
   color: #ffffff;

   background: #244500;

   border-color: #244500;

   transform: translateY(-1px);
}


.ghwm-contact-submit:focus-visible {
   outline: 3px solid #005fcc;

   outline-offset: 4px;
}


.ghwm-contact-submit-icon {
   width: 20px;
   height: 20px;

   display: inline-flex;

   align-items: center;
   justify-content: center;
}


.ghwm-contact-submit-icon svg {
   width: 20px;
   height: 20px;

   fill: none;

   stroke: currentColor;

   stroke-width: 2;

   stroke-linecap: round;
   stroke-linejoin: round;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

   .ghwm-contact {
      padding: 75px 0;
   }

   .ghwm-contact-container {
      grid-template-columns: 1fr;

      gap: 55px;
   }

   .ghwm-contact-info {
      max-width: 720px;

      padding-top: 0;
   }

   .ghwm-contact-intro {
      max-width: 720px;
   }

   .ghwm-contact-form-wrap {
      max-width: 720px;
   }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

   .ghwm-contact {
      padding: 65px 0;
   }

   .ghwm-contact-container {
      gap: 42px;
   }

   .ghwm-contact-info h2 {
      font-size: clamp(1.9rem, 8vw, 2.5rem);
   }

   .ghwm-contact-intro {
      margin-top: 18px;

      font-size: 16px;

      line-height: 1.7;
   }

   .ghwm-contact-item {
      grid-template-columns: 46px minmax(0, 1fr);

      gap: 14px;

      margin-top: 27px;
   }

   .ghwm-contact-icon {
      width: 46px;
      height: 46px;
   }

   .ghwm-contact-form-wrap {
      padding: 25px 20px 28px;
   }

   .ghwm-contact-form {
      grid-template-columns: 1fr;

      gap: 20px;
   }

   .ghwm-form-field-full {
      grid-column: auto;
   }

   .ghwm-form-submit {
      grid-column: auto;
   }

   .ghwm-contact-submit {
      width: 100%;

      min-height: 54px;
   }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

   .ghwm-contact {
      padding: 55px 0;
   }

   .ghwm-contact-form-wrap {
      padding: 22px 18px 25px;
   }

   .ghwm-contact-item-content h3 {
      font-size: 17px;
   }

   .ghwm-contact-item-content a,
   .ghwm-contact-item-content address {
      font-size: 15px;
   }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

   .ghwm-contact-submit {
      transition: none;
   }

   .ghwm-contact-submit:hover {
      transform: none;
   }
}


/* =========================================================
   FORCED COLORS
   ========================================================= */

@media (forced-colors: active) {

   .ghwm-contact {
      background: Canvas;
   }

   .ghwm-contact-info h2,
   .ghwm-contact-intro,
   .ghwm-contact-item-content h3,
   .ghwm-contact-item-content address,
   .ghwm-contact-form-header h3,
   .ghwm-contact-form-header > p:last-child,
   .ghwm-form-instructions,
   .ghwm-form-field label {
      color: CanvasText;
   }

   .ghwm-contact-icon {
      color: CanvasText;

      background: Canvas;

      border-color: CanvasText;
   }

   .ghwm-contact-form-wrap {
      background: Canvas;

      border-color: CanvasText;

      box-shadow: none;
   }

   .ghwm-form-field input,
   .ghwm-form-field select,
   .ghwm-form-field textarea {
      color: CanvasText;

      background: Canvas;

      border-color: CanvasText;
   }

   .ghwm-contact-item-content a,
   .ghwm-contact-submit {
      color: LinkText;
   }

   .ghwm-contact-submit {
      background: ButtonFace;

      border-color: ButtonText;
   }

   .ghwm-contact-submit:focus-visible,
   .ghwm-form-field input:focus-visible,
   .ghwm-form-field select:focus-visible,
   .ghwm-form-field textarea:focus-visible {
      outline: 3px solid Highlight;

      outline-offset: 3px;
   }
}






/* =========================================================
   FOOTER
   WCAG 2.2 AA-ORIENTED
   ========================================================= */

.ghwm-footer {
   position: relative;

   width: 100%;

   color: #ffffff;

   background: #071a30;

   border-top: 4px solid #355f00;
}


/* =========================================================
   FOOTER MAIN
   ========================================================= */

.ghwm-footer-main {
   display: grid;

   grid-template-columns:
      minmax(240px, 1.25fr)
      minmax(150px, 0.75fr)
      minmax(220px, 1fr)
      minmax(150px, 0.75fr);

   gap: clamp(35px, 5vw, 75px);

   padding:
      clamp(55px, 7vw, 85px)
      0
      clamp(45px, 6vw, 65px);
}


/* =========================================================
   COMPANY
   ========================================================= */

.ghwm-footer-company {
   min-width: 0;
}


.ghwm-footer-logo {
   width: fit-content;

   min-width: 44px;
   min-height: 44px;

   display: inline-flex;

   align-items: center;

   text-decoration: none;
}


.ghwm-footer-logo img {
   width: 181px;
   height: auto;

   max-width: 100%;

   display: block;
}


/* =========================================================
   CONTACT
   ========================================================= */

.ghwm-footer-contact {
   margin-top: 30px;
}


.ghwm-footer-contact-link,
.ghwm-footer-phone {
   display: grid;

   grid-template-columns: 40px minmax(0, 1fr);

   align-items: start;

   gap: 12px;
}


.ghwm-footer-phone {
   margin-top: 20px;
}


.ghwm-footer-contact-icon {
   width: 38px;
   height: 38px;

   display: inline-flex;

   align-items: center;
   justify-content: center;

   color: #ffffff;

   background: #355f00;

   border-radius: 4px;
}


.ghwm-footer-contact-icon svg {
   width: 19px;
   height: 19px;

   fill: none;

   stroke: currentColor;

   stroke-width: 1.8;

   stroke-linecap: round;
   stroke-linejoin: round;
}


/* Email */

.ghwm-footer-contact-link {
   color: #ffffff;

   font-size: 16px;

   font-weight: 600;

   line-height: 1.6;

   text-decoration: underline;

   text-decoration-color: #a9c695;

   text-decoration-thickness: 1px;

   text-underline-offset: 3px;
}


.ghwm-footer-contact-link:hover {
   color: #d8e7cd;
}


/* Phone */

.ghwm-footer-phone-links {
   min-width: 0;

   display: flex;

   flex-direction: column;

   gap: 4px;
}


.ghwm-footer-phone-links a {
   width: fit-content;

   color: #ffffff;

   font-size: 16px;

   font-weight: 600;

   line-height: 1.55;

   text-decoration: underline;

   text-decoration-color: #a9c695;

   text-decoration-thickness: 1px;

   text-underline-offset: 3px;
}


.ghwm-footer-phone-links a:hover {
   color: #d8e7cd;
}


/* =========================================================
   FOOTER NAVIGATION
   ========================================================= */

.ghwm-footer-nav {
   min-width: 0;
}


.ghwm-footer-title {
   position: relative;

   margin: 0 0 23px;

   padding-bottom: 13px;

   color: #ffffff;

   font-size: 18px;

   font-weight: 700;

   line-height: 1.4;
}


.ghwm-footer-title::after {
   content: "";

   position: absolute;

   left: 0;
   bottom: 0;

   width: 38px;
   height: 3px;

   background: #355f00;

   border-radius: 2px;
}


.ghwm-footer-nav ul {
   margin: 0;
   padding: 0;

   list-style: none;
}


.ghwm-footer-nav li {
   margin: 0;
   padding: 0;
}


.ghwm-footer-nav li + li {
   margin-top: 11px;
}


.ghwm-footer-nav a {
   display: inline-flex;

   align-items: flex-start;

   min-height: 28px;

   color: #dce4ec;

   font-size: 15px;

   font-weight: 400;

   line-height: 1.6;

   text-decoration: none;

   transition:
      color 160ms ease,
      transform 160ms ease;
}


.ghwm-footer-nav a:hover {
   color: #ffffff;

   transform: translateX(3px);
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.ghwm-footer-bottom {
   display: flex;

   align-items: center;
   justify-content: space-between;

   gap: 25px;

   padding:
      22px
      0
      25px;

   border-top: 1px solid rgba(255, 255, 255, 0.18);
}


.ghwm-footer-bottom p {
   margin: 0;

   color: #cbd5df;

   font-size: 14px;

   line-height: 1.6;
}


.ghwm-footer-bottom-link {
   min-width: 44px;
   min-height: 44px;

   display: inline-flex;

   align-items: center;

   color: #ffffff;

   font-size: 14px;

   font-weight: 600;

   text-decoration: underline;

   text-decoration-color: #a9c695;

   text-underline-offset: 3px;
}


/* =========================================================
   KEYBOARD FOCUS
   ========================================================= */

.ghwm-footer a:focus-visible {
   outline: 3px solid #7db7ff;

   outline-offset: 4px;

   border-radius: 3px;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

   .ghwm-footer-main {
      grid-template-columns:
         minmax(220px, 1.2fr)
         minmax(150px, 0.8fr)
         minmax(220px, 1fr);

      gap: 45px;
   }


   .ghwm-footer-company {
      grid-row: span 2;
   }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

   .ghwm-footer-main {
      grid-template-columns:
         repeat(2, minmax(0, 1fr));

      gap: 45px 35px;
   }


   .ghwm-footer-company {
      grid-row: auto;
   }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

   .ghwm-footer-main {
      grid-template-columns: 1fr;

      gap: 38px;

      padding:
         55px
         0
         40px;
   }


   .ghwm-footer-company {
      padding-bottom: 8px;
   }


   .ghwm-footer-logo img {
      width: 165px;
   }


   .ghwm-footer-contact {
      margin-top: 25px;
   }


   .ghwm-footer-title {
      margin-bottom: 20px;
   }


   .ghwm-footer-nav li + li {
      margin-top: 9px;
   }


   .ghwm-footer-bottom {
      align-items: flex-start;

      flex-direction: column;

      gap: 10px;

      padding:
         20px
         0
         24px;
   }


   .ghwm-footer-bottom p {
      font-size: 13px;
   }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

   .ghwm-footer-main {
      gap: 32px;
   }


   .ghwm-footer-contact-link,
   .ghwm-footer-phone {
      grid-template-columns: 38px minmax(0, 1fr);

      gap: 10px;
   }


   .ghwm-footer-contact-link,
   .ghwm-footer-phone-links a {
      font-size: 15px;
   }


   .ghwm-footer-nav a {
      font-size: 14px;
   }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

   .ghwm-footer-nav a {
      transition: none;
   }


   .ghwm-footer-nav a:hover {
      transform: none;
   }

}


/* =========================================================
   FORCED COLORS / HIGH CONTRAST
   ========================================================= */

@media (forced-colors: active) {

   .ghwm-footer {
      color: CanvasText;

      background: Canvas;

      border-top-color: CanvasText;
   }


   .ghwm-footer-title,
   .ghwm-footer-bottom p {
      color: CanvasText;
   }


   .ghwm-footer-title::after {
      background: CanvasText;
   }


   .ghwm-footer-nav a,
   .ghwm-footer-contact-link,
   .ghwm-footer-phone-links a,
   .ghwm-footer-bottom-link {
      color: LinkText;

      text-decoration: underline;
   }


   .ghwm-footer-contact-icon {
      color: ButtonText;

      background: ButtonFace;

      border: 1px solid ButtonText;
   }


   .ghwm-footer-bottom {
      border-top-color: CanvasText;
   }


   .ghwm-footer a:focus-visible {
      outline-color: Highlight;
   }

}


/* =========================================================
   GHWM BACK TO TOP BUTTON
========================================================= */

.ghwm-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9990;

  width: 48px;
  height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  border: 2px solid #ffffff;
  border-radius: 50%;

  background: #355f00;
  color: #ffffff;

  cursor: pointer;

  /* Hidden initially */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(12px);

  box-shadow: 0 6px 18px rgba(8, 26, 48, 0.25);

  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease,
    background-color 180ms ease;
}


/* ---------------------------------------------------------
   Visible state
--------------------------------------------------------- */

.ghwm-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}


/* ---------------------------------------------------------
   Arrow icon
--------------------------------------------------------- */

.ghwm-back-to-top svg {
  display: block;

  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ---------------------------------------------------------
   Hover
--------------------------------------------------------- */

.ghwm-back-to-top:hover {
  background: #102846;
}


/* ---------------------------------------------------------
   Keyboard focus
--------------------------------------------------------- */

.ghwm-back-to-top:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 4px;
}


/* ---------------------------------------------------------
   Active
--------------------------------------------------------- */

.ghwm-back-to-top:active {
  transform: translateY(1px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .ghwm-back-to-top {
    right: 16px;
    bottom: 16px;

    width: 46px;
    height: 46px;
  }

  .ghwm-back-to-top svg {
    width: 20px;
    height: 20px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ghwm-back-to-top {
    transition: none;
  }
}


/* =========================================================
   FORCED COLORS / HIGH CONTRAST
========================================================= */

@media (forced-colors: active) {

  .ghwm-back-to-top {
    border: 2px solid ButtonText;
    background: ButtonFace;
    color: ButtonText;
    box-shadow: none;
  }

  .ghwm-back-to-top:focus-visible {
    outline: 3px solid Highlight;
  }
}






/* =========================================================
   GHWM INNER PAGE BANNER
   Reusable for all internal pages
========================================================= */

.ghwm-page-banner {
  position: relative;
  isolation: isolate;

  min-height: 360px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background-color: var(--ghwm-navy-dark);

  background-image: url("../images/slider-1-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* ---------------------------------------------------------
   Dark overlay
--------------------------------------------------------- */

.ghwm-page-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;

  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 48, 0.92) 0%,
      rgba(7, 26, 48, 0.82) 50%,
      rgba(7, 26, 48, 0.68) 100%
    );
}


/* ---------------------------------------------------------
   Banner content
--------------------------------------------------------- */

.ghwm-page-banner-content {
  width: 100%;
  max-width: 800px;

  padding-top: 70px;
  padding-bottom: 70px;
}


/* ---------------------------------------------------------
   Eyebrow
--------------------------------------------------------- */

.ghwm-page-banner-eyebrow {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ---------------------------------------------------------
   Page title
--------------------------------------------------------- */

.ghwm-page-banner h1 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.ghwm-breadcrumb {
  margin-top: 22px;
}


/* Breadcrumb list */

.ghwm-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;

  color: #ffffff;

  font-size: 16px;
  line-height: 1.5;
}


/* Breadcrumb links */

.ghwm-breadcrumb a {
  color: #ffffff;

  font-weight: 600;

  text-decoration: none;
}


/* Breadcrumb hover */

.ghwm-breadcrumb a:hover {
  color: #d7e8c9;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* Current page */

.ghwm-breadcrumb [aria-current="page"] {
  color: #d7e8c9;
  font-weight: 700;
}


/* Separator */

.ghwm-breadcrumb li[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.65);
}


/* Keyboard focus */

.ghwm-breadcrumb a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
  border-radius: 3px;
}


/* =========================================================
   ABOUT PAGE BACKGROUND
========================================================= */

/*
   The modifier class allows every page to have its own
   background image while keeping the same banner design.
*/

.ghwm-page-banner-about {
  background-image: url("../images/about-us.jpg");
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .ghwm-page-banner {
    min-height: 320px;
  }

  .ghwm-page-banner-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .ghwm-page-banner {
    min-height: 290px;

    background-position: center;
  }

  .ghwm-page-banner-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ghwm-page-banner-eyebrow {
    margin-bottom: 10px;

    font-size: 14px;
  }

  .ghwm-page-banner h1 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .ghwm-breadcrumb {
    margin-top: 18px;
  }

  .ghwm-breadcrumb ol {
    gap: 8px;
    font-size: 15px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ghwm-breadcrumb a {
    transition: none;
  }
}


/* =========================================================
   FORCED COLORS
========================================================= */

@media (forced-colors: active) {

  .ghwm-page-banner {
    background: Canvas;
  }

  .ghwm-page-banner-overlay {
    display: none;
  }

  .ghwm-page-banner-eyebrow,
  .ghwm-page-banner h1,
  .ghwm-breadcrumb ol,
  .ghwm-breadcrumb a,
  .ghwm-breadcrumb [aria-current="page"] {
    color: CanvasText;
  }

  .ghwm-breadcrumb a:focus-visible {
    outline-color: Highlight;
  }
}


/* =========================================================
   GHWM ABOUT US - INTRODUCTION
========================================================= */

.ghwm-about-intro {
  padding: 100px 0;

  background: #ffffff;
}


/* ---------------------------------------------------------
   Two-column layout
--------------------------------------------------------- */

.ghwm-about-intro-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, 0.85fr);

  align-items: center;

  gap: 70px;
}


/* ---------------------------------------------------------
   Content
--------------------------------------------------------- */

.ghwm-about-intro-content {
  max-width: 720px;
}


/* Eyebrow */

.ghwm-about-intro .ghwm-section-eyebrow {
  margin: 0 0 12px;

  color: var(--ghwm-green);

  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* Heading */

.ghwm-about-intro h2 {
  max-width: 720px;

  margin: 0 0 28px;

  color: var(--ghwm-navy-dark);

  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}


/* Paragraphs */

.ghwm-about-intro p:not(.ghwm-section-eyebrow) {
  max-width: 720px;

  margin: 0 0 20px;

  color: var(--ghwm-text);

  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}


/* Remove margin from final paragraph */

.ghwm-about-intro p:last-child {
  margin-bottom: 0;
}


/* ---------------------------------------------------------
   Image
--------------------------------------------------------- */

.ghwm-about-intro-media {
  width: 100%;
}


.ghwm-about-intro-image {
  position: relative;

  width: 100%;

  padding: 0 0 18px 18px;
}


/*
   Decorative frame
*/

.ghwm-about-intro-image::before {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 72%;
  height: 72%;

  border-left: 5px solid var(--ghwm-green);
  border-bottom: 5px solid var(--ghwm-green);

  pointer-events: none;
}


/* Image */

.ghwm-about-intro-image img {
  position: relative;
  z-index: 1;

  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 7 / 6;

  object-fit: cover;

  border-radius: 4px;

  box-shadow:
    0 14px 35px rgba(8, 26, 48, 0.14);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .ghwm-about-intro {
    padding: 80px 0;
  }

  .ghwm-about-intro-grid {
    grid-template-columns: 1fr;

    gap: 50px;
  }

  .ghwm-about-intro-content {
    max-width: 800px;
  }

  .ghwm-about-intro-media {
    max-width: 650px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .ghwm-about-intro {
    padding: 64px 0;
  }

  .ghwm-about-intro-grid {
    gap: 36px;
  }

  .ghwm-about-intro h2 {
    margin-bottom: 22px;

    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .ghwm-about-intro p:not(.ghwm-section-eyebrow) {
    font-size: 17px;
    line-height: 1.7;
  }

  .ghwm-about-intro-image {
    padding: 0 0 12px 12px;
  }

  .ghwm-about-intro-image::before {
    border-left-width: 4px;
    border-bottom-width: 4px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ghwm-about-intro-image img {
    transition: none;
  }
}


/* =========================================================
   FORCED COLORS
========================================================= */

@media (forced-colors: active) {

  .ghwm-about-intro-image::before {
    border-color: CanvasText;
  }

  .ghwm-about-intro-image img {
    box-shadow: none;
  }
}




.ghwm-about-approach {
  padding: 100px 0;
  background: #f6f8fb;
}

.ghwm-about-approach-header {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.ghwm-about-approach .ghwm-section-eyebrow {
  margin: 0 0 12px;
  color: var(--ghwm-green);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghwm-about-approach h2 {
  margin: 0 0 22px;
  color: var(--ghwm-navy-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ghwm-about-approach-intro {
  max-width: 800px;
  margin: 0 auto;
  color: var(--ghwm-text);
  font-size: 18px;
  line-height: 1.75;
}

.ghwm-about-approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ghwm-about-approach-card {
  padding: 38px 32px;
  background: #ffffff;
  border: 1px solid var(--ghwm-border);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(8, 26, 48, 0.08);
}

.ghwm-about-approach-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  border-radius: 50%;
  background: var(--ghwm-green);
  color: #ffffff;
}

.ghwm-about-approach-icon span {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.ghwm-about-approach-card h3 {
  margin: 0 0 18px;
  color: var(--ghwm-navy-dark);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
}

.ghwm-about-approach-card p {
  margin: 0 0 18px;
  color: var(--ghwm-text);
  font-size: 17px;
  line-height: 1.7;
}

.ghwm-about-approach-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .ghwm-about-approach {
    padding: 80px 0;
  }

  .ghwm-about-approach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ghwm-about-approach-card {
    padding: 32px 28px;
  }
}

@media (max-width: 600px) {
  .ghwm-about-approach {
    padding: 64px 0;
  }

  .ghwm-about-approach-header {
    margin-bottom: 38px;
  }

  .ghwm-about-approach h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .ghwm-about-approach-intro {
    font-size: 17px;
    line-height: 1.7;
  }

  .ghwm-about-approach-card {
    padding: 28px 22px;
  }

  .ghwm-about-approach-card h3 {
    font-size: 21px;
  }

  .ghwm-about-approach-card p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghwm-about-approach-card {
    transition: none;
  }
}

@media (forced-colors: active) {
  .ghwm-about-approach {
    background: Canvas;
  }

  .ghwm-about-approach-card {
    background: Canvas;
    border-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-about-approach-icon {
    background: CanvasText;
    color: Canvas;
  }
}


.ghwm-organization {
  padding: 100px 0;
  background: #ffffff;
}

.ghwm-organization-header {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.ghwm-organization .ghwm-section-eyebrow {
  margin: 0 0 12px;
  color: #355f00;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghwm-organization-header h2 {
  margin: 0 0 22px;
  color: #071a30;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ghwm-organization-header > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: #132238;
  font-size: 18px;
  line-height: 1.75;
}

.ghwm-organization-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ghwm-organization-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 38px 32px 36px;
  background: #ffffff;
  border: 1px solid #c8d0da;
  border-top: 5px solid #355f00;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(8, 26, 48, 0.08);
}

.ghwm-organization-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 25px;
  border-radius: 50%;
  background: #102846;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.ghwm-organization-content h3 {
  margin: 0 0 18px;
  color: #071a30;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.ghwm-organization-content p {
  margin: 0;
  color: #132238;
  font-size: 17px;
  line-height: 1.75;
}

/* Keyboard focus support if cards later become links/buttons */
.ghwm-organization-card a:focus-visible,
.ghwm-organization-card button:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .ghwm-organization {
    padding: 80px 0;
  }

  .ghwm-organization-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ghwm-organization-card {
    padding: 34px 28px;
  }
}

@media (max-width: 600px) {
  .ghwm-organization {
    padding: 64px 0;
  }

  .ghwm-organization-header {
    margin-bottom: 38px;
  }

  .ghwm-organization-header h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .ghwm-organization-header > p:last-child {
    font-size: 17px;
    line-height: 1.7;
  }

  .ghwm-organization-card {
    padding: 28px 22px 30px;
  }

  .ghwm-organization-content h3 {
    font-size: 22px;
  }

  .ghwm-organization-content p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghwm-organization-card {
    transition: none;
  }
}

@media (forced-colors: active) {
  .ghwm-organization {
    background: Canvas;
  }

  .ghwm-organization-card {
    background: Canvas;
    border-color: CanvasText;
    border-top-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-organization-number {
    background: CanvasText;
    color: Canvas;
  }

  .ghwm-organization .ghwm-section-eyebrow,
  .ghwm-organization-header h2,
  .ghwm-organization-header > p:last-child,
  .ghwm-organization-content h3,
  .ghwm-organization-content p {
    color: CanvasText;
  }
}



.ghwm-management {
  padding: 100px 0;
  background: #ffffff;
}

.ghwm-management-header {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.ghwm-management .ghwm-section-eyebrow {
  margin: 0 0 12px;
  color: #355f00;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghwm-management-header h2 {
  margin: 0 0 22px;
  color: #071a30;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ghwm-management-header > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: #132238;
  font-size: 18px;
  line-height: 1.75;
}


/* Individual management profile */

.ghwm-management-profile {
  max-width: 1000px;
  margin: 0 auto 32px;
  padding: 38px 42px 40px;
  background: #ffffff;
  border: 1px solid #c8d0da;
  border-left: 5px solid #355f00;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(8, 26, 48, 0.08);
}

.ghwm-management-profile:last-child {
  margin-bottom: 0;
}

.ghwm-management-profile-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.ghwm-management-number {
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #102846;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.ghwm-management-profile h3 {
  margin: 0;
  color: #071a30;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.ghwm-management-designation {
  margin: 5px 0 0;
  color: #355f00;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.ghwm-management-content {
  max-width: 900px;
  padding-left: 74px;
}

.ghwm-management-content p {
  margin: 0 0 20px;
  color: #132238;
  font-size: 17px;
  line-height: 1.8;
}

.ghwm-management-content p:last-child {
  margin-bottom: 0;
}


/* Tablet */

@media (max-width: 900px) {

  .ghwm-management {
    padding: 80px 0;
  }

  .ghwm-management-header {
    margin-bottom: 48px;
  }

  .ghwm-management-profile {
    padding: 34px 30px 36px;
  }

  .ghwm-management-content {
    padding-left: 0;
  }
}


/* Mobile */

@media (max-width: 600px) {

  .ghwm-management {
    padding: 64px 0;
  }

  .ghwm-management-header {
    margin-bottom: 38px;
  }

  .ghwm-management-header h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .ghwm-management-header > p:last-child {
    font-size: 17px;
    line-height: 1.7;
  }

  .ghwm-management-profile {
    margin-bottom: 24px;
    padding: 28px 22px 30px;
    border-left-width: 4px;
  }

  .ghwm-management-profile-top {
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
  }

  .ghwm-management-number {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    font-size: 14px;
  }

  .ghwm-management-profile h3 {
    font-size: 22px;
  }

  .ghwm-management-designation {
    font-size: 15px;
  }

  .ghwm-management-content p {
    font-size: 16px;
    line-height: 1.75;
  }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

  .ghwm-management-profile {
    transition: none;
  }
}


/* Windows High Contrast / Forced Colors */

@media (forced-colors: active) {

  .ghwm-management {
    background: Canvas;
  }

  .ghwm-management-profile {
    background: Canvas;
    border-color: CanvasText;
    border-left-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-management-number {
    background: CanvasText;
    color: Canvas;
  }

  .ghwm-management .ghwm-section-eyebrow,
  .ghwm-management-header h2,
  .ghwm-management-header > p:last-child,
  .ghwm-management-profile h3,
  .ghwm-management-designation,
  .ghwm-management-content p {
    color: CanvasText;
  }
}



.ghwm-team {
  padding: 100px 0;
  background: #ffffff;
}

.ghwm-team-intro {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.ghwm-team .ghwm-section-eyebrow {
  margin: 0 0 12px;
  color: #355f00;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghwm-team-intro h2 {
  margin: 0 0 22px;
  color: #071a30;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ghwm-team-intro > p:last-child {
  max-width: 800px;
  margin: 0 auto;
  color: #132238;
  font-size: 18px;
  line-height: 1.75;
}


/* Team profile */

.ghwm-team-profile {
  max-width: 1000px;
  margin: 0 auto 32px;
  padding: 38px 42px 40px;
  background: #ffffff;
  border: 1px solid #c8d0da;
  border-left: 5px solid #355f00;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(8, 26, 48, 0.08);
}

.ghwm-team-profile:last-child {
  margin-bottom: 0;
}

.ghwm-team-profile-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.ghwm-team-number {
  flex: 0 0 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  border-radius: 50%;
  background: #102846;
  color: #ffffff;

  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.ghwm-team-profile h3 {
  margin: 0;
  color: #071a30;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}

.ghwm-team-profile-content {
  max-width: 900px;
  padding-left: 74px;
}

.ghwm-team-profile-content p {
  margin: 0 0 20px;
  color: #132238;
  font-size: 17px;
  line-height: 1.8;
}

.ghwm-team-profile-content p:last-child {
  margin-bottom: 0;
}


/* Tablet */

@media (max-width: 900px) {

  .ghwm-team {
    padding: 80px 0;
  }

  .ghwm-team-intro {
    margin-bottom: 48px;
  }

  .ghwm-team-profile {
    padding: 34px 30px 36px;
  }

  .ghwm-team-profile-content {
    padding-left: 0;
  }
}


/* Mobile */

@media (max-width: 600px) {

  .ghwm-team {
    padding: 64px 0;
  }

  .ghwm-team-intro {
    margin-bottom: 38px;
  }

  .ghwm-team-intro h2 {
    margin-bottom: 18px;
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .ghwm-team-intro > p:last-child {
    font-size: 17px;
    line-height: 1.7;
  }

  .ghwm-team-profile {
    margin-bottom: 24px;
    padding: 28px 22px 30px;
    border-left-width: 4px;
  }

  .ghwm-team-profile-heading {
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
  }

  .ghwm-team-number {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    font-size: 14px;
  }

  .ghwm-team-profile h3 {
    font-size: 22px;
  }

  .ghwm-team-profile-content p {
    font-size: 16px;
    line-height: 1.75;
  }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

  .ghwm-team-profile {
    transition: none;
  }
}


/* Forced colors / Windows High Contrast */

@media (forced-colors: active) {

  .ghwm-team {
    background: Canvas;
  }

  .ghwm-team-profile {
    background: Canvas;
    border-color: CanvasText;
    border-left-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-team-number {
    background: CanvasText;
    color: Canvas;
  }

  .ghwm-team .ghwm-section-eyebrow,
  .ghwm-team-intro h2,
  .ghwm-team-intro > p:last-child,
  .ghwm-team-profile h3,
  .ghwm-team-profile-content p {
    color: CanvasText;
  }
}



.ghwm-service-detail {
  padding: 100px 0;
  background: #ffffff;
}

.ghwm-service-detail-layout {
  display: grid;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
  align-items: start;
  gap: 55px;
}


/* =========================================
   LEFT SERVICES SIDEBAR
========================================= */

.ghwm-service-sidebar {
  position: sticky;
  top: 110px;
}

.ghwm-service-sidebar-inner {
  background: #f6f8fb;
  border: 1px solid #c8d0da;
  border-radius: 6px;
  overflow: hidden;
}

.ghwm-service-sidebar h2 {
  margin: 0;
  padding: 22px 24px;
  background: #102846;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.ghwm-service-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ghwm-service-menu li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #c8d0da;
}

.ghwm-service-menu li:last-child {
  border-bottom: 0;
}

.ghwm-service-menu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 15px 20px;
  background: #ffffff;
  color: #132238;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.ghwm-service-menu a:hover {
  background: #eef3e9;
  color: #071a30;
}

.ghwm-service-menu a[aria-current="page"] {
  background: #355f00;
  color: #ffffff;
  font-weight: 700;
}

.ghwm-service-menu a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #102846;
}

.ghwm-service-menu a:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid #005fcc;
  outline-offset: -3px;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.ghwm-service-main {
  min-width: 0;
}

.ghwm-service-image {
  margin: 0 0 42px;
}

.ghwm-service-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 12 / 7;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 14px 35px rgba(8, 26, 48, 0.14);
}

.ghwm-service-heading {
  margin-bottom: 40px;
}

.ghwm-service-heading .ghwm-section-eyebrow {
  margin: 0 0 12px;
  color: #355f00;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghwm-service-heading h1 {
  margin: 0;
  color: #071a30;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}


/* =========================================
   SERVICE ITEMS
========================================= */

.ghwm-service-content {
  display: grid;
  gap: 24px;
}

.ghwm-service-item {
  margin: 0;
  padding: 28px 30px;
  background: #ffffff;
  border: 1px solid #c8d0da;
  border-left: 4px solid #355f00;
  border-radius: 6px;
}

.ghwm-service-item h2 {
  margin: 0 0 13px;
  color: #071a30;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
}

.ghwm-service-item p {
  margin: 0;
  color: #132238;
  font-size: 17px;
  line-height: 1.8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .ghwm-service-detail {
    padding: 80px 0;
  }

  .ghwm-service-detail-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 32px;
  }

  .ghwm-service-sidebar {
    top: 90px;
  }

  .ghwm-service-sidebar h2 {
    padding: 20px;
    font-size: 19px;
  }

  .ghwm-service-menu a {
    padding: 14px 16px;
    font-size: 15px;
  }

  .ghwm-service-image {
    margin-bottom: 34px;
  }

  .ghwm-service-item {
    padding: 25px 24px;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .ghwm-service-detail {
    padding: 64px 0;
  }

  .ghwm-service-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ghwm-service-sidebar {
    position: static;
  }

  .ghwm-service-sidebar h2 {
    font-size: 20px;
  }

  .ghwm-service-menu a {
    min-height: 56px;
    padding: 15px 18px;
  }

  .ghwm-service-image {
    margin-bottom: 30px;
  }

  .ghwm-service-heading {
    margin-bottom: 30px;
  }

  .ghwm-service-heading h1 {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .ghwm-service-content {
    gap: 20px;
  }

  .ghwm-service-item {
    padding: 24px 20px;
  }

  .ghwm-service-item h2 {
    font-size: 20px;
  }

  .ghwm-service-item p {
    font-size: 16px;
    line-height: 1.75;
  }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

  .ghwm-service-menu a {
    transition: none;
  }
}


/* =========================================
   FORCED COLORS / HIGH CONTRAST
========================================= */

@media (forced-colors: active) {

  .ghwm-service-detail {
    background: Canvas;
  }

  .ghwm-service-sidebar-inner {
    background: Canvas;
    border-color: CanvasText;
  }

  .ghwm-service-sidebar h2 {
    background: CanvasText;
    color: Canvas;
  }

  .ghwm-service-menu li {
    border-color: CanvasText;
  }

  .ghwm-service-menu a {
    background: Canvas;
    color: CanvasText;
  }

  .ghwm-service-menu a:hover,
  .ghwm-service-menu a[aria-current="page"] {
    background: Highlight;
    color: HighlightText;
  }

  .ghwm-service-menu a[aria-current="page"]::before {
    background: CanvasText;
  }

  .ghwm-service-image img {
    box-shadow: none;
  }

  .ghwm-service-heading .ghwm-section-eyebrow,
  .ghwm-service-heading h1 {
    color: CanvasText;
  }

  .ghwm-service-item {
    background: Canvas;
    border-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-service-item h2,
  .ghwm-service-item p {
    color: CanvasText;
  }
}




/* =========================================================
   GHWM CONTACT PAGE
   WCAG 2.2 AA ORIENTED
   ========================================================= */

.ghwm-contact-page {
  padding: 100px 0;
  background: #ffffff;
}


/* =========================================================
   CONTACT PAGE HEADER
   ========================================================= */

.ghwm-contact-page-header {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.ghwm-contact-page .ghwm-section-eyebrow {
  margin: 0 0 12px;
  color: #355f00;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghwm-contact-page-header h2 {
  margin: 0 0 22px;
  color: #071a30;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ghwm-contact-page-header > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: #132238;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}


/* =========================================================
   CONTACT INFORMATION + FORM GRID
   ========================================================= */

.ghwm-contact-page-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);
  gap: 40px;
  align-items: stretch;
}

.ghwm-contact-page-info,
.ghwm-contact-page-form {
  min-width: 0;
}


/* =========================================================
   CONTACT INFORMATION CARD
   ========================================================= */

.ghwm-contact-card {
  height: 100%;
  padding: 42px 36px;
  box-sizing: border-box;

  background: #102846;
  border: 1px solid #102846;
  border-radius: 6px;

  box-shadow: 0 10px 28px rgba(8, 26, 48, 0.12);
}

.ghwm-contact-card h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
}

.ghwm-contact-card > p {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}


/* =========================================================
   ADDRESS / CONTACT DETAILS
   ========================================================= */

.ghwm-contact-details {
  margin: 0;
  padding: 0;
  font-style: normal;
}

.ghwm-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  padding: 22px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.ghwm-contact-detail:first-child {
  padding-top: 0;
  border-top: 0;
}

.ghwm-contact-detail:last-child {
  padding-bottom: 0;
}


/* Contact icons */

.ghwm-contact-detail-icon {
  flex: 0 0 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border: 2px solid #ffffff;
  border-radius: 50%;

  color: #ffffff;
}

.ghwm-contact-detail-icon svg {
  display: block;
  width: 20px;
  height: 20px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* Contact labels */

.ghwm-contact-detail h4 {
  margin: 0 0 7px;

  color: #ffffff;

  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}


/* Contact values */

.ghwm-contact-detail p {
  margin: 0 0 4px;

  color: #ffffff;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.ghwm-contact-detail p:last-child {
  margin-bottom: 0;
}


/* Contact links */

.ghwm-contact-detail a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ghwm-contact-detail a:hover {
  color: #d7e8c9;
}

.ghwm-contact-detail a:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
  border-radius: 3px;
}


/* =========================================================
   CONTACT FORM CARD
   ========================================================= */

.ghwm-contact-form-card {
  height: 100%;
  padding: 42px 40px;
  box-sizing: border-box;

  background: #f6f8fb;

  border: 1px solid #c8d0da;
  border-radius: 6px;

  box-shadow: 0 10px 28px rgba(8, 26, 48, 0.08);
}


/* Form eyebrow */

.ghwm-contact-form-card .ghwm-section-eyebrow {
  margin: 0 0 10px;

  color: #355f00;

  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* Form heading */

.ghwm-contact-form-card h3 {
  margin: 0 0 12px;

  color: #071a30;

  font-size: 27px;
  font-weight: 700;
  line-height: 1.3;
}


/* Form introduction */

.ghwm-contact-form-intro {
  margin: 0 0 32px;

  color: #132238;

  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.ghwm-contact-form {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  column-gap: 24px;
  row-gap: 22px;
}


/* =========================================================
   FORM FIELD
   ========================================================= */

.ghwm-form-field {
  display: grid;
  gap: 8px;

  min-width: 0;
}


/* Message field = full width */

.ghwm-form-field:has(textarea) {
  grid-column: 1 / -1;
}


/* =========================================================
   FORM LABEL
   ========================================================= */

.ghwm-form-field label {
  color: #071a30;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.ghwm-form-field label span {
  color: #8b1e1e;
  font-weight: 800;
}


/* =========================================================
   INPUTS / TEXTAREA
   ========================================================= */

.ghwm-form-field input,
.ghwm-form-field textarea {
  display: block;

  width: 100%;
  box-sizing: border-box;

  padding: 12px 14px;

  border: 2px solid #7a8795;
  border-radius: 5px;

  background: #ffffff;
  color: #132238;

  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;

  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}


/* Input height */

.ghwm-form-field input {
  min-height: 50px;
}


/* Textarea */

.ghwm-form-field textarea {
  min-height: 155px;
  resize: vertical;
}


/* Placeholder */

.ghwm-form-field input::placeholder,
.ghwm-form-field textarea::placeholder {
  color: #4d5b6b;
  opacity: 1;
}


/* Hover */

.ghwm-form-field input:hover,
.ghwm-form-field textarea:hover {
  border-color: #102846;
}


/* Keyboard focus */

.ghwm-form-field input:focus,
.ghwm-form-field textarea:focus {
  border-color: #102846;

  outline: 3px solid #005fcc;
  outline-offset: 2px;

  box-shadow: none;
}


/* =========================================================
   INVALID FIELD STATE
   =========================================================

   Do NOT automatically show red borders on page load.

   Add .is-invalid to .ghwm-form-field only after
   actual validation has failed.
   ========================================================= */

.ghwm-form-field.is-invalid input,
.ghwm-form-field.is-invalid textarea {
  border-color: #8b1e1e;
}

.ghwm-form-field.is-invalid input:focus,
.ghwm-form-field.is-invalid textarea:focus {
  border-color: #8b1e1e;

  outline: 3px solid #005fcc;
  outline-offset: 2px;
}


/* =========================================================
   FORM ERROR MESSAGE
   Optional class for PHP / JS validation
   ========================================================= */

.ghwm-form-error {
  margin: 0;

  color: #8b1e1e;

  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.ghwm-contact-submit {
  grid-column: 1 / -1;

  width: 100%;
  min-height: 52px;

  margin-top: 2px;
  padding: 13px 24px;

  box-sizing: border-box;

  border: 2px solid #102846;
  border-radius: 5px;

  background: #102846;
  color: #ffffff;

  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;

  cursor: pointer;

  transition:
    background-color 150ms ease,
    border-color 150ms ease;
}


/* Button hover */

.ghwm-contact-submit:hover {
  background: #071a30;
  border-color: #071a30;
}


/* Button focus */

.ghwm-contact-submit:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 4px;
}


/* Button active */

.ghwm-contact-submit:active {
  transform: translateY(1px);
}


/* =========================================================
   GOOGLE MAP SECTION
   ========================================================= */

.ghwm-contact-map {
  margin-top: 80px;
}


/* Map heading */

.ghwm-contact-map-header {
  margin-bottom: 30px;
}

.ghwm-contact-map-header .ghwm-section-eyebrow {
  margin-bottom: 10px;
}

.ghwm-contact-map-header h2 {
  margin: 0;

  color: #071a30;

  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}


/* Map frame */

.ghwm-contact-map-frame {
  width: 100%;
  min-height: 450px;

  overflow: hidden;

  border: 1px solid #c8d0da;
  border-radius: 6px;

  background: #f6f8fb;

  box-shadow: 0 10px 28px rgba(8, 26, 48, 0.08);
}


/* Google iframe */

.ghwm-contact-map-frame iframe {
  display: block;

  width: 100%;
  min-height: 450px;

  border: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .ghwm-contact-page {
    padding: 80px 0;
  }

  .ghwm-contact-page-header {
    margin-bottom: 48px;
  }

  .ghwm-contact-page-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ghwm-contact-card,
  .ghwm-contact-form-card {
    height: auto;
  }

  .ghwm-contact-map {
    margin-top: 60px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .ghwm-contact-page {
    padding: 64px 0;
  }

  .ghwm-contact-page-header {
    margin-bottom: 40px;
  }

  .ghwm-contact-page-header h2 {
    margin-bottom: 18px;

    font-size: clamp(
      1.9rem,
      9vw,
      2.5rem
    );
  }

  .ghwm-contact-page-header > p:last-child {
    font-size: 17px;
    line-height: 1.7;
  }


  /* Contact cards */

  .ghwm-contact-card,
  .ghwm-contact-form-card {
    padding: 30px 22px;
  }


  .ghwm-contact-card h3,
  .ghwm-contact-form-card h3 {
    font-size: 23px;
  }


  /* Contact details */

  .ghwm-contact-detail {
    gap: 14px;
  }

  .ghwm-contact-detail-icon {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;
  }

  .ghwm-contact-detail-icon svg {
    width: 18px;
    height: 18px;
  }

  .ghwm-contact-detail p {
    font-size: 15px;
    line-height: 1.6;
  }


  /* Form */

  .ghwm-contact-form {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .ghwm-form-field:has(textarea) {
    grid-column: auto;
  }

  .ghwm-contact-submit {
    grid-column: auto;
  }

  .ghwm-form-field input {
    min-height: 48px;
  }

  .ghwm-form-field textarea {
    min-height: 150px;
  }


  /* Map */

  .ghwm-contact-map {
    margin-top: 50px;
  }

  .ghwm-contact-map-header {
    margin-bottom: 22px;
  }

  .ghwm-contact-map-frame,
  .ghwm-contact-map-frame iframe {
    min-height: 350px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

  .ghwm-contact-card,
  .ghwm-contact-form-card {
    padding: 26px 18px;
  }

  .ghwm-contact-detail {
    gap: 11px;
  }

  .ghwm-contact-detail-icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .ghwm-contact-detail p {
    font-size: 14px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ghwm-form-field input,
  .ghwm-form-field textarea,
  .ghwm-contact-submit,
  .ghwm-contact-detail a {
    transition: none;
  }

  .ghwm-contact-submit:active {
    transform: none;
  }

}


/* =========================================================
   FORCED COLORS / WINDOWS HIGH CONTRAST
   ========================================================= */

@media (forced-colors: active) {

  .ghwm-contact-page {
    background: Canvas;
  }


  /* Contact card */

  .ghwm-contact-card {
    background: CanvasText;
    border-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-contact-card h3,
  .ghwm-contact-card > p,
  .ghwm-contact-detail h4,
  .ghwm-contact-detail p,
  .ghwm-contact-detail a {
    color: Canvas;
  }

  .ghwm-contact-detail {
    border-color: Canvas;
  }

  .ghwm-contact-detail-icon {
    border-color: Canvas;
    color: Canvas;
  }


  /* Form card */

  .ghwm-contact-form-card {
    background: Canvas;
    border-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-contact-form-card h3,
  .ghwm-contact-form-intro,
  .ghwm-form-field label {
    color: CanvasText;
  }


  /* Form fields */

  .ghwm-form-field input,
  .ghwm-form-field textarea {
    background: Canvas;
    color: CanvasText;
    border-color: CanvasText;
  }

  .ghwm-form-field input::placeholder,
  .ghwm-form-field textarea::placeholder {
    color: CanvasText;
  }


  /* Submit */

  .ghwm-contact-submit {
    background: CanvasText;
    color: Canvas;
    border-color: CanvasText;
  }


  /* Focus */

  .ghwm-form-field input:focus,
  .ghwm-form-field textarea:focus,
  .ghwm-contact-submit:focus-visible {
    outline-color: Highlight;
  }


  /* Map */

  .ghwm-contact-map-frame {
    background: Canvas;
    border-color: CanvasText;
    box-shadow: none;
  }

}


.ghwm-investor {
  padding: 100px 0;
  background: #ffffff;
}

.ghwm-investor-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 30px;

  max-width: 950px;
  margin: 0 auto;

  padding: 50px 52px;

  background: #f6f8fb;
  border: 1px solid #c8d0da;
  border-left: 5px solid #355f00;
  border-radius: 6px;

  box-shadow: 0 10px 28px rgba(8, 26, 48, 0.08);
}

.ghwm-investor-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;

  border-radius: 50%;

  background: #102846;
  color: #ffffff;
}

.ghwm-investor-icon svg {
  display: block;
  width: 30px;
  height: 30px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ghwm-investor-content {
  min-width: 0;
}

.ghwm-investor .ghwm-section-eyebrow {
  margin: 0 0 12px;

  color: #355f00;

  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghwm-investor-content h2 {
  margin: 0 0 24px;

  color: #071a30;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ghwm-investor-content > p {
  margin: 0 0 20px;

  color: #132238;

  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.ghwm-investor-email-label {
  margin-bottom: 5px !important;

  color: #071a30 !important;

  font-size: 16px !important;
  font-weight: 700 !important;
}

.ghwm-investor-email {
  margin-bottom: 28px !important;

  font-size: 19px !important;
  font-weight: 700 !important;
}

.ghwm-investor-email a {
  color: #102846;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.ghwm-investor-email a:hover {
  color: #355f00;
}

.ghwm-investor-email a:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 4px;
  border-radius: 3px;
}

.ghwm-investor-thank-you {
  margin-top: 28px !important;
  margin-bottom: 0 !important;

  padding-top: 24px;

  border-top: 1px solid #c8d0da;

  font-weight: 600 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .ghwm-investor {
    padding: 80px 0;
  }

  .ghwm-investor-card {
    padding: 42px 36px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .ghwm-investor {
    padding: 64px 0;
  }

  .ghwm-investor-card {
    grid-template-columns: 1fr;
    gap: 24px;

    padding: 32px 22px;

    border-left-width: 4px;
  }

  .ghwm-investor-icon {
    width: 56px;
    height: 56px;
  }

  .ghwm-investor-icon svg {
    width: 26px;
    height: 26px;
  }

  .ghwm-investor-content h2 {
    margin-bottom: 20px;

    font-size: clamp(
      1.9rem,
      9vw,
      2.5rem
    );
  }

  .ghwm-investor-content > p {
    font-size: 17px;
    line-height: 1.7;
  }

  .ghwm-investor-email {
    font-size: 17px !important;
    overflow-wrap: anywhere;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ghwm-investor-email a {
    transition: none;
  }

}


/* =========================================================
   FORCED COLORS / HIGH CONTRAST
   ========================================================= */

@media (forced-colors: active) {

  .ghwm-investor {
    background: Canvas;
  }

  .ghwm-investor-card {
    background: Canvas;
    border-color: CanvasText;
    border-left-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-investor-icon {
    background: CanvasText;
    color: Canvas;
  }

  .ghwm-investor .ghwm-section-eyebrow,
  .ghwm-investor-content h2,
  .ghwm-investor-content > p,
  .ghwm-investor-email-label,
  .ghwm-investor-email a {
    color: CanvasText !important;
  }

  .ghwm-investor-thank-you {
    border-color: CanvasText;
  }

  .ghwm-investor-email a:focus-visible {
    outline-color: Highlight;
  }

}




/* =========================================================
   GHWM PDF / DOCUMENT PAGE
   COMMON CSS FOR INVESTOR DOCUMENT PAGES
   ========================================================= */

.ghwm-pdf-page {
  padding: 100px 0;
  background: #ffffff;
}

.ghwm-pdf-page-header {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.ghwm-pdf-page-header .ghwm-section-eyebrow {
  margin: 0 0 12px;
  color: #355f00;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghwm-pdf-page-header h1 {
  margin: 0 0 20px;
  color: #071a30;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ghwm-pdf-page-header > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: #132238;
  font-size: 18px;
  line-height: 1.75;
}


/* =========================================================
   COMPANY DOCUMENT GROUP
   ========================================================= */

.ghwm-pdf-company {
  max-width: 1000px;
  margin: 0 auto 42px;
  padding: 0;

  border: 1px solid #c8d0da;
  border-radius: 6px;

  background: #ffffff;

  overflow: hidden;

  box-shadow: 0 8px 24px rgba(8, 26, 48, 0.06);
}

.ghwm-pdf-company:last-child {
  margin-bottom: 0;
}


/* Company heading */

.ghwm-pdf-company-header {
  padding: 24px 30px;

  background: #102846;

  border-bottom: 1px solid #102846;
}

.ghwm-pdf-company-header h2 {
  margin: 0;

  color: #ffffff;

  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}


/* =========================================================
   PDF LIST
   ========================================================= */

.ghwm-pdf-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.ghwm-pdf-item {
  display: grid;

  grid-template-columns: 48px minmax(0, 1fr) auto;

  align-items: center;

  gap: 18px;

  min-height: 82px;

  padding: 18px 24px;

  background: #ffffff;

  border-bottom: 1px solid #c8d0da;
}

.ghwm-pdf-item:last-child {
  border-bottom: 0;
}


/* =========================================================
   PDF ICON
   ========================================================= */

.ghwm-pdf-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 5px;

  background: #102846;
  color: #ffffff;
}

.ghwm-pdf-item-icon svg {
  display: block;

  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   PDF CONTENT
   ========================================================= */

.ghwm-pdf-item-content {
  min-width: 0;
}

.ghwm-pdf-item-number {
  margin: 0 0 4px;

  color: #355f00;

  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;

  letter-spacing: 0.05em;
}

.ghwm-pdf-item-content a {
  display: inline;

  color: #102846;

  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ghwm-pdf-item-content a:hover {
  color: #355f00;
}

.ghwm-pdf-item-content a:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 4px;
  border-radius: 3px;
}


/* =========================================================
   PDF BADGE
   ========================================================= */

.ghwm-pdf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 44px;
  min-height: 30px;

  padding: 4px 9px;

  border: 1px solid #355f00;
  border-radius: 4px;

  background: #ffffff;
  color: #355f00;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: 0.04em;
}


/* =========================================================
   HOVER
   ========================================================= */

.ghwm-pdf-item:hover {
  background: #f6f8fb;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .ghwm-pdf-page {
    padding: 80px 0;
  }

  .ghwm-pdf-page-header {
    margin-bottom: 48px;
  }

  .ghwm-pdf-company-header {
    padding: 22px 24px;
  }

  .ghwm-pdf-item {
    padding: 17px 20px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .ghwm-pdf-page {
    padding: 64px 0;
  }

  .ghwm-pdf-page-header {
    margin-bottom: 38px;
  }

  .ghwm-pdf-page-header h1 {
    margin-bottom: 18px;

    font-size: clamp(
      2rem,
      10vw,
      2.7rem
    );
  }

  .ghwm-pdf-page-header > p:last-child {
    font-size: 17px;
    line-height: 1.7;
  }

  .ghwm-pdf-company {
    margin-bottom: 28px;
  }

  .ghwm-pdf-company-header {
    padding: 20px 18px;
  }

  .ghwm-pdf-company-header h2 {
    font-size: 21px;
  }

  .ghwm-pdf-item {
    grid-template-columns: 42px minmax(0, 1fr);

    gap: 14px;

    padding: 17px 16px;
  }

  .ghwm-pdf-item-icon {
    width: 40px;
    height: 40px;
  }

  .ghwm-pdf-item-icon svg {
    width: 20px;
    height: 20px;
  }

  .ghwm-pdf-item-content a {
    font-size: 16px;
  }

  .ghwm-pdf-badge {
    grid-column: 2;

    justify-self: start;

    min-height: 28px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ghwm-pdf-item-content a {
    transition: none;
  }

}


/* =========================================================
   FORCED COLORS / HIGH CONTRAST
   ========================================================= */

@media (forced-colors: active) {

  .ghwm-pdf-page {
    background: Canvas;
  }

  .ghwm-pdf-company {
    background: Canvas;
    border-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-pdf-company-header {
    background: CanvasText;
    border-color: CanvasText;
  }

  .ghwm-pdf-company-header h2 {
    color: Canvas;
  }

  .ghwm-pdf-item {
    background: Canvas;
    border-color: CanvasText;
  }

  .ghwm-pdf-item:hover {
    background: Canvas;
  }

  .ghwm-pdf-item-icon {
    background: CanvasText;
    color: Canvas;
  }

  .ghwm-pdf-item-number,
  .ghwm-pdf-item-content a,
  .ghwm-pdf-page-header h1,
  .ghwm-pdf-page-header > p:last-child {
    color: CanvasText;
  }

  .ghwm-pdf-badge {
    background: Canvas;
    color: CanvasText;
    border-color: CanvasText;
  }

  .ghwm-pdf-item-content a:focus-visible {
    outline-color: Highlight;
  }

}



/* =========================================================
   GHWM PDF / DOCUMENT PAGE
   COMMON CSS FOR INVESTOR DOCUMENT PAGES
   ========================================================= */

.ghwm-pdf-page {
  padding: 100px 0;
  background: #ffffff;
}

.ghwm-pdf-page-header {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}

.ghwm-pdf-page-header .ghwm-section-eyebrow {
  margin: 0 0 12px;
  color: #355f00;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghwm-pdf-page-header h1 {
  margin: 0 0 20px;
  color: #071a30;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ghwm-pdf-page-header > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: #132238;
  font-size: 18px;
  line-height: 1.75;
}


/* =========================================================
   COMPANY DOCUMENT GROUP
   ========================================================= */

.ghwm-pdf-company {
  max-width: 1000px;
  margin: 0 auto 42px;
  padding: 0;

  border: 1px solid #c8d0da;
  border-radius: 6px;

  background: #ffffff;

  overflow: hidden;

  box-shadow: 0 8px 24px rgba(8, 26, 48, 0.06);
}

.ghwm-pdf-company:last-child {
  margin-bottom: 0;
}


/* Company heading */

.ghwm-pdf-company-header {
  padding: 24px 30px;

  background: #102846;

  border-bottom: 1px solid #102846;
}

.ghwm-pdf-company-header h2 {
  margin: 0;

  color: #ffffff;

  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}


/* =========================================================
   PDF LIST
   ========================================================= */

.ghwm-pdf-list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.ghwm-pdf-item {
  display: grid;

  grid-template-columns: 48px minmax(0, 1fr) auto;

  align-items: center;

  gap: 18px;

  min-height: 82px;

  padding: 18px 24px;

  background: #ffffff;

  border-bottom: 1px solid #c8d0da;
}

.ghwm-pdf-item:last-child {
  border-bottom: 0;
}


/* =========================================================
   PDF ICON
   ========================================================= */

.ghwm-pdf-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  border-radius: 5px;

  background: #102846;
  color: #ffffff;
}

.ghwm-pdf-item-icon svg {
  display: block;

  width: 22px;
  height: 22px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   PDF CONTENT
   ========================================================= */

.ghwm-pdf-item-content {
  min-width: 0;
}

.ghwm-pdf-item-number {
  margin: 0 0 4px;

  color: #355f00;

  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;

  letter-spacing: 0.05em;
}

.ghwm-pdf-item-content a {
  display: inline;

  color: #102846;

  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.ghwm-pdf-item-content a:hover {
  color: #355f00;
}

.ghwm-pdf-item-content a:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 4px;
  border-radius: 3px;
}


/* =========================================================
   PDF BADGE
   ========================================================= */

.ghwm-pdf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 44px;
  min-height: 30px;

  padding: 4px 9px;

  border: 1px solid #355f00;
  border-radius: 4px;

  background: #ffffff;
  color: #355f00;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;

  letter-spacing: 0.04em;
}


/* =========================================================
   HOVER
   ========================================================= */

.ghwm-pdf-item:hover {
  background: #f6f8fb;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .ghwm-pdf-page {
    padding: 80px 0;
  }

  .ghwm-pdf-page-header {
    margin-bottom: 48px;
  }

  .ghwm-pdf-company-header {
    padding: 22px 24px;
  }

  .ghwm-pdf-item {
    padding: 17px 20px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .ghwm-pdf-page {
    padding: 64px 0;
  }

  .ghwm-pdf-page-header {
    margin-bottom: 38px;
  }

  .ghwm-pdf-page-header h1 {
    margin-bottom: 18px;

    font-size: clamp(
      2rem,
      10vw,
      2.7rem
    );
  }

  .ghwm-pdf-page-header > p:last-child {
    font-size: 17px;
    line-height: 1.7;
  }

  .ghwm-pdf-company {
    margin-bottom: 28px;
  }

  .ghwm-pdf-company-header {
    padding: 20px 18px;
  }

  .ghwm-pdf-company-header h2 {
    font-size: 21px;
  }

  .ghwm-pdf-item {
    grid-template-columns: 42px minmax(0, 1fr);

    gap: 14px;

    padding: 17px 16px;
  }

  .ghwm-pdf-item-icon {
    width: 40px;
    height: 40px;
  }

  .ghwm-pdf-item-icon svg {
    width: 20px;
    height: 20px;
  }

  .ghwm-pdf-item-content a {
    font-size: 16px;
  }

  .ghwm-pdf-badge {
    grid-column: 2;

    justify-self: start;

    min-height: 28px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .ghwm-pdf-item-content a {
    transition: none;
  }

}


/* =========================================================
   FORCED COLORS / HIGH CONTRAST
   ========================================================= */

@media (forced-colors: active) {

  .ghwm-pdf-page {
    background: Canvas;
  }

  .ghwm-pdf-company {
    background: Canvas;
    border-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-pdf-company-header {
    background: CanvasText;
    border-color: CanvasText;
  }

  .ghwm-pdf-company-header h2 {
    color: Canvas;
  }

  .ghwm-pdf-item {
    background: Canvas;
    border-color: CanvasText;
  }

  .ghwm-pdf-item:hover {
    background: Canvas;
  }

  .ghwm-pdf-item-icon {
    background: CanvasText;
    color: Canvas;
  }

  .ghwm-pdf-item-number,
  .ghwm-pdf-item-content a,
  .ghwm-pdf-page-header h1,
  .ghwm-pdf-page-header > p:last-child {
    color: CanvasText;
  }

  .ghwm-pdf-badge {
    background: Canvas;
    color: CanvasText;
    border-color: CanvasText;
  }

  .ghwm-pdf-item-content a:focus-visible {
    outline-color: Highlight;
  }

}



/* =========================================
   Track Records / Investor Tabs
   WCAG 2.2 AA-oriented
   ========================================= */

.ghwm-track-records {
  padding: 90px 0;
  background: #ffffff;
}

/* Visually hidden but available to screen readers */
.ghwm-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================
   Tab Navigation
   ========================================= */

.ghwm-investor-tabs {
  width: 100%;
}

.ghwm-investor-tablist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  border-bottom: 2px solid #c8d0da;
  background: #f4f5f6;
}

.ghwm-investor-tab {
  position: relative;
  min-height: 76px;
  padding: 18px 24px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: #f4f5f6;
  color: #102846;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.ghwm-investor-tab:hover {
  background: #e8ecef;
  color: #102846;
}

.ghwm-investor-tab.is-active {
  border-bottom-color: #355f00;
  background: linear-gradient(
    90deg,
    #102846 0%,
    #355f00 100%
  );
  color: #ffffff;
}

.ghwm-investor-tab:focus-visible {
  z-index: 2;
  outline: 3px solid #005fcc;
  outline-offset: -5px;
}

.ghwm-investor-tab[aria-selected="false"]:focus-visible {
  outline-offset: -4px;
}

/* =========================================
   Tab Panel
   ========================================= */

.ghwm-investor-tabpanel {
  padding-top: 24px;
  outline: none;
}

.ghwm-investor-tabpanel:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 5px;
}

/* =========================================
   Table
   ========================================= */

.ghwm-investor-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #d2d9df;
  background: #ffffff;
}

.ghwm-investor-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  table-layout: fixed;
  color: #132238;
  font-size: 17px;
}

.ghwm-investor-table th {
  padding: 18px 16px;
  background: #d9e6ec;
  color: #102846;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #c0ccd4;
}

.ghwm-investor-table th:nth-child(1) {
  width: 17%;
}

.ghwm-investor-table th:nth-child(2) {
  width: 47%;
}

.ghwm-investor-table th:nth-child(3) {
  width: 36%;
}

.ghwm-investor-table td {
  padding: 24px 16px;
  background: #ffffff;
  color: #132238;
  line-height: 1.6;
  vertical-align: middle;
  border-bottom: 1px solid #dfe4e8;
}

.ghwm-investor-table tbody tr:last-child td {
  border-bottom: 0;
}

.ghwm-investor-table tbody tr:hover td {
  background: #f7f9fa;
}

/* =========================================
   Download Button
   ========================================= */

.ghwm-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 190px;
  min-height: 56px;
  padding: 12px 20px;
  border: 2px solid #355f00;
  border-radius: 0;
  background: #355f00;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-sizing: border-box;
}

.ghwm-download-button:hover {
  background: #102846;
  border-color: #102846;
  color: #ffffff;
}

.ghwm-download-button:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 4px;
}

.ghwm-download-button:active {
  transform: translateY(1px);
}

.ghwm-download-button svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 900px) {
  .ghwm-track-records {
    padding: 75px 0;
  }

  .ghwm-investor-tab {
    min-height: 70px;
    padding: 16px 18px;
    font-size: 17px;
  }

  .ghwm-investor-table {
    font-size: 16px;
  }

  .ghwm-investor-table th,
  .ghwm-investor-table td {
    padding: 18px 14px;
  }
}

@media (max-width: 600px) {
  .ghwm-track-records {
    padding: 60px 0;
  }

  /*
    On mobile the two tabs remain side-by-side
    so both options remain immediately discoverable.
  */
  .ghwm-investor-tablist {
    grid-template-columns: 1fr;
  }

  .ghwm-investor-tab {
    min-height: 58px;
    padding: 14px 16px;
    font-size: 16px;
  }

  .ghwm-investor-tab + .ghwm-investor-tab {
    border-top: 1px solid #c8d0da;
  }

  .ghwm-investor-tabpanel {
    padding-top: 18px;
  }

  /*
    Convert table rows into accessible cards on small screens.
    Header is hidden visually because each cell has data-label.
  */
  .ghwm-investor-table-wrap {
    overflow: visible;
    border: 0;
  }

  .ghwm-investor-table {
    min-width: 0;
    width: 100%;
    display: block;
  }

  .ghwm-investor-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .ghwm-investor-table tbody,
  .ghwm-investor-table tr {
    display: block;
    width: 100%;
  }

  .ghwm-investor-table tr {
    margin-bottom: 16px;
    border: 1px solid #d2d9df;
    background: #ffffff;
  }

  .ghwm-investor-table tr:last-child {
    margin-bottom: 0;
  }

  .ghwm-investor-table td {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    border-bottom: 1px solid #dfe4e8;
  }

  .ghwm-investor-table td:last-child {
    border-bottom: 0;
  }

  .ghwm-investor-table td::before {
    content: attr(data-label);
    color: #102846;
    font-weight: 800;
  }

  .ghwm-download-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ghwm-investor-tab,
  .ghwm-download-button {
    transition: none;
  }

  .ghwm-download-button:active {
    transform: none;
  }
}

/* =========================================
   Forced Colors Mode
   ========================================= */

@media (forced-colors: active) {
  .ghwm-track-records {
    background: Canvas;
  }

  .ghwm-investor-tablist {
    background: Canvas;
    border-color: CanvasText;
  }

  .ghwm-investor-tab {
    background: Canvas;
    color: CanvasText;
    border-color: transparent;
  }

  .ghwm-investor-tab:hover {
    background: Canvas;
    color: CanvasText;
  }

  .ghwm-investor-tab.is-active {
    background: Highlight;
    color: HighlightText;
    border-color: Highlight;
  }

  .ghwm-investor-table-wrap {
    border-color: CanvasText;
  }

  .ghwm-investor-table th {
    background: CanvasText;
    color: Canvas;
    border-color: CanvasText;
  }

  .ghwm-investor-table td {
    background: Canvas;
    color: CanvasText;
    border-color: CanvasText;
  }

  .ghwm-investor-table tbody tr:hover td {
    background: Canvas;
  }

  .ghwm-download-button {
    background: ButtonFace;
    color: ButtonText;
    border-color: ButtonText;
  }

  .ghwm-download-button:hover {
    background: Highlight;
    color: HighlightText;
    border-color: Highlight;
  }

  .ghwm-investor-tab:focus-visible,
  .ghwm-investor-tabpanel:focus-visible,
  .ghwm-download-button:focus-visible {
    outline-color: Highlight;
  }
}






/* =========================================
   Sitemap Page
   WCAG 2.2 AA-oriented
   ========================================= */

.ghwm-sitemap-page {
  padding: 90px 0;
  background: #ffffff;
}

.ghwm-sitemap-header {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.ghwm-sitemap-header .ghwm-section-eyebrow {
  margin: 0 0 12px;
  color: #355f00;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghwm-sitemap-header h2 {
  margin: 0 0 20px;
  color: #071a30;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ghwm-sitemap-header > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: #132238;
  font-size: 18px;
  line-height: 1.75;
}

/* =========================================
   Sitemap Cards
   ========================================= */

.ghwm-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.ghwm-sitemap-card {
  height: 100%;
  border: 1px solid #c8d0da;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(8, 26, 48, 0.07);
}

.ghwm-sitemap-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 100px;
  padding: 22px 24px;
  background: #102846;
  color: #ffffff;
}

.ghwm-sitemap-card-header > div:last-child {
  min-width: 0;
}

.ghwm-sitemap-card-header p {
  margin: 0 0 4px;
  color: #d7e8c9;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ghwm-sitemap-card-header h3 {
  margin: 0;
  color: #ffffff;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.ghwm-sitemap-icon {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 5px;
  background: #355f00;
  color: #ffffff;
}

.ghwm-sitemap-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================
   Sitemap Links
   ========================================= */

.ghwm-sitemap-links {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.ghwm-sitemap-links li {
  margin: 0;
  padding: 0;
}

.ghwm-sitemap-links li + li {
  border-top: 1px solid #e1e5e9;
}

.ghwm-sitemap-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 12px 20px;
  color: #102846;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.ghwm-sitemap-links a span {
  min-width: 0;
}

.ghwm-sitemap-links a svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ghwm-sitemap-links a:hover {
  background: #f3f6f8;
  color: #355f00;
}

.ghwm-sitemap-links a:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid #005fcc;
  outline-offset: -4px;
  background: #f3f6f8;
  color: #102846;
}

/* =========================================
   Bottom Note
   ========================================= */

.ghwm-sitemap-note {
  max-width: 820px;
  margin: 42px auto 0;
  padding: 20px 24px;
  border-left: 4px solid #355f00;
  background: #f4f6f8;
  color: #132238;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1000px) {
  .ghwm-sitemap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ghwm-sitemap-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .ghwm-sitemap-page {
    padding: 70px 0;
  }

  .ghwm-sitemap-header {
    margin-bottom: 40px;
  }

  .ghwm-sitemap-header h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .ghwm-sitemap-header > p:last-child {
    font-size: 17px;
    line-height: 1.7;
  }

  .ghwm-sitemap-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ghwm-sitemap-card:last-child {
    grid-column: auto;
  }

  .ghwm-sitemap-card-header {
    min-height: 90px;
    padding: 20px;
  }

  .ghwm-sitemap-card-header h3 {
    font-size: 20px;
  }

  .ghwm-sitemap-links a {
    min-height: 56px;
    padding: 12px 18px;
  }

  .ghwm-sitemap-note {
    margin-top: 30px;
    padding: 18px;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .ghwm-sitemap-card-header {
    gap: 12px;
    padding: 18px;
  }

  .ghwm-sitemap-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .ghwm-sitemap-icon svg {
    width: 22px;
    height: 22px;
  }

  .ghwm-sitemap-card-header h3 {
    font-size: 18px;
  }

  .ghwm-sitemap-links a {
    padding: 12px 16px;
    font-size: 15px;
  }
}

/* =========================================
   Reduced Motion
   ========================================= */

@media (prefers-reduced-motion: reduce) {
  .ghwm-sitemap-links a {
    transition: none;
  }
}

/* =========================================
   Forced Colors
   ========================================= */

@media (forced-colors: active) {
  .ghwm-sitemap-page {
    background: Canvas;
  }

  .ghwm-sitemap-header .ghwm-section-eyebrow,
  .ghwm-sitemap-header h2,
  .ghwm-sitemap-header > p:last-child {
    color: CanvasText;
  }

  .ghwm-sitemap-card {
    background: Canvas;
    border-color: CanvasText;
    box-shadow: none;
  }

  .ghwm-sitemap-card-header {
    background: CanvasText;
    color: Canvas;
  }

  .ghwm-sitemap-card-header p,
  .ghwm-sitemap-card-header h3 {
    color: Canvas;
  }

  .ghwm-sitemap-icon {
    background: Canvas;
    color: CanvasText;
    border-color: Canvas;
  }

  .ghwm-sitemap-links {
    background: Canvas;
  }

  .ghwm-sitemap-links li + li {
    border-color: CanvasText;
  }

  .ghwm-sitemap-links a {
    background: Canvas;
    color: CanvasText;
  }

  .ghwm-sitemap-links a:hover {
    background: Canvas;
    color: CanvasText;
  }

  .ghwm-sitemap-links a:focus-visible {
    background: Canvas;
    color: CanvasText;
    outline-color: Highlight;
  }

  .ghwm-sitemap-note {
    background: Canvas;
    color: CanvasText;
    border-color: CanvasText;
  }
}/* =========================================
   Skip to Main Content
   WCAG 2.2 - Keyboard Accessibility
   ========================================= */

.ghwm-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 18px;

  border: 2px solid #ffffff;
  border-radius: 4px;

  background: #102846;
  color: #ffffff;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;

  text-decoration: none;

  /* Hidden until keyboard focus */
  transform: translateY(-150%);

  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.ghwm-skip-link:focus {
  transform: translateY(0);
}

.ghwm-skip-link:focus-visible {
  outline: 3px solid #005fcc;
  outline-offset: 4px;
}

.ghwm-skip-link:hover {
  background: #355f00;
  color: #ffffff;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ghwm-skip-link {
    transition: none;
  }
}

/* Forced colors */
@media (forced-colors: active) {
  .ghwm-skip-link {
    background: ButtonFace;
    color: ButtonText;
    border-color: ButtonText;
  }

  .ghwm-skip-link:focus-visible {
    outline-color: Highlight;
  }
}



/* =========================================================
   UX4G ACCESSIBILITY WIDGET
   - Above existing Back to Top button
   - No second Back to Top button
   - Controlled size at normal / 200% / 400% zoom
   ========================================================= */

/* -------------------------
   Desktop / Normal Zoom
   ------------------------- */
   .uw-widget-custom-trigger span{
    display: none !important;
   }
#uw-widget-custom-trigger {
  right: 24px !important;
  bottom: 92px !important;
}

/* Keep the accessibility icon proportional */


/* =========================================================
   Tablet / Mobile
   ========================================================= */
@media (max-width: 600px) {
  .uw-widget-custom-trigger span{
    display: none !important;
   }
  #uw-widget-custom-trigger {
    right: 16px !important;
    bottom: 78px !important;

    width: 21px !important;
    height: 21px !important;
    min-width: 21px !important;
    min-height: 21px !important;
    max-width: 21px !important;
    max-height: 21px !important;
  }

  #uw-widget-custom-trigger img {
    width: 30px !important;
    height: 30px !important;
    max-width: 30px !important;
    max-height: 30px !important;
  }
}


/* =========================================================
   200% Zoom / Very Narrow Effective Viewport
   ========================================================= */
@media (max-width: 450px) {
  .uw-widget-custom-trigger span{
    display: none !important;
   }
  #uw-widget-custom-trigger {
    right: 12px !important;
    bottom: 72px !important;

    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    min-height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
  }

  #uw-widget-custom-trigger img {
    width: 21px !important;
    height: 21px !important;
    max-width: 21px !important;
    max-height: 21px !important;
  }
}


/* =========================================================
   400% Zoom / Extremely Narrow Effective Viewport
   ========================================================= */
@media (max-width: 320px) {
  .uw-widget-custom-trigger span{
    display: none !important;
   }
  #uw-widget-custom-trigger {
    right: 10px !important;
    bottom: 68px !important;

    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    min-height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
  }

  #uw-widget-custom-trigger img {
    width: 21px !important;
    height: 21px !important;
    max-width: 21px !important;
    max-height: 21px !important;
  }
}


/* =========================================================
   Prevent UX4G Trigger from becoming oversized
   ========================================================= */
#uw-widget-custom-trigger,
#uw-widget-custom-trigger * {
  box-sizing: border-box !important;
}


/* =========================================================
   Keyboard Focus
   ========================================================= */
#uw-widget-custom-trigger:focus-visible {
  outline: 3px solid #005fcc !important;
  outline-offset: 4px !important;
}


/* =========================================================
   Forced Colors
   ========================================================= */
@media (forced-colors: active) {
  #uw-widget-custom-trigger {
    border: 2px solid ButtonText !important;
    background: ButtonFace !important;
    color: ButtonText !important;
  }

  #uw-widget-custom-trigger:focus-visible {
    outline: 3px solid Highlight !important;
  }
}