@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=Luckiest+Guy&family=Patrick+Hand&display=swap');

:root {
  --aqua: #42c2c9;
  --aqua-deep: #0796a8;
  --yellow: #ffd85a;
  --yellow-hot: #ffc629;
  --ink: #15282b;
  --cream: #fffdf7;
  --mist: #effbfb;
  --coral: #ff695f;
  --line: 3px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --shadow-small: 4px 4px 0 var(--ink);
  --display: 'Luckiest Guy', Impact, sans-serif;
  --body: 'DM Sans', Arial, sans-serif;
  --scribble: 'Patrick Hand', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.5; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--yellow); color: var(--ink); }

.skip-link { position: absolute; z-index: 100; left: 16px; top: -60px; padding: 9px 14px; color: var(--ink); background: var(--yellow); border: var(--line); font-weight: 700; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,253,247,.94); border-bottom: 2px solid var(--ink); backdrop-filter: blur(12px); }
.nav-wrap { max-width: 1320px; height: 76px; margin: auto; padding: 0 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { width: 47px; height: 47px; display: block; overflow: hidden; background: var(--aqua); border: 2px solid var(--ink); border-radius: 50%; box-shadow: 3px 3px 0 var(--ink); transform: rotate(-5deg); }
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transform: scale(1.18); }
.brand-type { display: flex; flex-direction: column; line-height: .84; font-family: var(--display); letter-spacing: .5px; font-size: 18px; }
.brand-type span:last-child { color: var(--aqua-deep); }
.nav-links { display: flex; align-items: center; gap: 18px; list-style: none; padding: 0; margin: 0; font-size: 13px; font-weight: 700; }
.nav-links a { position: relative; padding: 8px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 3px; width: 0; height: 3px; background: var(--coral); transition: width .18s ease-out; }
.nav-links a:hover::after, .nav-links a[aria-current='page']::after { width: 100%; }
.nav-links .nav-cta { padding: 9px 13px; background: var(--yellow); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); }
.nav-links .nav-cta:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.nav-links .nav-cta::after { display: none; }
.menu-toggle { display: none; border: 0; padding: 8px; background: transparent; }
.menu-toggle span { display: block; width: 25px; height: 3px; margin: 4px; background: var(--ink); transition: transform .18s ease, opacity .18s ease; }

main { overflow: hidden; }
.container { width: min(1140px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 12px; font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 21px; height: 3px; background: currentColor; }
.display { margin: 0; font-family: var(--display); text-transform: uppercase; line-height: .9; letter-spacing: .02em; font-size: clamp(3rem, 8vw, 7rem); }
.section-title { margin: 0; font-family: var(--display); text-transform: uppercase; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: .92; letter-spacing: .02em; }
.section-intro { font-size: 1.08rem; max-width: 48ch; margin: 18px 0 0; color: #466163; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 19px; border: var(--line); background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-small); text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .06em; transition: transform .16s ease, box-shadow .16s ease, background .16s ease; }
.btn:hover { background: var(--yellow-hot); transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }
.btn:active { transform: translate(4px,4px) scale(.98); box-shadow: 0 0 0 var(--ink); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--aqua-deep); }
.btn-aqua { background: var(--aqua); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; border-bottom: 2px solid var(--ink); padding-bottom: 3px; }
.text-link .arrow { font-size: 1.4em; line-height: .7; transition: transform .16s ease; }
.text-link:hover .arrow { transform: translateX(5px); }

.tape { display: inline-block; padding: 4px 14px; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); font-family: var(--scribble); font-size: 1.2rem; transform: rotate(-2deg); }
.tape.coral { background: var(--coral); color: #fff; transform: rotate(2deg); }
.tape.aqua { background: var(--aqua); transform: rotate(-3deg); }
.dot-grid { background-image: radial-gradient(rgba(21,40,43,.21) 1.1px, transparent 1.1px); background-size: 15px 15px; }
.zigzag { background-image: linear-gradient(135deg, rgba(21,40,43,.10) 25%, transparent 25%), linear-gradient(225deg, rgba(21,40,43,.10) 25%, transparent 25%); background-size: 16px 16px; background-position: 0 0, 8px 0; }
.star { display: inline-block; font-family: var(--display); color: var(--yellow); -webkit-text-stroke: 2px var(--ink); }

.joke-hero { position: relative; min-height: min(700px, calc(100vh - 76px)); display: grid; align-items: center; padding: 78px 0 64px; background: var(--aqua); isolation: isolate; }
.joke-hero::before { content: ''; position: absolute; inset: 0; z-index: -2; opacity: .25; background-image: radial-gradient(rgba(255,255,255,.7) 1.2px, transparent 1.2px); background-size: 17px 17px; }
.joke-hero::after { content: 'HA!'; position: absolute; z-index: -1; right: 3vw; bottom: -30px; color: rgba(255,255,255,.35); font: clamp(10rem, 23vw, 24rem)/1 var(--display); transform: rotate(-12deg); }
.joke-layout { width: min(1140px, calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: 1fr minmax(260px, 440px); align-items: center; gap: clamp(32px, 7vw, 115px); }
.hero-copy { position: relative; }
.hero-sticker { position: absolute; top: -46px; right: 5%; padding: 6px 14px; color: var(--cream); background: var(--coral); border: var(--line); box-shadow: var(--shadow-small); font-family: var(--scribble); font-size: 1.5rem; transform: rotate(8deg); animation: bob 3s ease-in-out infinite; }
.hero-title { max-width: 8ch; color: var(--cream); text-shadow: 4px 4px 0 var(--ink); }
.hero-title em { display: block; color: var(--yellow); font-style: normal; }
.hero-note { margin: 20px 0 0; max-width: 40ch; color: #053f48; font-weight: 600; }
.joke-card { position: relative; padding: clamp(30px,5vw,56px); background: var(--cream); border: var(--line); box-shadow: 12px 12px 0 var(--ink); transform: rotate(1.5deg); }
.joke-card::before { content: ''; position: absolute; width: 70px; height: 20px; top: -12px; left: 50%; background: rgba(255,216,90,.75); transform: translateX(-50%) rotate(-3deg); border-left: 1px solid rgba(21,40,43,.2); border-right: 1px solid rgba(21,40,43,.2); }
.joke-kicker { margin: 0 0 17px; color: var(--aqua-deep); font: 1.1rem var(--scribble); letter-spacing: .04em; }
.joke-question { margin: 0; font-size: clamp(1.65rem, 3.2vw, 2.7rem); line-height: 1.1; font-weight: 700; }
.joke-answer-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s cubic-bezier(.23,1,.32,1); }
.joke-answer-wrap.open { grid-template-rows: 1fr; }
.joke-answer { overflow: hidden; }
.joke-answer p { margin: 18px 0 0; padding-top: 16px; color: var(--coral); border-top: 2px dashed var(--ink); font: 2.25rem/1 var(--scribble); }
.reveal-btn { margin-top: 26px; }
.reaction-row { position: relative; display: flex; gap: 12px; align-items: center; margin-top: 25px; padding-top: 20px; border-top: 1px solid #d6e8e8; }
.reaction-label { margin-right: 2px; color: #587073; font-size: 12px; font-weight: 700; }
.reaction { width: 43px; height: 43px; display: grid; place-items: center; padding: 0; border: 2px solid var(--ink); border-radius: 50%; background: var(--cream); box-shadow: 2px 2px 0 var(--ink); transition: transform .15s ease, background .15s ease, box-shadow .15s ease; }
.reaction span { font-family: 'Apple Color Emoji','Segoe UI Emoji','Noto Color Emoji',sans-serif; font-size: 25px; line-height: 1; filter: saturate(1.15); }
.reaction:hover { background: var(--yellow); transform: translateY(-4px) rotate(-6deg) scale(1.07); box-shadow: 4px 5px 0 var(--ink); }
.reaction:active { transform: translateY(0) scale(.94); box-shadow: 1px 1px 0 var(--ink); }
.reaction-burst { position: fixed; z-index: 100; pointer-events: none; font: 2rem var(--display); color: var(--yellow); -webkit-text-stroke: 1px var(--ink); animation: fly .85s cubic-bezier(.23,1,.32,1) forwards; }
.hero-scroll { position: absolute; bottom: 24px; left: 50%; display: flex; align-items: center; gap: 8px; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transform: translateX(-50%); }
.hero-scroll::after { content: ''; display: block; width: 7px; height: 7px; border-right: 2px solid; border-bottom: 2px solid; transform: rotate(45deg); animation: nudge 1.5s ease infinite; }

.marquee { display: flex; overflow: hidden; width: 100%; background: var(--yellow); border-top: var(--line); border-bottom: var(--line); white-space: nowrap; }
.marquee-track { display: flex; flex: 0 0 auto; width: max-content; padding: 10px 0; font: 1.1rem var(--display); animation: marquee 27s linear infinite; will-change: transform; }
.marquee-set { display: flex; flex: 0 0 auto; align-items: center; }
.marquee-set span { padding: 0 24px; }
.marquee-set i { color: var(--coral); font-style: normal; }

.book-section { position: relative; padding: 105px 0; background: var(--cream); }
.book-grid { display: grid; grid-template-columns: minmax(260px, .75fr) 1fr; align-items: center; gap: clamp(45px, 9vw, 125px); }
.book-visual { position: relative; max-width: 330px; margin: auto; }
.book-visual::before { content: ''; position: absolute; inset: 12% -17% -9%; z-index: -1; background: var(--yellow); border: var(--line); transform: rotate(-6deg); }
.book-cover { width: 100%; border: var(--line); box-shadow: 12px 12px 0 var(--ink); transform: rotate(3deg); transition: transform .3s ease; }
.book-cover:hover { transform: rotate(0) translateY(-7px); }
.book-scribble { position: absolute; right: -77px; bottom: 6px; color: var(--coral); font: 1.8rem var(--scribble); transform: rotate(-8deg); }
.book-copy { max-width: 570px; }
.book-copy .section-title span { color: var(--aqua-deep); }
.book-copy p { max-width: 53ch; margin: 22px 0 27px; color: #436063; font-size: 1.05rem; }
.book-points { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; font-weight: 700; }
.book-points li::before { content: '✦'; color: var(--coral); margin-right: 10px; }

.merch-spotlight { position: relative; overflow: hidden; padding: 0; color: var(--cream); background: var(--ink); border-top: var(--line); border-bottom: var(--line); }
.merch-spotlight::before { content: ''; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(135deg, transparent 46%, var(--yellow) 46%, var(--yellow) 50%, transparent 50%), linear-gradient(45deg, transparent 46%, var(--yellow) 46%, var(--yellow) 50%, transparent 50%); background-size: 42px 42px; background-position: 0 0, 21px 21px; }
.merch-spotlight-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; align-items: stretch; min-height: 535px; }
.merch-spotlight-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 80px 0 80px; }
.merch-spotlight-copy .tape { position: absolute; top: 42px; left: 0; }
.merch-spotlight-copy .eyebrow { color: var(--yellow); }
.merch-spotlight-copy h2 { max-width: 8ch; margin: 0; color: var(--cream); font: clamp(3.1rem,6vw,6.1rem)/.86 var(--display); text-transform: uppercase; letter-spacing: .02em; }
.merch-spotlight-copy h2 span { color: var(--yellow); }
.merch-spotlight-copy p:not(.eyebrow) { max-width: 42ch; margin: 22px 0 28px; color: #d6eeee; font-size: 1.05rem; }
.merch-spotlight-copy .btn { width: max-content; }
.merch-spotlight-products { position: relative; min-height: 535px; margin-left: clamp(20px,5vw,85px); background: var(--yellow); border-left: var(--line); }
.merch-spotlight-products::after { content: ''; position: absolute; z-index: 0; inset: 0; opacity: .13; background-image: radial-gradient(var(--ink) 1.3px, transparent 1.3px); background-size: 15px 15px; }
.merch-home-card { position: absolute; z-index: 1; overflow: hidden; background: #fff; border: var(--line); box-shadow: 8px 8px 0 var(--ink); }
.merch-home-card img { display: block; width: 100%; height: 100%; object-fit: contain; }
.merch-home-shirt { width: min(92%, 560px); height: 390px; right: 8%; top: 57px; transform: rotate(2.5deg); }
.merch-home-hat { width: 235px; height: 205px; left: -66px; bottom: 19px; transform: rotate(-8deg); }
.merch-doodle { position: absolute; z-index: 3; top: 24px; right: 16px; padding: 4px 11px; color: var(--cream); background: var(--coral); border: 2px solid var(--ink); box-shadow: 3px 3px 0 var(--ink); font: 1.4rem/1 var(--scribble); transform: rotate(6deg); }
.merch-home-label { position: absolute; z-index: 3; right: 10px; bottom: 15px; color: var(--ink); font: 1.05rem var(--display); letter-spacing: .06em; transform: rotate(-3deg); }
.merch-home-label span { color: var(--coral); -webkit-text-stroke: 1px var(--ink); }


.team-feature { position: relative; min-height: 650px; display: grid; align-items: end; color: var(--cream); background-size: cover; background-position: center; }
.team-feature.race { background-image: linear-gradient(90deg, rgba(0,0,0,.83) 0%, rgba(0,0,0,.52) 42%, rgba(0,0,0,.1) 100%), url('../images/ayden-camaro-bg.jpg'); }
.team-feature.hockey { background-image: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.46) 43%, rgba(0,0,0,.12) 100%), url('../images/mustangs-team.jpg'); }
.team-feature::after { content: ''; position: absolute; right: 17px; bottom: 12px; }
.team-content { position: relative; z-index: 1; width: min(1140px, calc(100% - 48px)); margin: 0 auto; padding: 83px 0 80px; }
.team-content .eyebrow { color: var(--yellow); }
.team-content h2 { max-width: 8ch; color: var(--cream); text-shadow: 3px 3px 0 var(--ink); }
.team-content h2 span { color: var(--yellow); }
.team-content p { max-width: 46ch; margin: 21px 0 25px; font-size: 1.08rem; }
.team-content .btn { background: var(--yellow); color: var(--ink); }
.feature-number { position: absolute; right: max(4vw,24px); top: 50px; color: var(--yellow); font: clamp(6rem,15vw,14rem)/.7 var(--display); -webkit-text-stroke: 3px var(--ink); opacity: .95; }

.reviews-section { padding: 105px 0 115px; background: var(--mist); }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 25px; margin-bottom: 42px; }
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.review-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 810px; margin: 0 auto; }
.review-card { position: relative; display: flex; min-height: 255px; flex-direction: column; justify-content: space-between; padding: 32px 28px; background: var(--cream); border: var(--line); box-shadow: var(--shadow-small); transition: transform .2s ease, box-shadow .2s ease; }
.review-card:nth-child(2) { transform: translateY(20px) rotate(1deg); }
.review-card:nth-child(3) { transform: rotate(-1deg); }
.review-card:hover { transform: translateY(-7px) rotate(0); box-shadow: var(--shadow); }
.quote-mark { position: absolute; top: 7px; right: 18px; color: var(--yellow); font: 8rem/.7 Georgia; -webkit-text-stroke: 2px var(--ink); }
.review-stars { letter-spacing: .12em; color: var(--coral); font-size: 1.2rem; }
.review-card blockquote { position: relative; z-index: 1; margin: 20px 0; font-size: 1.08rem; font-weight: 600; line-height: 1.55; }
.review-card cite { color: #5d7375; font-size: .88rem; font-style: normal; font-weight: 700; }

.site-footer { position: relative; color: var(--cream); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; padding: 64px 0 46px; }
.footer-brand .brand { color: var(--cream); }
.footer-brand .brand-mark { color: var(--ink); }
.footer-brand .brand-type span:last-child { color: var(--yellow); }
.footer-brand p { max-width: 30ch; margin: 15px 0 0; color: #b7d7d8; font-size: .94rem; }
.footer-heading { margin: 0 0 13px; color: var(--yellow); font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { margin: 0; padding: 0; list-style: none; columns: 2; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #d7eeee; font-size: .92rem; }
.footer-links a:hover { color: var(--yellow); }
.footer-sponsor { padding: 22px; background: var(--aqua-deep); border: 2px solid #5adee0; transform: rotate(1deg); }
.footer-sponsor p { margin: 9px 0 14px; font-size: .93rem; line-height: 1.45; }
.footer-sponsor .text-link { border-color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0; border-top: 1px solid #365a5d; color: #93babb; font-size: 12px; }
.footer-bottom a { color: var(--yellow); font-weight: 800; border-bottom: 1px solid var(--yellow); }
.footer-bottom a:hover { color: var(--cream); border-color: var(--cream); }

/* Inner pages */
.page-hero { position: relative; padding: 82px 0 72px; background: var(--aqua); overflow: hidden; }
.page-hero::after { content: attr(data-word); position: absolute; right: -10px; bottom: -52px; color: rgba(255,255,255,.3); font: clamp(6rem,20vw,18rem)/1 var(--display); text-transform: uppercase; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 9ch; color: var(--cream); text-shadow: 4px 4px 0 var(--ink); }
.page-hero h1 .yellow { color: var(--yellow); }
.page-hero p { max-width: 54ch; margin: 18px 0 0; color: #064a54; font-size: 1.08rem; font-weight: 600; }
.content-section { padding: 95px 0; }
.content-section.tint { background: var(--mist); }
.content-section.yellow-bg { background: var(--yellow); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: clamp(40px,7vw,90px); }
.prose h2 { margin: 0 0 17px; font: clamp(2rem,4vw,3.3rem)/.95 var(--display); text-transform: uppercase; }
.prose h3 { margin: 29px 0 9px; font: 1.55rem/1 var(--display); text-transform: uppercase; }
.prose p { max-width: 60ch; margin: 0 0 16px; color: #436063; font-size: 1.02rem; }
.prose .lead { color: var(--ink); font-size: 1.18rem; font-weight: 600; }
.pull-quote { position: relative; padding: 36px; background: var(--yellow); border: var(--line); box-shadow: var(--shadow); font: 2rem/1.08 var(--scribble); transform: rotate(2deg); }
.pull-quote::before { content: '“'; display: block; color: var(--coral); font: 6rem/.3 Georgia; }
.photo-card { position: relative; }
.photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: var(--line); box-shadow: var(--shadow); }
.photo-card span { position: absolute; right: 18px; bottom: -17px; padding: 5px 13px; background: var(--yellow); border: 2px solid var(--ink); font: 1.15rem var(--scribble); transform: rotate(-3deg); }
.timeline { position: relative; padding-left: 33px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 12px; border-left: 3px dashed var(--aqua-deep); }
.timeline-item { position: relative; padding: 0 0 33px; }
.timeline-item::before { content: ''; position: absolute; left: -32px; top: 4px; width: 15px; height: 15px; background: var(--yellow); border: 2px solid var(--ink); border-radius: 50%; }
.timeline-item h3 { margin: 0 0 5px; font: 1.45rem var(--display); text-transform: uppercase; }
.timeline-item p { margin: 0; color: #476366; }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; margin-top: 44px; }
.gallery-item { position: relative; min-height: 190px; background: var(--aqua); border: var(--line); overflow: hidden; }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 405px; }
.gallery-item:nth-child(2), .gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item img { width: 100%; height: 100%; position: absolute; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .placeholder-label { position: absolute; z-index: 1; left: 11px; bottom: 10px; padding: 3px 7px; color: var(--cream); background: rgba(21,40,43,.82); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.stat { padding: 25px 20px; background: var(--cream); border: var(--line); box-shadow: var(--shadow-small); }
.stat strong { display: block; color: var(--aqua-deep); font: clamp(2.5rem,5vw,4.2rem)/.85 var(--display); }
.stat span { display: block; margin-top: 8px; font-size: .83rem; font-weight: 800; text-transform: uppercase; }

.merch-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.merch-collection { align-items: stretch; }
.product-card { position: relative; display: flex; flex-direction: column; padding: 22px; background: var(--cream); border: var(--line); box-shadow: var(--shadow-small); }
.product-card-featured { grid-column: span 2; background: var(--yellow); }
.product-card:nth-child(2) { transform: rotate(1deg); }
.product-card:nth-child(3) { transform: rotate(-1deg); }
.product-mock { height: 220px; display: grid; place-items: center; overflow: hidden; margin-bottom: 20px; background: #fff; border: 2px solid var(--ink); }
.product-card-featured .product-mock { height: 330px; }
.product-mock img { width: 100%; height: 100%; display: block; object-fit: contain; mix-blend-mode: multiply; }
.product-mock svg { width: 115px; height: 115px; stroke: var(--ink); fill: none; stroke-width: 1.6; }
.product-card h2 { margin: 0; font: 2rem var(--display); text-transform: uppercase; }
.product-card p { min-height: 49px; margin: 8px 0 15px; color: #496466; font-size: .94rem; }
.product-card .text-link { width: max-content; margin-top: auto; font-size: .86rem; }
.product-tag { position: absolute; top: 11px; right: 10px; padding: 4px 7px; color: var(--ink); background: var(--yellow); border: 2px solid var(--ink); font: 1rem var(--scribble); transform: rotate(7deg); }
.order-panel { max-width: 850px; margin: 80px auto 0; padding: clamp(28px,6vw,55px); background: var(--aqua); border: var(--line); box-shadow: 10px 10px 0 var(--ink); }
.order-panel h2 { margin: 0; font: clamp(2.2rem,4vw,3.5rem)/.95 var(--display); text-transform: uppercase; }
.order-panel > p { max-width: 58ch; margin: 13px 0 24px; font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: var(--cream); border: 2px solid var(--ink); border-radius: 0; outline: 0; }
.field input:focus, .field select:focus, .field textarea:focus { box-shadow: 3px 3px 0 var(--ink); }
.field textarea { min-height: 105px; resize: vertical; }
.form-note { min-height: 24px; margin: 14px 0 0; font-weight: 700; }
.form-note.success { color: #075d4b; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px,7vw,95px); align-items: start; }
.contact-info { padding-top: 14px; }
.contact-info h2 { margin: 0; font: clamp(2.4rem,5vw,4.6rem)/.9 var(--display); text-transform: uppercase; }
.contact-info p { max-width: 39ch; margin: 19px 0; color: #476366; font-size: 1.05rem; }
.contact-list { display: grid; gap: 14px; margin-top: 27px; }
.contact-list a { width: max-content; font-weight: 800; border-bottom: 2px solid var(--ink); }
.contact-list a:hover { color: var(--aqua-deep); }
.contact-form { padding: 34px; background: var(--cream); border: var(--line); box-shadow: var(--shadow); }
.contact-form h2 { margin: 0 0 19px; font: 2.1rem/.95 var(--display); text-transform: uppercase; }
.sponsor-banner { position: relative; padding: 95px 0; color: var(--cream); background: var(--ink); overflow: hidden; }
.sponsor-banner::before { content: '?'; position: absolute; right: 8%; top: -65px; color: rgba(255,216,90,.25); font: 26rem/1 var(--display); }
.sponsor-banner .container { position: relative; }
.sponsor-banner h2 { max-width: 11ch; margin: 0; color: var(--yellow); font: clamp(2.7rem,6vw,5.5rem)/.9 var(--display); text-transform: uppercase; }
.sponsor-banner p { max-width: 52ch; margin: 20px 0 25px; color: #cae5e5; font-size: 1.08rem; }
.sponsor-form { padding: 34px; margin-top: 45px; color: var(--ink); background: var(--aqua); border: var(--line); box-shadow: 8px 8px 0 var(--yellow); }
.sponsor-form h3 { margin: 0 0 15px; font: 2.05rem/.95 var(--display); text-transform: uppercase; }

.dedication-panel { position: relative; margin: 0 auto; max-width: 900px; padding: clamp(40px,8vw,90px); text-align: center; background: var(--yellow); border: var(--line); box-shadow: 12px 12px 0 var(--ink); }
.dedication-panel::before, .dedication-panel::after { content: '✦'; position: absolute; color: var(--coral); font: 4rem var(--display); -webkit-text-stroke: 2px var(--ink); }
.dedication-panel::before { left: 25px; top: 15px; transform: rotate(-18deg); }
.dedication-panel::after { right: 25px; bottom: 15px; transform: rotate(18deg); }
.dedication-panel h2 { margin: 0 0 26px; font: clamp(2.8rem,6vw,5rem)/.9 var(--display); text-transform: uppercase; }
.dedication-panel p { margin: 0 auto; max-width: 51ch; font: clamp(1.1rem,2vw,1.4rem)/1.55 var(--scribble); }
.dedication-letter { position: relative; max-width: 890px; margin: 0 auto; padding: clamp(42px,8vw,86px); background: var(--yellow); border: var(--line); box-shadow: 12px 12px 0 var(--ink); }
.dedication-letter::before, .dedication-letter::after { content: '✦'; position: absolute; color: var(--coral); font: 4rem var(--display); -webkit-text-stroke: 2px var(--ink); }
.dedication-letter::before { left: 23px; top: 17px; transform: rotate(-18deg); }
.dedication-letter::after { right: 23px; bottom: 13px; transform: rotate(18deg); }
.dedication-letter > .tape { position: absolute; top: -17px; left: clamp(26px,8vw,86px); }
.dedication-letter h2 { max-width: 10ch; margin: 0 0 30px; font: clamp(2.7rem,6vw,5.2rem)/.88 var(--display); text-transform: uppercase; }
.dedication-letter p { max-width: 61ch; margin: 0 0 17px; font: clamp(1.08rem,1.7vw,1.32rem)/1.55 var(--scribble); }
.dedication-sign { margin-top: 28px !important; font-size: 2.05rem !important; color: var(--aqua-deep); }
.disclaimer-card { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(35px,7vw,90px); max-width: 1000px; margin: 0 auto; padding: clamp(30px,5vw,55px); color: var(--cream); background: var(--ink); border: var(--line); box-shadow: 8px 8px 0 var(--aqua); }
.disclaimer-card h2 { max-width: 8ch; margin: 0; color: var(--yellow); font: clamp(2.4rem,5vw,4.5rem)/.9 var(--display); text-transform: uppercase; }
.disclaimer-card .eyebrow { color: var(--aqua); }
.disclaimer-copy p { margin: 0 0 16px; color: #d7eeee; }
.disclaimer-copy p:last-child { margin-bottom: 0; color: var(--yellow); }

@keyframes bob { 50% { transform: rotate(5deg) translateY(-6px); } }
@keyframes nudge { 50% { transform: rotate(45deg) translate(3px,3px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes fly { 0% { opacity: 1; transform: translate(-50%,-50%) scale(.8) rotate(0); } 75% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,-180px) scale(1.35) rotate(20deg); } }

@media (max-width: 860px) {
  .nav-wrap { height: 68px; padding: 0 20px; }
  .menu-toggle { display: block; }
  .nav-links { position: absolute; top: 68px; left: 0; right: 0; display: grid; gap: 0; padding: 14px 22px 23px; background: var(--cream); border-bottom: var(--line); transform: translateY(-140%); opacity: 0; pointer-events: none; transition: transform .2s ease, opacity .2s ease; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { border-bottom: 1px solid #d6e6e6; }
  .nav-links a { display: block; padding: 12px 0; font-size: 15px; }
  .nav-links .nav-cta { display: inline-block; margin-top: 14px; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .joke-hero { min-height: auto; padding: 76px 0 86px; }
  .joke-layout, .book-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .joke-layout { gap: 60px; }
  .hero-title { max-width: 10ch; }
  .hero-sticker { right: 2%; }
  .book-visual { max-width: 285px; margin: 0 auto; }
  .book-copy { margin: auto; }
  .team-feature { min-height: 570px; }
  .review-grid, .merch-grid { grid-template-columns: 1fr; max-width: 530px; margin: auto; }
  .product-card-featured { grid-column: auto; }
  .merch-spotlight-grid { grid-template-columns: 1fr; }
  .merch-spotlight-copy { padding: 82px 0 55px; }
  .merch-spotlight-products { min-height: 500px; margin-left: 0; border-left: 0; border-top: var(--line); }
  .review-card:nth-child(2), .review-card:nth-child(3), .product-card:nth-child(2), .product-card:nth-child(3) { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .gallery-item:nth-child(1) { grid-column: span 12; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(3) { grid-column: span 6; }
}

@media (max-width: 560px) {
  .container, .joke-layout, .team-content { width: min(100% - 32px, 1140px); }
  .brand-type { font-size: 16px; }
  .joke-card { padding: 31px 25px; box-shadow: 8px 8px 0 var(--ink); }
  .joke-question { font-size: 1.7rem; }
  .hero-note { font-size: .95rem; }
  .book-section, .reviews-section, .content-section { padding: 72px 0; }
  .book-scribble { right: -48px; font-size: 1.35rem; }
  .merch-spotlight-copy { padding-top: 70px; }
  .merch-spotlight-products { min-height: 410px; }
  .merch-home-shirt { height: 280px; top: 45px; right: 3%; }
  .merch-home-hat { width: 155px; height: 135px; left: 8px; bottom: 20px; }
  .merch-doodle { top: 15px; right: 8px; font-size: 1.12rem; }
  .merch-home-label { font-size: .78rem; bottom: 9px; }
  .product-card-featured .product-mock { height: 245px; }
  .team-feature { min-height: 530px; background-position: 62% center; }
  .feature-number { right: 13px; top: 30px; font-size: 7.6rem; }
  .team-content { padding-bottom: 61px; }
  .section-header { display: block; }
  .section-header .tape { margin-top: 18px; }
  .footer-top { grid-template-columns: 1fr; gap: 29px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 4px; }
  .form-grid, .stat-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-form, .sponsor-form { padding: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 230px; }
  .page-hero { padding: 65px 0; }
  .dedication-panel { padding: 60px 29px; }
  .dedication-letter { padding: 59px 28px 52px; }
  .dedication-letter h2 { font-size: 2.85rem; }
  .dedication-letter > .tape { left: 17px; }
  .disclaimer-card { grid-template-columns: 1fr; padding: 29px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Ayden McNicol Racing gallery */
.race-gallery-grid .gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; min-height: 405px; }
.race-gallery-grid .gallery-item:nth-child(2) { grid-column: span 7; grid-row: span 2; min-height: 405px; }
.race-gallery-grid .gallery-item:nth-child(n+3) { grid-column: span 3; min-height: 210px; }
@media (max-width: 860px) { .race-gallery-grid .gallery-item:nth-child(n) { grid-column: span 6; grid-row: auto; min-height: 230px; } }
@media (max-width: 560px) { .race-gallery-grid .gallery-item:nth-child(n) { grid-column: auto; min-height: 230px; } }

/* 2026 Ayden McNicol Racing season update */
.race-hero { background: linear-gradient(90deg, rgba(6,45,51,.88) 0%, rgba(6,45,51,.6) 44%, rgba(6,45,51,.18) 100%), url('../images/racing/ayden-hot-rod-action.jpg') center 45% / cover; }
.race-hero::after { color: rgba(255,255,255,.2); }
.race-intro .photo-card img { object-position: center 45%; }
.standings-note { margin: 24px 0 0; font-size: .9rem; font-weight: 700; color: #3a4040; }
.season-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(40px,7vw,95px); align-items: start; }
.season-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: end; }
.season-photos figure { position: relative; margin: 0; overflow: hidden; border: var(--line); background: var(--ink); box-shadow: var(--shadow-small); }
.season-photos figure:nth-child(1) { margin-top: 42px; }
.season-photos img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.season-photos figure:nth-child(2) img { aspect-ratio: 1/1.25; object-position: 48% center; }
.season-photos figcaption { padding: 9px 11px; color: var(--cream); font: 1.1rem var(--scribble); }
.race-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.race-info-card { position: relative; overflow: hidden; min-height: 520px; padding: clamp(30px,5vw,57px); color: var(--cream); background: var(--ink); border: var(--line); box-shadow: var(--shadow); }
.race-info-card::after { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(8,26,28,.95), rgba(8,26,28,.55)); }
.race-info-card > * { position: relative; z-index: 1; }
.race-info-card > img { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.race-info-card .eyebrow { color: var(--yellow); }
.race-info-card h2 { max-width: 8ch; margin: 0 0 18px; color: var(--cream); font: clamp(2.6rem,5vw,4.7rem)/.86 var(--display); text-transform: uppercase; }
.race-info-card .race-date { margin: 0 0 15px; color: var(--yellow); font: 1.55rem var(--scribble); }
.race-info-card p:not(.eyebrow):not(.race-date):not(.small-copy) { max-width: 35ch; line-height: 1.5; }
.race-info-card .small-copy { max-width: 33ch; margin-top: 20px; color: #c6e4e5; font-size: .88rem; }
.next-race-card > img { object-position: center; }
.standings-card > img { object-position: 54% center; }
.race-list { display: grid; gap: 0; margin: 25px 0 20px; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.race-list li { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 14px 0; border-bottom: 2px solid var(--ink); }
.race-list strong { color: var(--coral); font: 1.3rem var(--display); }
.race-list span { font-weight: 700; }
.small-copy { color: #5a7274 !important; font-size: .86rem !important; }
.supporters-section { overflow: hidden; background: var(--cream); }
.supporter-feature { position: relative; display: grid; grid-template-columns: 1.35fr .65fr; margin-top: 42px; background: var(--ink); border: var(--line); box-shadow: var(--shadow); }
.supporter-feature img { width: 100%; min-height: 370px; height: 100%; object-fit: cover; object-position: center; }
.supporter-feature > div { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px,4vw,55px); color: var(--cream); }
.supporter-feature h3 { margin: 0 0 18px; color: var(--yellow); font: clamp(2.2rem,4vw,3.7rem)/.9 var(--display); text-transform: uppercase; }
.supporter-feature p { margin: 0; color: #d5eeee; line-height: 1.55; }
.supporter-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; max-width: 760px; margin: 40px auto 0; }
.supporter-grid figure { margin: 0; background: var(--cream); border: var(--line); box-shadow: var(--shadow-small); }
.supporter-grid img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.supporter-grid figure:nth-child(1) img { object-position: center 30%; }
.supporter-grid figure:nth-child(2) img { object-position: center; }
.supporter-grid figure:nth-child(3) img { object-position: center 44%; }
.supporter-grid figcaption { padding: 12px 14px; font: 1.3rem var(--scribble); }
@media (max-width: 860px) { .season-grid, .race-info-grid { grid-template-columns: 1fr; } .race-info-card { min-height: 455px; } .supporter-feature { grid-template-columns: 1fr; } .supporter-feature img { min-height: 300px; max-height: 430px; } .supporter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } .supporter-grid figcaption { font-size: 1rem; } }
@media (max-width: 560px) { .reaction-row { gap: 9px; } .reaction-label { flex-basis: 100%; margin-bottom: 1px; } .reaction-row { flex-wrap: wrap; } .reaction { width: 42px; height: 42px; } .race-info-card { min-height: 440px; padding: 32px 25px; } .race-list li { grid-template-columns: 1fr; gap: 4px; } .season-photos { max-width: 380px; margin: 0 auto; } .supporter-grid { grid-template-columns: 1fr; max-width: 390px; margin-left: auto; margin-right: auto; } .supporter-grid img { aspect-ratio: 4/3; } }

/* Jr. Mustangs Hockey 2026 photo update */
.hockey-gallery-grid .gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; min-height: 405px; }
.hockey-gallery-grid .gallery-item:nth-child(2), .hockey-gallery-grid .gallery-item:nth-child(3) { grid-column: span 5; }
.hockey-gallery-grid .gallery-item:nth-child(4) { grid-column: span 12; min-height: 290px; }
.hockey-gallery-grid .gallery-item:nth-child(4) img { object-position: center 46%; }
@media (max-width: 860px) { .hockey-gallery-grid .gallery-item:nth-child(n) { grid-column: span 6; grid-row: auto; min-height: 250px; } .hockey-gallery-grid .gallery-item:nth-child(4) { grid-column: span 12; } }
@media (max-width: 560px) { .hockey-gallery-grid .gallery-item:nth-child(n) { grid-column: auto; min-height: 230px; } }
