html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, sans-serif; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 0.75rem 1.25rem;
  background: #0891b2;
  color: white;
  font-weight: 700;
  border-radius: 0.5rem;
  outline: 2px solid #0e7490;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #0891b2;
  outline-offset: 2px;
}

.hero-bg {
  background-image:
    linear-gradient(135deg, rgba(6, 182, 212, 0.35) 0%, rgba(13, 148, 136, 0.25) 40%, rgba(0, 0, 0, 0.35) 100%),
    url('../images/bahama-paddleboards.png');
  background-size: cover;
  background-position: center top;
}
.gallery-item { transition: transform 0.4s ease, box-shadow 0.4s ease; }
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35); }
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.photo-portrait { aspect-ratio: 3 / 4; }
.photo-landscape { aspect-ratio: 4 / 3; }
.photo-wide { aspect-ratio: 16 / 9; }
.photo-frame { overflow: hidden; border-radius: 1.5rem; background: #0f172a; }
.photo-frame img { width: 100%; height: 100%; display: block; }
.photo-cover { object-fit: cover; object-position: center; }
.photo-contain { object-fit: contain; object-position: center; padding: 0.5rem; }
.logo-img {
  filter: drop-shadow(0 6px 16px rgba(8, 145, 178, 0.45)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}
.logo-nav {
  filter: drop-shadow(0 4px 14px rgba(8, 145, 178, 0.55)) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.15));
}
.brand-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  padding-top: 0.05em;
}
.brand-subtitle {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  line-height: 1;
}
#mobile-menu { transition: max-height 0.3s ease, opacity 0.3s ease; }
nav.site-nav { padding-top: max(0.75rem, env(safe-area-inset-top)); overflow: visible; }
.hero-section { padding-top: 7.5rem; }
@media (min-width: 768px) {
  .hero-section { padding-top: 8.5rem; }
}

.form-feedback {
  display: none;
}
.form-feedback.is-visible {
  display: block;
}
.form-feedback.is-success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}
.form-feedback.is-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}