/* Tenaya Creek — shared styles extracted from repeated inline patterns.
   Generated: keep in sync with page markup (class names referenced there). */

/* ---- motion tokens: the site's one easing + duration vocabulary.
   enter = entrances, expo = emphasis/masked text, lift = every hover, pop = playful overshoot
   (sparingly), exit = leaving elements. GSAP mirrors: power2.out / expo.out / back.out(1.4). ---- */
:root {
  --tc-ease-enter: cubic-bezier(0.2, 0.7, 0.2, 1);
  --tc-ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --tc-ease-lift: cubic-bezier(0.22, 1, 0.36, 1);
  --tc-ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --tc-ease-exit: cubic-bezier(0.5, 0, 0.75, 0.2);
  --tc-t-hover: 0.22s;
  --tc-t-quick: 0.35s;
  --tc-t-move: 0.6s;
  --tc-t-enter: 0.9s;
}

/* ---- motion engine hooks (motion.js) ----
   site-chrome.js stamps html.tc-motion early (JS running + motion allowed), so reveal targets
   never flash before the engine claims them; data-m-in is set when an element reveals. */
html.tc-motion [data-reveal]:not([data-m-in]) { opacity: 0; }
/* split targets are re-animated per line/word/char — their block-level entrance must not also play */
html.tc-motion [data-reveal="lines"], html.tc-motion [data-reveal="words"], html.tc-motion [data-reveal="chars"] { animation: none !important; }
/* WebKit treats an inline-block with clipped overflow as baseline = its bottom edge, which
   inflates SplitText's mask wrappers past the display face's tight line-height — the page
   then visibly collapses when the split reverts (iOS Safari/Chrome). Top-aligning the
   generated wrappers makes split and plain text occupy identical lines in every engine. */
[data-reveal="lines"] div, [data-reveal="words"] div, [data-reveal="chars"] div { vertical-align: top; }
/* safety valve: if motion.js never arrives, release anything it never claimed */
html.tc-motion-idle [data-reveal]:not([data-m-in]) { opacity: 1; }

/* ---- first-visit overture: the nav chrome draws itself in (html.tc-intro is stamped by
   site-chrome.js once per session). The gold hairlines draw from the outer edges toward the
   logo, the logo drops in, and the desktop links cascade down. ---- */
html.tc-intro .tc-abs-4 { transform-origin: left center; animation: tcDrawX 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.15s both; }
html.tc-intro .tc-abs-5 { transform-origin: right center; animation: tcDrawX 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.15s both; }
html.tc-intro .tc-abs-3 { animation: tcLogoIn 0.7s var(--tc-ease-enter) 0.1s both; }
html.tc-intro nav .tc-flex-2 a { animation: tcNavIn 0.6s var(--tc-ease-enter) both; }
html.tc-intro nav .tc-flex-2 a:nth-child(1) { animation-delay: 0.4s; }
html.tc-intro nav .tc-flex-2 a:nth-child(2) { animation-delay: 0.5s; }
html.tc-intro nav .tc-flex-2 a:nth-child(3) { animation-delay: 0.6s; }
@keyframes tcDrawX { from { transform: scaleX(0); } }
@keyframes tcLogoIn { from { opacity: 0; transform: translate(-50%, calc(-50% - 14px)); } to { opacity: 1; transform: translate(-50%, -50%); } }
@keyframes tcNavIn { from { opacity: 0; transform: translateY(-14px); } }

/* font gate: hero choreography holds at frame 0 until the display faces load (or 700ms) */
html.tc-fonts-pending [data-screen-label$="hero" i] *,
html.tc-fonts-pending [data-screen-label="Hero"] *,
html.tc-fonts-pending [data-screen-label="Beers header"] * { animation-play-state: paused !important; }

/* ---- house button feel: eased color, a 2px lift with shadow bloom, quick press-down.
   Applied to every pill CTA (shared classes + .tc-btn promoted onto inline-styled ones). ---- */
.tc-label-4, .tc-label-5, .tc-label-8, .tc-label-13, .tc-label-22, .tc-menu-shell__toggle, .tc-btn {
  transition: background-color var(--tc-t-hover) var(--tc-ease-lift), color var(--tc-t-hover) var(--tc-ease-lift), border-color var(--tc-t-hover) var(--tc-ease-lift), filter var(--tc-t-hover) var(--tc-ease-lift), transform var(--tc-t-quick) var(--tc-ease-pop), box-shadow var(--tc-t-quick) var(--tc-ease-lift);
}
.tc-label-4:hover, .tc-label-5:hover, .tc-label-8:hover, .tc-label-22:hover, .tc-menu-shell__toggle:hover, .tc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 21, 56, 0.28);
}
.tc-label-4:active, .tc-label-5:active, .tc-label-8:active, .tc-label-22:active, .tc-menu-shell__toggle:active, .tc-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 12px rgba(30, 21, 56, 0.2);
  transition-duration: 0.1s;
}
/* arrows inside links nudge forward on hover */
.tc-arrow { display: inline-block; transition: transform var(--tc-t-quick) var(--tc-ease-pop); }
a:hover .tc-arrow, .tc-flex-4:hover .tc-arrow { transform: translateX(5px); }

/* nav links: directional gold underline — enters from the left, exits to the right */
.tc-label-3 { position: relative; }
.tc-label-3::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: #FFCC25; transform: scaleX(0); transform-origin: 100% 50%; transition: transform 0.32s cubic-bezier(0.65, 0, 0.35, 1); }
.tc-label-3:hover::after { transform: scaleX(1); transform-origin: 0% 50%; }
.tc-label-18 { position: relative; }
.tc-label-18::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: #FFCC25; }

/* ---- physical cans: the shadow stays grounded while the can lifts (bigger blur, lower
   alpha reads as distance), and a band responds as one object when its copy is hovered ---- */
.tc-el-9 { transition: transform var(--tc-t-quick) var(--tc-ease-lift), filter var(--tc-t-quick) var(--tc-ease-lift); }
a:hover > .tc-el-9 { filter: drop-shadow(0 54px 44px rgba(0, 0, 0, 0.24)); }
.tc-el-30 { transition: transform var(--tc-t-quick) var(--tc-ease-lift), filter var(--tc-t-quick) var(--tc-ease-lift); }
a:hover .tc-el-30 { filter: drop-shadow(0 62px 52px rgba(0, 0, 0, 0.3)); }
.tc-el-45 { transition: transform var(--tc-t-quick) var(--tc-ease-lift), filter var(--tc-t-quick) var(--tc-ease-lift); }
a:hover > .tc-el-45 { filter: drop-shadow(0 40px 34px rgba(0, 0, 0, 0.3)); }
.tc-band:has([data-beer-band-copy] a:hover) .tc-el-30 { transform: translateY(-12px) rotate(-2deg); }

/* marquee separators turn slowly */
.tc-el-17 { display: inline-block; animation: tcSpinSlow 12s linear infinite; }
@keyframes tcSpinSlow { to { transform: rotate(360deg); } }

/* ---- sticky glass nav (desktop): transparent at the top; past 90px it compresses into a
   frosted deep-purple bar, hides on scroll-down, returns on scroll-up. The decorative gold
   hairlines become the scroll-progress meter, drawing from the edges toward the logo.
   (≤960px keeps the pages' absolute-position nav — their !important rules win.) ---- */
nav[data-screen-label="Nav"] { transition: transform 0.45s var(--tc-ease-lift), background-color var(--tc-t-quick) ease, height var(--tc-t-quick) var(--tc-ease-lift), box-shadow var(--tc-t-quick) ease; }
nav[data-screen-label="Nav"] .tc-el-8 { transition: height var(--tc-t-quick) var(--tc-ease-lift); }
html.tc-nav-solid nav[data-screen-label="Nav"] {
  position: fixed;
  background: rgba(30, 21, 56, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  height: 64px;
  box-shadow: 0 10px 30px rgba(10, 6, 24, 0.25);
}
html.tc-nav-solid nav[data-screen-label="Nav"] .tc-el-8 { height: 44px; }
html.tc-nav-hidden nav[data-screen-label="Nav"] { transform: translateY(-100%); }
html.tc-nav-snap nav[data-screen-label="Nav"] { transition: none; } /* one frame while absolute→fixed flips, so the bar never flashes */
html.tc-nav-solid .tc-abs-4 { transform-origin: left center; transform: scaleX(var(--tc-progress, 0)); transition: transform 0.15s linear; }
html.tc-nav-solid .tc-abs-5 { transform-origin: right center; transform: scaleX(var(--tc-progress, 0)); transition: transform 0.15s linear; }

/* ---- Untappd tap-list skeleton: branded shimmer rows until the live board arrives ---- */
.tc-skel { display: flex; flex-direction: column; gap: 18px; padding: 10px 0; }
.tc-skel__row { display: flex; align-items: center; gap: 16px; opacity: 0; animation: tcSkelIn 0.5s ease both; }
.tc-skel__dot { width: 44px; height: 44px; border-radius: 50%; flex: none; }
.tc-skel__bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.tc-skel__bars span { display: block; height: 12px; border-radius: 6px; }
.tc-skel__dot, .tc-skel__bars span { background: linear-gradient(100deg, #ECEAF3 40%, #F7F5FB 50%, #ECEAF3 60%); background-size: 200% 100%; animation: tcShimmer 1.5s linear infinite; }
@keyframes tcShimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes tcSkelIn { to { opacity: 1; } }

/* ---- fine grain ---- */
/* "The hardware": a metallic light glint sweeps award cards on hover (no reverse pass) */
.tc-flex-17 { position: relative; overflow: hidden; }
.tc-flex-17::after { content: ''; position: absolute; top: 0; bottom: 0; left: 0; width: 60%; background: linear-gradient(105deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 80%); transform: translateX(-160%) skewX(-12deg); pointer-events: none; }
.tc-flex-17:hover::after { transition: transform 0.7s var(--tc-ease-enter); transform: translateX(300%) skewX(-12deg); }

/* footer explore links slide forward; the back-to-top arrow swaps out the top */
footer[data-screen-label="Footer"] a.tc-label-17 { display: inline-block; transition: color var(--tc-t-hover) var(--tc-ease-lift), transform var(--tc-t-quick) var(--tc-ease-lift); }
footer[data-screen-label="Footer"] a.tc-label-17:hover { transform: translateX(6px); }
.tc-back-to-top { position: relative; overflow: hidden; }
.tc-btt-glyph { display: inline-block; transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1); }
.tc-back-to-top::after { content: '\2191'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, 160%); transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1); }
.tc-back-to-top:hover .tc-btt-glyph { transform: translateY(-160%); }
.tc-back-to-top:hover::after { transform: translate(-50%, -50%); }

/* live-status language: radar ping on "live" dots, open-now chip in the hours cards */
.tc-ping { position: relative; }
.tc-ping::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: tcPing 2.2s cubic-bezier(0, 0, 0.2, 1) infinite; }
@keyframes tcPing { 0% { transform: scale(1); opacity: 0.7; } 70%, 100% { transform: scale(3); opacity: 0; } }
.tc-open-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #3FA34D; opacity: 0; transition: opacity 0.4s ease; }
.tc-open-chip.is-ready { opacity: 1; }
.tc-open-chip--closed { color: #B08A2E; }
.tc-open-chip .tc-open-dot { width: 9px; height: 9px; border-radius: 50%; background: #3FA34D; }
.tc-open-chip--closed .tc-open-dot { background: #B08A2E; animation: none; }

/* keyboard focus carries the brand: gold rings (they follow each element's own radius),
   and cans lift for keyboards exactly like they do for mice */
:focus-visible { outline: 2px solid #FFCC25; outline-offset: 4px; }
a:focus-visible > .tc-el-9 { transform: translateY(-14px); }
a:focus-visible > .tc-el-45 { transform: translateY(-10px); }

/* document scrollbar in brand colors (WebKit + Firefox) */
html { scrollbar-color: #5A4A93 #1E1538; }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #1E1538; }
::-webkit-scrollbar-thumb { background: #5A4A93; border-radius: 8px; border: 3px solid #1E1538; }
::-webkit-scrollbar-thumb:hover { background: #FFCC25; }

/* scroll chaining stays inside overlays and rails */
[data-mobile-menu], [data-rail], [data-thumb-strip], #menu-container { overscroll-behavior: contain; }
[data-count] { font-variant-numeric: tabular-nums; }

/* ---- cross-document view transitions: no more hard white flash between pages.
   The nav logo (.tc-el-8) is named so it holds still while the page content crossfades;
   a clicked beer can gets view-transition-name: beer-can from site-chrome.js and morphs
   into the beer page's hero can (Chrome/Edge 126+, Safari 18.2+; others keep today's cut). ---- */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: tcVtOut 0.25s var(--tc-ease-exit) both; }
::view-transition-new(root) { animation: tcVtIn 0.4s var(--tc-ease-lift) both; }
@keyframes tcVtOut { to { opacity: 0; } }
@keyframes tcVtIn { from { opacity: 0; transform: translateY(12px); } }
.tc-el-8 { view-transition-name: tc-logo; }
::view-transition-group(tc-logo) { animation-duration: 0.35s; }
::view-transition-group(beer-can) { animation-duration: 0.55s; animation-timing-function: var(--tc-ease-lift); }
::view-transition-old(beer-can) { animation: none; opacity: 0; }
::view-transition-new(beer-can) { animation: none; opacity: 1; }
/* the global per-page reduced-motion kill can't reach VT pseudo-elements — disable here */
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
  ::view-transition-group(*), ::view-transition-old(*), ::view-transition-new(*) { animation: none !important; }
}

.tc-flex-1 { display: flex; flex-direction: column; background: #FFFFFF; position: relative; }
.tc-abs-1 { position: absolute; top: 0; left: 0; right: 0; z-index: 10; background: transparent; height: 84px; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(20px, 4.5vw, 64px); }
/* menu checkbox: visually hidden but focusable, so the hamburger is keyboard-operable */
.tc-el-1 { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
.tc-el-2 { display: none; position: relative; z-index: 41; width: 44px; height: 44px; cursor: pointer; flex-direction: column; gap: 6px; justify-content: center; align-items: flex-start; }
.tc-el-2 span { transition: transform var(--tc-t-quick) var(--tc-ease-lift), opacity var(--tc-t-hover) ease; }
.tc-el-3 { width: 26px; height: 3px; border-radius: 2px; background: #FFFFFF; }
.tc-el-4 { width: 18px; height: 3px; border-radius: 2px; background: #FFFFFF; }
.tc-el-5 { width: 26px; height: 3px; border-radius: 2px; background: #FFFFFF; }
#tcMenu:focus-visible ~ [data-menu-btn] { outline: 2px solid #FFCC25; outline-offset: 3px; border-radius: 6px; }
#tcMenu:checked ~ [data-menu-btn] .tc-el-3 { transform: translateY(9px) rotate(45deg); }
#tcMenu:checked ~ [data-menu-btn] .tc-el-4 { opacity: 0; }
#tcMenu:checked ~ [data-menu-btn] .tc-el-5 { transform: translateY(-9px) rotate(-45deg); }
/* the overlay opens as a frosted circle blooming from the hamburger, links cascading in */
.tc-el-6 { display: flex; visibility: hidden; opacity: 0; pointer-events: none; position: fixed; inset: 0; z-index: 40; background: rgba(30,21,56,0.82); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); flex-direction: column; align-items: center; justify-content: center; gap: 26px; clip-path: circle(0px at 40px 32px); transition: clip-path 0.55s var(--tc-ease-lift), opacity 0.3s ease 0.2s, visibility 0s 0.55s; }
#tcMenu:checked ~ [data-mobile-menu] { visibility: visible; opacity: 1; pointer-events: auto; clip-path: circle(160% at 40px 32px); transition: clip-path 0.6s var(--tc-ease-lift), opacity 0.15s ease; }
[data-mobile-menu] > a, [data-mobile-menu] > img { opacity: 0; transform: translateY(26px); transition: opacity 0.4s var(--tc-ease-enter), transform 0.4s var(--tc-ease-enter); }
#tcMenu:checked ~ [data-mobile-menu] > img { opacity: 1; transform: none; transition-delay: 0.1s; }
#tcMenu:checked ~ [data-mobile-menu] > a { opacity: 1; transform: none; }
#tcMenu:checked ~ [data-mobile-menu] > a:nth-of-type(1) { transition-delay: 0.15s; }
#tcMenu:checked ~ [data-mobile-menu] > a:nth-of-type(2) { transition-delay: 0.2s; }
#tcMenu:checked ~ [data-mobile-menu] > a:nth-of-type(3) { transition-delay: 0.25s; }
#tcMenu:checked ~ [data-mobile-menu] > a:nth-of-type(4) { transition-delay: 0.3s; }
#tcMenu:checked ~ [data-mobile-menu] > a:nth-of-type(5) { transition-delay: 0.35s; }
html.tc-menu-open, html.tc-menu-open body { overflow: hidden; }
@media (min-width: 961px) { .tc-el-1 { display: none; } } /* the menu only exists ≤960 — keep desktop tab order clean */
.tc-el-7 { height: 48px; margin-bottom: 10px; }
.tc-label-1 { font-family: Anton, sans-serif; font-size: 26px; letter-spacing: 0.05em; text-transform: uppercase; color: #FFFFFF; min-height: 44px; display: inline-flex; align-items: center; }
.tc-label-2 { font-family: Anton, sans-serif; font-size: 26px; letter-spacing: 0.05em; text-transform: uppercase; color: #FFCC25; min-height: 44px; display: inline-flex; align-items: center; }
.tc-flex-2 { display: flex; gap: clamp(20px, 3vw, 44px); align-items: center; }
.tc-label-3 { font-family: Anton, sans-serif; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; color: #FFFFFF; }
.tc-abs-3 { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: block; }
.tc-el-8 { height: 56px; display: block; }
.tc-abs-4 { position: absolute; left: 0; bottom: 0; width: calc(50% - 220px); height: 3px; background: #FFCC25; }
.tc-abs-5 { position: absolute; right: 0; bottom: 0; width: calc(50% - 220px); height: 3px; background: #FFCC25; }
.tc-label-4 { display: inline-flex; align-items: center; border-radius: 100px; background: #FFCC25; color: #1E1538; padding: 18px 44px; font-family: Anton, sans-serif; font-size: 19px; letter-spacing: 0.05em; text-transform: uppercase; }
.tc-label-5 { display: inline-flex; align-items: center; border-radius: 100px; border: 2px solid rgba(255,255,255,0.55); background: rgba(30,21,56,0.55); color: #FFFFFF; padding: 16px 42px; font-family: Anton, sans-serif; font-size: 19px; letter-spacing: 0.05em; text-transform: uppercase; }
.tc-el-9 { height: 330px; display: block; filter: drop-shadow(0 40px 32px rgba(0,0,0,0.35)); transition: transform var(--tc-t-quick) var(--tc-ease-lift); will-change: transform; }
.tc-label-6 { position: absolute; top: -12px; left: 50%; transform: translateX(-50%) rotate(4deg); z-index: 1; opacity: 0; transition: opacity var(--tc-t-hover) var(--tc-ease-lift); border-radius: 100px; background: #FFCC25; color: #1E1538; padding: 5px 14px; font-family: Anton, sans-serif; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: 0 4px 10px rgba(30,21,56,0.25); white-space: nowrap; }
.tc-img-1 { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.16; mix-blend-mode: multiply; pointer-events: none; }
.tc-flex-3 { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.tc-label-7 { border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.5); color: #FFFFFF; padding: 8px 20px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.tc-label-8 { display: inline-flex; align-items: center; border-radius: 100px; background: #FFCC25; color: #1E1538; padding: 16px 40px; font-family: Anton, sans-serif; font-size: 18px; letter-spacing: 0.05em; text-transform: uppercase; }
.tc-label-9 { font-family: Anton, sans-serif; font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase; color: #FFFFFF; border-bottom: 2px solid rgba(255,255,255,0.4); padding-bottom: 3px; }
.tc-el-10 { background: #FFFFFF; padding: clamp(70px, 9vw, 130px) clamp(20px, 4.5vw, 64px); }
.tc-el-11 { position: relative; }
.tc-flex-4 { display: flex; flex-direction: column; gap: 18px; width: 400px; flex-shrink: 0; scroll-snap-align: start; }
.tc-img-2 { width: 100%; height: 300px; object-fit: cover; border-radius: 20px; box-shadow: 0 30px 60px rgba(30,21,56,0.25); transition: transform var(--tc-t-quick) var(--tc-ease-lift); }
.tc-el-12 { margin: 0; font-size: 16px; line-height: 1.8; color: #4A4363; }
.tc-label-29 { align-self: flex-start; font-family: Anton, sans-serif; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: #1E1538; border-bottom: 2px solid #C9C2DD; padding-bottom: 2px; transition: color var(--tc-t-hover) var(--tc-ease-lift), border-color var(--tc-t-hover) var(--tc-ease-lift); }
.tc-flex-4:hover .tc-label-29 { color: #35285D; border-bottom-color: #35285D; }
.tc-label-10 { align-self: flex-start; border-radius: 100px; background: #0E5FA8; color: #FFFFFF; padding: 8px 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.tc-img-3 { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: 0.5; pointer-events: none; }
.tc-label-11 { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
[data-screen-label="Footer"] > div:first-child > .tc-flex-10:nth-child(2) > .tc-label-11,
[data-screen-label="Footer"] > div:first-child > .tc-flex-10:nth-child(3) > .tc-label-11 { color: #FFCC25; }
[data-screen-label="Footer"] > div:first-child > .tc-flex-10:nth-child(3) > .tc-label-17 { color: #FFFFFF; }
[data-screen-label="Footer"] > div:first-child > .tc-flex-10:nth-child(3) > .tc-label-17:hover { color: #FFCC25; }
.tc-pill-1 { border: 1px solid rgba(255,255,255,0.3); border-radius: 100px; padding: 10px 22px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: #FFFFFF; }
.tc-el-13 { margin: 0; text-align: center; font-family: 'Courier New', monospace; font-size: 14px; color: #9A93B3; }
.tc-label-12 { display: block; text-align: center; margin-top: 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #35285D; text-decoration: underline; }
.tc-flex-5 { display: flex; flex-direction: column; gap: 28px; }
.tc-section-head { display: flex; flex-direction: column; gap: 16px; }
.tc-section-head--center { align-items: center; text-align: center; }
.tc-el-14 { font-family: Pacifico, cursive; font-size: clamp(28px, 5vw, 38px); line-height: 1.15; color: #35285D; }
.tc-el-15 { margin: 0; font-size: 16px; line-height: 1.9; color: #1E1538; }
.tc-label-13 { border: 2px solid #1E1538; border-radius: 100px; padding: 10px 24px; font-family: Anton, sans-serif; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: #1E1538; transition: background var(--tc-t-hover) var(--tc-ease-lift), color var(--tc-t-hover) var(--tc-ease-lift); }
.tc-flex-6 { display: flex; flex-direction: column; gap: 12px; background: rgba(30,21,56,0.06); border: 2px solid #1E1538; border-radius: 20px; padding: 32px 36px; }
.tc-el-16 { background: #1E1538; overflow: hidden; padding: 34px 0; }
.tc-flex-7 { display: flex; width: max-content; animation: tcMarquee 55s linear infinite; }
.tc-flex-8 { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); padding-right: 44px; }
.tc-label-14 { font-family: 'Tenaya Creek', Anton, sans-serif; font-weight: 400; letter-spacing: -0.04em; font-size: clamp(28px, 3.8vw, 54px); text-transform: uppercase; color: #FFCC25; white-space: nowrap; }
.tc-el-17 { color: #FFCC25; font-size: 22px; }
.tc-label-15 { font-family: 'Tenaya Creek', Anton, sans-serif; font-weight: 400; letter-spacing: -0.04em; font-size: clamp(28px, 3.8vw, 54px); text-transform: uppercase; color: #FFFFFF; white-space: nowrap; }
.tc-el-18 { background: #FFFFFF; padding: clamp(60px, 7.6vw, 110px) clamp(20px, 4.5vw, 64px); }
.tc-flex-9 { max-width: 1500px; margin: 0 auto; display: flex; flex-direction: column; gap: clamp(20px, 3vw, 44px); align-items: center; }
.tc-label-16 { margin: 0; font-family: 'Tenaya Creek', Anton, sans-serif; font-weight: 400; letter-spacing: -0.04em; font-size: clamp(58px, 12vw, 104px); line-height: 0.95; text-transform: uppercase; color: #35285D; text-align: center; }
.tc-el-19 { color: #FFCC25; }
.tc-instagram-feed { width: 100%; min-height: 230px; }
/* Match the old placeholder cards: soft 14px corners on Elfsight tiles */
.tc-instagram-feed .eapps-instagram-feed-posts-item,
.tc-instagram-feed .eapps-instagram-feed-posts-item-media,
.tc-instagram-feed .eapps-instagram-feed-posts-item-image,
.tc-instagram-feed .eapps-instagram-feed-posts-item-link,
.tc-instagram-feed a[class*="Item"],
.tc-instagram-feed [class*="Media"],
.tc-instagram-feed img {
  border-radius: 14px !important;
  overflow: hidden;
}
.tc-footer-note { text-transform: uppercase; letter-spacing: 0.06em; text-wrap: balance; }
.tc-el-20 { background: #35285D; }
.tc-el-21 { height: 61px; align-self: flex-start; }
.tc-el-22 { margin: 0; font-size: 16px; line-height: 2; color: #FFFFFF; }
.tc-flex-10 { display: flex; flex-direction: column; gap: 14px; }
.tc-el-23 { margin: 0; font-size: 14px; color: rgba(255,255,255,0.75); }
.tc-label-17 { font-family: Anton, sans-serif; font-size: 17px; letter-spacing: 0.05em; text-transform: uppercase; color: #FFFFFF; }
footer[data-screen-label="Footer"] a.tc-label-17:hover,
tc-footer[data-screen-label="Footer"] a.tc-label-17:hover { color: #FFCC25; }
tc-marquee, tc-instagram, tc-footer { display: block; }
.tc-el-24 { width: 82px; }
.tc-footer-aside { display: flex; flex-direction: column; align-items: flex-end; gap: 28px; justify-self: end; align-self: end; }
.tc-back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  background: transparent;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background var(--tc-t-hover) var(--tc-ease-lift), color var(--tc-t-hover) var(--tc-ease-lift), transform var(--tc-t-quick) var(--tc-ease-pop);
}
.tc-back-to-top:hover { background: #FFCC25; color: #1E1538; transform: translateY(-3px); }
.tc-back-to-top:active { transform: translateY(0) scale(0.95); transition-duration: 0.1s; }
.tc-el-25 { display: block; width: 100%; }
.tc-el-26 { display: none; flex-direction: column; gap: 6px; align-items: center; text-align: center; background: #1E1538; color: rgba(255,255,255,0.8); font-size: 12px; line-height: 1.7; padding: 20px 24px; }
.tc-el-27 { color: #8DC63F; text-decoration: underline; }
.tc-el-28 { color: #FFCC25; text-decoration: underline; }
.tc-abs-6 { position: absolute; left: 40%; top: 30%; width: 20%; height: 70%; display: block; }
.tc-abs-7 { position: absolute; left: 76%; top: 40%; width: 18%; height: 60%; display: block; }
.tc-el-29 { margin:0;text-align:center;font-family:\'Courier New\',monospace;font-size:14px;color:#9A93B3; }
.tc-label-18 { font-family: Anton, sans-serif; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; color: #FFCC25; }
.tc-flex-11 { position: relative; margin: 0 auto; display: flex; gap: clamp(44px, 8.3vw, 120px); align-items: center; justify-content: center; }
.tc-el-30 { height: 540px; display: block; filter: drop-shadow(0 50px 40px rgba(0,0,0,0.45)); transition: transform var(--tc-t-quick) var(--tc-ease-lift); will-change: transform; }
.tc-label-19 { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.tc-label-20 { margin: 0; font-family: 'Tenaya Creek', Anton, sans-serif; font-weight: 400; letter-spacing: -0.04em; font-size: clamp(35px, 5.8vw, 84px); line-height: 0.95; text-transform: uppercase; color: #FFFFFF; text-wrap: balance; }
.tc-label-21 { border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.5); color: #FFFFFF; padding: 7px 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.tc-label-22 { margin-top: 8px; display: inline-flex; align-items: center; gap: 12px; border-radius: 100px; background: #FFCC25; color: #1E1538; padding: 15px 36px; font-family: Anton, sans-serif; font-size: 17px; letter-spacing: 0.05em; text-transform: uppercase; }
.tc-flex-12 { display: flex; flex-direction: column; gap: 6px; padding: 34px 24px; border-left: 1px solid #E6E2F0; }
.tc-label-23 { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #6B6485; }
.tc-el-31 { font-family: Anton, sans-serif; font-size: 24px; text-transform: uppercase; color: #1E1538; }
.tc-el-32 { font-family: Pacifico, cursive; font-size: 36px; color: #35285D; }
.tc-el-33 { margin: 0; font-size: 18px; line-height: 2; color: #4A4363; }
.tc-el-34 { font-family: 'Courier New', monospace; font-size: 12px; color: #9A93B3; }
.tc-pill-2 { border: 2px dashed #B9B1D4; border-radius: 100px; padding: 10px 24px; font-family: 'Courier New', monospace; font-size: 14px; color: #6B6485; }
.tc-label-24 { margin: 0; font-family: 'Tenaya Creek', Anton, sans-serif; font-weight: 400; letter-spacing: -0.04em; font-size: clamp(35px, 5.8vw, 84px); line-height: 0.95; text-transform: uppercase; color: #1E1538; }
.tc-el-35 { font-family: Pacifico, cursive; font-size: clamp(28px, 5vw, 38px); line-height: 1.15; color: #FFCC25; animation: tcRise 0.9s var(--tc-ease-enter) 0.05s both; }
.tc-label-25 { margin: 0; font-family: 'Tenaya Creek', Anton, sans-serif; font-weight: 400; letter-spacing: -0.04em; font-size: clamp(96px, 22vw, 138px); line-height: 0.98; text-transform: uppercase; color: #FFFFFF; text-wrap: balance; animation: tcRise 0.9s var(--tc-ease-enter) 0.05s both; }
.tc-flex-13 { display: flex; flex-direction: column; gap: 16px; border: 1px solid #E6E2F0; border-radius: 20px; padding: 40px; transition: box-shadow var(--tc-t-quick) var(--tc-ease-lift), transform var(--tc-t-quick) var(--tc-ease-lift); }
.tc-el-36 { font-family: Anton, sans-serif; font-size: 28px; text-transform: uppercase; color: #35285D; }
.tc-el-37 { margin: 0; font-size: 16px; line-height: 2.1; color: #1E1538; }
.tc-flex-14 { display: flex; flex-direction: column; gap: 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 40px; transition: background var(--tc-t-quick) var(--tc-ease-lift), transform var(--tc-t-quick) var(--tc-ease-lift); }
.tc-label-26 { align-self: flex-start; border-radius: 100px; background: #FFCC25; color: #1E1538; padding: 8px 18px; font-family: Anton, sans-serif; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.tc-el-38 { font-family: Anton, sans-serif; font-size: 30px; line-height: 1.05; text-transform: uppercase; color: #FFFFFF; }
.tc-el-39 { margin: 0; font-family: 'Courier New', monospace; font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.tc-flex-15 { display: flex; flex-direction: column; gap: 16px; background: #FFFFFF; border-radius: 20px; padding: 40px; }
.tc-img-5 { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 20px; box-shadow: 0 40px 80px rgba(30,21,56,0.18); }
.tc-flex-16 { display: flex; flex-direction: column; gap: 12px; }
.tc-el-40 { font-family: 'Tenaya Creek', Anton, sans-serif; font-size: clamp(56px, 6.5vw, 110px); line-height: 1; color: #35285D; }
.tc-label-27 { margin: 0; font-family: Anton, sans-serif; font-weight: 400; font-size: 26px; letter-spacing: 0.04em; text-transform: uppercase; color: #1E1538; }
.tc-el-41 { margin: 0; font-size: 17px; line-height: 1.9; color: #4A4363; }
.tc-flex-17 { display: flex; flex-direction: column; align-items: center; gap: 14px; border: 1px solid #E6E2F0; border-radius: 20px; padding: 52px 40px; text-align: center; transition: box-shadow var(--tc-t-quick) var(--tc-ease-lift), transform var(--tc-t-quick) var(--tc-ease-lift); }
.tc-el-42 { font-family: Anton, sans-serif; font-size: clamp(28px, 3.3vw, 48px); color: #FFCC25; }
.tc-el-43 { font-family: Anton, sans-serif; font-size: 26px; line-height: 1.15; text-transform: uppercase; color: #1E1538; }
.tc-label-28 { font-size: 14px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #6B6485; }
.tc-el-44 { display: inline-block; }
.tc-el-45 { height: 220px; filter: drop-shadow(0 30px 26px rgba(0,0,0,0.45)); transition: transform var(--tc-t-quick) var(--tc-ease-lift); }
.tc-el-46 { display: inline-block; position: relative; }

/* --- Can story: scroll-driven 3D/hero can on the beer detail page --- */
.tc-cs { position: relative; height: 320vh; background: #FFFFFF; }
.tc-cs__pin { position: sticky; top: 0; height: 100vh; height: 100dvh; box-sizing: border-box; overflow: clip; display: flex; align-items: center; justify-content: center; } /* border-box: mobile adds padding-top, and the pin must never grow past the viewport — beats anchor to its bottom edge */
.tc-cs__glow { position: absolute; left: 50%; top: 50%; width: min(90vw, 980px); height: min(90vw, 980px); margin: min(-45vw, -490px) 0 0 min(-45vw, -490px); pointer-events: none; will-change: transform, opacity; }
.tc-cs__obj { position: relative; z-index: 2; will-change: transform; }
.tc-cs__spin { position: relative; display: flex; align-items: center; justify-content: center; }
.tc-cs__img { height: min(70.5vh, 689px); display: block; filter: drop-shadow(0 60px 50px rgba(0,0,0,0.35)); transition: filter 0.5s ease, opacity 0.5s ease; -webkit-user-drag: none; user-select: none; } /* matches the 3D can's framed size so the crossfade reads as focus, not a swap; keeps its layout box forever (the canvas stacks on top) */
/* blur-up ghost while the 3D scene loads: a soft pulsing silhouette promises nothing about
   lighting/angle, so the sharp render materializing through it reads as focus, not a swap */
.tc-cs__img--ghost { filter: blur(22px) saturate(0.85); animation: tcGhostPulse 2.2s ease-in-out infinite alternate; }
.tc-cs__canvas { position: absolute; left: 50%; top: 50%; display: block; touch-action: pan-y; } /* sized by can-story.js to the scene's own aspect; centered via its transform */
.tc-cs__shadow { position: absolute; left: 50%; bottom: 9vh; width: 300px; height: 46px; margin-left: -150px; border-radius: 50%; background: rgba(30,21,56,0.55); filter: blur(20px); pointer-events: none; will-change: transform, opacity; }
.tc-cs__beat { position: absolute; z-index: 3; top: 50%; transform: translateY(28px); opacity: 0; width: min(34vw, 460px); display: flex; flex-direction: column; gap: 16px; will-change: transform, opacity; } /* 16px stack = .tc-section-head rhythm */
.tc-cs__beat--left { left: clamp(20px, 6vw, 90px); }
.tc-cs__beat--right { right: clamp(20px, 6vw, 90px); align-items: flex-end; text-align: right; }
/* story beats sit ABOVE the close-up can: a soft scrim keeps the text readable over the label */
.tc-cs__beat--left, .tc-cs__beat--right { padding: 44px 48px; background: radial-gradient(closest-side, rgba(255,255,255,0.9) 35%, rgba(255,255,255,0.6) 68%, rgba(255,255,255,0)); }
.tc-cs__beat--right .tc-cs__row { justify-content: flex-end; }
.tc-cs__eyebrow { font-family: Pacifico, cursive; font-size: clamp(28px, 5vw, 38px); line-height: 1.15; color: #35285D; } /* matches the script eyebrow used in section heads site-wide */
.tc-cs__title { margin: 0; font-family: 'Tenaya Creek', Anton, sans-serif; font-weight: 400; letter-spacing: -0.04em; font-size: clamp(44px, 5.6vw, 80px); line-height: 0.95; text-transform: uppercase; color: #1E1538; text-wrap: balance; } /* 44px floor matches the other pages' section headings; capped for the 460px side panel */
.tc-cs__body { margin: 0; font-size: 16px; line-height: 1.9; color: #4A4363; }
.tc-cs__row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.tc-cs__pill { border-radius: 100px; color: #FFFFFF; padding: 8px 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.tc-cs__pill--line { background: none !important; border: 1.5px solid #B9B1D4; color: #4A4363; }
.tc-cs__cta { display: inline-flex; align-items: center; border-radius: 100px; background: #FFCC25; border: 2px solid #1E1538; color: #1E1538; padding: 12px 26px; font-family: Anton, sans-serif; font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase; transition: background var(--tc-t-hover) var(--tc-ease-lift), color var(--tc-t-hover) var(--tc-ease-lift); }
.tc-cs__cta:hover { background: #1E1538; color: #FFCC25; }
.tc-cs__cta--ghost { background: transparent; }
.tc-cs__hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.75); pointer-events: none; }
.tc-cs__bg { position: absolute; inset: 0; pointer-events: none; will-change: opacity, transform, filter; }
.tc-cs__bgart { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.16; mix-blend-mode: multiply; }
.tc-cs__beat--hero { left: clamp(20px, 6vw, 90px); width: min(46vw, 620px); gap: 18px; }
.tc-cs__back { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
/* mobile-only back link pinned above the can (shown ≤760 via the beer page's mobile block) */
.tc-cs__topback { display: none; position: absolute; top: calc(74px + env(safe-area-inset-top)); left: 20px; z-index: 4; font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.tc-cs__topback:hover { color: #FFCC25; }
.tc-cs--static .tc-cs__topback { display: none !important; }
.tc-cs__back:hover { color: #FFCC25; }
.tc-cs__hname { margin: 0; font-family: 'Tenaya Creek', Anton, sans-serif; font-weight: 400; letter-spacing: -0.04em; font-size: clamp(48px, 7.4vw, 110px); line-height: 0.92; text-transform: uppercase; color: #FFFFFF; text-wrap: balance; }
.tc-cs__pill--onDark { background: none !important; border: 1.5px solid rgba(255,255,255,0.5); color: #FFFFFF; }
.tc-cs__pill--gold { background: #FFCC25 !important; color: #1E1538; font-family: Anton, sans-serif; letter-spacing: 0.08em; }
.tc-cs__cta--onDark { background: rgba(30,21,56,0.4); border-color: rgba(255,255,255,0.55); color: #FFFFFF; }
.tc-cs__cta--onDark:hover { background: #FFCC25; border-color: #FFCC25; color: #1E1538; }
/* deep stage: the story beats read white-on-brand-color instead of dark-on-white */
.tc-cs--deep .tc-cs__title { color: #FFFFFF; }
.tc-cs--deep .tc-cs__body { color: rgba(255,255,255,0.85); }
.tc-cs--deep .tc-cs__eyebrow { color: #FFCC25; }
.tc-cs--deep .tc-cs__beat--left, .tc-cs--deep .tc-cs__beat--right { background: radial-gradient(closest-side, rgba(8,10,28,0.5) 35%, rgba(8,10,28,0.28) 68%, rgba(8,10,28,0)); }
.tc-cs--deep .tc-cs__pill--line { border-color: rgba(255,255,255,0.5); color: #FFFFFF; }
.tc-cs--deep .tc-cs__cta--ghost { border-color: rgba(255,255,255,0.55); color: #FFFFFF; }
.tc-cs--deep .tc-cs__cta--ghost:hover { background: #1E1538; border-color: #1E1538; color: #FFCC25; }
.tc-cs--deep .tc-cs__shadow { background: rgba(0,0,0,0.6); }
.tc-cs--static .tc-cs__hname { color: #1E1538; }
.tc-cs--static .tc-cs__back { color: #6B6485; }
.tc-cs--static .tc-cs__pill--onDark { border-color: #B9B1D4; color: #4A4363; }
.tc-cs--static .tc-cs__cta--onDark { background: transparent; border-color: #1E1538; color: #1E1538; }
.tc-cs__chev { font-size: 18px; animation: tcFloat 1.6s ease-in-out infinite alternate; }
.tc-cs--static { height: auto; padding: clamp(50px, 6vw, 90px) clamp(20px, 4.5vw, 64px); }
.tc-cs--static .tc-cs__pin { position: static; height: auto; overflow: visible; flex-direction: column; gap: 40px; }
.tc-cs--static .tc-cs__beat { position: static; width: min(680px, 100%); text-align: left; align-items: flex-start; }
.tc-cs--static .tc-cs__hint, .tc-cs--static .tc-cs__shadow { display: none; }

/* --- History timeline spine: a line that draws itself down the milestones as you scroll,
   with a gold node igniting per row. Defaults (no JS / reduced motion) are fully lit;
   our-history.html arms the scrub by adding .tc-spine-armed. --- */
.tc-spine { position: absolute; left: 50%; width: 3px; margin-left: -1.5px; background: rgba(53,40,93,0.1); border-radius: 2px; pointer-events: none; }
.tc-spine__fill { width: 100%; height: 100%; background: #FFCC25; transform-origin: top center; border-radius: 2px; }
[data-milestone] { position: relative; }
[data-milestone]::before { content: ''; position: absolute; left: 50%; top: 50%; width: 16px; height: 16px; margin: -8px 0 0 -8px; border-radius: 50%; box-sizing: border-box; background: #FFCC25; border: 3px solid #35285D; z-index: 1; transition: background var(--tc-t-quick) var(--tc-ease-pop), transform var(--tc-t-quick) var(--tc-ease-pop); }
.tc-spine-armed [data-milestone]::before { background: #F4F2F8; }
.tc-spine-armed [data-milestone].is-lit::before { background: #FFCC25; transform: scale(1.25); }
@media (max-width: 900px) {
  .tc-spine, [data-milestone]::before { display: none; } /* rows stack single-column — no center line to ride */
}

/* --- Can story: mount intro (letter-split name rise, can up, glow bloom).
   .tc-cs--hold parks every piece at frame 0 (e.g. while a view transition lands);
   removing it plays the sequence; the intro class is removed once everything settles. --- */
.tc-cs__w { display: inline-flex; overflow: hidden; padding: 0.06em 0.04em; margin: -0.06em -0.04em; vertical-align: top; }
.tc-cs__l { display: inline-block; }
.tc-cs--intro .tc-cs__l { animation: tcLetterRise 0.7s cubic-bezier(0.19, 1, 0.22, 1) calc(0.12s + var(--li) * 0.028s) both; }
.tc-cs--intro .tc-cs__beat--hero .tc-cs__back { animation: tcCsFade 0.6s var(--tc-ease-enter) 0.1s both; }
.tc-cs--intro .tc-cs__beat--hero .tc-cs__row { animation: tcCsRise 0.7s var(--tc-ease-enter) 0.45s both; }
.tc-cs--intro .tc-cs__beat--hero .tc-cs__row:last-of-type { animation-delay: 0.55s; }
.tc-cs--intro .tc-cs__rise { animation: tcCsCanUp 0.9s var(--tc-ease-enter) 0.2s both; }
.tc-cs--intro .tc-cs__glow { animation: tcCsGlow 1.2s ease-out both; }
.tc-cs--hold .tc-cs__l, .tc-cs--hold .tc-cs__back, .tc-cs--hold .tc-cs__row, .tc-cs--hold .tc-cs__rise, .tc-cs--hold .tc-cs__glow { animation-play-state: paused !important; }
@keyframes tcLetterRise { from { transform: translateY(105%) rotate(3deg); } }
@keyframes tcCsRise { from { opacity: 0; transform: translateY(26px); } }
@keyframes tcCsFade { from { opacity: 0; } }
@keyframes tcCsCanUp { from { opacity: 0; transform: translateY(70px) scale(0.94); } }
@keyframes tcCsGlow { from { opacity: 0; } }

/* --- Can story: beat progress rail (desktop, scrub mode only) --- */
.tc-cs__rail { position: absolute; right: 26px; top: 50%; transform: translateY(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.tc-cs__tick { width: 3px; height: 18px; border-radius: 2px; border: none; padding: 0; cursor: pointer; background: rgba(30,21,56,0.25); transition: height var(--tc-t-quick) var(--tc-ease-lift), background var(--tc-t-hover) var(--tc-ease-lift); }
.tc-cs__tick:hover { background: rgba(30,21,56,0.5); }
.tc-cs__tick.is-on { height: 34px; background: #FFCC25; }
.tc-cs--deep .tc-cs__tick { background: rgba(255,255,255,0.3); }
.tc-cs--deep .tc-cs__tick:hover { background: rgba(255,255,255,0.6); }
.tc-cs--deep .tc-cs__tick.is-on { background: #FFCC25; }
.tc-cs__count { font-family: 'Courier New', monospace; font-size: 11px; letter-spacing: 0.08em; color: rgba(30,21,56,0.5); writing-mode: vertical-rl; margin-top: 6px; }
.tc-cs--deep .tc-cs__count { color: rgba(255,255,255,0.55); }
.tc-cs--static .tc-cs__rail { display: none; }
.tc-cs__bw { display: inline-block; }
@media (max-width: 760px) { .tc-cs__rail { display: none; } }

/* --- Collapsible Untappd tap list --- */
.tc-menu-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}
.tc-menu-shell__clip {
  position: relative;
  width: 100%;
  max-height: 1120px;
  overflow: hidden;
  transition: max-height 0.55s var(--tc-ease-expo);
}
.tc-menu-shell__clip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 78%);
  transition: opacity 0.35s ease;
}
.tc-menu-shell.is-expanded .tc-menu-shell__clip {
  max-height: 12000px;
}
.tc-menu-shell.is-expanded .tc-menu-shell__clip::after {
  opacity: 0;
  pointer-events: none;
}
.tc-menu-shell__body {
  min-height: 200px;
  width: 100%;
}
.tc-menu-shell__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  background: #35285D;
  color: #FFFFFF;
  padding: 16px 40px;
  font-family: Anton, sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--tc-t-hover) var(--tc-ease-lift), color var(--tc-t-hover) var(--tc-ease-lift);
}
.tc-menu-shell__toggle:hover {
  background: #1E1538;
  color: #FFCC25;
}
@media (prefers-reduced-motion: reduce) {
  .tc-menu-shell__clip { transition: none; }
  .tc-menu-shell__clip::after { transition: none; }
}

@media (max-width: 760px) {
  [data-screen-label="Footer"] > div:first-child { grid-template-columns: 1fr !important; gap: 30px !important; }
  [data-screen-label="Footer"] .tc-flex-5,
  [data-screen-label="Footer"] > div:first-child > .tc-flex-10:nth-child(2) {
    align-items: center !important;
    text-align: center;
  }
  [data-screen-label="Footer"] .tc-flex-5 .tc-el-21 { align-self: center !important; }
  [data-screen-label="Footer"] > div:first-child > .tc-flex-10:nth-child(3) {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    justify-items: center;
    text-align: center;
  }
  [data-screen-label="Footer"] > div:first-child > .tc-flex-10:nth-child(3) > .tc-label-11 { grid-column: 1 / -1; }
  [data-screen-label="Footer"] .tc-footer-aside { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; justify-self: stretch; align-self: stretch; }
  [data-screen-label="Footer"] img[alt="Independent Craft Brewers seal"] { width: 68px !important; }
  [data-screen-label="Footer"] [data-credit] > img,
  [data-screen-label="Footer"] [data-credit] > a { display: none !important; }
  [data-screen-label="Footer"] [data-credit-text] { display: flex !important; }
}
