@charset "UTF-8";
/* PAGE-SPECIFIC STYLES FOR THE CONTACT PAGE */
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Pills use the same vivid blue treatment as .cs-button-solid (root.scss) */
@media only screen and (min-width: 0rem) {
  :root {
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.9375rem, 4.5vw, 3.0625rem);
    --sectionPadding: clamp(3.75em, 7.82vw, 6.25em) 1rem;
  }
  .cs-contact {
    padding: var(--sectionPadding);
    font-family: "Roboto", "Arial", sans-serif;
    /* SEO + “wow” strip — numbers live here, not on pills */
  }
  .cs-contact .cs-container {
    margin: auto;
    max-width: 75rem;
    width: 100%;
  }
  .cs-contact .cs-content {
    width: 100%;
    margin-bottom: clamp(1.25rem, 4vw, 2rem);
  }
  .cs-contact .cs-topper {
    margin-bottom: clamp(0.5rem, 1.4vw, 0.75rem);
    text-align: left;
  }
  .cs-contact .cs-title {
    max-width: 50rem;
    text-align: left;
  }
  .cs-contact .cs-text {
    margin: 0 auto 0 0;
    margin-top: clamp(0.75rem, 2vw, 1rem);
    max-width: clamp(25.25rem, 90vw, 40rem);
    text-align: left;
  }
  .cs-contact .cs-contact-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .cs-contact .cs-contact-pills > li {
    flex: 0 1 auto;
  }
  .cs-contact .cs-contact-pill {
    z-index: 1;
    position: relative;
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
    min-height: 2.75rem;
    padding: 0.45rem 0.85rem 0.45rem 0.55rem;
    border-radius: 9999px;
    text-decoration: none;
    font-size: clamp(0.875rem, 2.4vw, 0.9375rem);
    line-height: 1.35;
    font-weight: 700;
    color: var(--bodyTextColorWhite);
    text-align: left;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.32), 0 2px 8px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  .cs-contact .cs-contact-pill::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
  }
  .cs-contact .cs-contact-pill::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .cs-contact .cs-contact-pill:hover, .cs-contact .cs-contact-pill:focus-visible {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.42), 0 4px 12px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.22);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 32%, #2a8fd8 68%, var(--primaryLight) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--bodyTextColorWhite);
  }
  .cs-contact .cs-contact-pill:hover::before, .cs-contact .cs-contact-pill:focus-visible::before {
    left: 100%;
  }
  .cs-contact .cs-contact-pill:hover::after, .cs-contact .cs-contact-pill:focus-visible::after {
    opacity: 1;
  }
  .cs-contact .cs-contact-pill:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
  }
  .cs-contact .cs-contact-pill:active {
    transform: translateY(0) scale(0.99);
  }
  .cs-contact .cs-contact-pill__icon,
  .cs-contact .cs-contact-pill__body,
  .cs-contact .cs-contact-pill__chevron {
    position: relative;
    z-index: 2;
  }
  .cs-contact .cs-contact-pill__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  .cs-contact .cs-contact-pill__icon img {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
  }
  .cs-contact .cs-contact-pill__body {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    min-width: 0;
  }
  .cs-contact .cs-contact-pill__label {
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: clamp(0.8125rem, 2.2vw, 0.875rem);
    font-weight: 800;
    opacity: 0.98;
  }
  .cs-contact .cs-contact-pill__chevron {
    flex-shrink: 0;
    margin-left: auto;
    padding-right: 0.05rem;
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1;
    opacity: 0.92;
  }
  .cs-contact .cs-contact-strip {
    margin-top: clamp(2.25rem, 5.5vw, 3.5rem);
    padding: clamp(1.35rem, 4vw, 1.85rem) clamp(1.15rem, 3vw, 1.75rem);
    border-radius: 0.875rem;
    border-left: 4px solid var(--primaryLight);
    background: linear-gradient(115deg, rgba(25, 121, 191, 0.1) 0%, rgba(25, 121, 191, 0.04) 42%, rgba(30, 36, 60, 0.04) 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset, 0 12px 40px rgba(30, 36, 60, 0.08);
  }
  .cs-contact .cs-contact-strip__eyebrow {
    margin: 0 0 0.5rem 0;
    font-size: clamp(0.6875rem, 1.5vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primaryLight);
  }
  .cs-contact .cs-contact-strip__title {
    margin: 0 0 0.85rem 0;
    font-size: clamp(1.125rem, 2.8vw, 1.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--headerColor);
    max-width: 38rem;
  }
  .cs-contact .cs-contact-strip__lead {
    margin: 0 0 1.1rem 0;
    max-width: 42rem;
    font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
    line-height: 1.65;
    color: var(--bodyTextColor);
  }
  .cs-contact .cs-contact-strip__channels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin: 0 0 0.65rem 0;
    font-size: clamp(0.9375rem, 2.2vw, 1rem);
    font-weight: 600;
    color: var(--headerColor);
  }
  .cs-contact .cs-contact-strip__channels-label {
    margin-right: 0.25rem;
    font-size: 0.8125em;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
  }
  .cs-contact .cs-contact-strip__channels a {
    color: var(--primaryLight);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .cs-contact .cs-contact-strip__channels a:hover, .cs-contact .cs-contact-strip__channels a:focus-visible {
    color: var(--primary-alt);
    border-bottom-color: currentColor;
  }
  .cs-contact .cs-contact-strip__dot {
    color: var(--grey);
    font-weight: 400;
    user-select: none;
  }
  .cs-contact .cs-contact-strip__address {
    margin: 0;
    font-size: clamp(0.8125rem, 2vw, 0.9375rem);
    line-height: 1.5;
  }
  .cs-contact .cs-contact-strip__address a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(71, 85, 105, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .cs-contact .cs-contact-strip__address a:hover, .cs-contact .cs-contact-strip__address a:focus-visible {
    color: var(--primaryLight);
    border-bottom-color: var(--primaryLight);
  }
  .cs-contact.cs-contact--embed {
    border-top: 1px solid rgba(30, 36, 60, 0.09);
    background: linear-gradient(180deg, rgba(245, 247, 250, 0.9) 0%, #fff 45%);
    text-align: center;
  }
  .cs-contact.cs-contact--embed .cs-content {
    margin-left: auto;
    margin-right: auto;
  }
  .cs-contact.cs-contact--embed .cs-topper,
  .cs-contact.cs-contact--embed .cs-title,
  .cs-contact.cs-contact--embed .cs-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .cs-contact.cs-contact--embed .cs-contact-pills {
    justify-content: center;
  }
}
@media only screen and (min-width: 0rem) {
  body.dark-mode .cs-contact .cs-topper {
    color: #7ec8f5;
  }
  body.dark-mode .cs-contact .cs-text,
  body.dark-mode .cs-contact .cs-title {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode .cs-contact .cs-contact-strip {
    background: linear-gradient(115deg, rgba(25, 121, 191, 0.18) 0%, rgba(255, 255, 255, 0.06) 55%, rgba(15, 23, 42, 0.5) 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 12px 36px rgba(0, 0, 0, 0.35);
  }
  body.dark-mode .cs-contact .cs-contact-strip__title,
  body.dark-mode .cs-contact .cs-contact-strip__channels {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode .cs-contact .cs-contact-strip__lead {
    color: rgba(250, 251, 252, 0.88);
  }
  body.dark-mode .cs-contact .cs-contact-strip__channels-label {
    color: rgba(250, 251, 252, 0.65);
  }
  body.dark-mode .cs-contact .cs-contact-strip__channels a {
    color: #7ec8f5;
  }
  body.dark-mode .cs-contact .cs-contact-strip__channels a:hover, body.dark-mode .cs-contact .cs-contact-strip__channels a:focus-visible {
    color: #fff;
  }
  body.dark-mode .cs-contact .cs-contact-strip__dot {
    color: rgba(250, 251, 252, 0.45);
  }
  body.dark-mode .cs-contact .cs-contact-strip__address a {
    color: rgba(250, 251, 252, 0.75);
    border-bottom-color: rgba(250, 251, 252, 0.25);
  }
  body.dark-mode .cs-contact .cs-contact-strip__address a:hover, body.dark-mode .cs-contact .cs-contact-strip__address a:focus-visible {
    color: #7ec8f5;
    border-bottom-color: #7ec8f5;
  }
  body.dark-mode .cs-contact.cs-contact--embed {
    border-top-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.12) 100%);
  }
}

/*# sourceMappingURL=contact.css.map */
