#pilot-band {
  background: linear-gradient(90deg, var(--orange), #f0a54e);
  color: #3a2408;
  font-size: 14.5px;
  font-weight: 600;
  text-align: center;
  padding: 9px 16px;
}
#pilot-band a {
  color: #3a2408;
  text-decoration: underline;
  font-weight: 800;
  white-space: nowrap;
}
#pilot-band .pin {
  margin-right: 6px;
}

header.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  margin-right: auto;
}
.brand svg {
  height: 34px;
  width: auto;
  flex: 0 0 auto;
}
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-soft);
  padding: 8px 12px;
  border-radius: 9px;
}
.nav-links a:hover {
  color: var(--navy);
  background: var(--cream);
}
.nav-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: 8px;
}
.nav-cta .btn {
  padding: 10px 18px;
  font-size: 14.5px;
}
.nav-signin {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  padding: 9px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
}
.nav-signin:hover {
  background: var(--cream);
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
  border-radius: 2px;
}

#mobile-menu {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(84%, 320px);
  background: #fff;
  z-index: 70;
  box-shadow: -10px 0 40px rgba(0, 0, 0, .2);
  padding: 24px;
  transform: translateX(100%);
  transition: transform .25s;
}
#mobile-menu.open {
  transform: translateX(0);
}
#mobile-menu a {
  display: block;
  padding: 13px 6px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}
#mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}
#overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 36, 56, .4);
  z-index: 65;
}
#overlay.open {
  display: block;
}

footer {
  background: var(--navy-deep);
  color: #aecbe0;
  padding: 54px 0 30px;
  font-size: 14.5px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 14px;
}
footer a {
  color: #aecbe0;
  display: block;
  padding: 4px 0;
}
footer a:hover {
  color: #fff;
}
.foot-brand {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-brand svg {
  height: 30px;
  width: auto;
  flex: 0 0 auto;
}
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot-social a:hover {
  background: var(--orange);
  color: #fff;
}
.foot-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #7f9bb0;
}
.foot-bottom .heart {
  color: var(--orange);
}
.lang a {
  display: inline;
  padding: 0 8px 0 0;
}
.lang a.active {
  color: #fff;
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 6px;
  font-family: var(--font-body);
}
.contact-form > div {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 145, 47, .18);
}
.contact-form textarea {
  min-height: 96px;
  resize: vertical;
}
.field-honeypot {
  position: absolute;
  left: -9999px;
}

.form-check {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 10px;
  align-items: start;
  margin: 8px 0;
}
.form-check__input {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  margin: 2px 0 0;
  border: 1.5px solid var(--text-soft);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
  flex: none;
  transition: background .16s ease, border-color .16s ease;
}
.form-check__input:checked {
  background: var(--orange);
  border-color: var(--orange);
}
.form-check__input:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-check__input:focus-visible {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 145, 47, .18);
}
.form-check__label {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-soft);
  cursor: pointer;
}
.form-check__error {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--amber-text);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .burger {
    display: block;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
  #pilot-band {
    font-size: 13px;
  }
}
