/* Additional styles (non-breaking) */

:root {
  --gl-accent: #f36100;
}

/* Improve accessibility for skip-link if added later */
.a11y-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  z-index: 9999;
}
.a11y-skip:focus {
  left: 10px;
  top: 10px;
}

/* Cookie banner */
.gl-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(17, 17, 17, 0.98);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gl-cookie__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.gl-cookie__text {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.95;
}

.gl-cookie__text a {
  color: #fff;
  text-decoration: underline;
}

.gl-cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gl-cookie__btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.gl-cookie__btn--primary {
  background: var(--gl-accent);
  border-color: var(--gl-accent);
}

/* Responsive map iframe wrapper (contact page) */
.gl-map-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 2px;
}

.gl-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
