/* Final polish pass — focus, skip link, spacing, tablet koala bubble */

:root {
  --text-muted: #5a5f6e;
  --focus-ring: 0 0 0 3px rgba(240, 194, 25, 0.55);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 10000;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 1rem;
  outline: none;
  box-shadow: var(--focus-ring);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.gallery-filter:focus-visible,
.gallery-item:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Keep Cleveland's speech bubble visible on tablet */
@media (max-width: 960px) and (min-width: 721px) {
  .hero-koala-bubble {
    display: block !important;
    max-width: 14rem;
    font-size: 0.8rem;
  }

  .hero-koala-chips {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .hero-koala-chip {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

/* Trust strip — breathing room on desktop */
.trust-inner {
  gap: 1.5rem !important;
  justify-content: center !important;
}

@media (max-width: 960px) {
  .trust-strip {
    position: relative;
  }

  .trust-strip::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2rem;
    background: linear-gradient(90deg, transparent, var(--navy));
    pointer-events: none;
  }
}

/* Softer page load — no blank flash if JS is slow */
body {
  opacity: 1;
}

body:not(.loaded) .hero-content {
  opacity: 0.98;
}

/* Consistent section rhythm */
.services,
.meet-cleveland,
.gallery-preview,
.about,
.colt-section,
.contact {
  padding-block: 5.5rem;
}

/* Footer address should feel clickable */
.footer-links a[href^="https://maps"] {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Click & Collect banner — marketing site only */
:root {
  --cc-banner-h: 2.75rem;
}

.cc-banner {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(199, 155, 15, 0.35);
  background: linear-gradient(90deg, var(--amber), #f5d04a, var(--amber));
}

.cc-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding: 0.5rem 0;
  text-align: center;
}

@media (min-width: 640px) {
  .cc-banner-inner {
    justify-content: space-between;
    text-align: left;
  }
}

.cc-banner-text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal, #2a2d35);
  line-height: 1.35;
}

.cc-banner-lead {
  display: none;
}

@media (min-width: 640px) {
  .cc-banner-lead {
    display: inline;
  }
}

.cc-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.cc-banner-btn:hover {
  background: #0a0c1a;
  color: #fff;
}

body.has-cc-banner .hero {
  padding-top: calc(var(--nav-h) + var(--cc-banner-h) + 3rem);
}

body.has-cc-banner .page-hero {
  padding-top: calc(var(--nav-h) + var(--cc-banner-h) + 4rem);
}
