/* Roller Rink Rentals chrome — navy / cream / amber-gold
   pumpkin-default.css is BEM (.pk-*), not Tailwind. Utility classes in
   SiteHeader/SiteFooter/Hero do nothing unless defined here. */

:root,
html[data-pumpkin-tenant="roller-rink-rentals"],
body[data-tenant-id="roller-rink-rentals"] {
  --rr-navy: #060c17;
  --rr-navy-2: #0c1730;
  --rr-navy-line: #1c2b4a;
  --rr-cream: #eee3ca;
  --rr-cream-2: #f6e6c4;
  --rr-gold: #d99a44;
  --rr-gold-hot: #f2ae4a;
  --rr-ink: #1b1408;
  --rr-muted: #5c5346;
  --rr-paper: #fbf6ea;
  --rr-white: #fffdf8;
  --color-background: #fbf6ea;
  --color-foreground: #1b1408;
  --color-primary: #d99a44;
  --color-accent: #060c17;
}

html[data-pumpkin-tenant="roller-rink-rentals"],
body[data-tenant-id="roller-rink-rentals"] {
  background: var(--rr-paper);
  color: var(--rr-ink);
  font-family: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

body[data-tenant-id="roller-rink-rentals"] {
  margin: 0;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  letter-spacing: -0.02em;
  color: var(--rr-navy);
}

p { color: var(--rr-muted); }
a { color: #8a5a18; }
a:hover { color: #6c430e; }

:focus-visible {
  outline: 3px solid var(--rr-gold);
  outline-offset: 3px;
}

/* ---------- Tailwind utility polyfill ---------- */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-full { top: 100%; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-3\.5, .h-3\.5 { width: 0.875rem; height: 0.875rem; }
.w-4, .h-4 { width: 1rem; height: 1rem; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.shrink-0 { flex-shrink: 0; }
.hidden { display: none; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-3 { margin-bottom: 0.75rem; }
.p-2 { padding: 0.5rem; }
.p-5 { padding: 1.25rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-12 { padding-top: 3rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.max-w-sm { max-width: 24rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-\[13\.5rem\] { max-width: 13.5rem; }
.max-w-\[16rem\] { max-width: 16rem; }
.min-h-\[400px\] { min-height: 400px; }
.overflow-hidden { overflow: hidden; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 999px; }
.bg-cover { background-size: cover; }
.bg-black\/40 { background-color: rgba(6, 12, 23, 0.46); }
.border { border-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-white\/90 { color: rgba(255, 253, 248, 0.92); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.leading-tight { line-height: 1.2; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.shadow-xl { box-shadow: 0 20px 50px rgba(6, 12, 23, 0.18); }
.transition-colors, .transition-all { transition: color .15s ease, background-color .15s ease, border-color .15s ease; }

@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:inline-flex { display: inline-flex; }
  .md\:hidden { display: none; }
  .hidden.md\:flex { display: flex; }
  .hidden.md\:inline-flex { display: inline-flex; }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:h-12 { height: 3rem; }
  .md\:max-h-12 { max-height: 3rem; }
  .md\:max-w-\[16rem\] { max-width: 16rem; }
}

/* ---------- Header: dark navy, cream links, gold CTA ---------- */
header.rr-header,
.rr-header {
  background: var(--rr-navy);
  border-bottom: 1px solid var(--rr-navy-line);
  color: var(--rr-cream);
  overflow: hidden;
}

.rr-header-inner,
header.rr-header > div {
  max-width: 72rem;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.rr-header a.rr-logo,
.rr-header a.flex {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Source file is 1536x1024 with navy padding; scale so the lockup reads ~44-48px */
.rr-header img,
.rr-logo-img {
  display: block;
  height: 148px;
  max-height: 148px;
  width: auto;
  max-width: 22rem;
  object-fit: contain;
  margin-top: -38px;
  margin-bottom: -38px;
}

.rr-nav,
header.rr-header nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.rr-nav-link,
header.rr-header nav a {
  color: var(--rr-cream);
  text-decoration: none;
  white-space: nowrap;
}

.rr-nav-link:hover,
header.rr-header nav a:hover {
  color: var(--rr-gold-hot);
}

.rr-btn-gold,
a.rr-btn-gold {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: var(--rr-gold);
  color: var(--rr-navy) !important;
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(217, 154, 68, 0.25);
}

.rr-btn-gold:hover { background: var(--rr-gold-hot); color: var(--rr-navy) !important; }

.rr-mobile-toggle,
header.rr-header button {
  color: var(--rr-cream);
  background: transparent;
  border: 0;
  font-size: 1.35rem;
  padding: 0.4rem;
}

.rr-mobile-menu {
  display: none;
  background: var(--rr-navy-2);
  border-top: 1px solid var(--rr-navy-line);
  padding: 0.75rem 1.25rem 1.1rem;
}

.rr-mobile-menu a,
.rr-mobile-link {
  display: block;
  color: var(--rr-cream);
  text-decoration: none;
  padding: 0.55rem 0;
  font-weight: 600;
}

@media (min-width: 768px) {
  .rr-nav,
  header.rr-header nav.hidden.md\:flex,
  header.rr-header nav {
    display: flex;
  }
  .rr-btn-gold,
  header.rr-header a.hidden.md\:inline-flex {
    display: inline-flex;
  }
  .rr-mobile-toggle,
  header.rr-header button.md\:hidden {
    display: none;
  }
}

/* ---------- Hero ---------- */
#hero section,
section.relative.w-full.min-h-\[400px\] {
  min-height: 420px;
  background-color: var(--rr-navy);
  background-size: cover;
  background-position: center;
  color: var(--rr-cream);
}

#hero .absolute.inset-0,
#hero [aria-hidden="true"] {
  background: linear-gradient(90deg, rgba(6, 12, 23, 0.78) 0%, rgba(6, 12, 23, 0.45) 55%, rgba(6, 12, 23, 0.2) 100%);
}

#hero h1,
section.relative.w-full.min-h-\[400px\] h1 {
  color: var(--rr-cream-2);
  text-shadow: 0 2px 16px rgba(6, 12, 23, 0.45);
}

#hero p,
section.relative.w-full.min-h-\[400px\] p {
  color: rgba(238, 227, 202, 0.92);
}

#hero a,
section.relative.w-full.min-h-\[400px\] a.inline-block {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--rr-gold);
  color: var(--rr-navy);
  font-weight: 800;
  text-decoration: none;
}

#hero a:hover { background: var(--rr-gold-hot); }

/* ---------- Body sections ---------- */
main section {
  color: var(--rr-ink);
}

main h2 { color: var(--rr-navy); }
main p { color: var(--rr-muted); }

main a.inline-block,
main a[class*="button"],
.rr-card-link {
  color: #8a5a18;
}

/* How it works / cards */
main .grid > div {
  background: var(--rr-white);
}

/* ---------- Footer ---------- */
footer.rr-footer,
.rr-footer {
  background: var(--rr-navy);
  color: var(--rr-cream);
  border-top: 1px solid var(--rr-navy-line);
}

.rr-footer a { color: var(--rr-cream-2); }
.rr-footer a:hover { color: var(--rr-gold-hot); }

.rr-footer img,
.rr-footer-logo-img {
  height: 150px;
  max-height: 150px;
  width: auto;
  max-width: 18rem;
  object-fit: contain;
  margin: -48px 0;
}

.rr-footer-desc,
.rr-footer p {
  color: rgba(238, 227, 202, 0.78);
}

.rr-footer-copy,
.rr-footer .rr-footer-bottom,
footer.rr-footer .mt-8 {
  color: rgba(238, 227, 202, 0.62);
}

.rr-footer-credit {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
}

.rr-footer-credit a {
  color: var(--rr-gold-hot);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rr-footer-col-title { color: var(--rr-gold); }

/* Extra utilities used by HowItWorks / CardGrid / PrimaryCTA defaults */
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.w-8, .h-8 { width: 2rem; height: 2rem; }
.w-10, .h-10 { width: 2.5rem; height: 2.5rem; }
.w-20, .h-20 { width: 5rem; height: 5rem; }
.w-full { width: 100%; }
.max-w-xs { max-width: 20rem; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.rounded-xl { border-radius: 0.85rem; }
.bg-white { background: var(--rr-white); }
.bg-orange-500 { background: var(--rr-gold); }
.bg-neutral-50 { background: #f4efe3; }
.bg-black\/50 { background: rgba(6, 12, 23, 0.55); }
.border-neutral-200 { border-color: #e6dcc4; }
.text-neutral-900 { color: var(--rr-navy); }
.text-neutral-600 { color: var(--rr-muted); }
.text-neutral-500 { color: #7a7164; }
.text-orange-600 { color: #8a5a18; }
.text-2xl { font-size: 1.5rem; }
.shadow-md { box-shadow: 0 8px 24px rgba(6, 12, 23, 0.08); }
.overflow-hidden { overflow: hidden; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:text-left { text-align: left; }
  .md\:text-4xl { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Card / how / CTA polish */
main .bg-white.rounded-xl,
main .rounded-xl {
  background: var(--rr-white);
  border: 1px solid #eadfb8;
}

main .w-8.h-8.rounded-full,
main .rounded-full.bg-orange-500 {
  background: var(--rr-gold);
  color: var(--rr-navy);
}

main a.inline-block.mt-6,
main a.bg-orange-500 {
  background: var(--rr-gold);
  color: var(--rr-navy);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

main a.inline-block.mt-6:hover,
main a.bg-orange-500:hover { background: var(--rr-gold-hot); }

/* Primary CTA band */
section.relative.w-full.bg-cover {
  background-color: var(--rr-navy);
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sourcesans3/v19/nwpBtKy2OAdR1K-IwhWudF-R3w8tWuj7bF_I.woff2) format("woff2");
}

/* ---------- Breadcrumbs: path, not a numbered list ----------
   Browser default ol { list-style: decimal } + display:flex leaves
   markers overlapping labels (1. Home, superscript 2/3/4 → Homeò / Pennsylvania4).
   Same class of bug as Dog v12. Scope to crumbs only. */
nav[aria-label="Breadcrumb"] ol,
nav[aria-label="Breadcrumb"] ul,
[data-style-key="ice-breadcrumbs"] ol,
[data-style-key="ice-breadcrumbs"] ul,
[data-block-id$="-breadcrumbs"] ol,
section[id$="-breadcrumbs"] ol {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.45rem;
  counter-reset: none;
}

nav[aria-label="Breadcrumb"] li,
[data-style-key="ice-breadcrumbs"] li,
[data-block-id$="-breadcrumbs"] li,
section[id$="-breadcrumbs"] li {
  list-style: none !important;
  padding-left: 0 !important;
  display: inline-flex;
  align-items: center;
}

nav[aria-label="Breadcrumb"] li::marker,
[data-style-key="ice-breadcrumbs"] li::marker,
[data-block-id$="-breadcrumbs"] li::marker,
section[id$="-breadcrumbs"] li::marker,
nav[aria-label="Breadcrumb"] li::before,
[data-style-key="ice-breadcrumbs"] li::before,
[data-block-id$="-breadcrumbs"] li::before,
section[id$="-breadcrumbs"] li::before {
  content: none !important;
  display: none !important;
}

/* slash separators: space on both sides */
nav[aria-label="Breadcrumb"] .mx-1,
[data-style-key="ice-breadcrumbs"] .mx-1,
[data-block-id$="-breadcrumbs"] .mx-1 {
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.text-neutral-400 { color: #9a9080; }

