/* Public center profile — /centers/<slug> */
:root {
  --cp-green: #a1de56;
  --cp-green-soft: rgba(161, 222, 86, 0.12);
  --cp-green-mid: rgba(161, 222, 86, 0.28);
  --cp-ink: #0a0a0a;
  --cp-panel: #121212;
  --cp-muted: #9a9a9a;
  --cp-line: rgba(255, 255, 255, 0.1);
  --cp-radius: 18px;
}

body.center-page {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
}

.text-primary { color: var(--cp-green) !important; }

/* —— Reveal animations —— */
.cp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.cp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cp-reveal-delay-1 { transition-delay: 0.08s; }
.cp-reveal-delay-2 { transition-delay: 0.16s; }
.cp-reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .cp-reveal { opacity: 1; transform: none; transition: none; }
}

/* —— Hero —— */
.cp-hero {
  position: relative;
  min-height: min(72vh, 580px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.cp-hero__media {
  position: absolute;
  inset: 0;
  background: #111 center / cover no-repeat;
  transform: scale(1.04);
  animation: cp-hero-drift 18s ease-in-out infinite alternate;
}

.cp-hero__media--empty {
  background:
    radial-gradient(ellipse 90% 70% at 50% -20%, rgba(161, 222, 86, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(245, 158, 11, 0.16), transparent),
    linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  animation: none;
}

@keyframes cp-hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

.cp-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.94) 100%),
    radial-gradient(circle at 70% 20%, rgba(161, 222, 86, 0.16), transparent 40%);
  pointer-events: none;
}

.cp-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem 0 2.75rem;
}

.cp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.1rem;
}
.cp-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cp-breadcrumb a:hover { color: var(--cp-green); }

.cp-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.cp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--cp-green-mid);
  background: var(--cp-green-soft);
  color: #d6f0a8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cp-kicker--place {
  border-color: rgba(96, 165, 250, 0.45);
  background: rgba(37, 99, 235, 0.2);
  color: #bfdbfe;
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.82rem;
}

.cp-hero__title {
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
  max-width: 18ch;
}

.cp-hero__place {
  font-size: clamp(1.15rem, 2.6vw, 1.55rem);
  font-weight: 650;
  color: #fff;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}
.cp-hero__place span {
  color: var(--cp-green);
}

.cp-hero__org {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}

.cp-hero__seo-lead {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 1.15rem;
}

.cp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.cp-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  font-family: inherit;
}
.cp-btn:hover { transform: translateY(-2px); }
.cp-btn:active { transform: translateY(0); }

.cp-btn--primary {
  background: var(--cp-green);
  color: #000;
  box-shadow: 0 10px 28px rgba(161, 222, 86, 0.22);
}
.cp-btn--primary:hover {
  background: #b6ea78;
  box-shadow: 0 14px 32px rgba(161, 222, 86, 0.3);
}

.cp-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.cp-btn--ghost:hover {
  border-color: var(--cp-green-mid);
  background: var(--cp-green-soft);
}

.cp-btn--block { width: 100%; }
.cp-btn--icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 999px;
}

/* —— Layout —— */
.cp-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.15rem 4rem;
}

.cp-section {
  padding: 3.25rem 0 0;
}

.cp-section__head {
  margin-bottom: 1.35rem;
}

.cp-section__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cp-section__eyebrow {
  color: var(--cp-green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.cp-section__title {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.4rem;
}

.cp-section__sub {
  color: var(--cp-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 54ch;
  margin: 0;
}

.cp-about-copy {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
}

/* —— Media gallery tiles —— */
.cp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 0.75rem;
}

.cp-gallery-tile {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #151515;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.cp-gallery-tile:hover {
  transform: scale(1.04);
  border-color: rgba(161, 222, 86, 0.55);
  box-shadow: 0 8px 22px rgba(161, 222, 86, 0.22);
}
.cp-gallery-tile img,
.cp-gallery-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cp-gallery-tile__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.35rem 0.4rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
}
.cp-gallery-tile__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  pointer-events: none;
}

.cp-media-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.cp-media-modal img,
.cp-media-modal video {
  max-width: min(960px, 100%);
  max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
}
.cp-media-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

/* —— Activity slider (handpicked-style colors) —— */
.cp-slider-wrap {
  position: relative;
}

.cp-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.35rem 0.15rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(161, 222, 86, 0.45) transparent;
}
.cp-slider::-webkit-scrollbar { height: 6px; }
.cp-slider::-webkit-scrollbar-thumb {
  background: rgba(161, 222, 86, 0.4);
  border-radius: 999px;
}

.cp-slider-nav {
  display: flex;
  gap: 0.5rem;
}

.cp-activity-card {
  position: relative;
  flex: 0 0 min(300px, 82vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: var(--cp-radius);
  border: 1px solid transparent;
  overflow: hidden;
  transform-origin: 50% 0%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, rotate 0.28s ease;
}
.cp-activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 0.45rem;
  border-radius: 0 0 3px 3px;
  background: rgba(255, 255, 255, 0.16);
  z-index: 2;
  pointer-events: none;
}

.cp-activity-card--t0 {
  background: linear-gradient(168deg, #1a6b3c 0%, #134d2e 38%, #0f3522 68%, #0b2418 100%);
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: 0 8px 28px rgba(22, 101, 52, 0.35);
  rotate: -1.6deg;
}
.cp-activity-card--t1 {
  background: linear-gradient(168deg, #1e4a8a 0%, #16366a 38%, #102548 68%, #0b1830 100%);
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.35);
  rotate: 1.4deg;
}
.cp-activity-card--t2 {
  background: linear-gradient(168deg, #8a5a12 0%, #6b4510 38%, #4a300c 68%, #2e1f08 100%);
  border-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 8px 28px rgba(180, 83, 9, 0.35);
  rotate: -0.9deg;
}
.cp-activity-card--t3 {
  background: linear-gradient(168deg, #5b21b6 0%, #4a1890 22%, #6d28d9 42%, #3b1578 68%, #1e1035 100%);
  border-color: rgba(192, 132, 252, 0.5);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
  rotate: 1.1deg;
}

@media (hover: hover) and (pointer: fine) {
  .cp-activity-card:hover {
    rotate: 0deg;
    transform: translateY(-6px) scale(1.02);
    z-index: 2;
  }
  .cp-activity-card--t0:hover {
    border-color: rgba(134, 239, 172, 0.75);
    box-shadow: 0 18px 44px rgba(34, 197, 94, 0.45);
  }
  .cp-activity-card--t1:hover {
    border-color: rgba(147, 197, 253, 0.75);
    box-shadow: 0 18px 44px rgba(59, 130, 246, 0.45);
  }
  .cp-activity-card--t2:hover {
    border-color: rgba(253, 224, 71, 0.75);
    box-shadow: 0 18px 44px rgba(245, 158, 11, 0.45);
  }
  .cp-activity-card--t3:hover {
    border-color: rgba(216, 180, 254, 0.8);
    box-shadow: 0 18px 48px rgba(168, 85, 247, 0.5);
  }
}

.cp-activity-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0.35rem 0 0.55rem;
}

.cp-activity-card__difficulty {
  display: inline-flex;
  width: fit-content;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cp-activity-card__desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
  margin: 0 0 1rem;
}

.cp-activity-card__why {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0 0 1rem;
}

.cp-activity-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cp-price {
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
}
.cp-price s {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  font-weight: 500;
  margin-right: 0.35rem;
}
.cp-price small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
}

.cp-activity-card__meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

/* —— Classes select —— */
.cp-dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 0.75rem;
}

.cp-date-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 0.9rem;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.cp-date-card:nth-child(4n+1) {
  background: linear-gradient(160deg, #1a6b3c, #0b2418);
  border-color: rgba(74, 222, 128, 0.35);
}
.cp-date-card:nth-child(4n+2) {
  background: linear-gradient(160deg, #1e4a8a, #0b1830);
  border-color: rgba(96, 165, 250, 0.35);
}
.cp-date-card:nth-child(4n+3) {
  background: linear-gradient(160deg, #8a5a12, #2e1f08);
  border-color: rgba(251, 191, 36, 0.35);
}
.cp-date-card:nth-child(4n+4) {
  background: linear-gradient(160deg, #5b21b6, #1e1035);
  border-color: rgba(192, 132, 252, 0.4);
}
.cp-date-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.cp-date-card__weekday {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.cp-date-card__label {
  font-weight: 650;
  font-size: 0.92rem;
  line-height: 1.3;
}
.cp-date-card__cta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.cp-upcoming {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.cp-upcoming-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #1a1f18, #121212);
  border: 1px solid rgba(161, 222, 86, 0.18);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.cp-upcoming-row:hover {
  border-color: var(--cp-green-mid);
  transform: translateX(3px);
}
.cp-upcoming-row__title {
  font-weight: 600;
  font-size: 0.95rem;
}
.cp-upcoming-row__when {
  color: var(--cp-muted);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}
.cp-upcoming-row__price {
  font-weight: 650;
  white-space: nowrap;
}
.cp-upcoming-row__price s {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 500;
  margin-right: 0.3rem;
}
.cp-upcoming-row__link {
  color: var(--cp-green);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.cp-upcoming-row__link:hover { text-decoration: underline; }

.cp-manual-date {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cp-line);
}
.cp-manual-date input[type='date'] {
  flex: 1;
  min-width: 180px;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--cp-line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
}
.cp-manual-date input[type='date']::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
}

/* —— Buy / packs —— */
.cp-buy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1rem;
}

.cp-buy-panel {
  padding: 1.5rem;
  border-radius: var(--cp-radius);
  background: linear-gradient(155deg, #161616, #0e0e0e);
  border: 1px solid var(--cp-line);
  height: 100%;
}

.cp-buy-panel--accent {
  border-color: rgba(74, 222, 128, 0.4);
  background:
    radial-gradient(circle at 100% 0%, rgba(161, 222, 86, 0.22), transparent 45%),
    linear-gradient(168deg, #1a6b3c 0%, #0f3522 55%, #0b2418 100%);
}

.cp-buy-panel--packs {
  border-color: rgba(192, 132, 252, 0.35);
  background:
    radial-gradient(circle at 0% 0%, rgba(168, 85, 247, 0.18), transparent 45%),
    linear-gradient(168deg, #3b1578 0%, #1e1035 100%);
}

.cp-buy-panel h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.45rem;
}
.cp-buy-panel p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1.1rem;
}

.cp-pack-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cp-pack-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.cp-pack-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 180, 254, 0.65);
  background: rgba(255, 255, 255, 0.14);
}
.cp-pack-card__name {
  font-weight: 600;
  font-size: 0.92rem;
}
.cp-pack-card__meta {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}
.cp-pack-card__price {
  font-weight: 700;
  color: #fde68a;
  white-space: nowrap;
}

/* —— Map + enquiry —— */
.cp-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: stretch;
}

.cp-map-card,
.cp-enquiry-card {
  border-radius: var(--cp-radius);
  border: 1px solid var(--cp-line);
  background: var(--cp-panel);
  overflow: hidden;
  min-height: 100%;
}

.cp-map-card {
  border-color: rgba(96, 165, 250, 0.28);
  background: linear-gradient(160deg, #122033, #0e1218);
}

.cp-map-card__body { padding: 1.25rem 1.25rem 0.85rem; }
.cp-map-card__place {
  font-size: 1.05rem;
  font-weight: 700;
  color: #93c5fd;
  margin: 0.15rem 0 0.35rem;
}

.cp-map-frame {
  height: 300px;
  width: 100%;
  background: #dbeafe;
  border-top: 1px solid rgba(147, 197, 253, 0.25);
}
.cp-map-frame .leaflet-container {
  height: 100%;
  width: 100%;
  background: #e0f2fe;
  font-family: inherit;
}
.cp-map-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  color: var(--cp-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid var(--cp-line);
}

.cp-enquiry-card { padding: 1.35rem 1.25rem 1.4rem; }
.cp-form-grid {
  display: grid;
  gap: 0.75rem;
}
.cp-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.35rem;
}
.cp-field input,
.cp-field textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--cp-line);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cp-field input:focus,
.cp-field textarea:focus {
  outline: none;
  border-color: var(--cp-green);
  box-shadow: 0 0 0 3px rgba(161, 222, 86, 0.15);
}
.cp-field textarea { min-height: 110px; resize: vertical; }
.cp-form-status {
  min-height: 1.25rem;
  font-size: 0.85rem;
  color: var(--cp-muted);
  margin-top: 0.65rem;
}
.cp-form-status.is-success { color: var(--cp-green); }
.cp-form-status.is-error { color: #ff8f8f; }

.cp-empty {
  text-align: center;
  padding: 2.25rem 1rem;
  color: var(--cp-muted);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: var(--cp-radius);
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 860px) {
  .cp-buy-grid,
  .cp-split {
    grid-template-columns: 1fr;
  }
  .cp-upcoming-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .cp-hero {
    min-height: min(64vh, 500px);
  }
  .cp-hero__content {
    padding: 2rem 0 2.25rem;
  }
}

@media (max-width: 520px) {
  .cp-dates {
    grid-template-columns: 1fr 1fr;
  }
  .cp-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
