/* Production-only resilience and accessibility enhancements. */
.hero-photo {
  background-image: url('hero-boat-optimized.jpg');
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -100px;
  z-index: 100;
  padding: 12px 18px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 18px #0004;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 18px;
}

.anchor-target {
  position: absolute;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f0b878;
  outline-offset: 3px;
}

.request input:focus,
.request select:focus,
.request textarea:focus {
  border-color: var(--navy);
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--navy);
  color: #dce4e9;
}

.status-card {
  width: min(680px, 100%);
  padding: clamp(32px, 7vw, 64px);
  border-top: 5px solid var(--red);
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 55px #0004;
}

.status-card img {
  width: min(390px, 100%);
  height: auto;
  margin-bottom: 34px;
}

.status-card h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
}

.status-card p {
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
