@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
    color-scheme: light;
    --eygs-navy: #123456;
    --eygs-gold: #CCBA78;
    --eygs-slate: #7896B7;
    --eygs-ink: #123456;
    --eygs-paper: #FFFFFF;
    --eygs-font-display: "Playfair Display", Georgia, serif;
    --eygs-font-body: "Bakersville", Baskerville, Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: #ffffff;
    color: var(--eygs-ink);
    font-family: var(--eygs-font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.eygs-integration-status {
    min-height: 1.3em;
    margin: 10px 0 0;
    color: #CCBA78;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}
#eygs-site-header .eygs-header-brokerage-text,
#eygs-site-header .eygs-mobile-brokerage-text {
    color: #123456;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}
#eygs-site-header .eygs-mobile-brokerage-text { color: #ffffff; }
#eygs-custom-footer .eygs-footer-exp-logo {
    display: block !important;
    width: 120px !important;
    max-width: 120px !important;
    height: auto !important;
    max-height: 70px !important;
    flex: 0 0 120px !important;
    object-fit: contain !important;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}



/* ==================================================
   EYGS — FINAL SITE HEADER
   Desktop dropdowns + PLACE/eXp logos
   ================================================== */

#eygs-site-header,
#eygs-site-header *,
#eygs-site-header *::before,
#eygs-site-header *::after {
    box-sizing: border-box;
}

#eygs-site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    margin: 0 !important;
    background: #ffffff;
    color: #123456;
    font-family: var(--eygs-font-body);
    box-shadow: 0 5px 18px rgba(7, 25, 42, 0.12);
}

/* ---------- UTILITY BAR ---------- */

#eygs-site-header .eygs-header-utility {
    width: 100%;
    min-height: 40px;
    background: #123456;
    color: #ffffff;
}

#eygs-site-header .eygs-header-utility-inner {
    display: flex;
    width: 100%;
    max-width: 1680px;
    min-height: 40px;
    margin: 0 auto;
    padding: 0 28px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

#eygs-site-header .eygs-header-market {
    margin: 0 !important;
    padding: 0 !important;
    color: #FFFFFF !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-site-header .eygs-header-utility-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

#eygs-site-header .eygs-header-utility-link {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
}

#eygs-site-header .eygs-header-utility-link:hover,
#eygs-site-header .eygs-header-utility-link:focus {
    color: #CCBA78 !important;
    outline: none !important;
}

/* ---------- MAIN HEADER ---------- */

#eygs-site-header .eygs-header-main {
    width: 100%;
    background: #ffffff;
}

#eygs-site-header .eygs-header-main-inner {
    display: grid;
    width: 100%;
    max-width: 1680px;
    min-height: 116px;
    margin: 0 auto;
    padding: 16px 28px;
    grid-template-columns:
        minmax(420px, auto)
        minmax(430px, 1fr)
        auto;
    gap: 22px;
    align-items: center;
}

/* ---------- BRAND ---------- */

#eygs-site-header .eygs-header-brand {
    display: flex !important;
    min-width: 0;
    align-items: center;
    gap: 17px;
    color: #123456 !important;
    text-decoration: none !important;
}

#eygs-site-header .eygs-header-team-logo {
    display: block;
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    object-fit: contain;
}

#eygs-site-header .eygs-header-brand-copy {
    min-width: 0;
}

#eygs-site-header .eygs-header-team-name {
    display: block;
    margin: 0 0 7px !important;
    padding: 0 !important;
    color: #123456 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(17px, 1.25vw, 22px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.05 !important;
    white-space: nowrap;
    text-transform: none !important;
}

#eygs-site-header .eygs-header-tagline {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.13em !important;
    line-height: 1.4 !important;
    white-space: nowrap;
    text-transform: uppercase !important;
}

/* ---------- DESKTOP NAVIGATION ---------- */

#eygs-site-header .eygs-header-desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
}

#eygs-site-header .eygs-nav-item {
    position: relative;
}

#eygs-site-header .eygs-nav-trigger {
    display: inline-flex !important;
    min-height: 46px;
    padding: 11px 10px !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    color: #123456 !important;
    cursor: pointer;
    font-family: var(--eygs-font-body) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    white-space: nowrap;
}

#eygs-site-header .eygs-nav-trigger:hover,
#eygs-site-header .eygs-nav-trigger:focus {
    color: #CCBA78 !important;
    outline: none !important;
}

#eygs-site-header .eygs-nav-chevron {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

#eygs-site-header .eygs-nav-item:hover .eygs-nav-chevron,
#eygs-site-header .eygs-nav-item:focus-within .eygs-nav-chevron {
    margin-top: 3px;
    transform: rotate(225deg);
}

/* ---------- DROPDOWNS ---------- */

#eygs-site-header .eygs-nav-dropdown {
    position: absolute;
    top: calc(100% + 9px);
    left: 50%;
    z-index: 100;
    display: grid;
    width: 245px;
    margin: 0;
    padding: 9px;
    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    border-top: 4px solid #CCBA78;
    box-shadow: 0 18px 38px rgba(7, 25, 42, 0.18);
    transform: translate(-50%, 10px);
    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease;
}

#eygs-site-header .eygs-nav-item:hover .eygs-nav-dropdown,
#eygs-site-header .eygs-nav-item:focus-within .eygs-nav-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

#eygs-site-header .eygs-nav-dropdown a {
    display: flex !important;
    min-height: 43px;
    padding: 11px 12px !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(14, 44, 72, 0.09);
    color: #123456 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    transition:
        padding-left 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

#eygs-site-header .eygs-nav-dropdown a:last-child {
    border-bottom: 0;
}

#eygs-site-header .eygs-nav-dropdown a:hover,
#eygs-site-header .eygs-nav-dropdown a:focus {
    padding-left: 16px !important;
    background: rgba(120, 150, 183, 0.10);
    color: #123456 !important;
    outline: none !important;
}

#eygs-site-header .eygs-nav-dropdown a::after {
    content: "\2192";
    color: #CCBA78;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

/* ---------- CONTACT BUTTON ---------- */

#eygs-site-header .eygs-header-contact-button {
    display: inline-flex !important;
    min-width: 144px;
    min-height: 56px;
    margin-left: 7px;
    padding: 15px 24px !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #CCBA78;
    border: 2px solid #CCBA78;
    border-radius: 999px;
    color: #123456 !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    text-align: center;
    text-decoration: none !important;
    white-space: nowrap;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

#eygs-site-header .eygs-header-contact-button:hover,
#eygs-site-header .eygs-header-contact-button:focus {
    transform: translateY(-2px);
    background: #123456;
    border-color: #123456;
    color: #ffffff !important;
    outline: none !important;
}

/* ---------- PLACE + EXP LOGOS ---------- */

#eygs-site-header .eygs-header-affiliations {
    display: flex;
    min-width: 174px;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

#eygs-site-header .eygs-header-affiliation-divider {
    display: block;
    width: 1px;
    height: 40px;
    background: rgba(14, 44, 72, 0.17);
}

#eygs-site-header .eygs-header-place-logo,
#eygs-site-header .eygs-header-exp-logo {
    display: block;
    width: auto;
    object-fit: contain;
}

#eygs-site-header .eygs-header-place-logo {
    max-width: 94px;
    max-height: 39px;
}

#eygs-site-header .eygs-header-exp-logo {
    max-width: 68px;
    max-height: 40px;
}

/* ---------- MOBILE TOGGLE ---------- */

#eygs-site-header .eygs-mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: #123456;
    border: 0;
    color: #ffffff;
    cursor: pointer;
}

#eygs-site-header .eygs-mobile-toggle-lines {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
}

#eygs-site-header .eygs-mobile-toggle-lines::before,
#eygs-site-header .eygs-mobile-toggle-lines::after,
#eygs-site-header .eygs-mobile-toggle-lines span {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition:
        top 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

#eygs-site-header .eygs-mobile-toggle-lines::before {
    top: 0;
}

#eygs-site-header .eygs-mobile-toggle-lines span {
    top: 7px;
}

#eygs-site-header .eygs-mobile-toggle-lines::after {
    top: 14px;
}

#eygs-site-header .eygs-mobile-toggle[aria-expanded="true"] .eygs-mobile-toggle-lines::before {
    top: 7px;
    transform: rotate(45deg);
}

#eygs-site-header .eygs-mobile-toggle[aria-expanded="true"] .eygs-mobile-toggle-lines span {
    opacity: 0;
}

#eygs-site-header .eygs-mobile-toggle[aria-expanded="true"] .eygs-mobile-toggle-lines::after {
    top: 7px;
    transform: rotate(-45deg);
}

/* ---------- MOBILE MENU ---------- */

#eygs-site-header .eygs-mobile-menu {
    display: none;
    width: 100%;
    padding: 18px;
    background: #ffffff;
    border-top: 1px solid rgba(14, 44, 72, 0.12);
}

#eygs-site-header .eygs-mobile-menu.is-open {
    display: block;
}

#eygs-site-header .eygs-mobile-menu-inner {
    display: grid;
    gap: 8px;
}

#eygs-site-header .eygs-mobile-menu-heading {
    margin: 17px 0 4px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-site-header .eygs-mobile-menu-link {
    display: flex !important;
    min-height: 48px;
    padding: 12px 14px !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(120, 150, 183, 0.10);
    border-left: 3px solid transparent;
    color: #123456 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
}

#eygs-site-header .eygs-mobile-menu-link::after {
    content: "\2192";
    color: #CCBA78;
    font-size: 14px;
    font-weight: 800;
}

#eygs-site-header .eygs-mobile-menu-link:hover,
#eygs-site-header .eygs-mobile-menu-link:focus {
    background: #ffffff;
    border-left-color: #CCBA78;
    outline: none !important;
}

#eygs-site-header .eygs-mobile-contact {
    background: #CCBA78 !important;
    border-left-color: #CCBA78 !important;
    color: #123456 !important;
}

#eygs-site-header .eygs-mobile-contact:hover,
#eygs-site-header .eygs-mobile-contact:focus {
    background: #123456 !important;
    border-left-color: #123456 !important;
    color: #ffffff !important;
}

#eygs-site-header .eygs-mobile-contact:hover::after,
#eygs-site-header .eygs-mobile-contact:focus::after {
    color: #ffffff;
}

#eygs-site-header .eygs-mobile-affiliations {
    display: flex;
    margin-top: 16px;
    padding: 18px 14px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    background: rgba(120, 150, 183, 0.10);
}

#eygs-site-header .eygs-mobile-affiliation-divider {
    display: block;
    width: 1px;
    height: 38px;
    background: rgba(14, 44, 72, 0.17);
}

#eygs-site-header .eygs-mobile-place-logo {
    display: block;
    width: auto;
    max-width: 106px;
    max-height: 43px;
    object-fit: contain;
}

#eygs-site-header .eygs-mobile-exp-logo {
    display: block;
    width: auto;
    max-width: 76px;
    max-height: 43px;
    object-fit: contain;
}

/* ---------- RESPONSIVE ----------
   Desktop dropdown navigation remains visible until 1040px.
   Hamburger appears only below 1040px.
   -------------------------------- */

@media (max-width: 1040px) {
    #eygs-site-header .eygs-header-main-inner {
        min-height: 100px;
        padding: 14px 22px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 18px;
    }

    #eygs-site-header .eygs-header-desktop-nav,
    #eygs-site-header .eygs-header-affiliations {
        display: none;
    }

    #eygs-site-header .eygs-mobile-toggle {
        display: flex;
    }

    #eygs-site-header .eygs-header-team-logo {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }

    #eygs-site-header .eygs-header-team-name {
        font-size: 20px !important;
        white-space: nowrap;
    }
}

@media (max-width: 700px) {
    #eygs-site-header .eygs-header-utility-inner {
        min-height: 37px;
        padding: 0 16px;
        justify-content: flex-end;
    }

    #eygs-site-header .eygs-header-market {
        display: none;
    }

    #eygs-site-header .eygs-header-utility-links {
        width: 100%;
        justify-content: space-between;
        gap: 14px;
    }

    #eygs-site-header .eygs-header-utility-link {
        font-size: 10px !important;
    }

    #eygs-site-header .eygs-header-main-inner {
        min-height: 86px;
        padding: 10px 15px;
    }

    #eygs-site-header .eygs-header-brand {
        gap: 12px;
    }

    #eygs-site-header .eygs-header-team-logo {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    #eygs-site-header .eygs-header-team-name {
        max-width: 280px;
        font-size: clamp(14px, 4.1vw, 18px) !important;
        line-height: 1.08 !important;
        white-space: normal;
    }

    #eygs-site-header .eygs-header-tagline {
        font-size: 8px !important;
        letter-spacing: 0.1em !important;
        white-space: normal;
    }

    #eygs-site-header .eygs-mobile-toggle {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 430px) {
    #eygs-site-header .eygs-header-utility-link:last-child {
        display: none !important;
    }

    #eygs-site-header .eygs-header-utility-links {
        justify-content: flex-end;
    }

    #eygs-site-header .eygs-header-team-name {
        max-width: 220px;
        font-size: 14px !important;
    }

    #eygs-site-header .eygs-header-tagline {
        font-size: 7px !important;
    }
}



  #eygs-home-hero,
  #eygs-home-hero * {
    box-sizing: border-box;
  }

  #eygs-home-hero {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 720px;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: #ffffff;
    background: #123456;
    font-family: var(--eygs-font-body);
  }

  /* BACKGROUND IMAGE */

  #eygs-home-hero .eygs-home-hero__image {
    position: absolute;
    inset: 0;
    z-index: -3;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 47%;
    filter:
      brightness(0.84)
      saturate(0.87)
      contrast(1.04);
  }

  /* NAVY OVERLAY */

  #eygs-home-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(
        90deg,
        rgba(7, 28, 47, 0.78) 0%,
        rgba(14, 44, 72, 0.61) 48%,
        rgba(14, 44, 72, 0.43) 100%
      );
  }

  #eygs-home-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    background:
      linear-gradient(
        180deg,
        rgba(7, 28, 47, 0.12) 0%,
        rgba(7, 28, 47, 0.22) 72%,
        rgba(7, 28, 47, 0.58) 100%
      );
  }

  /* LAYOUT */

  #eygs-home-hero .eygs-home-hero__container {
    width: min(calc(100% - 64px), 1320px);
    margin: 0 auto;
    padding: 96px 0 54px;
    text-align: center;
  }

  #eygs-home-hero .eygs-home-hero__content {
    width: min(100%, 1120px);
    margin: 0 auto;
  }

  /* TEAM LABEL */

  #eygs-home-hero .eygs-home-hero__eyebrow {
    display: inline-block;
    margin: 0 0 25px !important;
    padding: 0 0 11px !important;
    border-bottom: 2px solid #CCBA78;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 0.15em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  }

  /* ONLY H1 ON HOMEPAGE */

  #eygs-home-hero h1 {
    max-width: 1120px;
    margin: 0 auto !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(55px, 6vw, 88px) !important;
    font-weight: 400 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.02 !important;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.32);
    text-transform: none !important;
  }

  /* SUPPORTING COPY */

  #eygs-home-hero .eygs-home-hero__lead {
    max-width: 1040px;
    margin: 30px auto 0 !important;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.96) !important;
    font-size: 21px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.68 !important;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
  }

  /* PRIMARY CTAS */

  #eygs-home-hero .eygs-home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    gap: 19px;
  }

  #eygs-home-hero .eygs-home-hero__button {
    display: inline-flex !important;
    min-width: 285px;
    min-height: 68px;
    align-items: center;
    justify-content: center;
    padding: 20px 34px !important;
    border: 2px solid transparent;
    border-radius: 999px;
    font-family: var(--eygs-font-body) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
    line-height: 1.1 !important;
    text-align: center;
    text-decoration: none !important;
    text-transform: none !important;
    transition:
      transform 180ms ease,
      color 180ms ease,
      background-color 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  #eygs-home-hero .eygs-home-hero__button:hover,
  #eygs-home-hero .eygs-home-hero__button:focus-visible {
    transform: translateY(-2px);
    text-decoration: none !important;
    outline: none;
  }

  #eygs-home-hero .eygs-home-hero__button--primary {
    color: #123456 !important;
    background: #CCBA78;
    border-color: #CCBA78;
    box-shadow: 0 10px 28px rgba(7, 28, 47, 0.19);
  }

  #eygs-home-hero .eygs-home-hero__button--primary:visited {
    color: #123456 !important;
  }

  #eygs-home-hero .eygs-home-hero__button--primary:hover,
  #eygs-home-hero .eygs-home-hero__button--primary:focus-visible {
    color: #ffffff !important;
    background: #123456;
    border-color: #123456;
  }

  #eygs-home-hero .eygs-home-hero__button--secondary {
    color: #123456 !important;
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 10px 28px rgba(7, 28, 47, 0.19);
  }

  #eygs-home-hero .eygs-home-hero__button--secondary:visited {
    color: #123456 !important;
  }

  #eygs-home-hero .eygs-home-hero__button--secondary:hover,
  #eygs-home-hero .eygs-home-hero__button--secondary:focus-visible {
    color: #ffffff !important;
    background: #123456;
    border-color: #123456;
  }

  /* SELLER LINK */

  #eygs-home-hero .eygs-home-hero__seller {
    display: inline-flex !important;
    margin-top: 31px;
    padding: 0 5px 10px !important;
    align-items: center;
    gap: 11px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.78);
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
    transition:
      color 180ms ease,
      border-color 180ms ease,
      transform 180ms ease;
  }

  #eygs-home-hero .eygs-home-hero__seller:visited {
    color: #ffffff !important;
  }

  #eygs-home-hero .eygs-home-hero__seller:hover,
  #eygs-home-hero .eygs-home-hero__seller:focus-visible {
    color: #CCBA78 !important;
    border-color: #CCBA78;
    transform: translateY(-2px);
    text-decoration: none !important;
    outline: none;
  }

  #eygs-home-hero .eygs-home-hero__seller-arrow {
    font-size: 22px;
    line-height: 1;
  }

  /* PHOTO CREDIT */

  #eygs-home-hero .eygs-home-hero__credit {
    max-width: 980px;
    margin: 35px auto 0 !important;
    padding: 17px 22px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.55 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.26);
  }

  #eygs-home-hero .eygs-home-hero__credit strong {
    color: #ffffff !important;
    font-weight: 800 !important;
  }

  /* TABLET */

  @media (max-width: 900px) {
    #eygs-home-hero {
      min-height: 680px;
    }

    #eygs-home-hero .eygs-home-hero__image {
      object-position: 54% 48%;
    }

    #eygs-home-hero .eygs-home-hero__container {
      width: min(calc(100% - 42px), 1320px);
      padding: 82px 0 50px;
    }

    #eygs-home-hero .eygs-home-hero__eyebrow {
      font-size: 16px !important;
    }

    #eygs-home-hero .eygs-home-hero__lead {
      max-width: 820px;
      font-size: 19px !important;
    }

    #eygs-home-hero .eygs-home-hero__button {
      min-width: 250px;
      min-height: 64px;
      font-size: 17px !important;
    }
  }

  /* MOBILE */

  @media (max-width: 600px) {
    #eygs-home-hero {
      min-height: 680px;
    }

    #eygs-home-hero .eygs-home-hero__image {
      object-position: 57% center;
      filter:
        brightness(0.72)
        saturate(0.80)
        contrast(1.04);
    }

    #eygs-home-hero::before {
      background:
        linear-gradient(
          90deg,
          rgba(7, 28, 47, 0.79) 0%,
          rgba(14, 44, 72, 0.59) 100%
        );
    }

    #eygs-home-hero .eygs-home-hero__container {
      width: min(calc(100% - 30px), 1320px);
      padding: 62px 0 42px;
    }

    #eygs-home-hero .eygs-home-hero__eyebrow {
      margin-bottom: 20px !important;
      font-size: 13px !important;
      letter-spacing: 0.1em !important;
    }

    #eygs-home-hero h1 {
      font-size: clamp(42px, 12vw, 59px) !important;
      line-height: 1.04 !important;
    }

    #eygs-home-hero .eygs-home-hero__lead {
      margin-top: 23px !important;
      font-size: 18px !important;
      line-height: 1.62 !important;
    }

    #eygs-home-hero .eygs-home-hero__actions {
      flex-direction: column;
      align-items: stretch;
      margin-top: 32px;
    }

    #eygs-home-hero .eygs-home-hero__button {
      width: 100%;
      min-width: 0;
      min-height: 61px;
      padding: 18px 24px !important;
      font-size: 17px !important;
    }

    #eygs-home-hero .eygs-home-hero__seller {
      margin-top: 28px;
      font-size: 16px !important;
    }

    #eygs-home-hero .eygs-home-hero__credit {
      margin-top: 29px !important;
      padding-top: 15px !important;
      font-size: 13px !important;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #eygs-home-hero .eygs-home-hero__button,
    #eygs-home-hero .eygs-home-hero__seller {
      transition: none;
    }
  }



/* ==================================================
   EYGS HOMEPAGE PROPERTY SEARCH
   ================================================== */

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

#search-3 {
    position: relative;
    width: 100%;
    margin: 0 !important;
    padding: 58px 24px 50px !important;
    overflow: visible !important;
    background: #ffffff !important;
    color: #123456;
    font-family: var(--eygs-font-body);
}

#search-3 .eygs-search-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* ==================================================
   HEADING
   ================================================== */

#search-3 .eygs-search-heading {
    max-width: 900px;
    margin: 0 auto 28px;
    text-align: center;
}

#search-3 .eygs-search-eyebrow {
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.17em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#search-3 .eygs-search-heading h2 {
    margin: 0 0 12px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #123456 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(36px, 4vw, 54px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.08 !important;
    text-align: center !important;
    text-transform: none !important;
}

#search-3 .eygs-search-description {
    max-width: 760px;
    margin: 0 auto !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.55 !important;
    text-align: center !important;
}


/* ==================================================
   BRIVITY FORM RESET
   ================================================== */

#search-3 .quick-search-form {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: 1040px !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
    float: none !important;
    overflow: visible !important;
}

#search-3 .eygs-search-control {
    position: relative !important;
    display: flex !important;
    align-items: stretch !important;
    width: 100% !important;
    min-height: 64px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid rgba(14, 44, 72, 0.24) !important;
    border-radius: 0 !important;
    box-shadow: 0 12px 32px rgba(14, 44, 72, 0.11) !important;
}

#search-3 .eygs-search-control:focus-within {
    border-color: #CCBA78 !important;
    box-shadow:
        0 12px 32px rgba(14, 44, 72, 0.11),
        0 0 0 3px rgba(199, 165, 128, 0.18) !important;
}


/* ==================================================
   SEARCH INPUT
   ================================================== */

#search-3 .eygs-search-input-row {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    height: 64px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

#search-3 .eygs-search-icon {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 62px !important;
    width: 62px !important;
    height: 64px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    pointer-events: none;
}

#search-3 #multi_search,
#search-3 input#multi_search,
#search-3 .input__field,
#search-3 .input__field--kohana {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    display: block !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 64px !important;
    margin: 0 !important;
    padding: 0 22px 0 0 !important;
    float: none !important;
    clear: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    color: #123456 !important;
    font-family: var(--eygs-font-body) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: normal !important;
    text-align: left !important;
    text-indent: 0 !important;
    transform: none !important;
    opacity: 1 !important;
    outline: none !important;
    appearance: none !important;
}

#search-3 #multi_search::placeholder {
    color: #7896B7 !important;
    opacity: 1 !important;
}


/* ==================================================
   SEARCH BUTTON
   ================================================== */

#search-3 #doSearch {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 210px !important;
    gap: 10px !important;
    width: 210px !important;
    min-width: 210px !important;
    max-width: 210px !important;
    min-height: 64px !important;
    height: 64px !important;
    margin: 0 !important;
    padding: 14px 24px !important;
    float: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #CCBA78 !important;
    box-shadow: none !important;
    color: #123456 !important;
    font-family: var(--eygs-font-body) !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0 !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-transform: none !important;
    transform: none !important;
    opacity: 1 !important;
    cursor: pointer !important;
    appearance: none !important;
    transition:
        background 0.2s ease,
        color 0.2s ease !important;
}

#search-3 #doSearch:hover,
#search-3 #doSearch:focus {
    background: #123456 !important;
    color: #ffffff !important;
    outline: none !important;
}

#search-3 #doSearch svg {
    display: block !important;
    flex: 0 0 auto !important;
}


/* ==================================================
   POPULAR SEARCH LINKS
   ================================================== */

#search-3 .eygs-search-shortcuts {
    max-width: 1040px;
    margin: 22px auto 0;
    padding: 0;
}

#search-3 .eygs-search-link-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

#search-3 .eygs-search-link-row +
.eygs-search-link-row {
    margin-top: 11px !important;
    padding-top: 11px !important;
    border-top: 1px solid rgba(14, 44, 72, 0.09);
}

#search-3 .eygs-popular-label {
    color: #123456 !important;
    font-weight: 800 !important;
}

#search-3 .eygs-search-link-row a {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 0 2px !important;
    border-bottom: 1px solid rgba(14, 44, 72, 0.28) !important;
    color: #123456 !important;
    font-family: var(--eygs-font-body) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    transition:
        border-color 0.2s ease,
        color 0.2s ease;
}

#search-3 .eygs-search-link-row a:hover,
#search-3 .eygs-search-link-row a:focus {
    border-color: #CCBA78 !important;
    color: #CCBA78 !important;
    text-decoration: none !important;
    outline: none !important;
}


/* ==================================================
   AUTOCOMPLETE RESULTS
   ================================================== */

.ui-autocomplete {
    z-index: 10020 !important;
    max-height: 320px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    border: 1px solid rgba(14, 44, 72, 0.2) !important;
    box-shadow: 0 15px 35px rgba(14, 44, 72, 0.16) !important;
}

.ui-autocomplete .ui-menu-item-wrapper {
    padding: 10px 14px !important;
    color: #123456 !important;
}

.ui-autocomplete .ui-state-active {
    margin: 0 !important;
    border-color: #123456 !important;
    background: #123456 !important;
    color: #ffffff !important;
}


/* ==================================================
   ACCESSIBILITY
   ================================================== */

#search-3 .eygs-screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


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

@media (max-width: 800px) {
    #search-3 {
        padding: 48px 20px 44px !important;
    }

    #search-3 .eygs-search-heading h2 {
        font-size: 40px !important;
    }

    #search-3 #doSearch {
        flex-basis: 180px !important;
        width: 180px !important;
        min-width: 180px !important;
        max-width: 180px !important;
    }
}


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

@media (max-width: 600px) {
    #search-3 {
        padding: 42px 16px 40px !important;
    }

    #search-3 .eygs-search-heading {
        margin-bottom: 22px !important;
    }

    #search-3 .eygs-search-heading h2 {
        font-size: 34px !important;
        line-height: 1.1 !important;
    }

    #search-3 .eygs-search-description {
        font-size: 15px !important;
    }

    #search-3 .eygs-search-control {
        display: block !important;
        min-height: 0 !important;
        overflow: visible !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    #search-3 .eygs-search-input-row {
        width: 100% !important;
        height: 58px !important;
        overflow: hidden !important;
        border: 1px solid rgba(14, 44, 72, 0.24) !important;
        box-shadow: 0 9px 25px rgba(14, 44, 72, 0.1) !important;
    }

    #search-3 .eygs-search-icon {
        flex-basis: 50px !important;
        width: 50px !important;
        height: 58px !important;
    }

    #search-3 #multi_search,
    #search-3 input#multi_search,
    #search-3 .input__field,
    #search-3 .input__field--kohana {
        height: 58px !important;
        padding-right: 12px !important;
        font-size: 14px !important;
    }

    #search-3 #doSearch {
        display: flex !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 54px !important;
        min-height: 54px !important;
        margin-top: 12px !important;
    }

    #search-3 .eygs-search-shortcuts {
        margin-top: 20px;
    }

    #search-3 .eygs-search-link-row {
        gap: 7px 12px !important;
        font-size: 12px !important;
    }

    #search-3 .eygs-popular-label {
        flex-basis: 100%;
        text-align: center;
    }

    #search-3 .eygs-search-link-row a {
        font-size: 12px !important;
    }

    #search-3 .eygs-search-link-row +
    .eygs-search-link-row {
        margin-top: 13px !important;
        padding-top: 13px !important;
    }
}



/* ==================================================
   EYGS HOMEPAGE CREDIBILITY BAR
   ================================================== */

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

#eygs-proof {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 48px 24px !important;
    overflow: hidden !important;
    background: #123456 !important;
    background-image: none !important;
    color: #ffffff;
    border-top: 3px solid #CCBA78;
    border-bottom: 3px solid #CCBA78;
    font-family: var(--eygs-font-body);
}

/* Prevent Brivity or older CSS from adding shapes */
#eygs-proof::before,
#eygs-proof::after,
#eygs-proof .eygs-proof-container::before,
#eygs-proof .eygs-proof-container::after,
#eygs-proof .eygs-proof-grid::before,
#eygs-proof .eygs-proof-grid::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    background-image: none !important;
    border: 0 !important;
    box-shadow: none !important;
    opacity: 0 !important;
}

#eygs-proof .eygs-proof-container {
    position: relative;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    background: transparent !important;
}

#eygs-proof .eygs-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent !important;
}

#eygs-proof .eygs-proof-item {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 140px;
    margin: 0;
    padding: 16px 28px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    text-align: center;
}

#eygs-proof .eygs-proof-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 18%;
    right: 0;
    display: block;
    width: 1px;
    height: 64%;
    background: rgba(199, 165, 128, 0.62);
}

#eygs-proof .eygs-proof-number {
    display: block;
    margin: 0 0 12px;
    padding: 0;
    color: #ffffff !important;
    font-family: var(--eygs-font-display);
    font-size: clamp(42px, 4.2vw, 62px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}

#eygs-proof .eygs-proof-label {
    display: block;
    max-width: 220px;
    margin: 0;
    padding: 0;
    color: #FFFFFF !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.5;
    text-transform: uppercase;
}

#eygs-proof .eygs-proof-item:nth-child(3) .eygs-proof-number {
    font-size: clamp(32px, 3.2vw, 48px);
}


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

@media (max-width: 900px) {
    #eygs-proof {
        padding: 34px 20px !important;
    }

    #eygs-proof .eygs-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #eygs-proof .eygs-proof-item {
        min-height: 145px;
        padding: 24px 18px;
    }

    #eygs-proof .eygs-proof-item::after {
        display: none !important;
    }

    #eygs-proof .eygs-proof-item:nth-child(odd) {
        border-right: 1px solid rgba(199, 165, 128, 0.62);
    }

    #eygs-proof .eygs-proof-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(199, 165, 128, 0.62);
    }
}


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

@media (max-width: 520px) {
    #eygs-proof {
        padding: 24px 12px !important;
    }

    #eygs-proof .eygs-proof-item {
        min-height: 128px;
        padding: 18px 8px;
    }

    #eygs-proof .eygs-proof-number {
        margin-bottom: 9px;
        font-size: 38px;
    }

    #eygs-proof .eygs-proof-item:nth-child(3) .eygs-proof-number {
        font-size: 25px;
        letter-spacing: -0.04em;
    }

    #eygs-proof .eygs-proof-label {
        max-width: 150px;
        font-size: 9.5px;
        letter-spacing: 0.09em;
        line-height: 1.45;
    }
}



/* ==================================================
   EYGS HOMEPAGE — AREAS & SCHOOL DISTRICTS
   ================================================== */

#eygs-local-homes,
#eygs-local-homes *,
#eygs-local-homes *::before,
#eygs-local-homes *::after {
    box-sizing: border-box;
}

#eygs-local-homes {
    width: 100%;
    margin: 0 !important;
    padding: 92px 24px 96px !important;
    overflow: hidden;
    background: #ffffff !important;
    color: #123456;
    font-family: var(--eygs-font-body);
}

#eygs-local-homes .eygs-local-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* ==================================================
   PRIMARY HEADING
   ================================================== */

#eygs-local-homes .eygs-local-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: end;
    margin: 0 0 46px;
}

#eygs-local-homes .eygs-local-eyebrow,
#eygs-local-homes .eygs-more-eyebrow {
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.17em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-local-homes h2 {
    max-width: 650px;
    margin: 0 !important;
    padding: 0 !important;
    color: #123456 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(43px, 5vw, 64px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.03 !important;
    text-transform: none !important;
}

#eygs-local-homes .eygs-local-intro {
    margin: 0 !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
}


/* ==================================================
   FEATURED PHOTO CARDS
   ================================================== */

#eygs-local-homes .eygs-photo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(350px, 0.7fr);
    gap: 22px;
    min-height: 650px;
}

#eygs-local-homes .eygs-photo-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

#eygs-local-homes .eygs-photo-card {
    position: relative;
    display: flex !important;
    min-width: 0;
    min-height: 0;
    padding: 36px !important;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
    background: #123456;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 16px 38px rgba(14, 44, 72, 0.13);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

#eygs-local-homes .eygs-photo-card:hover,
#eygs-local-homes .eygs-photo-card:focus {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(14, 44, 72, 0.2);
    color: #ffffff !important;
    text-decoration: none !important;
    outline: none !important;
}

#eygs-local-homes .eygs-photo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.45s ease;
}

#eygs-local-homes .eygs-photo-card:hover::before,
#eygs-local-homes .eygs-photo-card:focus::before {
    transform: scale(1.035);
}

#eygs-local-homes .eygs-photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(8, 24, 39, 0.01) 10%,
            rgba(8, 24, 39, 0.21) 48%,
            rgba(8, 24, 39, 0.94) 100%
        );
}

#eygs-local-homes .eygs-murrysville-card {
    padding: 48px !important;
}

#eygs-local-homes .eygs-murrysville-card::before {
    background-image:
        url("/assets/images/home/murrysville.webp");
    background-position: center center;
}

#eygs-local-homes .eygs-plum-card::before {
    background-image:
        url("/assets/images/home/plum.webp");
    background-position: center center;
}

#eygs-local-homes .eygs-monroeville-card::before {
    background-image:
        url("/assets/images/home/monroeville.webp");
    background-position: center center;
}

#eygs-local-homes .eygs-photo-card h3 {
    max-width: 520px;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-family: var(--eygs-font-display) !important;
    font-size: 31px !important;
    font-weight: 500 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.08 !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    text-transform: none !important;
}

#eygs-local-homes .eygs-murrysville-card h3 {
    max-width: 560px;
    font-size: clamp(38px, 4vw, 54px) !important;
}

#eygs-local-homes .eygs-photo-description {
    max-width: 510px;
    margin: 16px 0 0 !important;
    padding: 0 !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

#eygs-local-homes .eygs-photo-link {
    display: inline-flex;
    margin-top: 21px;
    align-items: center;
    gap: 9px;
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
}

#eygs-local-homes .eygs-photo-arrow {
    display: inline-block;
    font-size: 17px;
    line-height: 1;
    transition: transform 0.2s ease;
}

#eygs-local-homes .eygs-photo-card:hover .eygs-photo-arrow,
#eygs-local-homes .eygs-photo-card:focus .eygs-photo-arrow {
    transform: translateX(5px);
}


/* ==================================================
   PHOTO DISCLOSURE
   ================================================== */

#eygs-local-homes .eygs-property-photo-note {
    display: block !important;
    width: 100%;
    margin: 14px 0 0 !important;
    padding: 13px 16px !important;
    background: rgba(120, 150, 183, 0.10) !important;
    border-left: 3px solid #CCBA78 !important;
    color: #7896B7 !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    text-align: left !important;
}

#eygs-local-homes .eygs-property-photo-note strong {
    color: #123456 !important;
    font-weight: 800 !important;
}


/* ==================================================
   MORE COMMUNITIES
   ================================================== */

#eygs-local-homes .eygs-more-communities {
    margin: 52px 0 0;
}

#eygs-local-homes .eygs-more-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 55px;
    align-items: end;
    margin: 0 0 24px;
}

#eygs-local-homes .eygs-more-heading h3 {
    margin: 0 !important;
    padding: 0 !important;
    color: #123456 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(31px, 3.3vw, 44px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.08 !important;
    text-transform: none !important;
}

#eygs-local-homes .eygs-more-intro {
    margin: 0 !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 14px !important;
    line-height: 1.65 !important;
}

#eygs-local-homes .eygs-more-areas {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
}

#eygs-local-homes .eygs-area-card {
    position: relative;
    display: flex !important;
    min-width: 0;
    min-height: 205px;
    padding: 26px 24px 24px !important;
    overflow: hidden;
    flex-direction: column;
    background: rgba(120, 150, 183, 0.10) !important;
    border: 1px solid rgba(14, 44, 72, 0.13) !important;
    border-top: 4px solid #CCBA78 !important;
    box-shadow: 0 11px 27px rgba(14, 44, 72, 0.08);
    color: #123456 !important;
    text-decoration: none !important;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

#eygs-local-homes .eygs-area-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -47px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(14, 44, 72, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

#eygs-local-homes .eygs-area-card:hover,
#eygs-local-homes .eygs-area-card:focus {
    transform: translateY(-5px);
    background: #ffffff !important;
    border-color: #CCBA78 !important;
    box-shadow: 0 19px 40px rgba(14, 44, 72, 0.14);
    color: #123456 !important;
    text-decoration: none !important;
    outline: none !important;
}

#eygs-local-homes .eygs-area-icon {
    display: flex;
    width: 42px;
    height: 42px;
    margin: 0 0 22px;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    background: #123456;
    color: #ffffff;
}

#eygs-local-homes .eygs-area-icon svg {
    display: block;
}

#eygs-local-homes .eygs-area-title {
    display: block;
    margin: 0 0 18px;
    color: #123456 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.23 !important;
    text-transform: none !important;
}

#eygs-local-homes .eygs-area-cta {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 8px;
    color: #CCBA78 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    line-height: 1.3 !important;
    text-transform: uppercase !important;
}

#eygs-local-homes .eygs-area-cta-arrow {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    transition: transform 0.2s ease;
}

#eygs-local-homes .eygs-area-card:hover .eygs-area-cta-arrow,
#eygs-local-homes .eygs-area-card:focus .eygs-area-cta-arrow {
    transform: translateX(4px);
}


/* ==================================================
   VIEW ALL AREAS
   ================================================== */

#eygs-local-homes .eygs-areas-footer {
    display: flex;
    margin: 28px 0 0;
    align-items: center;
    justify-content: center;
}

#eygs-local-homes .eygs-view-all-areas {
    display: inline-flex !important;
    min-height: 52px;
    padding: 14px 31px !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #123456 !important;
    border: 1px solid #123456 !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

#eygs-local-homes .eygs-view-all-areas:hover,
#eygs-local-homes .eygs-view-all-areas:focus {
    transform: translateY(-2px);
    background: #CCBA78 !important;
    border-color: #CCBA78 !important;
    color: #123456 !important;
    text-decoration: none !important;
    outline: none !important;
}


/* ==================================================
   SCHOOL DISTRICT SECTION
   ================================================== */

#eygs-local-homes .eygs-schools {
    margin: 58px 0 0;
    padding: 44px 42px 42px;
    background: #123456;
    border-top: 5px solid #CCBA78;
    color: #ffffff;
}

#eygs-local-homes .eygs-schools-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 55px;
    align-items: end;
    margin: 0 0 30px;
}

#eygs-local-homes .eygs-schools h3 {
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(31px, 3.4vw, 44px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.08 !important;
    text-transform: none !important;
}

#eygs-local-homes .eygs-schools-intro {
    margin: 0 !important;
    padding: 0 !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}

#eygs-local-homes .eygs-school-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    background: transparent;
}

#eygs-local-homes .eygs-school-link {
    display: flex !important;
    min-height: 82px;
    padding: 18px 19px !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(120, 150, 183, 0.10) !important;
    border-top: 3px solid #CCBA78 !important;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);
    color: #123456 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

#eygs-local-homes .eygs-school-link:hover,
#eygs-local-homes .eygs-school-link:focus {
    transform: translateY(-3px);
    background: #ffffff !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
    color: #123456 !important;
    text-decoration: none !important;
    outline: none !important;
}

#eygs-local-homes .eygs-school-arrow {
    display: inline-block;
    flex: 0 0 auto;
    color: #CCBA78;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

#eygs-local-homes .eygs-school-link:hover .eygs-school-arrow,
#eygs-local-homes .eygs-school-link:focus .eygs-school-arrow {
    transform: translateX(4px);
}


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

@media (max-width: 950px) {
    #eygs-local-homes {
        padding: 72px 20px 78px !important;
    }

    #eygs-local-homes .eygs-local-heading,
    #eygs-local-homes .eygs-more-heading,
    #eygs-local-homes .eygs-schools-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #eygs-local-homes .eygs-photo-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    #eygs-local-homes .eygs-murrysville-card {
        min-height: 520px;
    }

    #eygs-local-homes .eygs-photo-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    #eygs-local-homes .eygs-photo-stack .eygs-photo-card {
        min-height: 330px;
    }

    #eygs-local-homes .eygs-more-areas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #eygs-local-homes .eygs-school-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


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

@media (max-width: 650px) {
    #eygs-local-homes {
        padding: 56px 16px 62px !important;
    }

    #eygs-local-homes h2 {
        font-size: 40px !important;
    }

    #eygs-local-homes .eygs-local-intro {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    #eygs-local-homes .eygs-murrysville-card {
        min-height: 470px;
        padding: 30px 25px !important;
    }

    #eygs-local-homes .eygs-murrysville-card h3 {
        font-size: 36px !important;
    }

    #eygs-local-homes .eygs-photo-stack {
        grid-template-columns: 1fr;
    }

    #eygs-local-homes .eygs-photo-stack .eygs-photo-card {
        min-height: 335px;
        padding: 27px 24px !important;
    }

    #eygs-local-homes .eygs-photo-card h3 {
        font-size: 29px !important;
    }

    #eygs-local-homes .eygs-property-photo-note {
        margin-top: 12px !important;
        padding: 12px 13px !important;
        font-size: 11px !important;
    }

    #eygs-local-homes .eygs-more-communities {
        margin-top: 42px;
    }

    #eygs-local-homes .eygs-more-heading h3 {
        font-size: 34px !important;
    }

    #eygs-local-homes .eygs-more-areas {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    #eygs-local-homes .eygs-area-card {
        min-height: 178px;
    }

    #eygs-local-homes .eygs-areas-footer {
        margin-top: 22px;
    }

    #eygs-local-homes .eygs-view-all-areas {
        width: 100%;
    }

    #eygs-local-homes .eygs-schools {
        margin-top: 46px;
        padding: 34px 22px 25px;
    }

    #eygs-local-homes .eygs-schools h3 {
        font-size: 34px !important;
    }

    #eygs-local-homes .eygs-school-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}



/* ==================================================
   EYGS HOMEPAGE — BUYER & SELLER PATHWAYS
   ================================================== */

#eygs-client-pathways,
#eygs-client-pathways *,
#eygs-client-pathways *::before,
#eygs-client-pathways *::after {
    box-sizing: border-box;
}

#eygs-client-pathways {
    width: 100%;
    margin: 0 !important;
    padding: 88px 24px 92px !important;
    overflow: hidden;
    background: rgba(120, 150, 183, 0.10) !important;
    color: #123456;
    font-family: var(--eygs-font-body);
}

#eygs-client-pathways .eygs-pathways-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

/* ==================================================
   SECTION HEADING
   ================================================== */

#eygs-client-pathways .eygs-pathways-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 70px;
    align-items: end;
    margin: 0 0 42px;
}

#eygs-client-pathways .eygs-pathways-eyebrow {
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.17em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-client-pathways h2 {
    max-width: 650px;
    margin: 0 !important;
    padding: 0 !important;
    color: #123456 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(40px, 4.8vw, 60px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.04 !important;
    text-transform: none !important;
}

#eygs-client-pathways .eygs-pathways-intro {
    margin: 0 !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
}

/* ==================================================
   PATHWAY GRID
   ================================================== */

#eygs-client-pathways .eygs-pathways-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* ==================================================
   CARD BASE
   ================================================== */

#eygs-client-pathways .eygs-pathway-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 390px;
    padding: 42px;
    overflow: hidden;
    flex-direction: column;
    border-top: 5px solid #CCBA78;
    box-shadow: 0 16px 38px rgba(14, 44, 72, 0.11);
}

#eygs-client-pathways .eygs-pathway-card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    pointer-events: none;
}

/* ==================================================
   BUYER = NAVY
   ================================================== */

#eygs-client-pathways .eygs-pathway-buyer {
    background: #123456;
    color: #ffffff;
}

#eygs-client-pathways .eygs-pathway-buyer::after {
    border: 1px solid rgba(199, 165, 128, 0.18);
}

/* ==================================================
   SELLER = WHITE
   ================================================== */

#eygs-client-pathways .eygs-pathway-seller {
    background: #ffffff;
    border-right: 1px solid rgba(14, 44, 72, 0.1);
    border-bottom: 1px solid rgba(14, 44, 72, 0.1);
    border-left: 1px solid rgba(14, 44, 72, 0.1);
    color: #123456;
}

#eygs-client-pathways .eygs-pathway-seller::after {
    border: 1px solid rgba(14, 44, 72, 0.08);
}

/* ==================================================
   ICON
   ================================================== */

#eygs-client-pathways .eygs-pathway-icon {
    display: flex;
    width: 54px;
    height: 54px;
    margin: 0 0 28px;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
}

#eygs-client-pathways .eygs-pathway-buyer .eygs-pathway-icon {
    background: #ffffff;
    color: #123456;
}

#eygs-client-pathways .eygs-pathway-seller .eygs-pathway-icon {
    background: #123456;
    color: #ffffff;
}

#eygs-client-pathways .eygs-pathway-icon svg {
    display: block;
}

/* ==================================================
   CARD COPY
   ================================================== */

#eygs-client-pathways .eygs-pathway-label {
    margin: 0 0 9px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-client-pathways .eygs-pathway-card h3 {
    max-width: 500px;
    margin: 0 0 17px !important;
    padding: 0 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(32px, 3.2vw, 44px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.08 !important;
    text-transform: none !important;
}

#eygs-client-pathways .eygs-pathway-buyer h3 {
    color: #ffffff !important;
}

#eygs-client-pathways .eygs-pathway-seller h3 {
    color: #123456 !important;
}

#eygs-client-pathways .eygs-pathway-copy {
    max-width: 500px;
    margin: 0 0 26px !important;
    padding: 0 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
}

#eygs-client-pathways .eygs-pathway-buyer .eygs-pathway-copy {
    color: #FFFFFF !important;
}

#eygs-client-pathways .eygs-pathway-seller .eygs-pathway-copy {
    color: #7896B7 !important;
}

/* ==================================================
   VALUE POINTS
   ================================================== */

#eygs-client-pathways .eygs-pathway-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 20px;
    margin: 0 0 31px;
    padding: 0;
    list-style: none;
}

#eygs-client-pathways .eygs-pathway-points li {
    position: relative;
    margin: 0 !important;
    padding: 0 0 0 17px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

#eygs-client-pathways .eygs-pathway-points li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 6px;
    height: 6px;
    background: #CCBA78;
    transform: rotate(45deg);
}

#eygs-client-pathways .eygs-pathway-buyer .eygs-pathway-points li {
    color: #FFFFFF !important;
}

#eygs-client-pathways .eygs-pathway-seller .eygs-pathway-points li {
    color: #123456 !important;
}

/* ==================================================
   ACTIONS
   ================================================== */

#eygs-client-pathways .eygs-pathway-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

#eygs-client-pathways .eygs-pathway-button {
    display: inline-flex !important;
    min-height: 52px;
    padding: 14px 25px !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 2px solid transparent;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

/* BUYER CARD BUTTON = WHITE */
#eygs-client-pathways .eygs-buyer-button {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #123456 !important;
}

#eygs-client-pathways .eygs-buyer-button:hover,
#eygs-client-pathways .eygs-buyer-button:focus {
    transform: translateY(-2px);
    background: #CCBA78 !important;
    border-color: #CCBA78 !important;
    color: #123456 !important;
    outline: none !important;
}

/* SELLER CARD BUTTON = NAVY */
#eygs-client-pathways .eygs-seller-button {
    background: #123456 !important;
    border-color: #123456 !important;
    color: #ffffff !important;
}

#eygs-client-pathways .eygs-seller-button:hover,
#eygs-client-pathways .eygs-seller-button:focus {
    transform: translateY(-2px);
    background: #CCBA78 !important;
    border-color: #CCBA78 !important;
    color: #123456 !important;
    outline: none !important;
}

#eygs-client-pathways .eygs-pathway-text-link {
    display: inline-flex !important;
    padding: 5px 0 !important;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid currentColor;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    transition:
        gap 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

#eygs-client-pathways .eygs-pathway-buyer .eygs-pathway-text-link {
    color: #ffffff !important;
}

#eygs-client-pathways .eygs-pathway-seller .eygs-pathway-text-link {
    color: #123456 !important;
}

#eygs-client-pathways .eygs-pathway-text-link:hover,
#eygs-client-pathways .eygs-pathway-text-link:focus {
    gap: 11px;
    color: #CCBA78 !important;
    border-color: #CCBA78;
    outline: none !important;
}

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

@media (max-width: 950px) {
    #eygs-client-pathways {
        padding: 72px 20px 76px !important;
    }

    #eygs-client-pathways .eygs-pathways-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #eygs-client-pathways .eygs-pathway-card {
        padding: 36px;
    }

    #eygs-client-pathways .eygs-pathway-points {
        grid-template-columns: 1fr;
    }
}

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

@media (max-width: 700px) {
    #eygs-client-pathways {
        padding: 56px 16px 62px !important;
    }

    #eygs-client-pathways h2 {
        font-size: 39px !important;
    }

    #eygs-client-pathways .eygs-pathways-intro {
        font-size: 15px !important;
    }

    #eygs-client-pathways .eygs-pathways-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #eygs-client-pathways .eygs-pathway-card {
        min-height: 0;
        padding: 31px 25px;
    }

    #eygs-client-pathways .eygs-pathway-card h3 {
        font-size: 34px !important;
    }

    #eygs-client-pathways .eygs-pathway-points {
        margin-bottom: 27px;
    }

    #eygs-client-pathways .eygs-pathway-actions {
        align-items: stretch;
        flex-direction: column;
    }

    #eygs-client-pathways .eygs-pathway-button {
        width: 100%;
    }

    #eygs-client-pathways .eygs-pathway-text-link {
        align-self: center;
    }
}



/* ==================================================
   EYGS HOMEPAGE — MEET THE TEAM
   ================================================== */

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

#eygs-team {
    width: 100%;
    margin: 0 !important;
    padding: 90px 24px 94px !important;
    overflow: hidden;
    background: #ffffff !important;
    color: #123456;
    font-family: var(--eygs-font-body);
}

#eygs-team .eygs-team-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* ==================================================
   SECTION INTRODUCTION
   ================================================== */

#eygs-team .eygs-team-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 70px;
    align-items: end;
    margin: 0 0 48px;
    padding: 0 0 40px;
    border-bottom: 1px solid rgba(14, 44, 72, 0.14);
}

#eygs-team .eygs-team-eyebrow {
    margin: 0 0 12px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.17em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-team h2 {
    max-width: 620px;
    margin: 0 !important;
    padding: 0 !important;
    color: #123456 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(42px, 5vw, 62px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.03 !important;
    text-transform: none !important;
}

#eygs-team .eygs-team-copy {
    margin: 0 !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.75 !important;
}

#eygs-team .eygs-team-copy strong {
    color: #123456;
    font-weight: 800;
}


/* ==================================================
   SHARED CARD STYLES
   ================================================== */

#eygs-team .eygs-agent-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    text-decoration: none !important;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

#eygs-team .eygs-agent-card:hover,
#eygs-team .eygs-agent-card:focus {
    transform: translateY(-5px);
    text-decoration: none !important;
    outline: none !important;
}

#eygs-team .eygs-agent-photo {
    position: relative;
    overflow: hidden;
    background: rgba(120, 150, 183, 0.10);
}

#eygs-team .eygs-agent-photo img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s ease;
}

#eygs-team .eygs-agent-card:hover .eygs-agent-photo img,
#eygs-team .eygs-agent-card:focus .eygs-agent-photo img {
    transform: scale(1.025);
}

#eygs-team .eygs-agent-role {
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.16em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-team .eygs-agent-name {
    margin: 0 0 12px !important;
    padding: 0 !important;
    font-family: var(--eygs-font-display) !important;
    font-weight: 500 !important;
    letter-spacing: -0.025em !important;
    line-height: 1.12 !important;
}

#eygs-team .eygs-agent-description {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
}


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

#eygs-team .eygs-agent-market {
    display: flex;
    width: 100%;
    margin-top: 22px;
    padding: 15px 0 0;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px solid rgba(14, 44, 72, 0.13);
}

#eygs-team .eygs-agent-market svg {
    display: block;
    flex: 0 0 auto;
    margin-top: 2px;
    color: #CCBA78;
}

#eygs-team .eygs-market-copy {
    display: block;
    min-width: 0;
}

#eygs-team .eygs-market-label {
    display: block;
    margin: 0 0 3px;
    color: #CCBA78;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.4;
    text-transform: uppercase;
}

#eygs-team .eygs-market-location {
    display: block;
    margin: 0 0 3px;
    color: #123456;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

#eygs-team .eygs-market-service {
    display: block;
    color: #7896B7;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}


/* ==================================================
   PROFILE LINK
   ================================================== */

#eygs-team .eygs-profile-link {
    display: inline-flex;
    margin-top: 23px;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
}

#eygs-team .eygs-profile-link svg {
    display: block;
    flex: 0 0 auto;
    transition: transform 0.2s ease;
}

#eygs-team .eygs-agent-card:hover .eygs-profile-link svg,
#eygs-team .eygs-agent-card:focus .eygs-profile-link svg {
    transform: translateX(4px);
}


/* ==================================================
   TEAM LEADERS
   ================================================== */

#eygs-team .eygs-leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 0 0 24px;
}

#eygs-team .eygs-leader-card {
    display: grid;
    grid-template-columns: minmax(190px, 42%) minmax(0, 58%);
    min-height: 405px;
    overflow: hidden;
    background: #123456;
    border: 1px solid #123456;
    box-shadow: 0 17px 40px rgba(14, 44, 72, 0.13);
    color: #ffffff !important;
}

#eygs-team .eygs-leader-card:hover,
#eygs-team .eygs-leader-card:focus {
    border-color: #CCBA78;
    box-shadow: 0 22px 48px rgba(14, 44, 72, 0.19);
}

#eygs-team .eygs-leader-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 92px;
    height: 5px;
    background: #CCBA78;
}

#eygs-team .eygs-leader-photo {
    min-height: 405px;
    border-right: 6px solid rgba(120, 150, 183, 0.10);
}

#eygs-team .eygs-leader-content {
    display: flex;
    min-width: 0;
    padding: 36px 34px 34px;
    flex-direction: column;
    justify-content: center;
    background: #123456;
}

#eygs-team .eygs-leader-card .eygs-agent-role {
    color: #CCBA78 !important;
}

#eygs-team .eygs-leader-card .eygs-agent-name {
    color: #ffffff !important;
    font-size: 32px !important;
}

#eygs-team .eygs-leader-card .eygs-agent-description {
    color: #FFFFFF !important;
}

#eygs-team .eygs-leader-card .eygs-agent-market {
    border-top-color: rgba(255, 255, 255, 0.18);
}

#eygs-team .eygs-leader-card .eygs-agent-market svg {
    color: #CCBA78;
}

#eygs-team .eygs-leader-card .eygs-market-label {
    color: #CCBA78;
}

#eygs-team .eygs-leader-card .eygs-market-location {
    color: #ffffff;
}

#eygs-team .eygs-leader-card .eygs-market-service {
    color: #FFFFFF;
}

#eygs-team .eygs-leader-card .eygs-profile-link {
    color: #ffffff !important;
}


/* ==================================================
   TEAM MEMBERS
   ================================================== */

#eygs-team .eygs-members-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

#eygs-team .eygs-member-card {
    display: flex;
    flex-direction: column;
    background: rgba(120, 150, 183, 0.10);
    border: 1px solid rgba(14, 44, 72, 0.11);
    box-shadow: 0 12px 30px rgba(14, 44, 72, 0.06);
    color: #123456 !important;
}

#eygs-team .eygs-member-card:hover,
#eygs-team .eygs-member-card:focus {
    border-color: rgba(199, 165, 128, 0.7);
    box-shadow: 0 18px 40px rgba(14, 44, 72, 0.11);
}

#eygs-team .eygs-member-card::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: #CCBA78;
}

#eygs-team .eygs-member-photo {
    width: 100%;
    aspect-ratio: 4 / 4.35;
}

#eygs-team .eygs-member-content {
    display: flex;
    min-height: 365px;
    padding: 29px 29px 33px;
    flex-direction: column;
    align-items: flex-start;
}

#eygs-team .eygs-member-card .eygs-agent-name {
    color: #123456 !important;
    font-size: 27px !important;
}

#eygs-team .eygs-member-card .eygs-agent-description {
    color: #7896B7 !important;
}

#eygs-team .eygs-member-card .eygs-profile-link {
    margin-top: auto;
    padding-top: 23px;
    color: #123456 !important;
}


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

#eygs-team .eygs-team-cta {
    display: flex;
    margin: 42px 0 0;
    align-items: center;
    justify-content: center;
}

#eygs-team .eygs-team-button {
    display: inline-flex !important;
    min-height: 52px;
    padding: 14px 30px !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #CCBA78 !important;
    border: 1px solid #CCBA78 !important;
    color: #123456 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

#eygs-team .eygs-team-button:hover,
#eygs-team .eygs-team-button:focus {
    background: #123456 !important;
    border-color: #123456 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    outline: none !important;
}

#eygs-team .eygs-team-button svg {
    display: block;
    flex: 0 0 auto;
}


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

@media (max-width: 1040px) {
    #eygs-team .eygs-leader-card {
        grid-template-columns: 42% 58%;
    }

    #eygs-team .eygs-leader-content {
        padding: 31px 26px;
    }

    #eygs-team .eygs-leader-card .eygs-agent-name {
        font-size: 28px !important;
    }
}

@media (max-width: 900px) {
    #eygs-team {
        padding: 72px 20px 76px !important;
    }

    #eygs-team .eygs-team-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #eygs-team .eygs-leaders-grid {
        grid-template-columns: 1fr;
    }

    #eygs-team .eygs-members-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #eygs-team .eygs-member-card:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(230px, 40%) minmax(0, 60%);
    }

    #eygs-team .eygs-member-card:last-child .eygs-member-photo {
        height: 100%;
        aspect-ratio: auto;
    }

    #eygs-team .eygs-member-card:last-child .eygs-member-content {
        min-height: 0;
        justify-content: center;
    }
}


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

@media (max-width: 650px) {
    #eygs-team {
        padding: 56px 16px 62px !important;
    }

    #eygs-team .eygs-team-intro {
        margin-bottom: 32px;
        padding-bottom: 30px;
    }

    #eygs-team h2 {
        font-size: 39px !important;
    }

    #eygs-team .eygs-team-copy {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    #eygs-team .eygs-leader-card {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    #eygs-team .eygs-leader-photo {
        width: 100%;
        min-height: 0;
        aspect-ratio: 4 / 3.75;
        border-right: 0;
        border-bottom: 4px solid rgba(120, 150, 183, 0.10);
    }

    #eygs-team .eygs-leader-content {
        padding: 29px 26px 32px;
    }

    #eygs-team .eygs-leader-card .eygs-agent-name {
        font-size: 27px !important;
    }

    #eygs-team .eygs-members-grid {
        grid-template-columns: 1fr;
    }

    #eygs-team .eygs-member-card:last-child {
        display: flex;
        grid-column: auto;
    }

    #eygs-team .eygs-member-card:last-child .eygs-member-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 4.35;
    }

    #eygs-team .eygs-member-content {
        min-height: 0;
        padding: 28px 26px 31px;
    }

    #eygs-team .eygs-team-cta {
        margin-top: 32px;
    }

    #eygs-team .eygs-team-button {
        width: 100%;
    }
}



/* ==================================================
   EYGS HOMEPAGE REVIEWS — FOUR REVIEW LAYOUT
   ================================================== */

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

#eygs-reviews {
    width: 100%;
    margin: 0 !important;
    padding: 88px 24px !important;
    background: rgba(120, 150, 183, 0.10) !important;
    color: #123456;
    font-family: var(--eygs-font-body);
}

#eygs-reviews .eygs-reviews-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* ==================================================
   SECTION HEADING
   ================================================== */

#eygs-reviews .eygs-reviews-heading {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

#eygs-reviews .eygs-reviews-eyebrow {
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.17em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-reviews h2 {
    margin: 0 0 14px !important;
    padding: 0 !important;
    color: #123456 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(38px, 4.3vw, 54px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.08 !important;
}

#eygs-reviews .eygs-reviews-intro {
    max-width: 720px;
    margin: 0 auto !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}


/* ==================================================
   INDEPENDENT COLUMNS
   ================================================== */

#eygs-reviews .eygs-reviews-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 24px;
    align-items: start;
}

#eygs-reviews .eygs-review-column {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 24px;
}


/* ==================================================
   REVIEW CARDS
   ================================================== */

#eygs-reviews .eygs-review-card {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 36px 38px;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(14, 44, 72, 0.1);
    box-shadow: 0 14px 35px rgba(14, 44, 72, 0.07);
}

#eygs-reviews .eygs-review-featured {
    padding: 46px 48px;
    background: #123456;
    border-color: #123456;
    color: #ffffff;
}

#eygs-reviews .eygs-review-featured::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #CCBA78;
}

#eygs-reviews .eygs-review-elaine {
    border-left: 5px solid #CCBA78;
}

#eygs-reviews .eygs-review-type {
    margin: 0 0 18px;
    padding: 0;
    color: #CCBA78;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

#eygs-reviews .eygs-review-featured .eygs-review-type {
    color: #CCBA78;
}

#eygs-reviews .eygs-review-stars {
    display: flex;
    gap: 4px;
    margin: 0 0 22px;
    padding: 0;
    color: #CCBA78;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 1;
}

#eygs-reviews blockquote {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #123456 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: 19px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    letter-spacing: -0.015em !important;
    line-height: 1.55 !important;
}

#eygs-reviews .eygs-review-featured blockquote {
    color: #ffffff !important;
    font-size: clamp(22px, 2.1vw, 29px) !important;
    line-height: 1.48 !important;
}

#eygs-reviews .eygs-review-footer {
    margin-top: 0;
    padding-top: 26px;
}

#eygs-reviews .eygs-review-divider {
    width: 42px;
    height: 2px;
    margin: 0 0 14px;
    background: #CCBA78;
}

#eygs-reviews .eygs-review-client {
    display: block;
    margin: 0 0 4px;
    color: #123456;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}

#eygs-reviews .eygs-review-featured .eygs-review-client {
    color: #ffffff;
}

#eygs-reviews .eygs-review-context {
    display: block;
    margin: 0;
    color: #7896B7;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

#eygs-reviews .eygs-review-featured .eygs-review-context {
    color: #FFFFFF;
}


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

@media (max-width: 900px) {
    #eygs-reviews {
        padding: 68px 20px !important;
    }

    #eygs-reviews .eygs-reviews-grid {
        grid-template-columns: 1fr;
    }

    #eygs-reviews .eygs-review-column {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    #eygs-reviews .eygs-review-featured {
        padding: 40px;
    }
}


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

@media (max-width: 650px) {
    #eygs-reviews {
        padding: 54px 16px !important;
    }

    #eygs-reviews .eygs-reviews-heading {
        margin-bottom: 30px;
    }

    #eygs-reviews h2 {
        font-size: 34px !important;
    }

    #eygs-reviews .eygs-reviews-intro {
        font-size: 15px !important;
    }

    #eygs-reviews .eygs-review-column {
        display: flex;
        flex-direction: column;
    }

    #eygs-reviews .eygs-review-card,
    #eygs-reviews .eygs-review-featured {
        padding: 30px 26px;
    }

    #eygs-reviews .eygs-review-featured blockquote {
        font-size: 21px !important;
    }

    #eygs-reviews blockquote {
        font-size: 18px !important;
    }
}



/* ==================================================
   EYGS HOMEPAGE CONTACT FORM
   ================================================== */

#eygs-premium-contact,
#eygs-premium-contact *,
#eygs-premium-contact *::before,
#eygs-premium-contact *::after {
    box-sizing: border-box;
}

#eygs-premium-contact {
    position: relative;
    width: 100%;
    margin: 0 !important;
    padding: 78px 24px 82px !important;
    overflow: hidden;
    background: #123456 !important;
    border-top: 5px solid #CCBA78;
    color: #ffffff;
    font-family: var(--eygs-font-body);
    isolation: isolate;
}

#eygs-premium-contact::before,
#eygs-premium-contact::after {
    content: "";
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(199, 165, 128, 0.17);
    border-radius: 50%;
    pointer-events: none;
}

#eygs-premium-contact::before {
    top: -190px;
    right: -120px;
    width: 440px;
    height: 440px;
}

#eygs-premium-contact::after {
    bottom: -260px;
    left: -170px;
    width: 520px;
    height: 520px;
}

#eygs-premium-contact .eygs-contact-container {
    display: grid;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(450px, 1.1fr);
    gap: 72px;
    align-items: center;
}


/* ==================================================
   LEFT COLUMN
   ================================================== */

#eygs-premium-contact .eygs-contact-copy {
    min-width: 0;
}

#eygs-premium-contact .eygs-contact-eyebrow {
    margin: 0 0 12px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.17em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-premium-contact .eygs-contact-title {
    max-width: 630px;
    margin: 0 0 20px !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(43px, 5vw, 64px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.04em !important;
    line-height: 1.03 !important;
    text-transform: none !important;
}

#eygs-premium-contact .eygs-contact-description {
    max-width: 590px;
    margin: 0 0 30px !important;
    padding: 0 !important;
    color: #FFFFFF !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.72 !important;
}

#eygs-premium-contact .eygs-contact-principle {
    margin: 0 0 29px !important;
    padding: 18px 19px !important;
    background: rgba(255, 255, 255, 0.065);
    border-left: 3px solid #CCBA78;
    color: #ffffff !important;
    font-family: var(--eygs-font-display) !important;
    font-size: 18px !important;
    font-style: italic;
    line-height: 1.55 !important;
}

#eygs-premium-contact .eygs-contact-details {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#eygs-premium-contact .eygs-contact-details li {
    margin: 0 !important;
    padding: 0 !important;
}

#eygs-premium-contact .eygs-contact-link {
    display: flex !important;
    min-height: 62px;
    padding: 13px 15px !important;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff !important;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

#eygs-premium-contact .eygs-contact-link:hover,
#eygs-premium-contact .eygs-contact-link:focus {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.11);
    border-color: #CCBA78;
    color: #ffffff !important;
    text-decoration: none !important;
    outline: none !important;
}

#eygs-premium-contact .eygs-contact-icon {
    display: flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    background: #ffffff;
    color: #123456;
}

#eygs-premium-contact .eygs-contact-icon svg {
    display: block;
}

#eygs-premium-contact .eygs-contact-detail-label {
    display: block;
    margin-bottom: 3px;
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.35;
    text-transform: uppercase;
}

#eygs-premium-contact .eygs-contact-detail-value {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}


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

#eygs-premium-contact .eygs-contact-form-card {
    position: relative;
    min-width: 0;
    padding: 39px;
    background: #ffffff;
    border-top: 5px solid #CCBA78;
    color: #123456;
    box-shadow: 0 25px 58px rgba(0, 0, 0, 0.23);
}

#eygs-premium-contact .eygs-form-eyebrow {
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-premium-contact .eygs-form-title {
    margin: 0 0 11px !important;
    padding: 0 !important;
    color: #123456 !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(31px, 3vw, 42px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.08 !important;
    text-transform: none !important;
}

#eygs-premium-contact .eygs-form-description {
    margin: 0 0 24px !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
}


/* ==================================================
   INQUIRY TYPE
   ================================================== */

#eygs-premium-contact .eygs-interest-fieldset {
    min-width: 0;
    margin: 0 0 25px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

#eygs-premium-contact .eygs-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

#eygs-premium-contact .eygs-interest-header {
    margin: 0 0 15px !important;
    padding: 15px 17px !important;
    background: rgba(120, 150, 183, 0.10) !important;
    border: 0 !important;
    border-left: 4px solid #CCBA78 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

#eygs-premium-contact .eygs-interest-kicker {
    display: block;
    margin: 0 0 4px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-premium-contact .eygs-interest-question {
    margin: 0 0 4px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #123456 !important;
    font-family: var(--eygs-font-body) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.3 !important;
    text-transform: none !important;
    box-shadow: none !important;
}

#eygs-premium-contact .eygs-interest-direction {
    display: block;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #7896B7 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    box-shadow: none !important;
}

#eygs-premium-contact .eygs-interest-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

#eygs-premium-contact .eygs-interest-option {
    position: relative;
    min-width: 0;
}

#eygs-premium-contact .eygs-interest-option-general {
    grid-column: 1 / -1;
}

#eygs-premium-contact .eygs-interest-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

#eygs-premium-contact .eygs-interest-label {
    display: flex !important;
    min-height: 50px;
    margin: 0 !important;
    padding: 11px 12px !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(120, 150, 183, 0.10) !important;
    border: 1px solid rgba(14, 44, 72, 0.17) !important;
    border-radius: 0 !important;
    color: #123456 !important;
    cursor: pointer;
    font-family: var(--eygs-font-body) !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    text-transform: none !important;
    box-shadow: none !important;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

#eygs-premium-contact .eygs-interest-label::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 2px solid rgba(14, 44, 72, 0.35);
    border-radius: 50%;
    background: transparent;
}

#eygs-premium-contact .eygs-interest-label:hover {
    transform: translateY(-1px);
    background: #ffffff !important;
    border-color: #CCBA78 !important;
}

#eygs-premium-contact .eygs-interest-input:checked +
.eygs-interest-label {
    background: #123456 !important;
    border-color: #123456 !important;
    color: #ffffff !important;
    box-shadow: inset 0 3px 0 #CCBA78 !important;
}

#eygs-premium-contact .eygs-interest-input:checked +
.eygs-interest-label::after {
    border-color: #ffffff;
    background: #CCBA78;
    box-shadow: inset 0 0 0 3px #123456;
}

#eygs-premium-contact .eygs-interest-input:focus-visible +
.eygs-interest-label {
    outline: 3px solid rgba(199, 165, 128, 0.35);
    outline-offset: 2px;
}


/* ==================================================
   FORM FIELDS
   ================================================== */

#eygs-premium-contact #contact,
#eygs-premium-contact #message,
#eygs-premium-contact #form-contact1 {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

#eygs-premium-contact .eygs-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

#eygs-premium-contact .eygs-form-field {
    min-width: 0;
}

#eygs-premium-contact .eygs-form-field-full {
    grid-column: 1 / -1;
}

#eygs-premium-contact .form-group {
    margin: 0 !important;
}

#eygs-premium-contact #form-contact1 .form-control {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 54px !important;
    margin: 0 !important;
    padding: 14px 15px !important;
    background: rgba(120, 150, 183, 0.10) !important;
    border: 1px solid rgba(14, 44, 72, 0.2) !important;
    border-radius: 0 !important;
    color: #123456 !important;
    font-family: var(--eygs-font-body) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    outline: none !important;
    box-shadow: none !important;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#eygs-premium-contact #form-contact1 textarea.form-control {
    min-height: 125px !important;
    resize: vertical;
}

#eygs-premium-contact #form-contact1 .form-control:focus {
    background: #ffffff !important;
    border-color: #CCBA78 !important;
    box-shadow: 0 0 0 3px rgba(199, 165, 128, 0.17) !important;
}

#eygs-premium-contact #form-contact1 .form-control::placeholder {
    color: #7896B7 !important;
    opacity: 1 !important;
}

#eygs-premium-contact #honeypot-div,
#eygs-premium-contact #contact1_robot_field {
    display: none !important;
}


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

#eygs-premium-contact .eygs-contact-submit {
    display: flex !important;
    width: 100% !important;
    min-height: 56px !important;
    margin: 17px 0 0 !important;
    padding: 15px 22px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px;
    background: #123456 !important;
    border: 2px solid #123456 !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    font-family: var(--eygs-font-body) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-align: left !important;
    text-decoration: none !important;
    text-transform: none !important;
    box-shadow: none !important;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

#eygs-premium-contact .eygs-contact-submit:hover,
#eygs-premium-contact .eygs-contact-submit:focus {
    transform: translateY(-2px);
    background: #CCBA78 !important;
    border-color: #CCBA78 !important;
    color: #123456 !important;
    outline: none !important;
}

#eygs-premium-contact .eygs-submit-arrow {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

#eygs-premium-contact .eygs-contact-submit:hover .eygs-submit-arrow,
#eygs-premium-contact .eygs-contact-submit:focus .eygs-submit-arrow {
    transform: translateX(4px);
}

#eygs-premium-contact .eygs-form-note {
    margin: 13px 0 0 !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
    text-align: center !important;
}


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

@media (max-width: 940px) {
    #eygs-premium-contact {
        padding: 65px 20px 69px !important;
    }

    #eygs-premium-contact .eygs-contact-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    #eygs-premium-contact .eygs-contact-copy {
        max-width: 720px;
    }

    #eygs-premium-contact .eygs-contact-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


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

@media (max-width: 650px) {
    #eygs-premium-contact {
        padding: 54px 16px 58px !important;
    }

    #eygs-premium-contact .eygs-contact-title {
        font-size: 40px !important;
    }

    #eygs-premium-contact .eygs-contact-description {
        font-size: 15px !important;
    }

    #eygs-premium-contact .eygs-contact-principle {
        font-size: 16px !important;
    }

    #eygs-premium-contact .eygs-contact-details,
    #eygs-premium-contact .eygs-interest-options,
    #eygs-premium-contact .eygs-form-grid {
        grid-template-columns: 1fr;
    }

    #eygs-premium-contact .eygs-interest-option-general,
    #eygs-premium-contact .eygs-form-field-full {
        grid-column: auto;
    }

    #eygs-premium-contact .eygs-contact-form-card {
        padding: 31px 22px;
    }

    #eygs-premium-contact .eygs-form-title {
        font-size: 34px !important;
    }

    #eygs-premium-contact .eygs-interest-question {
        font-size: 17px !important;
    }
}



/* ==================================================
   EYGS — FINAL INTEGRATED FOOTER
   CIRCULAR TEAM LOGO
   ================================================== */

#eygs-custom-footer,
#eygs-custom-footer *,
#eygs-custom-footer *::before,
#eygs-custom-footer *::after {
    box-sizing: border-box;
}

#eygs-custom-footer {
    width: 100%;
    margin: 0 !important;
    overflow: hidden;
    border-top: 5px solid #CCBA78;
    color: #ffffff;
    background: #123456;
    font-family: var(--eygs-font-body);
}


/* ==================================================
   MAIN LAYOUT
   ================================================== */

#eygs-custom-footer .eygs-footer-main {
    width: 100%;
    padding: 58px 24px 27px;
}

#eygs-custom-footer .eygs-footer-inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

#eygs-custom-footer .eygs-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(610px, 1.7fr)
        minmax(170px, 0.55fr)
        minmax(185px, 0.65fr);
    gap: 42px;
    align-items: start;
}

#eygs-custom-footer .eygs-footer-grid > * {
    min-width: 0;
}


/* ==================================================
   PRIMARY TEAM IDENTITY
   ================================================== */

#eygs-custom-footer .eygs-footer-logo-link {
    position: relative;
    display: inline-flex !important;
    width: 150px;
    height: 150px;
    margin: 0 0 26px !important;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #CCBA78;
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.24),
        0 0 0 6px rgba(255, 255, 255, 0.05);
    text-decoration: none !important;
}

#eygs-custom-footer .eygs-footer-logo-link:hover,
#eygs-custom-footer .eygs-footer-logo-link:focus-visible {
    border-color: #7896B7;
    outline: none;
}

#eygs-custom-footer .eygs-footer-team-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    filter: none !important;
    opacity: 1;
}

#eygs-custom-footer .eygs-footer-team-name {
    display: block;
    width: 100%;
    margin: 0 0 10px !important;
    padding: 0 !important;
    color: #ffffff !important;
    font-family: var(--eygs-font-display) !important;
    font-size: clamp(24px, 2vw, 30px) !important;
    font-weight: 500 !important;
    letter-spacing: -0.035em !important;
    line-height: 1.1 !important;
    white-space: nowrap;
    text-transform: none !important;
}

#eygs-custom-footer .eygs-footer-tagline {
    margin: 0 0 19px !important;
    padding: 0 !important;
    color: #CCBA78 !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-custom-footer .eygs-footer-description {
    max-width: 590px;
    margin: 0 0 24px !important;
    padding: 0 !important;
    color: #FFFFFF !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
}


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

#eygs-custom-footer .eygs-footer-contact {
    display: grid;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    font-style: normal;
}

#eygs-custom-footer .eygs-footer-contact-row {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
}

#eygs-custom-footer .eygs-footer-contact-label {
    padding-top: 3px;
    color: #FFFFFF;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.45;
    text-transform: uppercase;
}

#eygs-custom-footer .eygs-footer-contact-value,
#eygs-custom-footer .eygs-footer-contact-value a {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.55 !important;
    text-decoration: none !important;
}

#eygs-custom-footer .eygs-footer-contact-value a:hover,
#eygs-custom-footer .eygs-footer-contact-value a:focus {
    color: #CCBA78 !important;
    text-decoration: underline !important;
    outline: none !important;
}


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

#eygs-custom-footer .eygs-footer-heading {
    margin: 0 0 18px !important;
    padding: 0 0 11px !important;
    border-bottom: 1px solid rgba(199, 165, 128, 0.58);
    color: #ffffff !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

#eygs-custom-footer .eygs-footer-links {
    display: grid;
    gap: 12px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

#eygs-custom-footer .eygs-footer-links li {
    margin: 0 !important;
    padding: 0 !important;
}

#eygs-custom-footer .eygs-footer-links a {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    color: #FFFFFF !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
    text-decoration: none !important;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

#eygs-custom-footer .eygs-footer-links a:hover,
#eygs-custom-footer .eygs-footer-links a:focus {
    color: #ffffff !important;
    transform: translateX(3px);
    text-decoration: none !important;
    outline: none !important;
}


/* ==================================================
   AFFILIATIONS AND COMPLIANCE
   ================================================== */

#eygs-custom-footer .eygs-footer-compliance {
    display: grid;
    margin-top: 48px;
    padding-top: 27px;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(0, 0.85fr)
        auto;
    gap: 36px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

#eygs-custom-footer .eygs-footer-affiliation {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 15px;
}

#eygs-custom-footer .eygs-footer-affiliation-logo {
    display: block;
    width: auto;
    flex: 0 0 auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.94;
}

#eygs-custom-footer .eygs-footer-exp-logo {
    max-width: 72px;
    max-height: 38px;
}

#eygs-custom-footer .eygs-footer-place-logo {
    max-width: 92px;
    max-height: 35px;
}

#eygs-custom-footer .eygs-affiliation-copy {
    min-width: 0;
}

#eygs-custom-footer .eygs-affiliation-label {
    display: block;
    margin: 0 0 3px !important;
    color: #7896B7;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

#eygs-custom-footer .eygs-affiliation-title {
    display: block;
    margin: 0 !important;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
}

#eygs-custom-footer .eygs-affiliation-detail {
    display: block;
    margin: 3px 0 0 !important;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;
}

#eygs-custom-footer .eygs-affiliation-detail a {
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

#eygs-custom-footer .eygs-affiliation-detail a:hover,
#eygs-custom-footer .eygs-affiliation-detail a:focus {
    color: #CCBA78 !important;
    text-decoration: underline !important;
    outline: none !important;
}


/* ==================================================
   EQUAL HOUSING
   ================================================== */

#eygs-custom-footer .eygs-equal-housing {
    display: flex;
    min-width: 150px;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
    color: #ffffff;
}

#eygs-custom-footer .eygs-equal-housing svg {
    display: block;
    flex: 0 0 auto;
}

#eygs-custom-footer .eygs-equal-housing span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.4;
    text-transform: uppercase;
}


/* ==================================================
   DISCLAIMER AND COPYRIGHT
   ================================================== */

#eygs-custom-footer .eygs-footer-disclaimer {
    margin: 23px 0 0 !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
}

#eygs-custom-footer .eygs-footer-bottom {
    display: flex;
    margin-top: 22px;
    padding-top: 18px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

#eygs-custom-footer .eygs-footer-bottom p {
    margin: 0 !important;
    padding: 0 !important;
    color: #7896B7 !important;
    font-size: 10px !important;
    line-height: 1.55 !important;
}

#eygs-custom-footer .eygs-footer-domain {
    color: #FFFFFF !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
}

#eygs-custom-footer .eygs-footer-domain:hover,
#eygs-custom-footer .eygs-footer-domain:focus {
    color: #CCBA78 !important;
    text-decoration: none !important;
    outline: none !important;
}


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

@media (max-width: 1100px) {
    #eygs-custom-footer .eygs-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }

    #eygs-custom-footer .eygs-footer-identity {
        grid-column: 1 / -1;
    }

    #eygs-custom-footer .eygs-footer-team-name {
        font-size: 28px !important;
        white-space: nowrap;
    }

    #eygs-custom-footer .eygs-footer-compliance {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #eygs-custom-footer .eygs-equal-housing {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}


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

@media (max-width: 650px) {
    #eygs-custom-footer .eygs-footer-main {
        padding: 46px 18px 23px;
    }

    #eygs-custom-footer .eygs-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    #eygs-custom-footer .eygs-footer-identity {
        grid-column: auto;
    }

    #eygs-custom-footer .eygs-footer-logo-link {
        width: 130px;
        height: 130px;
        margin-bottom: 23px !important;
        border-width: 3px;
    }

    #eygs-custom-footer .eygs-footer-team-logo {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
    }

    #eygs-custom-footer .eygs-footer-team-name {
        max-width: 430px;
        font-size: 28px !important;
        line-height: 1.08 !important;
        white-space: normal;
    }

    #eygs-custom-footer .eygs-footer-description {
        font-size: 13px !important;
    }

    #eygs-custom-footer .eygs-footer-contact-row {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    #eygs-custom-footer .eygs-footer-compliance {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    #eygs-custom-footer .eygs-footer-affiliation {
        align-items: flex-start;
    }

    #eygs-custom-footer .eygs-equal-housing {
        grid-column: auto;
        justify-content: flex-start;
    }

    #eygs-custom-footer .eygs-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #eygs-custom-footer .eygs-footer-links a {
        transition: none;
    }
}
/* ==========================================
   MOBILE HEADER AND MENU FIX
   ========================================== */

@media (max-width: 1040px) {

    #eygs-site-header .eygs-header-main-inner {
        grid-template-columns: minmax(0, 1fr) auto auto !important;
        align-items: center !important;
        gap: 10px !important;
    }

    #eygs-site-header .eygs-header-brand {
        min-width: 0 !important;
    }

    #eygs-site-header .eygs-header-exp-logo {
        display: block !important;
        width: 64px !important;
        max-width: 64px !important;
        height: auto !important;
        max-height: 36px !important;
        margin: 0 !important;
        justify-self: end !important;
        object-fit: contain !important;
    }

    #eygs-site-header .eygs-mobile-toggle {
        grid-column: auto !important;
        grid-row: auto !important;
        justify-self: end !important;
        margin: 0 !important;
    }

    #eygs-site-header .eygs-mobile-menu.is-open {
        display: block !important;
        max-height: calc(100vh - 140px);
        max-height: calc(100dvh - 140px);
        overflow-y: auto !important;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }
}

@media (max-width: 700px) {

    #eygs-site-header .eygs-header-main-inner {
        grid-template-columns: minmax(0, 1fr) 54px 44px !important;
        min-height: 78px !important;
        padding: 9px 13px !important;
        gap: 8px !important;
    }

    #eygs-site-header .eygs-header-brand {
        gap: 8px !important;
    }

    #eygs-site-header .eygs-header-team-logo {
        width: 48px !important;
        height: 48px !important;
        flex: 0 0 48px !important;
    }

    #eygs-site-header .eygs-header-team-name {
        max-width: none !important;
        font-size: 13px !important;
        line-height: 1.08 !important;
        white-space: normal !important;
    }

    #eygs-site-header .eygs-header-tagline {
        display: none !important;
    }

    #eygs-site-header .eygs-header-exp-logo {
        width: 54px !important;
        max-width: 54px !important;
        max-height: 32px !important;
    }

    #eygs-site-header .eygs-mobile-toggle {
        width: 44px !important;
        height: 44px !important;
    }

    #eygs-site-header .eygs-mobile-menu.is-open {
        max-height: calc(100vh - 115px);
        max-height: calc(100dvh - 115px);
    }
}

@media (max-width: 390px) {

    #eygs-site-header .eygs-header-main-inner {
        grid-template-columns: minmax(0, 1fr) 48px 42px !important;
        gap: 6px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    #eygs-site-header .eygs-header-team-logo {
        width: 44px !important;
        height: 44px !important;
        flex-basis: 44px !important;
    }

    #eygs-site-header .eygs-header-team-name {
        font-size: 12px !important;
    }

    #eygs-site-header .eygs-header-exp-logo {
        width: 48px !important;
        max-width: 48px !important;
    }

    #eygs-site-header .eygs-mobile-toggle {
        width: 42px !important;
        height: 42px !important;
    }
}
