:root{
  --gmr-navy:#0b1f3a;
  --gmr-charcoal:#1f2937;
  --gmr-bg:#ffffff;
  --gmr-muted:#6b7280;
  --gmr-border:#e5e7eb;
  --gmr-accent:#0b1f3a;
  --gmr-radius:14px;

  --gmr-container: 1180px;
  --gmr-gutter: 16px;

  --gmr-header-h: 86px;
  --gmr-mobilebar-h: 58px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  background:var(--gmr-bg);
  color:var(--gmr-charcoal);
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

.gmr-site-content{
  min-height: 40vh;
  outline:none;
  /* Leave space for mobile bar to avoid overlap */
  padding-bottom: calc(var(--gmr-mobilebar-h) + 12px);
}

@media (min-width: 992px){
  .gmr-site-content{ padding-bottom: 0; }
}

.gmr-skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.gmr-skip-link:focus{
  left:var(--gmr-gutter);
  top:var(--gmr-gutter);
  width:auto;
  height:auto;
  background:#fff;
  padding:10px 12px;
  border:1px solid var(--gmr-border);
  border-radius:10px;
  z-index:9999;
}

.gmr-header{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  border-bottom:1px solid var(--gmr-border);
}

.gmr-header__inner{
  max-width:var(--gmr-container);
  margin:0 auto;
  padding: 14px var(--gmr-gutter);
  min-height: var(--gmr-header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.gmr-logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
  max-width: 380px;
}

.gmr-logo__img{
  max-height:80px;
  width:auto;
  height:auto;
  display:block;
}

@media (min-width: 992px){
  .gmr-logo__img{ max-height:80px; }
}


.gmr-nav{ display:none; }
@media (min-width: 992px){
  .gmr-nav{ display:block; }
}

.gmr-nav__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:22px;
}

.gmr-nav__list a{
  position:relative;
  text-decoration:none;
  color:var(--gmr-charcoal);
  font-weight:800;
  font-size:14px;
  line-height:1.1;
  padding:10px 2px;
}

.gmr-nav__list a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:6px;
  height:2px;
  background:var(--gmr-accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 180ms ease;
}

.gmr-nav__list a:hover::after,
.gmr-nav__list a:focus-visible::after{
  transform:scaleX(1);
}

.gmr-nav__list .current-menu-item > a,
.gmr-nav__list .current_page_item > a{
  color:var(--gmr-accent);
}
.gmr-nav__list .current-menu-item > a::after,
.gmr-nav__list .current_page_item > a::after{
  transform:scaleX(1);
}


.gmr-header__actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex: 0 0 auto;
}

.gmr-header__phone{
  display:none;
  text-decoration:none;
  color:var(--gmr-charcoal);
  font-weight:900;
  padding:11px 15px;
  border-radius:14px;
  border:1px solid rgba(229,231,235,1);
  background:#fff;
  white-space:nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  box-shadow: 0 10px 26px rgba(15,23,42,0.08);
}
.gmr-header__phone:hover{
  transform: translateY(-1px);
  border-color: rgba(203,213,225,1);
  box-shadow: 0 14px 32px rgba(15,23,42,0.12);
}
@media (min-width: 992px){
  .gmr-header__phone{ display:inline-flex; }
}



.gmr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 15px;
  border-radius:14px;
  font-weight:900;
  font-size:14px;
  text-decoration:none;
  border:1px solid transparent;
  line-height:1;
  white-space:nowrap;
  max-width:100%;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, border-color 160ms ease, background-color 160ms ease;
  will-change: transform;
  transform: translateZ(0);
}

.gmr-btn:hover{
  transform: translateY(-1px);
}

.gmr-btn:active{
  transform: translateY(0);
}

.gmr-btn--primary{
  background: linear-gradient(180deg, #0b1f3a 0%, #08182c 100%);
  color:#fff;
  box-shadow: 0 10px 26px rgba(11,31,58,0.18);
}

.gmr-btn--primary:hover{
  filter: brightness(1.06);
  box-shadow: 0 14px 32px rgba(11,31,58,0.24);
}

.gmr-btn--ghost{
  background:#fff;
  color:var(--gmr-charcoal);
  border-color: rgba(229,231,235,1);
  box-shadow: 0 10px 26px rgba(15,23,42,0.08);
}

.gmr-btn--ghost:hover{
  border-color: rgba(203,213,225,1);
  box-shadow: 0 14px 32px rgba(15,23,42,0.12);
}

.gmr-btn:focus-visible{
  outline: 3px solid rgba(11,31,58,0.22);
  outline-offset: 2px;
}



.gmr-burger{
  display:inline-flex;
  flex-direction:column;
  gap:5px;
  background:#fff;
  border:1px solid var(--gmr-border);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}
@media (min-width: 992px){
  .gmr-burger{ display:none; }
}
.gmr-burger__line{
  width:18px;
  height:2px;
  background:var(--gmr-charcoal);
  display:block;
}

.gmr-drawer{
  position:fixed;
  inset:0;
  z-index:1000;
}
.gmr-drawer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.42);
}
.gmr-drawer__panel{
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:min(360px, 92vw);
  background:#fff;
  display:flex;
  flex-direction:column;
  border-left:1px solid var(--gmr-border);
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}
.gmr-drawer__top{
  padding:16px;
  border-bottom:1px solid var(--gmr-border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.gmr-drawer__title{ font-weight:800; }
.gmr-drawer__close{
  background:#fff;
  border:1px solid var(--gmr-border);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}
.gmr-drawer__nav{ padding:12px 16px; }
.gmr-drawer__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.gmr-drawer__list a{
  text-decoration:none;
  color:var(--gmr-charcoal);
  font-weight:700;
  display:block;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--gmr-border);
}
.gmr-drawer__list a:hover,
.gmr-drawer__list a:focus-visible{ border-color:#cbd5e1; }

.gmr-drawer__ctas{
  padding:16px;
  border-top:1px solid var(--gmr-border);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.gmr-btn--block{ width:100%; }

.gmr-mobile-bar{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:998;
  display:flex;
  gap:10px;
  padding:10px var(--gmr-gutter);
  background:#fff;
  border-top:1px solid var(--gmr-border);
  height: var(--gmr-mobilebar-h);
  align-items:center;
  justify-content:space-between;
}
@media (min-width: 992px){
  .gmr-mobile-bar{ display:none; }
}
.gmr-mobile-bar__btn{
  flex:1 1 0;
  min-width:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  border-radius:12px;
  border:1px solid var(--gmr-border);
  text-decoration:none;
  font-weight:800;
  color:var(--gmr-charcoal);
  background:#fff;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.gmr-mobile-bar__btn--primary{
  background:var(--gmr-accent);
  color:#fff;
  border-color:transparent;
}

.gmr-footer{
  border-top:1px solid var(--gmr-border);
  background:#fff;
}

.gmr-footer__inner{
  max-width:var(--gmr-container);
  margin:0 auto;
  padding:28px var(--gmr-gutter);
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}

@media (min-width: 992px){
  .gmr-footer__inner{
    grid-template-columns: 1.2fr 1fr 1fr;
    gap:26px;
    align-items:start;
  }
}

.gmr-footer__name{
  font-weight:900;
  letter-spacing:0.2px;
  font-size:16px;
}

.gmr-footer__title{
  font-size:13px;
  font-weight:900;
  margin:0 0 12px;
  color:var(--gmr-charcoal);
  letter-spacing:0.2px;
  text-transform:uppercase;
}

.gmr-footer__address{
  margin-top:10px;
  color:var(--gmr-muted);
  font-style:normal;
  display:flex;
  flex-direction:column;
  gap:6px;
  line-height:1.35;
}

.gmr-footer__cta{
  margin-top:14px;
}

.gmr-footer__links{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.gmr-footer__links a{
  color:var(--gmr-charcoal);
  text-decoration:none;
  font-weight:800;
  display:inline-flex;
  max-width:100%;
}

.gmr-footer__links a:hover,
.gmr-footer__links a:focus-visible{
  text-decoration:underline;
}

.gmr-footer__contact{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.gmr-footer__contact a{
  color:var(--gmr-charcoal);
  text-decoration:none;
  font-weight:900;
}

.gmr-footer__legal{
  list-style:none;
  margin:14px 0 0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.gmr-footer__legal a{
  color:var(--gmr-muted);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
}

.gmr-footer__legal a:hover,
.gmr-footer__legal a:focus-visible{
  text-decoration:underline;
}

.gmr-footer__muted{
  margin:0;
  color:var(--gmr-muted);
  font-weight:700;
  font-size:14px;
}

.gmr-footer__bottom{
  max-width:var(--gmr-container);
  margin:0 auto;
  padding:14px var(--gmr-gutter) 22px;
  border-top:1px solid var(--gmr-border);
}

.gmr-footer__copy{
  margin:0;
  color:var(--gmr-muted);
  font-size:13px;
  font-weight:800;
}

