/* Pawfect Grooming — client site styles.
   Design language: a boutique pet-grooming salon, not a clinic — warm ivory
   "sudsy towel" background, a confident rounded display face, and a
   ribbon-pink + toweled-gold accent duo. The signature motif is the queue
   ticket itself, styled like a physical die-cut claim tag (see .ticket-visual
   / .ticket-stub) — the kind of tag you'd get handing off a dog for a groom. */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@600;700&display=swap');

:root {
  --paper: #FBF3EA;
  --paper-raised: #FFFFFF;
  --ink: #2A1F2E;
  --ink-soft: #7A6B73;
  --ink-faint: #A79AA1;
  --line: #EBDDD0;
  --accent: #E85C6B;
  --accent-deep: #C23C4C;
  --accent-tint: #FBE1E3;
  --gold: #B87F1F;
  --gold-tint: #F5E7C8;
  --danger: #B5432E;
  --danger-tint: #F6E1DA;
  --shadow-sm: 0 1px 2px rgba(42,31,46,.06);
  --shadow-md: 0 1px 3px rgba(42,31,46,.07), 0 14px 30px rgba(42,31,46,.10);
  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper); color: var(--ink); font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0; letter-spacing: -.01em; color: var(--ink); }
p { margin: 0; line-height: 1.6; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--accent-tint); }

/* ---------- Site chrome ---------- */
.site-header {
  position: sticky; top: 0; z-index: 30; background: rgba(251,243,234,.92); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line); padding: 16px 28px;
}
.site-header-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font-family: var(--font-display); font-size: 19px; font-weight: 800; letter-spacing: -.01em; display: inline-flex; align-items: center; gap: 8px; }
.brand span { color: var(--accent); }
.brand svg { flex-shrink: 0; color: var(--accent); }
.site-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft); padding: 9px 14px; border-radius: 8px; border: none; background: none;
}
.nav-link:hover { color: var(--ink); background: var(--line); }
.nav-link.current { color: var(--accent-deep); background: var(--accent-tint); }
.nav-cta {
  font-size: 13.5px; font-weight: 700; color: #fff; background: var(--accent); padding: 10px 18px; border-radius: 8px; border: none;
  margin-left: 4px;
}
.nav-cta:hover { background: var(--accent-deep); }

.site-footer { border-top: 1px solid var(--line); padding: 40px 28px 32px; margin-top: 64px; }
.site-footer-inner { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--ink-faint); }
.footer-identity { display: flex; flex-direction: column; gap: 3px; }
.site-footer a { color: var(--ink-faint); }
.site-footer a:hover { color: var(--accent-deep); }

main { min-height: 60vh; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 640px; margin: 0 auto; padding: 0 28px; }

/* ---------- Buttons / form basics ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 10px; padding: 14px 22px; font-size: 15px; font-weight: 700; border: 1px solid transparent; transition: background .15s, border-color .15s, color .15s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-primary:disabled { background: var(--line); color: var(--ink-faint); cursor: not-allowed; }
.btn-outline { background: var(--paper-raised); border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-deep); }
.btn-text { background: none; border: none; color: var(--accent-deep); font-weight: 700; font-size: 14px; padding: 6px 8px; margin: -6px -8px; border-radius: 8px; }
.btn-text:hover { background: var(--paper); color: var(--accent); }
.btn-danger-text { background: none; border: none; color: var(--danger); font-weight: 700; font-size: 13.5px; padding: 6px 0; }
.btn-block { width: 100%; }

input[type]:not([type="checkbox"]):not([type="radio"]), select {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; font-size: 15px;
  background: var(--paper-raised); color: var(--ink); font-family: inherit;
}
input[type="checkbox"], input[type="radio"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--accent); }
input[type]:focus, select:focus, button:focus-visible, a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 7px; }
.field-hint { font-size: 12px; color: var(--ink-faint); margin-top: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Honeypot — invisible to people, catches simple bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* Custom-styled dropdown — replaces native <select> so the open list matches the rest of the site */
.cselect { position: relative; }
.cselect-btn {
  width: 100%; text-align: left; border: 1px solid var(--line); border-radius: 10px; padding: 12px 34px 12px 14px;
  font-size: 15px; background: var(--paper-raised) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path d="M1 1l4 4 4-4" stroke="%237A6B73" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 14px center;
  color: var(--ink); font-family: inherit; cursor: pointer;
}
.cselect-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.cselect-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 6px; max-height: 240px; overflow-y: auto;
}
.cselect.open .cselect-menu { display: block; }
.cselect-option { padding: 10px 12px; border-radius: 8px; font-size: 14.5px; cursor: pointer; color: var(--ink); }
.cselect-option:hover { background: var(--paper); }
.cselect-option.selected { background: var(--accent-tint); color: var(--accent-deep); font-weight: 700; }

.card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
.status-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.status-waiting { background: var(--gold-tint); color: var(--gold); }
.status-called { background: #DCEBFF; color: #2A5DA6; }
.status-progress { background: var(--accent-tint); color: var(--accent-deep); }
.status-forpayment { background: var(--gold-tint); color: var(--gold); }
.status-completed { background: var(--accent); color: #fff; }
.status-done { background: #EFE6DC; color: var(--ink-soft); }
.status-missed { background: var(--danger-tint); color: var(--danger); }

/* ---------- Home ---------- */
.hero { padding: 64px 0 56px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.live-status { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.live-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; padding: 7px 13px; border-radius: 999px; background: var(--paper-raised); border: 1px solid var(--line); color: var(--ink-soft); }
.live-chip.open { color: var(--accent-deep); background: var(--accent-tint); border-color: transparent; }
.live-chip.closed { color: var(--danger); background: var(--danger-tint); border-color: transparent; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(1.3); } }
.hero h1 { font-size: 46px; line-height: 1.08; margin-bottom: 18px; }
.hero .lede { font-size: 17px; max-width: 460px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Signature: the die-cut claim-tag look, shared by the hero preview and the
   real ticket confirmation — perforated corners via radial-gradient notches,
   a dashed tear line, and the queue number set in mono like a counter ticket. */
.ticket-visual, .ticket-stub {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 20px; padding: 34px 28px 26px; box-shadow: var(--shadow-md);
  position: relative;
  background-image: radial-gradient(circle at 0 100%, transparent 9px, var(--paper) 9.5px), radial-gradient(circle at 100% 100%, transparent 9px, var(--paper) 9.5px);
  background-position: bottom left, bottom right; background-size: 50% 100%; background-repeat: no-repeat;
  animation: peel-in .6s cubic-bezier(.2,.8,.3,1.15) both;
  transform-origin: top center;
}
@keyframes peel-in { from { opacity: 0; transform: rotate(-4deg) translateY(-14px); } to { opacity: 1; transform: rotate(0) translateY(0); } }
.ticket-visual .tpaw { position: absolute; top: 18px; right: 20px; width: 34px; height: 34px; color: var(--gold); opacity: .18; }

/* Signature: paw-print texture in the hero, and three clients (Kooky) playing
   hide-and-seek around the claim-tag ticket — one peeking over the top, one
   from each side. Each slides straight in/out (upright, no rotation) and
   tucks behind the card when hidden — the same reliable mechanic on all
   three axes, since rotating the side pups around a pivot proved too fragile
   (the exposed sliver depended on exact image content at that pivot point). */
.paw-scatter { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5; }
.paw-scatter svg { position: absolute; color: var(--gold); opacity: .22; }
.ticket-stage { position: relative; }
.peek-dog { position: absolute; z-index: 0; filter: drop-shadow(0 8px 12px rgba(42,31,46,.16)); }
.peek-dog img { display: block; width: 100%; height: auto; }
.peek-top { top: -108px; left: 50%; width: 148px; margin-left: -74px; animation: peekaboo-top 9s cubic-bezier(.5,0,.2,1) infinite; }
.peek-left { top: 58px; left: -82px; width: 115px; animation: peekaboo-left 9s cubic-bezier(.5,0,.2,1) infinite; }
.peek-right { top: 47px; right: -86px; width: 115px; animation: peekaboo-right 9s cubic-bezier(.5,0,.2,1) infinite; }
/* Each pup gets its own exclusive third of the 9s cycle — top (0-3s), left
   (3-6s), right (6-9s) — so only one is ever out at a time, never overlapping. */
@keyframes peekaboo-top {
  0% { transform: translateY(150px) rotate(0); }
  2.1% { transform: translateY(70px) rotate(-9deg); }
  3.3% { transform: translateY(25px) rotate(7deg); }
  4.4% { transform: translateY(0) rotate(-5deg); }
  4.9% { transform: translateY(0) rotate(3deg); }
  5.5% { transform: translateY(0) rotate(0); }
  27.8% { transform: translateY(0) rotate(0); }
  33.3% { transform: translateY(150px) rotate(0); }
  100% { transform: translateY(150px) rotate(0); }
}
@keyframes peekaboo-left {
  0%, 33.3% { transform: translateX(120px) rotate(0); }
  35.4% { transform: translateX(55px) rotate(9deg); }
  36.9% { transform: translateX(18px) rotate(-7deg); }
  38.3% { transform: translateX(0) rotate(5deg); }
  38.6% { transform: translateX(0) rotate(-3deg); }
  38.8% { transform: translateX(0) rotate(0); }
  61.1% { transform: translateX(0) rotate(0); }
  66.6% { transform: translateX(120px) rotate(0); }
  100% { transform: translateX(120px) rotate(0); }
}
@keyframes peekaboo-right {
  0%, 66.6% { transform: translateX(-200px) rotate(0); }
  69% { transform: translateX(-88px) rotate(-9deg); }
  70.6% { transform: translateX(-28px) rotate(7deg); }
  72.2% { transform: translateX(0) rotate(-5deg); }
  73.4% { transform: translateX(0) rotate(3deg); }
  74.6% { transform: translateX(0) rotate(0); }
  94.4% { transform: translateX(0) rotate(0); }
  100% { transform: translateX(-200px) rotate(0); }
}
.ticket-stage:hover .peek-top { animation-play-state: paused; transform: translateY(0); }
.ticket-stage:hover .peek-left { animation-play-state: paused; transform: translateX(0); }
.ticket-stage:hover .peek-right { animation-play-state: paused; transform: translateX(0); }
.ticket-visual .tlabel, .ticket-stub .tlabel { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.ticket-visual .tnum, .ticket-stub .tnum { font-family: var(--font-mono); font-size: 72px; font-weight: 700; line-height: 1; color: var(--ink); }
.ticket-stub .tnum { font-size: 76px; }
.ticket-visual .tear, .ticket-stub .tear { border-top: 2px dashed var(--line); margin: 20px 0 16px; }
.ticket-visual .trow { display: flex; justify-content: space-between; font-size: 13.5px; padding: 4px 0; }
.ticket-visual .trow span:first-child { color: var(--ink-soft); }
.ticket-visual .trow span:last-child { font-weight: 600; }

.info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 30px 0 10px; border-top: 1px solid var(--line); margin-top: 12px; }
.info-item .k { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; margin-bottom: 6px; }
.info-item .v { font-size: 15px; color: var(--ink); font-weight: 600; }

.steps { padding: 56px 0; }
.steps-eyebrow { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.steps h2 { font-size: 26px; margin-bottom: 8px; }
.steps > p { max-width: 480px; margin-bottom: 36px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { transition: transform .18s ease; }
.step:hover { transform: translateY(-4px); }
.step .num {
  font-family: var(--font-mono); font-size: 13px; color: var(--gold); font-weight: 700; margin-bottom: 12px;
  display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--gold-tint);
}
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { font-size: 14px; }

.services-teaser { padding: 8px 0 56px; }
.services-teaser h2 { font-size: 26px; margin-bottom: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 22px 22px 20px; transition: transform .18s ease, box-shadow .18s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .swatch { width: 38px; height: 38px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; background: var(--accent-tint); color: var(--accent-deep); }
.service-card .swatch svg { width: 19px; height: 19px; }
.service-card h3 { font-size: 16px; margin-bottom: 6px; }
.service-card .price-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; }
.service-card .price { font-family: var(--font-mono); font-weight: 700; font-size: 18px; color: var(--accent-deep); }
.service-card .dur { font-size: 12px; color: var(--ink-faint); }

/* ---------- Form pages ---------- */
.page-head { padding: 48px 0 8px; }
.back-link { background: none; border: none; padding: 6px 8px; margin: -6px -8px 18px; font-size: 14px; font-weight: 700; color: var(--accent-deep); display: inline-flex; align-items: center; gap: 6px; border-radius: 8px; }
.back-link:hover { background: var(--paper); color: var(--accent); }
.page-head h1 { font-size: 28px; margin-bottom: 10px; }
.page-head p { font-size: 15px; max-width: 480px; }

.form-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 40px; padding: 28px 0 72px; align-items: start; }
.form-card { padding: 30px 30px 26px; }
.side-note { background: var(--accent-tint); border-radius: 16px; padding: 24px 24px; position: sticky; top: 100px; }
.side-note h3 { font-size: 15px; margin-bottom: 10px; color: var(--accent-deep); }
.side-note p { font-size: 13.5px; color: var(--accent-deep); opacity: .85; margin-bottom: 10px; }
.side-note ul { margin: 0; padding-left: 18px; font-size: 13.5px; color: var(--accent-deep); opacity: .85; }
.side-note li { margin-bottom: 6px; }

.pet-block { border: 1px solid var(--line); border-radius: 14px; padding: 20px 20px 6px; margin-bottom: 16px; position: relative; }
.pet-block-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.pet-block-head .tag { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--ink-faint); }
.remove-pet { background: none; border: none; color: var(--danger); font-size: 12.5px; font-weight: 700; }
.add-pet-btn { display: inline-flex; align-items: center; gap: 6px; background: none; border: 1px dashed var(--line); color: var(--accent-deep); font-weight: 700; font-size: 13.5px; padding: 12px 16px; border-radius: 10px; width: 100%; justify-content: center; margin-bottom: 22px; }
.add-pet-btn:hover { border-color: var(--accent); background: var(--accent-tint); }

.returning-chip { display: none; align-items: center; justify-content: space-between; gap: 10px; background: var(--gold-tint); color: var(--gold); border-radius: 10px; padding: 11px 14px; font-size: 13px; font-weight: 600; margin: -6px 0 18px; }
.returning-chip.show { display: flex; }
.returning-chip button { background: #fff; border: 1px solid transparent; color: var(--gold); font-weight: 700; font-size: 12.5px; padding: 6px 12px; border-radius: 7px; }

.size-pick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.size-pick label { display: flex; flex-direction: column; align-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 10px; padding: 10px 6px; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); cursor: pointer; text-align: center; }
.size-pick input { position: absolute; opacity: 0; pointer-events: none; }
.size-pick label:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-deep); }
.service-pick { display: flex; flex-direction: column; gap: 8px; }
.service-pick label { display: flex; justify-content: space-between; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; cursor: pointer; }
.service-pick label:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); }
.service-pick input { accent-color: var(--accent); }
.service-pick .sname { font-weight: 600; font-size: 14px; flex: 1; }
.service-pick .sprice { font-family: var(--font-mono); font-weight: 700; font-size: 13.5px; color: var(--accent-deep); white-space: nowrap; }
.addon-pick { display: flex; flex-wrap: wrap; gap: 8px; }
.addon-pick label { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 600; cursor: pointer; }
.addon-pick label:has(input:checked) { border-color: var(--gold); background: var(--gold-tint); color: var(--gold); }

.consent-line { font-size: 12px; color: var(--ink-faint); margin: 16px 0 18px; line-height: 1.5; }

/* ---------- Ticket confirmation ---------- */
.confirm-layout { display: grid; grid-template-columns: .85fr 1fr; gap: 40px; padding: 28px 0 72px; align-items: start; }
.ticket-pets { text-align: left; margin-bottom: 4px; }
.ticket-pet-row { display: flex; justify-content: space-between; font-size: 14px; padding: 7px 0; border-bottom: 1px solid var(--line); }
.ticket-pet-row:last-child { border-bottom: none; }
.ticket-pet-row .pname { font-weight: 700; color: var(--ink); }
.ticket-pet-row .preason { color: var(--ink-soft); }
.ticket-meta { text-align: left; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.ticket-meta .row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 4px 0; }
.ticket-meta .row span:first-child { color: var(--ink-soft); }
.ticket-meta .row span:last-child { font-weight: 700; }

.next-steps h3 { font-size: 16px; margin-bottom: 16px; }
.next-step-item { display: flex; gap: 14px; margin-bottom: 20px; }
.next-step-item .dotcol { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 6px; flex-shrink: 0; }
.next-step-item p { font-size: 14px; color: var(--ink); }
.next-step-item p b { display: block; margin-bottom: 3px; color: var(--ink); }

.other-tickets { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.other-tickets a { color: var(--accent-deep); font-weight: 700; font-size: 13.5px; }

/* ---------- Status lookup page ---------- */
.lookup-page { padding: 48px 0 80px; }
.lookup-form { display: flex; gap: 12px; margin: 24px 0 8px; max-width: 460px; }
.lookup-form input { flex: 1; }
.result-card { margin-top: 20px; padding: 22px 24px; max-width: 520px; }
.result-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.cancel-flow { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.confirm-cancel { display: none; gap: 10px; margin-top: 10px; }
.confirm-cancel.show { display: flex; }
.cancelled-note { display: none; font-size: 13.5px; color: var(--danger); font-weight: 600; margin-top: 10px; }
.cancelled-note.show { display: block; }
.not-found-note { font-size: 13.5px; color: var(--ink-soft); margin-top: 16px; }

@media (max-width: 900px) {
  .hero-grid, .form-layout, .confirm-layout { grid-template-columns: 1fr; gap: 32px; }
  .side-note { position: static; }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .steps-grid, .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 40px 0 40px; }
  .hero h1 { font-size: 34px; }
  .peek-left, .peek-right { display: none; }
  /* Only peek-top shows on mobile — reappear more often since it's not
     sharing the cycle with left/right anymore, but keep the actual rise/
     wiggle/hold motion at the same real-world speed as desktop (only the
     hidden gap shrinks) so it doesn't feel rushed. */
  .peek-top { animation: peekaboo-top-mobile 5s cubic-bezier(.5,0,.2,1) infinite; }
}
@keyframes peekaboo-top-mobile {
  0% { transform: translateY(150px) rotate(0); }
  3.8% { transform: translateY(70px) rotate(-9deg); }
  5.9% { transform: translateY(25px) rotate(7deg); }
  7.9% { transform: translateY(0) rotate(-5deg); }
  8.8% { transform: translateY(0) rotate(3deg); }
  9.9% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(0) rotate(0); }
  60% { transform: translateY(150px) rotate(0); }
  100% { transform: translateY(150px) rotate(0); }
}
@media (max-width: 680px) {
  .site-header-inner { flex-direction: column; align-items: center; gap: 10px; }
  .site-nav .nav-link:not(.nav-cta) { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .size-pick { grid-template-columns: repeat(4, 1fr); }

  .hero-actions { flex-wrap: nowrap; gap: 8px; }
  .hero-actions .btn { flex: 1; padding: 12px 10px; font-size: 13.5px; white-space: nowrap; }

  .ticket-visual, .ticket-stub { text-align: center; }
  .ticket-visual .tnum, .ticket-stub .tnum { font-size: 54px; }

  .info-strip { grid-template-columns: 1fr; text-align: center; }
  .live-status { justify-content: center; }
  .steps-eyebrow, .steps h2, .steps > p { text-align: center; }
  .steps > p { margin-left: auto; margin-right: auto; }
  .step { text-align: center; }
  .services-teaser h2 { text-align: center; }

  .site-footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .staff-link { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
