:root {
  --bird-blue: #155d99;
  --bird-blue-dark: #104978;
  --bird-ink: #243746;
  --bird-muted: #5c6c78;
  --bird-border: #dce4eb;
  --bird-surface: #f3f6f9;
  --bs-primary: #155d99;
  --bs-primary-rgb: 21, 93, 153;
  --bs-body-color: var(--bird-ink);
  --bs-body-font-family: Arial, Helvetica, sans-serif;
  --bs-body-line-height: 1.65;
  --bs-link-color: var(--bird-blue);
  --bs-link-hover-color: var(--bird-blue-dark);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5 {
  color: var(--bird-ink);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -.035em;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -.02em;
}

p {
  margin-bottom: 1.25rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-underline-offset: .2em;
}

:focus-visible {
  outline: 3px solid #2477ba;
  outline-offset: 4px;
}

.text-muted {
  color: var(--bird-muted) !important;
}

.section-space {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.page-heading {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.page-heading p {
  color: var(--bird-muted);
  margin-bottom: 0;
}

.eyebrow {
  color: var(--bird-blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.btn {
  padding: .7rem 1.25rem;
  font-weight: 600;
  border-radius: .4rem;
}

.btn-primary {
  --bs-btn-bg: var(--bird-blue);
  --bs-btn-border-color: var(--bird-blue);
  --bs-btn-hover-bg: var(--bird-blue-dark);
  --bs-btn-hover-border-color: var(--bird-blue-dark);
  --bs-btn-active-bg: var(--bird-blue-dark);
  --bs-btn-active-border-color: var(--bird-blue-dark);
}

.btn-outline-primary {
  --bs-btn-color: var(--bird-blue);
  --bs-btn-border-color: var(--bird-blue);
  --bs-btn-hover-bg: var(--bird-blue);
  --bs-btn-hover-border-color: var(--bird-blue);
  --bs-btn-active-bg: var(--bird-blue-dark);
}

.card {
  border: 1px solid var(--bird-border);
  border-radius: .7rem;
  box-shadow: 0 4px 18px rgb(28 49 69 / 5%);
  overflow: hidden;
}

.card-body {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.site-nav {
  background: #fff;
  border-bottom: 1px solid var(--bird-border);
  padding-block: 1rem;
}

.site-nav .navbar-brand img {
  width: auto;
  height: 42px;
}

.site-nav .nav-link {
  color: var(--bird-muted);
  font-weight: 600;
  padding: .65rem 1rem !important;
  border-radius: .35rem;
}

.site-nav .nav-link:hover, .site-nav .nav-link[aria-current="page"] {
  color: var(--bird-blue);
  background: var(--bird-surface);
}

.site-footer {
  background: var(--bird-surface);
  border-top: 1px solid var(--bird-border);
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.site-footer p, .site-footer address {
  color: var(--bird-muted);
  margin-bottom: 0;
}

.site-footer a, .contact-detail a {
  overflow-wrap: anywhere;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1100;
  background: #fff;
  padding: .75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
  
  
}

.image-container {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background: var(--bird-surface);
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  color: var(--bird-blue);
  font-weight: 700;
  font-size: 1.15rem;
}

.listing-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.listing-price {
  color: var(--bird-blue);
  font-size: 1.5rem;
  font-weight: 700;
}

.coach-description {
  max-width: 75ch;
  white-space: pre-line;
}

.gallery-button {
  padding: 0;
  border: 1px solid var(--bird-border);
  background: var(--bird-surface);
  border-radius: .5rem;
  overflow: hidden;
  width: 100%;
  display: block;
}

.gallery-button img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-button:hover {
  border-color: var(--bird-blue);
}

.modal-photo {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

@media (max-width: 767px) {
  .listing-header {
    align-items: flex-start;
    flex-direction: column;
  }
  
  
}

.hero {
  background: var(--bird-surface);
}

.hero-panel {
  max-width: 50rem;
}

.hero-panel .card-body {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.hero-copy {
  max-width: 35rem;
  color: var(--bird-muted);
  font-size: 1.1rem;
}

.hero-logo {
  width: min(100%, 320px);
  height: auto;
  margin-top: .5rem;
}

.contact-card {
  max-width: 44rem;
  border-top: 4px solid var(--bird-blue);
}

.photo-grid {
  max-width: 60rem;
}

.coach-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: .6rem;
}

.photo-dialog {
  width: min(95vw, 1140px);
  max-height: 95vh;
  padding: 0;
  border: 0;
  border-radius: 0.5rem;
  background: #17212a;
}

.photo-dialog::backdrop {
  background: rgb(0 0 0 / 80%);
}
