.page-header,
.model-header,
.show-header,
.cp-header {
  display: none !important;
}
.gx-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
  transition: top .38s cubic-bezier(.22,.61,.36,1);
}
.gx-header.is-scrolled { top: 8px; }
.gx-header-shell {
  width: min(100% - 36px, 1520px);
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px 0 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(7,9,11,.48);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  pointer-events: auto;
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  transition: height .38s cubic-bezier(.22,.61,.36,1), background .38s cubic-bezier(.22,.61,.36,1), border-color .38s cubic-bezier(.22,.61,.36,1);
}
.gx-header.is-scrolled .gx-header-shell {
  height: 64px;
  background: rgba(7,9,11,.82);
  border-color: rgba(255,255,255,.11);
}
.site-header-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: auto;
  min-width: max-content;
  flex: 0 0 auto;
  color: #fff;
  text-decoration: none;
}
.site-header-brand-logo {
  display: block;
  width: auto !important;
  height: 38px !important;
  flex: 0 0 auto !important;
  max-width: none;
  object-fit: contain;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  transform: none;
  animation: none;
}
.site-header-brand-copy {
  display: flex;
  min-width: max-content;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}
.site-header-brand-copy strong {
  display: block;
  color: #fff;
  font-size: 15px !important;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.site-header-brand-copy small { display: none !important; }
.gx-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(22px,2vw,34px);
  margin-left: clamp(160px,18vw,260px);
  min-width: 0;
  flex: 0 1 auto;
}
.gx-nav a {
  position: relative;
  color: rgba(255,255,255,.78);
  font: 600 13px/1 Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: -.01em;
  padding: 10px 0 12px;
  white-space: nowrap;
  text-decoration: none;
  transition: color .28s cubic-bezier(.22,.61,.36,1);
}
.gx-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 18px;
  height: 1px;
  background: #d7dce2;
  opacity: 0;
  transform: translate(-50%,4px) scaleX(.45);
  transition: opacity .28s cubic-bezier(.22,.61,.36,1), transform .28s cubic-bezier(.22,.61,.36,1);
}
.gx-nav a:hover,
.gx-nav a.is-active { color: #fff; }
.gx-nav a:hover::after,
.gx-nav a:focus-visible::after,
.gx-nav a.is-active::after {
  opacity: .9;
  transform: translate(-50%,0) scaleX(1);
}
.gx-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  min-width: max-content;
  flex-shrink: 0;
}
.gx-search-btn,
.gx-menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color .28s cubic-bezier(.22,.61,.36,1), background .28s cubic-bezier(.22,.61,.36,1), transform .28s cubic-bezier(.22,.61,.36,1);
  flex: 0 0 auto;
}
.gx-search-btn:hover,
.gx-search-btn[aria-expanded="true"],
.gx-menu-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.08);
}
.gx-search-btn:focus-visible {
  outline: 2px solid rgba(255,255,255,.72);
  outline-offset: 3px;
}
.gx-search-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
}
.gx-appointment-btn {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: #f7f4ef;
  color: #070809 !important;
  -webkit-text-fill-color: #070809 !important;
  font: 650 13px/1 Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s cubic-bezier(.22,.61,.36,1);
}
.gx-appointment-btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.34); }
.gx-menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.gx-menu-btn span {
  width: 18px;
  height: 1px;
  background: #fff;
}
.gx-mega {
  position: absolute;
  left: var(--mega-left, 50%);
  right: auto;
  top: calc(100% + 10px);
  width: var(--mega-width, min(380px, calc(100vw - 32px)));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s cubic-bezier(.22,.61,.36,1), visibility .2s cubic-bezier(.22,.61,.36,1), transform .2s cubic-bezier(.22,.61,.36,1);
}
.gx-mega.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.gx-mega-shell {
  width: 100%;
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(12,14,16,.96);
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
}
.gx-mega-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 0;
  max-height: min(65vh, 520px);
  padding: 10px;
  position: relative;
  z-index: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.34) rgba(255,255,255,.06);
}
.gx-mega-panel.active { display: grid; }
.gx-mega-intro {
  display: none;
}
.gx-mega-visual a {
  color: #9aa5b1;
  font-size: 11px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.gx-mega-intro h3 {
  display: none;
}
.gx-mega-intro p {
  display: none;
}
.gx-mega-links {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
}
.gx-mega-links a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  color: #eef1f4;
  background: transparent;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: transform .2s cubic-bezier(.22,.61,.36,1), background .2s cubic-bezier(.22,.61,.36,1), color .2s cubic-bezier(.22,.61,.36,1);
}
.gx-mega-links a::after {
  content: "↗";
  color: #9aa5b1;
  font-size: 12px;
  transition: transform .2s cubic-bezier(.22,.61,.36,1), color .2s cubic-bezier(.22,.61,.36,1);
}
.gx-mega-links a:last-child { border-bottom-color: transparent; }
.gx-mega-links a:hover {
  transform: translateX(2px);
  color: #fff;
  background: rgba(255,255,255,.065);
}
.gx-mega-links a:hover::after {
  transform: translateX(2px);
  color: #fff;
}
.gx-mega-visual {
  display: none;
}
.gx-mega-visual strong {
  display: none;
}
.gx-mega-visual p {
  display: none;
}
.gx-overlay,
.gx-mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(2,3,4,.78);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: opacity .32s cubic-bezier(.22,.61,.36,1), visibility .32s cubic-bezier(.22,.61,.36,1);
}
.gx-overlay.open,
.gx-mobile-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.gx-modal {
  width: min(100% - 36px, 760px);
  margin: 110px auto 0;
  padding: 34px;
  border: 1px solid rgba(232,236,242,.14);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(21,25,31,.96), rgba(7,9,12,.96));
  box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.gx-close {
  float: right;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232,236,242,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.gx-modal h2 {
  margin: 14px 0 22px;
  color: #fff;
  font-size: clamp(30px,4vw,44px);
}
.gx-modal input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(232,236,242,.26);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  color: #fff;
  outline: none;
}
.gx-search-results,
.gx-appointment-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.gx-search-results a,
.gx-appointment-grid a {
  padding: 16px;
  border: 1px solid rgba(232,236,242,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: #fff;
  text-decoration: none;
}
.gx-site-search-overlay {
  z-index: 1260;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(92px, calc(env(safe-area-inset-top) + 92px)) 24px 24px;
  overflow: hidden;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.gx-site-search-panel {
  width: min(100%, 980px);
  max-height: min(74vh, 680px);
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid rgba(232,236,242,.16);
  border-radius: 6px 30px 6px 30px;
  background: linear-gradient(145deg, rgba(18,21,26,.98), rgba(5,6,8,.98));
  box-shadow: 0 42px 120px rgba(0,0,0,.58);
  transform: translateY(12px) scale(.985);
  opacity: 0;
  transition: transform .26s cubic-bezier(.22,.61,.36,1), opacity .26s cubic-bezier(.22,.61,.36,1);
  overflow: hidden;
}
.gx-site-search-overlay.open .gx-site-search-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.gx-site-search-bar {
  display: grid;
  grid-template-columns: 28px minmax(0,1fr) 44px;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border-bottom: 1px solid rgba(232,236,242,.12);
}
.gx-site-search-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dce3ea;
}
.gx-site-search-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
}
.gx-site-search-input {
  width: 100%;
  height: 60px;
  min-width: 0;
  border: 1px solid rgba(232,236,242,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #fff;
  padding: 0 20px;
  font: 500 17px/1.2 Inter, "Segoe UI", Arial, sans-serif;
  outline: none;
}
.gx-site-search-input::placeholder { color: rgba(220,227,234,.48); }
.gx-site-search-input:focus-visible {
  border-color: rgba(255,255,255,.42);
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
}
.gx-site-search-clear,
.gx-site-search-close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232,236,242,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: #fff;
  font: 400 22px/1 Inter, "Segoe UI", Arial, sans-serif;
  cursor: pointer;
}
.gx-site-search-clear:hover,
.gx-site-search-close:hover,
.gx-site-search-clear:focus-visible,
.gx-site-search-close:focus-visible {
  border-color: rgba(255,255,255,.34);
  background: rgba(255,255,255,.09);
  outline: none;
}
.gx-site-search-results {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: grid;
  align-content: start;
  gap: 0;
  padding: 8px 18px 18px;
}
.gx-site-search-result {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(232,236,242,.11);
  color: #fff;
  text-decoration: none;
}
.gx-site-search-result b {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}
.gx-site-search-result small {
  display: block;
  margin-top: 5px;
  color: rgba(220,227,234,.66);
  font-size: 13px;
  line-height: 1.35;
}
.gx-site-search-result em {
  flex: 0 0 auto;
  color: rgba(220,227,234,.62);
  font-style: normal;
}
.gx-site-search-result:hover,
.gx-site-search-result:focus-visible,
.gx-site-search-result.is-active {
  background: linear-gradient(90deg, rgba(255,255,255,.075), transparent);
  outline: none;
}
.gx-site-search-empty {
  margin: 18px 4px;
  color: rgba(220,227,234,.68);
}
.gx-site-search-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
html.site-search-open,
html.site-search-open body {
  overflow: hidden;
  overscroll-behavior: none;
}
.gx-mobile-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100svh;
  max-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y;
}
html.mobile-menu-open,
html.mobile-menu-open body {
  overflow: hidden;
  overscroll-behavior: none;
}
.gx-mobile-head {
  position: sticky;
  top: 0;
  z-index: 2;
  flex: 0 0 auto;
  min-height: calc(72px + env(safe-area-inset-top, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: calc(18px + env(safe-area-inset-top, 0px)) 24px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(7,9,12,.96), rgba(7,9,12,.84));
}
.gx-mobile-head span {
  color: rgba(255,255,255,.64);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.gx-mobile-scroll {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 15px;
  padding: 22px 24px calc(28px + env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.gx-mobile-nav {
  width: min(100%, 420px);
  display: grid;
  gap: 4px;
}
.gx-mobile-item {
  width: 100%;
}
.gx-mobile-panel a,
.gx-mobile-trigger {
  color: #fff;
  text-decoration: none;
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(28px,8vw,42px);
  font-weight: 760;
  letter-spacing: -.05em;
  line-height: 1.08;
}
.gx-mobile-trigger {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
}
.gx-mobile-trigger:focus-visible,
.gx-mobile-panel a:focus-visible {
  outline: 1px solid rgba(255,255,255,.55);
  outline-offset: 5px;
}
.gx-mobile-chevron {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-right: 2px solid rgba(255,255,255,.62);
  border-bottom: 2px solid rgba(255,255,255,.62);
  transform: rotate(-45deg);
  transition: transform .24s ease, opacity .24s ease;
  opacity: .78;
}
.gx-mobile-trigger[aria-expanded="true"] .gx-mobile-chevron {
  transform: rotate(45deg);
  opacity: 1;
}
.gx-mobile-submenu {
  display: grid;
  gap: 8px;
  margin: 5px 0 14px 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.16);
}
.gx-mobile-submenu[hidden] {
  display: none;
}
.gx-mobile-panel .gx-mobile-submenu a {
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.25;
  color: rgba(255,255,255,.74);
}
.gx-mobile-panel .gx-close {
  position: relative;
  top: auto;
  right: auto;
  float: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}
.gx-mobile-actions {
  display: grid;
  gap: 12px;
  width: min(100%,320px);
  margin-top: 10px;
}
.gx-mobile-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
}
.gx-mobile-action-primary {
  background: #f6f3ee;
  color: #070809;
  border-color: transparent;
}
.gx-mobile-panel .gx-mobile-action-primary,
.gx-mobile-panel .gx-mobile-action-primary:visited {
  color: #070809;
  -webkit-text-fill-color: #070809;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1;
  overflow-wrap: normal;
  text-decoration: none;
  white-space: nowrap;
}
.gx-mobile-panel .gx-mobile-action-primary:hover,
.gx-mobile-panel .gx-mobile-action-primary:focus-visible {
  color: #070809;
  -webkit-text-fill-color: #070809;
}
.site-footer{
  padding:64px 0 28px;
  background:#020303;
  border-top:1px solid rgba(255,255,255,.08);
}
.site-footer .site-footer-grid{
  display:grid;
  grid-template-columns:minmax(240px,1.35fr) repeat(4,minmax(128px,1fr)) minmax(340px,1.55fr);
  gap:30px;
  align-items:start;
}
.site-footer .site-footer-brand p{
  max-width:360px;
  margin:18px 0 0;
  color:#a6adb6;
  line-height:1.65;
}
.site-footer .page-brand,
.site-footer .footer-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
}
.site-footer .gx-footer-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
  max-width:100%;
  color:#fff;
  text-decoration:none;
  flex-shrink:0;
}
.site-footer .gx-footer-brand-mark{
  display:block;
  width:34px;
  height:34px;
  object-fit:contain;
  flex:0 0 34px;
}
.site-footer .gx-footer-brand-copy{
  display:flex;
  min-width:0;
  flex-direction:column;
  justify-content:center;
  line-height:1.15;
}
.site-footer .gx-footer-brand-copy strong{
  color:#fff;
  font-size:16px;
  font-weight:700;
  line-height:1.08;
  white-space:nowrap;
}
.site-footer .gx-footer-brand-copy small{
  display:block;
  margin-top:3px;
  color:rgba(255,255,255,.66);
  font-size:10px;
  line-height:1.2;
  white-space:nowrap;
}
.site-footer .page-brand img,
.site-footer .footer-brand img{
  width:auto;
  height:30px;
  object-fit:contain;
  flex:0 0 auto;
}
.site-footer .footer-brand img.gx-footer-brand-mark{
  width:34px;
  height:34px;
  flex:0 0 34px;
}
.site-footer .footer-brand-copy{
  display:grid;
  gap:2px;
}
.site-footer .footer-brand-copy strong{
  color:#fff;
  font-size:15px;
  line-height:1.1;
}
.site-footer .footer-brand-copy small{
  color:rgba(255,255,255,.62);
  font-size:11px;
  line-height:1.2;
}
.site-footer h4{
  margin:0 0 16px;
  color:#fff;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.site-footer ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:9px;
}
.site-footer a{
  color:#a6adb6;
  font-size:14px;
  line-height:1.35;
  text-decoration:none;
  transition:color .18s ease, transform .18s ease;
}
.site-footer a:hover{
  color:#fff;
  transform:translateX(2px);
}
.site-footer .gx-footer-contact{
  display:grid;
  gap:14px;
  min-width:0;
}
.site-footer .gx-footer-contact h4{
  margin-bottom:0;
}
.site-footer .gx-footer-contact-tabs{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:4px;
  padding:4px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:18px;
  background:rgba(255,255,255,.025);
}
.site-footer .gx-footer-contact-tab{
  min-width:0;
  min-height:48px;
  padding:9px 10px;
  border:1px solid transparent;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  color:#a6adb6;
  font:inherit;
  text-align:center;
  cursor:pointer;
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}
.site-footer .gx-footer-contact-tab:hover{
  color:#fff;
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}
.site-footer .gx-footer-contact-tab:focus-visible{
  outline:2px solid rgba(255,255,255,.62);
  outline-offset:3px;
}
.site-footer .gx-footer-contact-tab.is-active{
  color:#090a0b;
  background:#f6f3ee;
  border-color:#f6f3ee;
}
.site-footer .gx-footer-contact-tab-title,
.site-footer .gx-footer-contact-tab-subtitle{
  display:block;
  overflow-wrap:anywhere;
}
.site-footer .gx-footer-contact-tab-title{
  font-size:12px;
  font-weight:760;
  line-height:1.1;
}
.site-footer .gx-footer-contact-tab-subtitle{
  margin-top:3px;
  font-size:10px;
  line-height:1.15;
  opacity:.78;
}
.site-footer .gx-footer-contact-panel{
  display:grid;
  gap:12px;
  min-width:0;
}
.site-footer .gx-footer-contact-branch{
  color:#fff;
  font-size:15px;
  line-height:1.3;
}
.site-footer .gx-footer-contact-block{
  display:grid;
  gap:5px;
}
.site-footer .gx-footer-contact-label,
.site-footer .gx-footer-contact-phone span{
  color:#8f98a4;
  font-size:10px;
  font-weight:820;
  letter-spacing:.16em;
  line-height:1.2;
  text-transform:uppercase;
  white-space:nowrap;
}
.site-footer .gx-footer-contact-address{
  margin:0;
  color:#b9c0ca;
  font-size:13px;
  line-height:1.55;
  overflow-wrap:anywhere;
}
.site-footer .gx-footer-contact-phone-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
}
.site-footer .gx-footer-contact-phone,
.site-footer .gx-footer-contact-email{
  min-width:0;
  color:#fff;
  text-decoration:none;
  transform:none;
}
.site-footer .gx-footer-contact-phone{
  display:grid;
  gap:5px;
  min-height:58px;
  align-content:center;
  padding:10px 9px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:14px;
  background:rgba(255,255,255,.025);
}
.site-footer .gx-footer-contact-phone strong{
  color:#fff;
  font-size:clamp(12px,.68vw,13px);
  line-height:1.25;
  white-space:nowrap;
  overflow-wrap:normal;
  word-break:normal;
}
.site-footer .gx-footer-contact-email{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  color:#cbd1d8;
  font-size:13px;
  line-height:1.35;
  overflow-wrap:anywhere;
}
.site-footer .gx-footer-contact-phone:hover,
.site-footer .gx-footer-contact-email:hover,
.site-footer .gx-footer-contact-social:hover{
  color:#fff;
  transform:none;
}
.site-footer .gx-footer-contact-socials{
  display:flex;
  gap:9px;
  flex-wrap:wrap;
}
.site-footer .gx-footer-contact-social{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.025);
  color:#b9c0ca;
}
.site-footer .gx-footer-contact-social svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
}
.site-footer .gx-footer-contact-social svg path{
  fill:currentColor;
  stroke:none;
}
.site-footer .gx-footer-contact-social:focus-visible{
  outline:2px solid rgba(255,255,255,.62);
  outline-offset:3px;
}
.site-footer .subfooter,
.site-footer .gx-subfooter{
  margin-top:48px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#8b929c;
  font-size:13px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
}
.site-footer .gx-subfooter-copy,
.site-footer .gx-subfooter-credit{
  line-height:1.55;
}
.site-footer .gx-subfooter-credit{
  text-align:right;
}
.site-footer .gx-subfooter-credit strong{
  color:rgba(232,236,242,.78);
  font-weight:700;
}
@media (max-width:1280px){
  .site-footer .site-footer-grid{
    grid-template-columns:minmax(220px,1.25fr) repeat(3,minmax(140px,1fr));
  }
  .site-footer .gx-footer-contact{
    grid-column:span 2;
  }
}
@media (max-width:1380px) and (min-width:1281px){
  .site-footer .site-footer-grid{
    grid-template-columns:minmax(230px,1.3fr) repeat(4,minmax(118px,1fr)) minmax(320px,1.55fr);
    gap:24px;
  }
}
@media (max-width:900px){
  .site-footer .site-footer-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px 34px;
  }
  .site-footer .site-footer-brand{
    grid-column:1/-1;
  }
  .site-footer .gx-footer-brand-mark{
    width:32px;
    height:32px;
    flex-basis:32px;
  }
  .site-footer .footer-brand img.gx-footer-brand-mark{
    width:32px;
    height:32px;
    flex-basis:32px;
  }
  .site-footer .gx-footer-brand-copy strong{
    font-size:15px;
  }
  .site-footer .gx-footer-brand-copy small{
    font-size:9px;
  }
  .site-footer .gx-footer-contact{
    grid-column:1/-1;
    max-width:520px;
  }
}
@media (max-width:560px){
  .site-footer{
    padding:46px 0 24px;
  }
  .site-footer .site-footer-grid{
    grid-template-columns:1fr;
    gap:26px;
  }
  .site-footer a{
    min-height:28px;
    display:inline-flex;
    align-items:center;
  }
  .site-footer .gx-footer-contact{
    max-width:none;
  }
  .site-footer .gx-footer-contact-tabs{
    border-radius:16px;
  }
  .site-footer .gx-footer-contact-tab{
    min-height:50px;
    padding:8px 7px;
  }
  .site-footer .gx-footer-contact-phone-grid{
    grid-template-columns:1fr;
  }
  .site-footer .subfooter,
  .site-footer .gx-subfooter{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
  .site-footer .gx-subfooter-credit{
    text-align:left;
  }
}
@media (max-width: 1320px) {
  .gx-nav {
    gap: clamp(18px,1.8vw,26px);
    margin-left: clamp(110px,18vw,220px);
  }
  .gx-nav a { font-size: 12px; }
}
@media (max-width: 1100px) {
  .gx-nav { display: none; }
  .gx-actions { gap: 8px; margin-left: auto; }
  .gx-menu-btn { display: inline-flex; }
}
@media (max-width: 700px) {
  .gx-header { top: 10px; }
  .gx-header-shell {
    width: min(100% - 18px, 1520px);
    height: 64px;
    padding: 0 12px 0 16px;
  }
  .gx-search-btn,
  .gx-appointment-btn { display: none; }
  .site-header-brand-logo {
    width: auto !important;
    height: 32px !important;
    flex-basis: auto !important;
  }
  .site-header-brand-copy strong { font-size: 15px !important; }
  .gx-mega:not(.open) { display: none; }
}
@media (max-width: 700px) {
  .gx-site-search-overlay {
    padding: max(10px, env(safe-area-inset-top)) 10px max(10px, env(safe-area-inset-bottom));
  }
  .gx-site-search-panel {
    width: 100%;
    height: calc(100dvh - max(20px, env(safe-area-inset-top)) - max(10px, env(safe-area-inset-bottom)));
    max-height: none;
    border-radius: 22px;
  }
  .gx-site-search-bar {
    grid-template-columns: 24px minmax(0,1fr) 42px;
    gap: 8px;
    padding: 12px;
  }
  .gx-site-search-input {
    height: 54px;
    padding: 0 16px;
    font-size: 16px;
  }
  .gx-site-search-results {
    padding: 6px 12px 16px;
  }
  .gx-site-search-result {
    min-height: 58px;
    padding: 14px 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gx-site-search-panel {
    transition-duration: 1ms;
    transform: none;
  }
}
