:root {
  --brand: #ff6b9d;
  --brand-light: #ff85a9;
  --brand-glow: #ffb3cc;
  --brand-dark: #e9457a;
  --surface: #0a0a0b;
  --surface-raised: #111113;
  --surface-card: #18181b;
  --border: #27272a;
}

body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--surface);
  color: #fafafa;
}

h1, h2, h3, .display-6 {
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.btn-brand {
  background: var(--brand);
  border: none;
  color: #fff;
  font-weight: 600;
}

.btn-brand:hover {
  background: var(--brand-light);
  color: #fff;
}

.btn-outline-light {
  border-color: var(--border);
  color: #d4d4d8;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #52525b;
  color: #fff;
}

.site-header {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-logo {
  height: 56px;
  width: auto;
}

.nav-link {
  color: #a1a1aa !important;
  border-radius: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--surface);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  background: var(--surface);
}

.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,.65), rgba(0,0,0,.35) 45%, var(--surface));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(255, 107, 157, 0.3);
  background: rgba(255, 107, 157, 0.12);
  color: var(--brand-glow);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--brand-glow), var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.visit-banner {
  background: linear-gradient(90deg, rgba(255, 107, 157, 0.15), rgba(255, 133, 169, 0.08));
  border-block: 1px solid rgba(255, 107, 157, 0.2);
}

.visit-banner-inner {
  font-size: 0.95rem;
}

.visit-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(255, 107, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 157, 0); }
}

.section-label {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Alternate band backgrounds after the visit banner (survives section add/remove) */
.visit-banner ~ section:nth-of-type(odd) {
  background: var(--surface-raised);
  border-block: 1px solid var(--border);
}

.visit-banner ~ section:nth-of-type(even) {
  background: var(--surface);
}

main:has(> section:last-of-type:nth-of-type(odd)) + #site-footer .site-footer {
  background: var(--surface);
}

main:has(> section:last-of-type:nth-of-type(even)) + #site-footer .site-footer {
  background: var(--surface-raised);
}

.category-card {
  display: block;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  color: inherit;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 157, 0.4);
  color: inherit;
}

.category-card-visual {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.category-card-body {
  padding: 1.25rem;
}

.category-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.category-card-body p {
  color: #71717a;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.category-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.category-strip-item {
  flex: 0 0 auto;
  text-align: center;
  color: #a1a1aa;
  text-decoration: none;
  min-width: 7rem;
}

.category-strip-thumb {
  width: 7rem;
  height: 5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}

.category-strip-item:hover .category-strip-thumb {
  border-color: rgba(255, 107, 157, 0.4);
}

.category-strip-item:hover {
  color: #fff;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: #a1a1aa;
}

.about-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 0.75rem;
}

.about-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
}

.about-card-image {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  display: block;
}

.step-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.review-card,
.step-card-wrap {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
}

.stars {
  color: var(--brand);
  letter-spacing: 0.1em;
}

.reviews-attribution {
  text-align: center;
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d4d4d8;
  text-decoration: none;
  font-size: 0.9rem;
}

.reviews-google-link:hover {
  color: #fff;
}

.directions-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
}

.directions-card address {
  font-style: normal;
  line-height: 1.7;
  color: #d4d4d8;
}

.direction-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.map-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.map-actions .btn {
  width: 100%;
}

.w3w-link {
  font-family: "Space Grotesk", monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.w3w-link:hover {
  color: var(--brand-glow);
}

.contact-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--brand-glow);
}

.map-wrap {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface-card);
}

.map-wrap iframe {
  display: block;
}

.route-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.route-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.route-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: #a1a1aa;
  font-size: 0.9rem;
}

.route-steps li {
  margin-bottom: 0.4rem;
}

.route-steps li:last-child {
  margin-bottom: 0;
}

.satnav-code {
  display: inline-block;
  background: rgba(255, 107, 157, 0.12);
  border: 1px solid rgba(255, 107, 157, 0.25);
  color: var(--brand-glow);
  padding: 0.35rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.route-tip {
  background: rgba(255, 107, 157, 0.08);
  border: 1px solid rgba(255, 107, 157, 0.2);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #d4d4d8;
}

.route-tip a {
  color: var(--brand-glow);
  text-decoration: none;
  font-weight: 600;
}

.route-tip a:hover {
  text-decoration: underline;
}

.cta-box {
  border: 1px solid rgba(255, 107, 157, 0.25);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), var(--surface-card));
  padding: 2.5rem;
}

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

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

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

@media (min-width: 992px) {
  .hero-content { text-align: center; }
}

@media (max-width: 575.98px) {
  .site-logo {
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap video { display: none; }

  .visit-pulse {
    animation: none;
  }

  .category-card:hover {
    transform: none;
  }
}
