:root{
    --wi-ink:#1f2f2b;
    --wi-ink-soft:#4e625b;
    --wi-deep:#24483e;
    --wi-deep-2:#18332c;
    --wi-mint:#edf6f2;
    --wi-mist:#f7faf8;
    --wi-paper:#ffffff;
    --wi-line:rgba(36,72,62,.16);
    --wi-gold:#c79a4b;
    --wi-shadow:0 18px 48px rgba(18,38,32,.14);
    --wi-radius:22px;
  }

  html{scroll-behavior:smooth;}
  body{
    margin:0;
    padding-top:92px;
    background:var(--wi-mist);
    color:var(--wi-ink);
  }

  /* Keeps the original page body intact while replacing the GoDaddy shell UI. */
  .widget-header,
  .widget-footer{
    display:none !important;
  }

  .wi-skip-link{
    position:fixed;
    top:10px;
    left:10px;
    z-index:100000;
    transform:translateY(-140%);
    background:var(--wi-deep);
    color:#fff;
    padding:10px 14px;
    border-radius:999px;
    font:700 14px/1.2 "Source Sans Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-decoration:none;
  }
  .wi-skip-link:focus{transform:translateY(0);outline:3px solid rgba(199,154,75,.45);}

  .wi-site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:99990;
    padding:14px clamp(14px,3vw,34px);
    background:linear-gradient(180deg,rgba(247,250,248,.92),rgba(247,250,248,.76));
    border-bottom:1px solid rgba(36,72,62,.12);
    backdrop-filter:blur(20px) saturate(135%);
    -webkit-backdrop-filter:blur(20px) saturate(135%);
  }
  .wi-site-header::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(199,154,75,.55),transparent);
    pointer-events:none;
  }
  .wi-nav-wrap{
    max-width:1180px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
  }
  .wi-brand{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--wi-deep);
    text-decoration:none;
    min-width:max-content;
  }
  .wi-brand-mark{
    width:42px;
    height:42px;
    border-radius:15px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,var(--wi-deep),#315f52);
    color:#fff;
    box-shadow:0 12px 24px rgba(36,72,62,.22);
    font:700 18px/1 "Playfair Display", Georgia, serif;
    letter-spacing:.02em;
  }
  .wi-brand-text{
    display:grid;
    gap:1px;
  }
  .wi-brand-name{
    font:700 22px/1 "Playfair Display", Georgia, serif;
    letter-spacing:.01em;
  }
  .wi-brand-sub{
    font:700 11px/1.2 "Source Sans Pro", system-ui, sans-serif;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--wi-ink-soft);
  }
  .wi-nav-toggle{display:none;}
  .wi-nav-button{
    display:none;
    width:44px;
    height:44px;
    border:1px solid var(--wi-line);
    border-radius:14px;
    background:rgba(255,255,255,.72);
    box-shadow:0 10px 24px rgba(18,38,32,.08);
    cursor:pointer;
  }
  .wi-nav-button span,
  .wi-nav-button span::before,
  .wi-nav-button span::after{
    display:block;
    width:18px;
    height:2px;
    margin:0 auto;
    background:var(--wi-deep);
    border-radius:99px;
    content:"";
    transition:transform .22s ease, opacity .22s ease;
  }
  .wi-nav-button span::before{transform:translateY(-7px);}
  .wi-nav-button span::after{transform:translateY(5px);}

  .wi-nav-menu{
    display:flex;
    align-items:center;
    gap:4px;
    list-style:none;
    margin:0;
    padding:0;
  }
  .wi-nav-menu a,
  .wi-nav-menu button{
    font:700 14px/1.2 "Source Sans Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color:var(--wi-ink);
    text-decoration:none;
  }
  .wi-nav-link,
  .wi-nav-parent{
    min-height:44px;
    display:flex;
    align-items:center;
    gap:7px;
    padding:0 12px;
    border-radius:999px;
    border:0;
    background:transparent;
    cursor:pointer;
    transition:background .18s ease, color .18s ease, transform .18s ease;
  }
  .wi-nav-link:hover,
  .wi-nav-parent:hover,
  .wi-nav-link:focus-visible,
  .wi-nav-parent:focus-visible{
    color:var(--wi-deep);
    background:rgba(36,72,62,.08);
    outline:none;
  }
  .wi-nav-parent::after{
    content:"";
    width:7px;
    height:7px;
    border-right:2px solid currentColor;
    border-bottom:2px solid currentColor;
    transform:rotate(45deg) translateY(-2px);
    opacity:.7;
  }
  .wi-nav-item{position:relative;}
  .wi-mega{
    position:absolute;
    top:calc(100% + 12px);
    left:50%;
    width:min(720px,calc(100vw - 36px));
    transform:translateX(-50%) translateY(8px);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
    padding:14px;
    border:1px solid rgba(36,72,62,.13);
    border-radius:24px;
    background:rgba(255,255,255,.96);
    box-shadow:var(--wi-shadow);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }
  .wi-nav-item:hover .wi-mega,
  .wi-nav-item:focus-within .wi-mega{
    opacity:1;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0);
  }
  .wi-mega-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .wi-mega a{
    display:block;
    padding:12px;
    border-radius:16px;
    color:var(--wi-ink);
    background:transparent;
    transition:background .16s ease, transform .16s ease;
  }
  .wi-mega a:hover,
  .wi-mega a:focus-visible{
    background:var(--wi-mint);
    transform:translateY(-1px);
    outline:none;
  }
  .wi-mega strong{
    display:block;
    font:700 14px/1.2 "Source Sans Pro", system-ui, sans-serif;
    color:var(--wi-deep);
  }
  .wi-mega span{
    display:block;
    margin-top:4px;
    font:400 13px/1.35 "Source Sans Pro", system-ui, sans-serif;
    color:var(--wi-ink-soft);
  }
  .wi-nav-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 18px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--wi-deep),#315f52);
    color:#fff !important;
    box-shadow:0 14px 30px rgba(36,72,62,.22);
    transition:transform .18s ease, box-shadow .18s ease;
  }
  .wi-nav-cta:hover,
  .wi-nav-cta:focus-visible{
    transform:translateY(-1px);
    box-shadow:0 18px 36px rgba(36,72,62,.28);
    outline:none;
  }

  .wi-site-footer{
    position:relative;
    isolation:isolate;
    margin-top:0;
    padding:64px clamp(18px,4vw,44px) 34px;
    background:linear-gradient(135deg,var(--wi-deep-2),var(--wi-deep));
    color:rgba(255,255,255,.88);
    font-family:"Source Sans Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
  .wi-site-footer::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background:
      radial-gradient(circle at 15% 20%,rgba(199,154,75,.22),transparent 30%),
      radial-gradient(circle at 85% 15%,rgba(237,246,242,.12),transparent 28%);
  }
  .wi-footer-wrap{
    max-width:1180px;
    margin:0 auto;
  }
  .wi-footer-top{
    display:grid;
    grid-template-columns:1.15fr .85fr .85fr .85fr;
    gap:34px;
  }
  .wi-footer-title{
    margin:0 0 12px;
    font:700 clamp(28px,4vw,42px)/1.05 "Playfair Display", Georgia, serif;
    color:#fff;
  }
  .wi-footer-text{
    margin:0;
    max-width:520px;
    font-size:16px;
    line-height:1.6;
    color:rgba(255,255,255,.78);
  }
  .wi-footer-column h2{
    margin:0 0 14px;
    font:700 13px/1.2 "Source Sans Pro", system-ui, sans-serif;
    text-transform:uppercase;
    letter-spacing:.14em;
    color:rgba(255,255,255,.62);
  }
  .wi-footer-column ul{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:10px;
  }
  .wi-footer-column a{
    color:rgba(255,255,255,.86);
    text-decoration:none;
    font-weight:700;
  }
  .wi-footer-column a:hover,
  .wi-footer-column a:focus-visible{
    color:#fff;
    text-decoration:underline;
    text-underline-offset:4px;
    outline:none;
  }
  .wi-footer-cta-row{
    margin-top:24px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
  }
  .wi-footer-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 18px;
    border-radius:999px;
    background:#fff;
    color:var(--wi-deep) !important;
    text-decoration:none;
    font-weight:800;
  }
  .wi-footer-button.secondary{
    background:rgba(255,255,255,.1);
    color:#fff !important;
    border:1px solid rgba(255,255,255,.2);
  }
  .wi-footer-bottom{
    margin-top:42px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.14);
    display:flex;
    justify-content:space-between;
    gap:18px;
    flex-wrap:wrap;
    font-size:13px;
    color:rgba(255,255,255,.66);
  }

  .wi-floating-cta{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:99991;
    display:flex;
    align-items:center;
    gap:9px;
    min-height:42px;
    padding:8px 12px 8px 10px;
    border-radius:999px;
    background:rgba(36,72,62,.95);
    color:#fff !important;
    text-decoration:none;
    font:800 13px/1.1 "Source Sans Pro", system-ui, sans-serif;
    box-shadow:0 16px 34px rgba(18,38,32,.22);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    transition:transform .18s ease, box-shadow .18s ease;
  }
  .wi-floating-cta:hover,
  .wi-floating-cta:focus-visible{
    transform:translateY(-2px);
    box-shadow:0 20px 40px rgba(18,38,32,.28);
    outline:3px solid rgba(199,154,75,.35);
  }
  .wi-floating-dot{
    width:26px;
    height:26px;
    border-radius:999px;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.14);
    color:#fff;
    font-size:15px;
  }

  @media (prefers-reduced-motion:reduce){
    *,*::before,*::after{scroll-behavior:auto !important;transition:none !important;animation:none !important;}
  }

  @media (max-width:980px){
    body{padding-top:78px;}
    .wi-site-header{padding:12px 14px;}
    .wi-nav-button{display:grid;place-items:center;}
    .wi-nav-menu{
      position:fixed;
      top:68px;
      left:12px;
      right:12px;
      max-height:calc(100dvh - 92px);
      overflow:auto;
      display:grid;
      align-items:stretch;
      gap:8px;
      padding:14px;
      border:1px solid var(--wi-line);
      border-radius:24px;
      background:rgba(255,255,255,.98);
      box-shadow:var(--wi-shadow);
      transform:translateY(-10px);
      opacity:0;
      pointer-events:none;
      transition:opacity .2s ease, transform .2s ease;
    }
    .wi-nav-toggle:checked ~ .wi-nav-menu{
      opacity:1;
      pointer-events:auto;
      transform:translateY(0);
    }
    .wi-nav-toggle:checked + .wi-nav-button span{background:transparent;}
    .wi-nav-toggle:checked + .wi-nav-button span::before{transform:translateY(0) rotate(45deg);}
    .wi-nav-toggle:checked + .wi-nav-button span::after{transform:translateY(-2px) rotate(-45deg);}
    .wi-nav-link,
    .wi-nav-parent,
    .wi-nav-cta{
      width:100%;
      justify-content:space-between;
      border-radius:16px;
      min-height:48px;
      padding:0 14px;
      box-sizing:border-box;
    }
    .wi-mega{
      position:static;
      width:auto;
      transform:none;
      opacity:1;
      pointer-events:auto;
      margin:4px 0 6px;
      padding:8px;
      box-shadow:none;
      border-radius:18px;
      background:var(--wi-mist);
      display:none;
    }
    .wi-nav-item:focus-within .wi-mega,
    .wi-nav-item:hover .wi-mega{display:block;transform:none;}
    .wi-mega-grid{grid-template-columns:1fr;}
    .wi-footer-top{grid-template-columns:1fr 1fr;}
  }

  @media (max-width:640px){
    .wi-brand-mark{width:38px;height:38px;border-radius:13px;}
    .wi-brand-name{font-size:20px;}
    .wi-brand-sub{font-size:10px;letter-spacing:.1em;}
    .wi-footer-top{grid-template-columns:1fr;}
    .wi-floating-cta{
      left:16px;
      right:16px;
      bottom:12px;
      justify-content:center;
    }
    .wi-site-footer{padding-bottom:84px;}
  }


  .wi-brand-logo{
    width:50px;
    height:50px;
    border-radius:16px;
    object-fit:cover;
    display:block;
    box-shadow:0 12px 24px rgba(36,72,62,.18);
    background:#fff;
  }
  @media (max-width:720px){
    .wi-brand-logo{width:44px;height:44px;border-radius:14px;}
  }


  /* Compact universal footer update */
  .wi-site-footer{
    position:relative;
    isolation:isolate;
    margin-top:0;
    padding:24px clamp(18px,4vw,44px) 18px;
    background:linear-gradient(135deg,var(--wi-deep-2),var(--wi-deep));
    color:rgba(255,255,255,.88);
    font-family:"Source Sans Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
  .wi-site-footer::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background:radial-gradient(circle at 15% 20%,rgba(199,154,75,.16),transparent 30%);
  }
  .wi-footer-wrap{
    max-width:1180px;
    margin:0 auto;
  }
  .wi-footer-compact{
    display:grid;
    gap:14px;
    align-items:center;
  }
  .wi-footer-brand{
    text-align:center;
    display:grid;
    gap:5px;
  }
  .wi-footer-brand strong{
    color:#fff;
    font:800 18px/1.1 "Source Sans Pro", system-ui, sans-serif;
  }
  .wi-footer-brand span{
    color:rgba(255,255,255,.70);
    font-size:12.5px;
    line-height:1.35;
  }
  .wi-footer-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px 16px;
  }
  .wi-footer-links a{
    color:rgba(255,255,255,.88);
    text-decoration:none;
    font-weight:800;
    font-size:13px;
  }
  .wi-footer-links a:hover,
  .wi-footer-links a:focus-visible{
    color:#fff;
    text-decoration:underline;
    text-underline-offset:4px;
    outline:none;
  }
  .wi-footer-description{
    max-width:960px;
    margin:0 auto;
    text-align:center;
    color:rgba(255,255,255,.68);
    font-size:12px;
    line-height:1.38;
  }
  .wi-footer-contact{
    text-align:center;
    color:rgba(255,255,255,.78);
    font-size:12.5px;
    line-height:1.35;
  }
  .wi-footer-contact a{
    color:#fff;
    font-weight:800;
    text-decoration:none;
  }
  .wi-footer-contact a:hover,
  .wi-footer-contact a:focus-visible{
    text-decoration:underline;
    text-underline-offset:4px;
    outline:none;
  }
  .wi-footer-bottom{
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,.12);
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    font-size:11.5px;
    color:rgba(255,255,255,.56);
    text-align:center;
  }
  @media(max-width:760px){
    .wi-footer-links{gap:9px 12px;}
    .wi-footer-links a{font-size:12.5px;}
    .wi-footer-description{font-size:11.5px;}
  }

/*
   * Shared Javier-style presentation layer.
   * This final cascade standardizes the transferred drafts without changing
   * their clinical or legal content.
   */
  :root{
    --wi-ink:#1f2f2b;
    --wi-muted:#536760;
    --wi-deep:#24483e;
    --wi-deep-2:#18352f;
    --wi-sage:#dcebe5;
    --wi-mint:#edf6f2;
    --wi-paper:#ffffff;
    --wi-bg:#f7faf8;
    --wi-gold:#c79a4b;
    --wi-line:rgba(36,72,62,.15);
    --wi-shadow-sm:0 8px 24px rgba(18,38,32,.09);
    --wi-shadow:0 18px 48px rgba(18,38,32,.14);
    --wi-radius-sm:14px;
    --wi-radius:22px;
    --wi-radius-lg:30px;
    --wi-content:min(1120px,calc(100% - 32px));
  }

  html{scroll-behavior:smooth;}
  body{
    margin:0 !important;
    padding-top:0 !important;
    background:var(--wi-bg) !important;
    color:var(--wi-ink) !important;
    font-family:"Source Sans 3","Source Sans Pro",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif !important;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
  }
  *,*::before,*::after{box-sizing:border-box;}
  img{max-width:100%;height:auto;}
  section,[id]{scroll-margin-top:112px;}

  .wi-skip-link{
    position:fixed !important;
    top:10px !important;
    left:10px !important;
    z-index:100000 !important;
    transform:translateY(-150%);
    background:var(--wi-deep) !important;
    color:#fff !important;
    padding:10px 15px !important;
    border-radius:999px !important;
    font-weight:800 !important;
    text-decoration:none !important;
  }
  .wi-skip-link:focus{transform:translateY(0);}

  .wi-site-header{
    position:sticky !important;
    inset:0 0 auto 0 !important;
    z-index:9990 !important;
    padding:12px clamp(12px,3vw,30px) !important;
    background:rgba(247,250,248,.88) !important;
    border-bottom:1px solid var(--wi-line) !important;
    box-shadow:0 6px 24px rgba(18,38,32,.06) !important;
    backdrop-filter:blur(18px) saturate(135%);
    -webkit-backdrop-filter:blur(18px) saturate(135%);
  }
  .wi-site-header::after{display:none !important;}
  .wi-nav-wrap{
    width:min(1180px,100%) !important;
    min-height:58px !important;
    margin:0 auto !important;
    padding:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:18px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
  }
  .wi-brand{
    display:flex !important;
    align-items:center !important;
    gap:11px !important;
    color:var(--wi-deep) !important;
    text-decoration:none !important;
  }
  .wi-brand-mark,.wi-brand-logo,.wi-brand img{
    width:44px !important;
    height:44px !important;
    flex:0 0 44px !important;
    border-radius:15px !important;
    object-fit:cover !important;
    box-shadow:var(--wi-shadow-sm) !important;
  }
  .wi-brand-name{
    font-family:"Playfair Display",Georgia,serif !important;
    font-size:1.06rem !important;
    font-weight:800 !important;
    line-height:1.05 !important;
  }
  .wi-brand-sub{
    margin-top:3px !important;
    color:var(--wi-muted) !important;
    font-size:.7rem !important;
    font-weight:700 !important;
    letter-spacing:.035em !important;
  }
  .wi-nav-menu{gap:4px !important;}
  .wi-nav-item>a,.wi-nav-parent{
    border-radius:999px !important;
    color:var(--wi-ink) !important;
    font-family:"Source Sans 3","Source Sans Pro",sans-serif !important;
    font-size:.88rem !important;
    font-weight:750 !important;
    text-decoration:none !important;
  }
  .wi-nav-item>a:hover,.wi-nav-parent:hover{
    background:var(--wi-mint) !important;
    color:var(--wi-deep) !important;
  }
  .wi-nav-cta{
    border-radius:999px !important;
    background:var(--wi-deep) !important;
    color:#fff !important;
    box-shadow:0 10px 26px rgba(36,72,62,.2) !important;
  }

  #main-content{
    min-height:55vh;
    overflow:clip;
  }
  #main-content h1,#main-content h2,#main-content h3,#main-content h4{
    color:var(--wi-deep);
    font-family:"Playfair Display",Georgia,serif;
    text-wrap:balance;
  }
  #main-content h1{line-height:1.08;}
  #main-content h2{line-height:1.16;}
  #main-content p,#main-content li{
    color:inherit;
    line-height:1.68;
  }
  #main-content a:not(.wi-btn):not(.wi-nav-cta):not(.wi-floating-cta){
    text-underline-offset:.18em;
    text-decoration-thickness:.08em;
  }
  #main-content img{
    border-radius:var(--wi-radius);
  }
  #main-content button,
  #main-content .wi-btn,
  #main-content a[class*="button"],
  #main-content .wi-section-link{
    min-height:44px;
    border-radius:999px !important;
    font-family:"Source Sans 3","Source Sans Pro",sans-serif !important;
    font-weight:800 !important;
  }
  #main-content .wi-section-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 15px;
    border:1px solid var(--wi-line);
    background:var(--wi-paper);
    color:var(--wi-deep);
    box-shadow:0 6px 18px rgba(18,38,32,.06);
    text-decoration:none !important;
  }
  #main-content .wi-section-link:hover{
    border-color:rgba(36,72,62,.28);
    background:var(--wi-mint);
    transform:translateY(-1px);
  }
  #main-content .wi-card,
  #main-content .wi-panel,
  #main-content .wi-feature,
  #main-content .wi-faq-item,
  #main-content details{
    border:1px solid var(--wi-line) !important;
    border-radius:var(--wi-radius) !important;
    box-shadow:var(--wi-shadow-sm);
  }

  .wi-site-footer{
    position:relative !important;
    margin-top:0 !important;
    padding:34px 20px 90px !important;
    background:var(--wi-deep-2) !important;
    color:rgba(255,255,255,.88) !important;
    border:0 !important;
    box-shadow:none !important;
  }
  .wi-site-footer::before{display:none !important;}
  .wi-footer-wrap,.wi-footer-inner{
    width:min(1120px,100%) !important;
    margin:0 auto !important;
    text-align:center !important;
  }
  .wi-footer-links{
    display:flex !important;
    flex-wrap:wrap !important;
    justify-content:center !important;
    gap:10px 20px !important;
    margin-bottom:16px !important;
  }
  .wi-footer-links a{
    color:#fff !important;
    font-size:.86rem !important;
    font-weight:750 !important;
    text-decoration:none !important;
  }
  .wi-footer-links a:hover{text-decoration:underline !important;}
  .wi-footer-description{
    max-width:900px !important;
    margin:0 auto 12px !important;
    color:rgba(255,255,255,.68) !important;
    font-size:.76rem !important;
    line-height:1.55 !important;
    text-align:center !important;
  }
  .wi-footer-contact{
    margin-bottom:10px !important;
    color:rgba(255,255,255,.82) !important;
    font-size:.82rem !important;
    text-align:center !important;
  }
  .wi-footer-contact a{color:#fff !important;}
  .wi-footer-bottom,.wi-footer-copyright{
    color:rgba(255,255,255,.52) !important;
    font-size:.72rem !important;
    text-align:center !important;
  }

  .wi-floating-cta{
    position:fixed !important;
    right:18px !important;
    bottom:18px !important;
    z-index:9980 !important;
    display:inline-flex !important;
    align-items:center !important;
    gap:8px !important;
    min-height:46px !important;
    padding:11px 16px !important;
    border:1px solid rgba(255,255,255,.24) !important;
    border-radius:999px !important;
    background:var(--wi-deep) !important;
    color:#fff !important;
    box-shadow:0 16px 36px rgba(18,38,32,.28) !important;
    font-family:"Source Sans 3","Source Sans Pro",sans-serif !important;
    font-size:.84rem !important;
    font-weight:850 !important;
    text-decoration:none !important;
    transition:transform .18s ease,box-shadow .18s ease !important;
  }
  .wi-floating-cta:hover,.wi-floating-cta:focus-visible{
    transform:translateY(-2px) !important;
    box-shadow:0 20px 42px rgba(18,38,32,.32) !important;
  }
  .wi-floating-dot{
    display:inline-grid !important;
    width:22px !important;
    height:22px !important;
    place-items:center !important;
    border-radius:50% !important;
    background:rgba(255,255,255,.14) !important;
  }

  :where(a,button,input,select,textarea,summary):focus-visible{
    outline:3px solid rgba(199,154,75,.72) !important;
    outline-offset:3px !important;
  }
  .widget-header,.widget-footer,.widget-cookie-banner,
  .widget-messaging,.widget-popup,.widget-trustedsite{
    display:none !important;
  }

  @media(max-width:920px){
    .wi-site-header{padding:10px 12px !important;}
    .wi-brand-sub{display:none !important;}
    .wi-nav-menu{
      border:1px solid var(--wi-line) !important;
      border-radius:var(--wi-radius) !important;
      background:rgba(255,255,255,.98) !important;
      box-shadow:var(--wi-shadow) !important;
    }
  }
  @media(max-width:560px){
    .wi-brand-mark,.wi-brand-logo,.wi-brand img{
      width:40px !important;height:40px !important;flex-basis:40px !important;
    }
    .wi-brand-name{font-size:.98rem !important;}
    .wi-floating-cta{
      right:10px !important;
      bottom:10px !important;
      min-height:44px !important;
      padding:10px 13px !important;
      font-size:.8rem !important;
    }
    .wi-site-footer{padding-bottom:82px !important;}
  }
  @media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto;}
    *,*::before,*::after{
      animation-duration:.01ms !important;
      animation-iteration-count:1 !important;
      transition-duration:.01ms !important;
    }
  }
