/* ==========================================================================
   Squeaky Shine Car Wash — site stylesheet
   Direction: the client's menu boards and mascot are loud, comic-book, and fun.
   The site matches them: chunky outlined type with hard shadows, saturated color
   blocks, tilted polaroid photos, sticker badges. Every value below is a token;
   /brand-guide reads these same variables live.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Core colors — sampled from the client logo */
  --color-blue:   #0172C4;  /* Squeaky Blue — brand blue: sections, links, icons */
  --color-yellow: #FFF200;  /* Sunburst Yellow — Free Wash: the button, the word "free", the ticker, stickers */
  --color-navy:   #0B2A4A;  /* ink: text, outlines, hard shadows, dark sections */
  --color-slate:  #4A5568;  /* secondary text */
  --color-sky:    #EEF6FC;  /* light tint */
  --color-white:  #FFFFFF;

  /* Package accents — sampled from the client's menu boards. Also used as section and
     card colors so the site carries the boards' energy. Ink color fixed per accent. */
  --pkg-squeaky:  #FB6A00;  --pkg-squeaky-ink: var(--color-navy);   /* orange */
  --pkg-plus:     #9CDD65;  --pkg-plus-ink:    var(--color-navy);   /* green  */
  --pkg-special:  #003FDC;  --pkg-special-ink: var(--color-white);  /* royal  */
  --pkg-armor:    #F08A00;  --pkg-armor-ink:   var(--color-navy);   /* gold   */
  --pkg-plus-dark: #2F7D1D;  /* derived: green icon on a white tile */

  /* Derived shades */
  --color-blue-dark:   #015A9C;
  --color-yellow-dark: #EDE000;
  --color-sky-border:  #CFE3F3;

  /* Typography — one family: Barlow */
  --font-heading: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Barlow', 'Helvetica Neue', Arial, sans-serif;

  --text-body:   1rem;
  --text-small:  0.875rem;
  --text-lead:   clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  --text-h1:     clamp(3.5rem, 2rem + 6vw, 7.5rem);        /* 56 → 120 */
  --text-h2:     clamp(2.5rem, 1.7rem + 2.6vw, 4.25rem);   /* 40 → 68  */
  --text-h3:     clamp(1.5rem, 1.3rem + 0.8vw, 1.875rem);  /* 24 → 30  */
  --text-eyebrow: 0.9375rem;

  /* Spacing — 8px scale */
  --space-1: 0.5rem; --space-2: 1rem; --space-3: 1.5rem; --space-4: 2rem;
  --space-5: 3rem;   --space-6: 4rem; --space-7: 6rem;
  --section-pad: var(--space-6);
  --card-pad:    var(--space-3);

  /* Shape and depth — comic style: ink outline + hard offset shadow */
  --ink: 3px;
  --radius-card: 1.25rem;
  --radius-pill: 999px;
  --shadow-hard: 6px 6px 0 var(--color-navy);
  --shadow-hard-sm: 4px 4px 0 var(--color-navy);
  --shadow-hard-lg: 10px 10px 0 var(--color-navy);
  --shadow-soft: 0 10px 30px rgba(11, 42, 74, 0.12);
  --shadow-lift: 0 18px 44px rgba(11, 42, 74, 0.22);
  --focus-ring:  0 0 0 3px var(--color-white), 0 0 0 6px var(--color-blue);
  --focus-ring-dark: 0 0 0 3px var(--color-navy), 0 0 0 6px var(--color-yellow);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --dur:  200ms;
  --container: 74rem;
  --header-h: 4.75rem;
}
@media (min-width: 48em) {
  :root { --text-body: 1.125rem; --section-pad: var(--space-7); --card-pad: var(--space-4); }
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); font-size: var(--text-body); line-height: 1.55; color: var(--color-navy); background: var(--color-white); overflow-x: hidden; }
img, picture, video, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-heading); font-weight: 800; font-style: normal;
  line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase;
  margin: 0 0 var(--space-2); color: var(--color-navy); text-wrap: balance;
}
h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; text-transform: none; letter-spacing: 0; }

/* Display headline — the board look: white letters, ink outline, hard shadow */
.display {
  color: var(--color-white);
  -webkit-text-stroke: 2px var(--color-navy);
  paint-order: stroke fill;
  text-shadow: 5px 5px 0 var(--color-navy);
  letter-spacing: -0.01em;
}
@media (min-width: 48em) { .display { -webkit-text-stroke: 3px var(--color-navy); text-shadow: 8px 8px 0 var(--color-navy); } }
.on-dark .display { text-shadow: 5px 5px 0 var(--color-blue); }
@media (min-width: 48em) { .on-dark .display { text-shadow: 8px 8px 0 var(--color-blue); } }
.display .hl { color: var(--color-yellow); }

/* Highlighted words — a slab behind text */
.pop { background: var(--color-yellow); color: var(--color-navy); padding: 0 0.25em; -webkit-box-decoration-break: clone; box-decoration-break: clone; display: inline-block; }
.pop-white { background: var(--color-white); }

p { margin: 0 0 var(--space-2); }
p:last-child { margin-bottom: 0; }
.lead { font-size: var(--text-lead); line-height: 1.45; font-weight: 500; }
.small { font-size: var(--text-small); }
.muted { color: var(--color-slate); }
.measure { max-width: 42rem; }
a { color: var(--color-blue); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--color-blue-dark); }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 4px; }
.on-dark :focus-visible, .on-blue :focus-visible, .on-royal :focus-visible { box-shadow: var(--focus-ring-dark); }
ul, ol { margin: 0 0 var(--space-2); padding-left: 1.25rem; }
.list-plain { list-style: none; padding: 0; margin: 0; }
strong { font-weight: 700; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.eyebrow {
  display: inline-block; font-family: var(--font-heading); font-size: var(--text-eyebrow); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-blue); margin-bottom: var(--space-2);
  padding: 0.3rem 0.8rem; border: 2px solid currentColor; border-radius: var(--radius-pill);
}
.eyebrow svg { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; margin-right: 0.35em; }
.on-blue .eyebrow, .on-royal .eyebrow { color: var(--color-white); }   /* yellow on blue is 4.3:1 — too low for 15px text */
.on-dark .eyebrow { color: var(--color-yellow); }
/* Eyebrow inside a heading: same look, block above the heading text, none of the heading's display styling */
h1 .eyebrow, h2 .eyebrow { display: table; font-size: var(--text-eyebrow); font-weight: 700; line-height: 1.2; letter-spacing: 0.14em; -webkit-text-stroke: 0; text-shadow: none; margin: 0 0 var(--space-2); }
.display .eyebrow { color: var(--color-white); }
.on-dark .display .eyebrow { color: var(--color-yellow); }
.section-head h2 .eyebrow { margin-inline: auto; }
.eyebrow::before { display: none; }
.on-orange .eyebrow, .on-green .eyebrow, .on-yellow .eyebrow { color: var(--color-navy); }

/* --------------------------------------------------------------------------
   3. Layout + color sections
   -------------------------------------------------------------------------- */
.container { width: min(100% - 2 * var(--space-3), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-pad); position: relative; }
.section-tight { padding-block: var(--space-5); }
.section-head { text-align: center; max-width: 50rem; margin: 0 auto var(--space-5); }
.section-head .lead { color: var(--color-slate); }

.bg-sky    { background: var(--color-sky); }
.bg-blue   { background: var(--color-blue); color: var(--color-white); }
.bg-navy   { background: var(--color-navy); color: var(--color-white); }
.bg-royal  { background: var(--pkg-special); color: var(--color-white); }
.bg-orange { background: var(--pkg-squeaky); color: var(--color-navy); }
.bg-green  { background: var(--pkg-plus); color: var(--color-navy); }
.bg-yellow { background: var(--color-yellow); color: var(--color-navy); }
.on-blue h1, .on-blue h2, .on-blue h3, .on-blue p, .on-blue a,
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark p, .on-dark a,
.on-royal h1, .on-royal h2, .on-royal h3, .on-royal p, .on-royal a { color: var(--color-white); }
.on-blue .section-head .lead, .on-dark .section-head .lead, .on-royal .section-head .lead { color: var(--color-white); }
.on-orange .section-head .lead, .on-green .section-head .lead, .on-yellow .section-head .lead { color: var(--color-navy); }

.grid { display: grid; gap: var(--space-3); }
.grid-2, .grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 48em) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: var(--space-4); }
}
.split { display: grid; gap: var(--space-5); align-items: center; }
@media (min-width: 60em) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-6); } }
.split-reverse > :first-child { order: 2; }
@media (min-width: 60em) { .split-reverse > :first-child { order: 0; } }

/* Sunburst rays — slow spin */
.sunburst { position: relative; isolation: isolate; overflow: hidden; }
.sunburst::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 200vmax; height: 200vmax;
  transform: translate(-50%, -50%) rotate(0deg);
  background: repeating-conic-gradient(from 0deg, var(--color-yellow) 0deg 6deg, transparent 6deg 12deg);
  opacity: 0.07; z-index: -1; pointer-events: none;
  animation: sunburst-spin 180s linear infinite; will-change: transform;
}
.sunburst-white::before { background: repeating-conic-gradient(from 0deg, var(--color-white) 0deg 6deg, transparent 6deg 12deg); opacity: 0.06; }
.sunburst-navy::before  { background: repeating-conic-gradient(from 0deg, var(--color-navy) 0deg 6deg, transparent 6deg 12deg); opacity: 0.08; }
@keyframes sunburst-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Tilt helpers — nothing is crooked at rest; these tip slightly on hover only */
.tilt-l, .tilt-r { transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.tilt-l:hover { transform: rotate(-1.5deg); }
.tilt-r:hover { transform: rotate(1.5deg); }
.card.tilt-l:hover { transform: translate(-3px, -3px) rotate(-1.5deg); }
.card.tilt-r:hover { transform: translate(-3px, -3px) rotate(1.5deg); }

/* --------------------------------------------------------------------------
   4. Buttons — two styles, comic build: ink border + hard shadow
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 3.25rem; padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none; line-height: 1; cursor: pointer;
  border: var(--ink) solid var(--color-navy);
  box-shadow: var(--shadow-hard-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn:hover, .btn:focus-visible { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }
.btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--color-navy); }
.btn[aria-disabled="true"], .btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-primary { background: var(--color-yellow); color: var(--color-navy); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--color-yellow-dark); color: var(--color-navy); }
.btn-primary::after { content: "\2192" / ""; display: inline-block; transition: transform var(--dur) var(--ease); }
.btn-primary:hover::after, .btn-primary:focus-visible::after { transform: translateX(4px); }

.btn-secondary { background: var(--color-white); color: var(--color-navy); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--color-navy); color: var(--color-white); }
.on-dark .btn, .on-blue .btn, .on-royal .btn { box-shadow: 4px 4px 0 rgba(255,255,255,0.9); color: var(--color-navy); }
.on-dark .btn-secondary:hover, .on-blue .btn-secondary:hover, .on-royal .btn-secondary:hover { color: var(--color-navy); }
.on-dark .btn:hover, .on-blue .btn:hover, .on-royal .btn:hover,
.on-dark .btn:focus-visible, .on-blue .btn:focus-visible, .on-royal .btn:focus-visible { box-shadow: 6px 6px 0 rgba(255,255,255,0.9); }
.on-dark .btn-secondary:hover, .on-blue .btn-secondary:hover, .on-royal .btn-secondary:hover,
.on-dark .btn-secondary:focus-visible, .on-blue .btn-secondary:focus-visible, .on-royal .btn-secondary:focus-visible { background: var(--color-yellow); color: var(--color-navy); }

.btn-lg { min-height: 3.9rem; padding: 1.1rem 2.4rem; font-size: 1.4rem; }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }
.btn-note { font-size: var(--text-small); margin-top: var(--space-2); color: var(--color-slate); font-weight: 600; }
.on-blue .btn-note, .on-dark .btn-note, .on-royal .btn-note { color: var(--color-white); opacity: 0.9; }
.on-orange .btn-note, .on-green .btn-note, .on-yellow .btn-note { color: var(--color-navy); }

/* --------------------------------------------------------------------------
   5. Skip link and header
   -------------------------------------------------------------------------- */
.skip-link { position: absolute; top: -100%; left: 1rem; z-index: 1000; padding: 0.75rem 1.25rem; background: var(--color-navy); color: var(--color-white); border-radius: 0 0 0.75rem 0.75rem; font-weight: 600; text-decoration: none; }
.skip-link:focus { top: 0; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: var(--ink) solid var(--color-navy); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: auto; height: 3.25rem; }
@media (min-width: 60em) { .brand img { height: 3.75rem; } }

.nav-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-width: 3rem; min-height: 3rem; padding: 0.5rem 0.75rem; background: var(--color-white); border: var(--ink) solid var(--color-navy); border-radius: 0.75rem; color: var(--color-navy); font: inherit; font-weight: 700; cursor: pointer; box-shadow: 3px 3px 0 var(--color-navy); }
.nav-toggle .bars { display: inline-block; width: 1.25rem; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after { content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; }
.nav-toggle .bars::before { top: -6px; } .nav-toggle .bars::after { top: 6px; }

.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-1); align-items: center; }
.site-nav a { display: inline-block; padding: 0.6rem 0.9rem; border-radius: var(--radius-pill); font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--color-navy); text-decoration: none; transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a[aria-current="page"] { background: var(--color-yellow); transform: rotate(-2deg); }
.header-cta { display: none; }
@media (max-width: 59.99em) {
  .site-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--color-white); border-bottom: var(--ink) solid var(--color-navy); box-shadow: var(--shadow-soft); }
  .site-nav ul { flex-direction: column; align-items: stretch; padding: var(--space-2) var(--space-3) var(--space-3); gap: 0.25rem; }
  .site-nav a { display: block; padding: 0.9rem 1rem; font-size: 1.35rem; }
  .site-nav .nav-cta { margin-top: var(--space-2); }
  .js .site-nav[hidden] { display: none; }
}
@media (min-width: 60em) {
  .nav-toggle { display: none; }
  .site-nav[hidden] { display: block; }
  .site-nav .nav-cta { display: none; }
  .header-cta { display: inline-flex; }
}
.page-embed .site-header { display: none; }
/* Bare landing (Free Wash, Free Wash Google): no header, no footer, blue field, form in a white card */
.page-bare .site-footer { display: none; }
.page-bare, .page-bare body { background: var(--color-blue); }
.landing { min-height: 100vh; padding-block: var(--space-5) var(--space-6); background-color: var(--color-blue); background-image: linear-gradient(160deg, var(--color-blue) 0%, var(--color-blue) 50%, var(--color-blue-dark) 100%); color: var(--color-white); text-align: center; }
.landing .container { max-width: 40rem; }
.landing h1 { font-size: clamp(3.75rem, 1.8rem + 3vw, 4.5rem); margin-bottom: var(--space-2); }
.landing .lead { max-width: 30rem; margin-inline: auto; margin-bottom: var(--space-4); }
.embed-card { background: var(--color-white); color: var(--color-navy); border: var(--ink) solid var(--color-navy); border-radius: var(--radius-card); box-shadow: var(--shadow-hard-lg); padding: var(--space-4) var(--space-3); text-align: center; }
@media (min-width: 48em) { .embed-card { padding: var(--space-5) var(--space-4); } }
.embed-card .logo { width: 11rem; margin: 0 auto var(--space-3); }
.embed-card .embed-slot { margin-top: var(--space-2); }
.embed-card .fine { margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid var(--color-sky-border); font-size: var(--text-small); color: var(--color-slate); }
.trust-row { list-style: none; padding: 0; margin: var(--space-5) auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3) var(--space-5); }
.trust-row li { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; }
.trust-row svg { width: 2.25rem; height: 2.25rem; padding: 0.45rem; border-radius: 50%; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.5); color: var(--color-yellow); }
.ty-cards { display: grid; gap: var(--space-3); margin-top: var(--space-4); text-align: left; }
@media (min-width: 40em) { .ty-cards { grid-template-columns: 1fr 1fr; } }
.ty-cards .card { color: var(--color-navy); display: grid; gap: 0.5rem; justify-items: start; }
.ty-cards .card h2 { font-size: 1.5rem; margin: 0; }
.ty-cards .card p { margin: 0 0 0.5rem; color: var(--color-navy); }
.ty-cards .card .card-icon { margin-bottom: 0.25rem; }
.ty-cards .card .btn { margin-top: 0.25rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: var(--space-4); color: var(--color-white); font-weight: 700; text-decoration: none; }
.back-link:hover, .back-link:focus-visible { text-decoration: underline; color: var(--color-white); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; isolation: isolate; overflow: hidden; color: var(--color-white); min-height: min(94vh, 60rem); display: grid; align-items: end; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: 62% 35%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(1,114,196,0.85) 0%, rgba(1,114,196,0.55) 45%, rgba(11,42,74,0.15) 80%, rgba(11,42,74,0.05) 100%),
    linear-gradient(180deg, rgba(11,42,74,0.05) 0%, rgba(11,42,74,0) 35%, rgba(11,42,74,0.80) 100%);
}
@media (max-width: 59.99em) {
  .hero::before { background: linear-gradient(180deg, rgba(1,114,196,0.25) 0%, rgba(1,114,196,0.7) 30%, rgba(11,42,74,0.94) 52%, rgba(11,42,74,0.98) 100%); }
  .hero-media img { object-position: 62% 0; }
}
.hero .container { position: relative; display: grid; gap: var(--space-4); align-items: end; }
@media (min-width: 60em) { .hero .container { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); } }
.hero-inner { position: relative; padding-block: clamp(6rem, 12vh, 9rem) var(--space-6); max-width: 46rem; }
@media (min-width: 60em) { .hero-inner { padding-bottom: var(--space-7); } }
.hero h1 { margin-bottom: var(--space-3); }
.hero .lead { max-width: 34rem; margin-bottom: var(--space-4); font-weight: 600; text-shadow: 0 2px 12px rgba(11,42,74,0.5); }
.hero .btn-note { color: var(--color-white); opacity: 0.95; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.95rem; border-radius: var(--radius-pill); background: var(--color-white); color: var(--color-navy); border: var(--ink) solid var(--color-navy); box-shadow: var(--shadow-hard-sm); font-family: var(--font-heading); font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.95rem; margin-bottom: var(--space-3); }
.hero-badge svg { width: 1rem; height: 1rem; flex: 0 0 1rem; color: var(--color-blue); }
.on-blue .hero-badge, .on-dark .hero-badge, .on-royal .hero-badge { color: var(--color-navy); }

.hero-card { position: relative; justify-self: end; margin-bottom: var(--space-6); display: grid; gap: 0.9rem; min-width: 16rem; max-width: 20rem; padding: var(--space-3); border-radius: var(--radius-card); background: var(--color-white); color: var(--color-navy); border: var(--ink) solid var(--color-navy); box-shadow: var(--shadow-hard-lg); }
@media (max-width: 59.99em) { .hero-card { justify-self: start; margin-top: calc(-1 * var(--space-3)); } }
.hero-card .row { display: flex; align-items: center; gap: 0.75rem; }
.hero-card .row + .row { padding-top: 0.9rem; border-top: 2px dashed var(--color-sky-border); }
.hero-card svg { width: 1.5rem; height: 1.5rem; flex: 0 0 1.5rem; color: var(--color-blue); }
.hero-card .big { font-family: var(--font-heading); font-weight: 800; font-size: 1.75rem; line-height: 1; }
.hero-card .sub { display: block; font-size: var(--text-small); color: var(--color-slate); font-weight: 600; }
.hero-card .mascot-badge { position: absolute; top: -2.75rem; right: -1rem; }
.media-pause { position: absolute; right: var(--space-3); bottom: var(--space-3); z-index: 2; min-width: 2.75rem; min-height: 2.75rem; padding: 0.5rem 0.9rem; border-radius: var(--radius-pill); border: 2px solid rgba(255,255,255,0.6); background: rgba(11,42,74,0.7); color: var(--color-white); font: inherit; font-weight: 600; cursor: pointer; }

/* Split hero — text left, whole photo right. No crop, no overlays.
   Pop layer: ghost FREE behind, letters bounce in, photo breaks out over the ticker, CTA pulses. */
.hero-split { overflow: visible; position: relative; isolation: isolate; z-index: 2; }
.hero-split .rays { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.hero-split .rays::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 200vmax; height: 200vmax;
  transform: translate(-50%, -50%) rotate(0deg);
  background: repeating-conic-gradient(from 0deg, var(--color-white) 0deg 6deg, transparent 6deg 12deg);
  opacity: 0.06; animation: sunburst-spin 180s linear infinite; will-change: transform;
}
.hero-split .rays::after {
  content: ""; position: absolute; right: -10%; top: 50%; width: 60vw; height: 60vw; transform: translateY(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0) 60%);
}
.hero-ghost {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -52%); z-index: 0; pointer-events: none;
  font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; line-height: 1;
  font-size: clamp(11rem, 34vw, 34rem); letter-spacing: -0.02em;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.30); white-space: nowrap;
}
@media (min-width: 60em) { .hero-ghost { -webkit-text-stroke: 3px rgba(255,255,255,0.28); transform: translate(-58%, -50%); } }
.hero-split .container { position: relative; z-index: 1; }
.hero-split .hero-photo { z-index: 3; margin-bottom: 0; }
.hero-split .hero-photo .polaroid, .hero-split .hero-photo { padding: 1.1rem 1.1rem 0; }
.marquee { position: relative; z-index: 1; }

/* Letters bounce in */
.h1-letters .word { display: inline-block; white-space: nowrap; }
.h1-letters .ch { display: inline-block; animation: letter-pop 700ms cubic-bezier(0.2, 1.5, 0.4, 1) both; animation-delay: calc(var(--i) * 55ms); }
@keyframes letter-pop { from { opacity: 0; transform: translateY(0.6em) scale(0.7) rotate(-6deg); } to { opacity: 1; transform: none; } }

/* CTA pulse */
.btn-pulse { animation: cta-pulse 3.2s ease-in-out infinite; }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 4px 4px 0 var(--color-navy), 0 0 0 0 rgba(255,242,0,0.55); }
  50%      { box-shadow: 4px 4px 0 var(--color-navy), 0 0 0 14px rgba(255,242,0,0); }
}
.on-blue .btn-pulse { animation-name: cta-pulse-dark; }
@keyframes cta-pulse-dark {
  0%, 100% { box-shadow: 4px 4px 0 rgba(255,255,255,0.9), 0 0 0 0 rgba(255,242,0,0.6); }
  50%      { box-shadow: 4px 4px 0 rgba(255,255,255,0.9), 0 0 0 14px rgba(255,242,0,0); }
}

/* Hero step chips */
.hero-steps { list-style: none; padding: 0; margin: var(--space-3) 0 0; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.hero-steps li { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.9rem 0.45rem 0.45rem; border-radius: var(--radius-pill); background: var(--color-white); color: var(--color-navy); border: 2px solid var(--color-navy); font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1rem; }
.hero-steps .n { display: grid; place-items: center; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--color-yellow); border: 2px solid var(--color-navy); font-size: 0.9rem; }

/* Split hero — text left, whole photo right. No crop, no overlays. */
.hero-split { min-height: 0; display: block; padding-block: var(--space-5); background-color: var(--color-blue); background-image: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue) 55%, var(--color-blue-dark) 100%); }

@media (min-width: 60em) { .hero-split { padding-block: 3.5rem; } }
.hero-split .container { display: grid; }
.hero-split .hero-inner { padding-block: 0; max-width: none; }
.hero-split .lead { text-shadow: none; }
.hero-split .hero-photo { margin-inline: auto; width: min(100%, 36rem); position: relative; }
@media (min-width: 60em) { .hero-split .container.split { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: var(--space-6); } }
.hero-split .hero-photo .photo img { object-fit: contain; height: auto; }
.hero-split .hero-photo figcaption { color: var(--color-navy); }
@media (max-width: 59.99em) { .hero-split .hero-photo { margin-top: var(--space-4); } }

/* Starburst sticker */
.sticker {
  display: grid; place-items: center; text-align: center;
  width: 9.5rem; height: 9.5rem; padding: 1rem;
  background: var(--color-yellow); color: var(--color-navy);
  clip-path: polygon(50% 0%, 61% 12%, 75% 5%, 79% 21%, 95% 22%, 90% 38%, 100% 50%, 90% 62%, 95% 78%, 79% 79%, 75% 95%, 61% 88%, 50% 100%, 39% 88%, 25% 95%, 21% 79%, 5% 78%, 10% 62%, 0% 50%, 10% 38%, 5% 22%, 21% 21%, 25% 5%, 39% 12%);
  font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; line-height: 0.95; font-size: 1.15rem; letter-spacing: 0.02em;
  transform: rotate(-12deg);
  animation: sticker-wiggle 6s ease-in-out infinite;
}
.sticker strong { display: block; font-size: 2rem; }
@keyframes sticker-wiggle { 0%, 100% { transform: rotate(-12deg) scale(1); } 50% { transform: rotate(-6deg) scale(1.05); } }
.hero .sticker { position: absolute; z-index: 1; }
@media (min-width: 60em) { .hero .sticker { width: 12rem; height: 12rem; font-size: 1.4rem; right: 6%; top: 16%; } .hero .sticker strong { font-size: 2.6rem; } }
@media (max-width: 59.99em) { .hero .sticker { width: 7.5rem; height: 7.5rem; font-size: 0.95rem; right: 0.75rem; top: 10.5rem; } .hero .sticker strong { font-size: 1.6rem; } }

/* --------------------------------------------------------------------------
   7. Components
   -------------------------------------------------------------------------- */
/* Ticker — yellow, loud */
.marquee { overflow: hidden; background: var(--color-yellow); color: var(--color-navy); padding-block: 0.85rem; border-block: var(--ink) solid var(--color-navy); }
.marquee-track { display: flex; width: max-content; animation: marquee 36s linear infinite; }
.marquee ul { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-4); padding-right: var(--space-4); white-space: nowrap; }
.marquee li { display: inline-flex; align-items: center; gap: var(--space-4); font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; letter-spacing: 0.06em; text-transform: uppercase; }
.marquee li::after { content: "\2605"; font-size: 1rem; color: var(--color-navy); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); text-align: center; }
@media (min-width: 48em) { .stats { grid-template-columns: repeat(4, 1fr); gap: var(--space-4); } }
.stat { padding: var(--space-3) var(--space-2); background: var(--color-white); border: var(--ink) solid var(--color-navy); border-radius: var(--radius-card); box-shadow: var(--shadow-hard-sm); }
.stat { transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.stat:hover { transform: translateY(-3px) rotate(-1.5deg); box-shadow: var(--shadow-hard); }
.stat:nth-child(even):hover { transform: translateY(-3px) rotate(1.5deg); }
.stat-value { font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.75rem, 2rem + 2.5vw, 4.25rem); line-height: 1; color: var(--color-blue); }
.stat-label { font-weight: 700; color: var(--color-navy); margin-top: 0.25rem; }

/* Cards — ink outline, hard shadow, optional accent fills */
.card { background: var(--color-white); border: var(--ink) solid var(--color-navy); border-radius: var(--radius-card); padding: var(--card-pad); box-shadow: var(--shadow-hard); transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.card:hover, .card:focus-within { transform: translate(-3px, -3px); box-shadow: var(--shadow-hard-lg); }
.card h3 { margin-bottom: 0.5rem; }
.card-orange { background: var(--pkg-squeaky); color: var(--pkg-squeaky-ink); }
.card-green  { background: var(--pkg-plus);    color: var(--pkg-plus-ink); }
.card-royal  { background: var(--pkg-special); color: var(--pkg-special-ink); }
.card-royal h3, .card-royal p { color: var(--color-white); }
.card-yellow { background: var(--color-yellow); color: var(--color-navy); }
.card-sky    { background: var(--color-sky); }
.card-icon { width: 3.75rem; height: 3.75rem; border-radius: 1rem; display: grid; place-items: center; background: var(--color-white); color: var(--color-navy); border: var(--ink) solid var(--color-navy); margin-bottom: var(--space-3); box-shadow: 3px 3px 0 var(--color-navy); }
.card-icon svg { width: 1.9rem; height: 1.9rem; }
.card-royal .card-icon { color: var(--pkg-special); }
.icon-orange .card-icon { background: var(--pkg-squeaky); color: var(--color-navy); }
.icon-green .card-icon { background: var(--pkg-plus); color: var(--color-navy); }
.icon-royal .card-icon { background: var(--pkg-special); color: var(--color-white); }
.icon-yellow .card-icon { background: var(--color-yellow); color: var(--color-navy); }
.card-orange .card-icon { color: var(--pkg-squeaky); }
.card-green .card-icon { color: var(--pkg-plus-dark); }

/* Steps */
.steps { display: grid; gap: var(--space-3); list-style: none; padding: 0; margin: 0; }
@media (min-width: 48em) { .steps:not(.steps-vertical) { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; }
.steps-vertical { list-style: none; padding: 0; }
.steps-vertical .step { display: grid; grid-template-columns: 3.5rem 1fr; column-gap: var(--space-3); align-items: start; }
.step-num { grid-row: 1 / span 2; display: grid; place-items: center; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--color-white); color: var(--color-navy); border: var(--ink) solid var(--color-navy); box-shadow: 3px 3px 0 var(--color-navy); font-family: var(--font-heading); font-weight: 800; font-size: 1.75rem; line-height: 1; }
.steps-vertical .step h3 { margin-bottom: 0.25rem; }

/* Check list */
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; }
.check-list svg { flex: 0 0 1.5rem; width: 1.5rem; height: 1.5rem; margin-top: 0.1rem; color: var(--color-navy); background: var(--color-yellow); border-radius: 50%; padding: 0.2rem; border: 2px solid var(--color-navy); }

/* Menu boards — the client's boards ARE the menu */
.boards { display: grid; gap: var(--space-4); }
@media (min-width: 48em) { .boards { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); } }
.board { margin: 0; position: relative; }
.board img { width: 100%; height: auto; border-radius: 1.25rem; border: var(--ink) solid var(--color-navy); box-shadow: var(--shadow-hard-lg); transition: transform 300ms var(--ease), box-shadow 300ms var(--ease); }
.board:hover img { transform: translateY(-6px) rotate(-1deg); box-shadow: 14px 14px 0 var(--color-navy); }
.board:nth-child(even):hover img { transform: translateY(-6px) rotate(1deg); }
.on-dark .board img, .on-royal .board img, .on-blue .board img { border-color: var(--color-white); box-shadow: 10px 10px 0 rgba(255,255,255,0.9); }
.on-dark .board:hover img, .on-royal .board:hover img, .on-blue .board:hover img { box-shadow: 14px 14px 0 rgba(255,255,255,0.9); }
.board figcaption { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-2); margin-top: var(--space-3); }
.board figcaption .name { font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; font-size: 1.375rem; line-height: 1; }
.price-pill { display: inline-flex; align-items: baseline; gap: 0.3rem; padding: 0.35rem 0.9rem; border-radius: var(--radius-pill); background: var(--pkg, var(--color-yellow)); color: var(--pkg-ink, var(--color-navy)); border: 2px solid var(--color-navy); }
.pkg-squeaky { --pkg: var(--pkg-squeaky); --pkg-ink: var(--pkg-squeaky-ink); }
.pkg-plus    { --pkg: var(--pkg-plus);    --pkg-ink: var(--pkg-plus-ink); }
.pkg-special { --pkg: var(--pkg-special); --pkg-ink: var(--pkg-special-ink); }
.pkg-armor   { --pkg: var(--pkg-armor);   --pkg-ink: var(--pkg-armor-ink); }
.price-pill .num { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; line-height: 1; color: inherit; }
.price-pill .per { font-size: var(--text-small); font-weight: 700; color: inherit; }

/* FAQ */
.faq { max-width: 48rem; margin-inline: auto; display: grid; gap: var(--space-2); }
.faq-2col { max-width: none; }
@media (min-width: 60em) { .faq-2col { grid-template-columns: 1fr 1fr; gap: var(--space-3); align-items: start; } }
.faq details { background: var(--color-white); border: var(--ink) solid var(--color-navy); border-radius: 1rem; box-shadow: var(--shadow-hard-sm); }
.faq details[open] { box-shadow: var(--shadow-hard); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: var(--space-2); padding: var(--space-2) var(--space-3); font-family: var(--font-heading); font-weight: 800; font-size: 1.4rem; line-height: 1.1; color: var(--color-navy); text-transform: uppercase; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: 0 0 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%; background: var(--color-yellow); border: 2px solid var(--color-navy); color: var(--color-navy); font-weight: 800; }
.faq details[open] summary::after { content: "–"; }
.faq summary:hover, .faq summary:focus-visible { color: var(--color-blue); }
.faq details > div { padding: 0 var(--space-3) var(--space-3); color: var(--color-navy); }

/* Chips — sticker style, cycling accents */
.chips { display: flex; flex-wrap: wrap; gap: 0.8rem; list-style: none; padding: 0; margin: 0; }
.chips li { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 1rem; border-radius: var(--radius-pill); background: var(--color-white); border: 2px solid var(--color-navy); box-shadow: 3px 3px 0 var(--color-navy); font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.05rem; color: var(--color-navy); }
.chips li { transition: transform var(--dur) var(--ease); }
.chips li:hover { transform: rotate(-2deg); }
.chips li:nth-child(4n+1) { background: var(--pkg-squeaky); }
.chips li:nth-child(4n+2) { background: var(--pkg-plus); }
.chips li:nth-child(4n+3) { background: var(--color-yellow); }
.chips li:nth-child(4n+4) { background: var(--color-sky); }
.chips svg { width: 1.1rem; height: 1.1rem; }

/* Photos — polaroid frames, tilted */
.photo { border-radius: 1.25rem; overflow: hidden; border: var(--ink) solid var(--color-navy); box-shadow: var(--shadow-hard-lg); background: var(--color-white); }
.photo picture { width: 100%; height: 100%; }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.polaroid { margin: 0; background: var(--color-white); padding: 0.9rem 0.9rem 0; border: var(--ink) solid var(--color-navy); border-radius: 0.75rem; box-shadow: var(--shadow-hard-lg); transition: transform 300ms var(--ease); }
.polaroid:hover { transform: rotate(-1.5deg); }
.polaroid.tilt-r:hover { transform: rotate(1.5deg); }
.polaroid .photo { border: 0; box-shadow: none; border-radius: 0.5rem; }
.polaroid figcaption { padding: 0.9rem 0.25rem 1rem; font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; color: var(--color-navy); text-align: center; letter-spacing: 0.02em; }
.photo-stack { position: relative; }
.photo-chip { position: absolute; z-index: 2; left: var(--space-3); bottom: -1rem; display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1rem; border-radius: var(--radius-pill); background: var(--color-yellow); color: var(--color-navy); border: var(--ink) solid var(--color-navy); box-shadow: var(--shadow-hard-sm); font-family: var(--font-heading); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.03em; text-transform: uppercase; }
.photo-chip svg { width: 1.25rem; height: 1.25rem; color: var(--color-navy); }
.photo-placeholder { display: grid; place-items: center; text-align: center; padding: var(--space-4); aspect-ratio: 4 / 3; border-radius: var(--radius-card); border: var(--ink) dashed var(--color-navy); background: var(--color-sky); color: var(--color-navy); font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.04em; }

.embed-slot { border: var(--ink) dashed var(--color-navy); border-radius: var(--radius-card); background: var(--color-sky); padding: var(--space-4); text-align: center; color: var(--color-navy); }
.embed-slot strong { display: block; font-family: var(--font-heading); text-transform: uppercase; font-size: 1.25rem; margin-bottom: 0.5rem; }

.logo-chip { display: inline-block; background: var(--color-white); border-radius: 1rem; padding: 0.75rem 1rem; border: var(--ink) solid var(--color-navy); }
.map-frame { border-radius: var(--radius-card); overflow: hidden; border: var(--ink) solid var(--color-navy); box-shadow: var(--shadow-hard-lg); aspect-ratio: 4 / 3; background: var(--color-sky); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.info-list li { display: flex; gap: 0.85rem; align-items: flex-start; }
.info-list svg { flex: 0 0 1.5rem; width: 1.5rem; height: 1.5rem; color: var(--color-blue); margin-top: 0.15rem; }
.on-blue .info-list svg, .on-dark .info-list svg, .on-royal .info-list svg { color: var(--color-yellow); }
.info-list .label { display: block; font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.95rem; color: var(--color-slate); }
.on-dark .info-list .label, .on-blue .info-list .label, .on-royal .info-list .label { color: var(--color-white); opacity: 0.85; }

.mascot-badge { width: 6rem; height: 6rem; border-radius: 50%; border: 4px solid var(--color-white); box-shadow: 0 0 0 3px var(--color-navy), 6px 6px 0 var(--color-navy); background: var(--color-white); object-fit: cover; }
.mascot-badge-lg { width: 9.5rem; height: 9.5rem; }
.hero-mascot { position: absolute; z-index: 2; top: -3rem; left: -2.5rem; width: 9rem; height: 9rem; }
@media (max-width: 59.99em) { .hero-mascot { width: 6rem; height: 6rem; top: -2rem; left: -0.75rem; } }
.mascot-bob { animation: bob 4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.prose { max-width: 62rem; margin-inline: auto; }
.prose h2 { font-size: clamp(1.5rem, 1.3rem + 0.8vw, 1.875rem); margin-top: var(--space-5); }
.prose h1 { margin-bottom: var(--space-1); }
.prose ul li { margin-bottom: 0.35rem; }
.prose address { font-style: normal; line-height: 1.7; }
.prose a, .prose p { overflow-wrap: anywhere; }

/* --------------------------------------------------------------------------
   8. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--color-navy); color: var(--color-white); padding-block: var(--space-6) var(--space-4); }
.footer-grid { display: grid; gap: var(--space-4); }
@media (min-width: 48em) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand .logo-chip img { width: 12rem; height: auto; }
.footer-tagline { margin-top: var(--space-2); font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-yellow); }
.footer-heading { font-family: var(--font-heading); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 1rem; color: var(--color-yellow); margin-bottom: var(--space-2); }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer a { color: var(--color-white); text-decoration: none; }
.site-footer a:hover, .site-footer a:focus-visible { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.footer-bottom { margin-top: var(--space-5); padding-top: var(--space-3); border-top: 1px solid rgba(255,255,255,0.18); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2); font-size: var(--text-small); }
.footer-bottom ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* --------------------------------------------------------------------------
   9. Motion
   -------------------------------------------------------------------------- */
.js .reveal { opacity: 0; translate: 0 18px; transition: opacity 600ms var(--ease), translate 600ms var(--ease); }
.js .reveal.is-visible { opacity: 1; translate: 0 0; }
.js .reveal-delay-1 { transition-delay: 90ms; } .js .reveal-delay-2 { transition-delay: 180ms; } .js .reveal-delay-3 { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; translate: 0 0; }
  .btn:hover, .btn:focus-visible, .card:hover { transform: none; }
  .sunburst::before, .sticker, .mascot-bob, .hero-split .rays::before, .btn-pulse { animation: none; }
  .h1-letters .ch { animation: none; opacity: 1; transform: none; }
  .marquee-track { animation: none; width: auto; flex-wrap: wrap; }
  .marquee ul { flex-wrap: wrap; white-space: normal; }
  .marquee [aria-hidden] { display: none; }
}

/* --------------------------------------------------------------------------
   10. Utilities, pending, page hero, 404
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-1); } .mt-2 { margin-top: var(--space-2); } .mt-3 { margin-top: var(--space-3); } .mt-4 { margin-top: var(--space-4); } .mt-5 { margin-top: var(--space-5); }
.mb-2 { margin-bottom: var(--space-2); } .mb-3 { margin-bottom: var(--space-3); } .mb-4 { margin-bottom: var(--space-4); }
.flow > * + * { margin-top: var(--space-2); }
.divider { height: 1px; background: var(--color-sky-border); border: 0; margin: 0; }

.pending { background: var(--color-sky); border: 2px dashed var(--color-navy); border-radius: 0.35rem; padding: 0 0.4rem; color: var(--color-navy); font-weight: 700; }
.on-blue .pending, .on-dark .pending, .on-royal .pending { background: rgba(255,255,255,0.15); border-color: var(--color-white); color: var(--color-white); }
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

/* Hero rules — every page hero: same H1 scale, same display treatment, content above a 768px fold */
.page-hero { padding-block: var(--space-5); position: relative; }
@media (min-width: 48em) { .page-hero { padding-block: 3.5rem; } }
.hero h1, .page-hero h1 { font-size: clamp(4.5rem, 2rem + 4.2vw, 5.75rem); }  /* 72px on phones → 92px desktop */
@media (max-width: 59.99em) { .hero h1, .page-hero h1 { font-size: clamp(3.5rem, 13.3vw + 1.25rem, 5.75rem); } }  /* phones: ~63px at 320, 72px at 390, scales with width */
.page-hero .lead { margin-bottom: var(--space-3); }
.page-hero .photo-stack, .page-hero .photo-placeholder, .page-hero > .container > .photo { width: 100%; max-width: 34rem; margin-inline: auto; }
.page-hero .polaroid { width: 100%; max-width: 34rem; margin-inline: auto; }
.page-hero .lead { color: var(--color-slate); }
.on-blue.page-hero .lead, .on-dark.page-hero .lead, .on-royal.page-hero .lead { color: var(--color-white); }

.notfound { display: grid; place-items: center; text-align: center; }
.notfound .mascot-badge { margin-inline: auto; }

/* --------------------------------------------------------------------------
   12. Accessibility toolbar (js/a11y.js) — a supplement to the built-in WCAG work
   -------------------------------------------------------------------------- */
.a11y-widget { position: fixed; right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); z-index: 1100; display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.a11y-fab { width: 3.25rem; height: 3.25rem; border-radius: 50%; border: var(--ink) solid var(--color-navy); background: var(--color-blue); color: var(--color-white); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-hard-sm); transition: transform var(--dur) var(--ease); }
.a11y-fab svg { width: 1.6rem; height: 1.6rem; }
.a11y-fab:hover, .a11y-fab:focus-visible { transform: translate(-2px, -2px); box-shadow: var(--shadow-hard); }
.a11y-fab:focus-visible { box-shadow: var(--shadow-hard), var(--focus-ring-dark); }
.a11y-panel { width: min(22rem, calc(100vw - 2rem)); max-height: calc(100vh - 7rem); max-height: calc(100dvh - 7rem); overflow: auto; background: var(--color-white); color: var(--color-navy); border: var(--ink) solid var(--color-navy); border-radius: var(--radius-card); box-shadow: var(--shadow-hard-lg); padding: var(--space-3); font-family: var(--font-body); font-size: 1rem; line-height: 1.4; }
.a11y-head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-2); margin-bottom: var(--space-2); }
.a11y-head h2 { font-size: 1.5rem; margin: 0; }
.a11y-close { width: 2.5rem; height: 2.5rem; border-radius: 50%; border: 2px solid var(--color-navy); background: var(--color-white); color: var(--color-navy); font-size: 1.5rem; line-height: 1; cursor: pointer; }
.a11y-close:hover, .a11y-close:focus-visible { background: var(--color-yellow); }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.a11y-opt { min-height: 3rem; padding: 0.6rem 0.75rem; border-radius: 0.75rem; border: 2px solid var(--color-navy); background: var(--color-white); color: var(--color-navy); font: inherit; font-weight: 700; cursor: pointer; text-align: left; }
.a11y-opt[aria-pressed="true"] { background: var(--color-yellow); box-shadow: 3px 3px 0 var(--color-navy); }
.a11y-opt[aria-pressed="true"]::before { content: "\2713\00a0"; }
.a11y-opt:hover, .a11y-opt:focus-visible { border-color: var(--color-blue); }
.a11y-foot { margin-top: var(--space-2); display: grid; gap: 0.5rem; }
.a11y-reset { justify-self: start; padding: 0.5rem 0.9rem; border-radius: var(--radius-pill); border: 2px solid var(--color-navy); background: var(--color-white); color: var(--color-navy); font: inherit; font-weight: 700; cursor: pointer; }
.a11y-reset:hover, .a11y-reset:focus-visible { background: var(--color-navy); color: var(--color-white); }
.a11y-note { font-size: var(--text-small); color: var(--color-slate); margin: 0; }
/* Keep the floating button clear of the footer's last row on small screens */
@media (max-width: 59.99em) { .site-footer { padding-bottom: calc(var(--space-4) + 4.5rem); } .page-bare .landing { padding-bottom: calc(var(--space-6) + 4rem); } }
@media print { .a11y-widget { display: none; } }

/* Preferences — classes on <html> */
.a11y-text-lg { font-size: 112.5%; }
.a11y-text-xl { font-size: 125%; }
.a11y-contrast { --color-blue: #003B7A; --color-blue-dark: #002A57; --color-sky: #FFFFFF; --color-slate: #0B2A4A; --color-sky-border: #0B2A4A; --pkg-plus: #5FBF2A; --pkg-armor: #D97400; }
.a11y-contrast .sunburst::before, .a11y-contrast .hero-split .rays { display: none; }
.a11y-contrast a:not(.btn) { text-decoration-thickness: 3px; }
.a11y-grayscale main, .a11y-grayscale .site-header, .a11y-grayscale .site-footer, .a11y-grayscale .marquee { filter: grayscale(1); }
.a11y-links a:not(.btn):not(.brand):not(.logo-chip) { background: var(--color-yellow); color: var(--color-navy) !important; text-decoration: underline; text-decoration-thickness: 3px; outline: 2px solid var(--color-navy); outline-offset: 1px; }
.a11y-font, .a11y-font body, .a11y-font h1, .a11y-font h2, .a11y-font h3, .a11y-font h4, .a11y-font .btn, .a11y-font .eyebrow, .a11y-font .display { font-family: Verdana, Tahoma, Arial, sans-serif !important; letter-spacing: 0 !important; }
.a11y-font h1, .a11y-font h2, .a11y-font .display { -webkit-text-stroke: 0; text-shadow: none; text-transform: none; line-height: 1.1; }
.a11y-motion *, .a11y-motion *::before, .a11y-motion *::after { animation: none !important; transition: none !important; }
.a11y-motion .js .reveal, .a11y-motion.js .reveal { opacity: 1; translate: 0 0; }
.a11y-motion .marquee-track { width: auto; flex-wrap: wrap; } .a11y-motion .marquee ul { flex-wrap: wrap; white-space: normal; } .a11y-motion .marquee [aria-hidden] { display: none; }
.a11y-motion .h1-letters .ch { opacity: 1; transform: none; }
.a11y-cursor, .a11y-cursor * { cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'><path d='M4 2l16 9-7 1.5L9 20z' fill='%23FFF200' stroke='%230B2A4A' stroke-width='1.6' stroke-linejoin='round'/></svg>") 4 2, auto !important; }
.a11y-cursor a, .a11y-cursor button, .a11y-cursor summary, .a11y-cursor [role="button"] { cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'><path d='M9 3v9l-2.2-1.5a1.6 1.6 0 0 0-2.2 2.3L9 19h8.5a3 3 0 0 0 3-3v-4a2 2 0 0 0-2-2h-.5a2 2 0 0 0-2-2H15a2 2 0 0 0-2-2h-1V3a1.5 1.5 0 0 0-3 0z' fill='%23FFF200' stroke='%230B2A4A' stroke-width='1.4' stroke-linejoin='round'/></svg>") 10 2, pointer !important; }
.a11y-spacing body, .a11y-spacing p, .a11y-spacing li, .a11y-spacing summary { line-height: 1.9 !important; letter-spacing: 0.05em; word-spacing: 0.12em; }
.a11y-spacing p { margin-bottom: 1.5em; }
