/* Professor Tero Collectibles — warm binder-clubhouse design layer. */

.ptc-site {
  --ptc-navy: #14112f;
  --ptc-navy-2: #21183f;
  --ptc-cream: #fff7e8;
  --ptc-paper: #f5e7cc;
  --ptc-ink: #17142d;
  --ptc-gold: #e6ad27;
  --ptc-gold-dark: #a86d09;
  --ptc-red: #c7393f;
  --ptc-wood: #6e3516;
  --ptc-muted: #625c58;
  --ptc-line: rgba(89, 51, 19, .2);
  --ptc-shadow: 0 20px 55px rgba(31, 14, 5, .22);
  --ptc-desktop-shift: clamp(0px, calc((100vw - 1360px) * .163), 128px);
  background: var(--ptc-cream);
  color: var(--ptc-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.ptc-site *, .ptc-site *::before, .ptc-site *::after { box-sizing: border-box; }
.ptc-site main { overflow: clip; }
.ptc-site .wrap { width: min(100% - 2rem, 1360px); margin-inline: auto; }
.ptc-site h1, .ptc-site h2, .ptc-site h3 {
  color: var(--ptc-ink);
  font-family: Oswald, "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .94;
  text-transform: uppercase;
}
.ptc-site a { color: inherit; }

/* Header */
.ptc-site .site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(18, 15, 43, .97);
  border: 0;
  border-bottom: 2px solid rgba(230, 173, 39, .68);
  box-shadow: 0 8px 30px rgba(9, 7, 24, .25);
  backdrop-filter: blur(16px);
}
.ptc-site .nav { min-height: 75px; gap: 1.25rem; }
.ptc-site .site-header .wrap,
.store-strip .wrap,
.community-section > .wrap {
  width: min(calc(100% - clamp(2rem, 10vw, 9.25rem)), 1360px);
  position: relative;
  left: var(--ptc-desktop-shift);
}
.ptc-site .brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; text-decoration: none; }
.ptc-site .brand-mark {
  display: inline-grid; place-items: center; width: 38px; aspect-ratio: 1;
  border: 2px solid var(--ptc-gold); border-radius: 50%;
  color: var(--ptc-gold); font-size: .7rem; font-weight: 900; letter-spacing: .06em;
  box-shadow: inset 0 0 0 3px var(--ptc-navy), inset 0 0 0 4px rgba(230, 173, 39, .45);
}
.ptc-site .brand-name { color: white; font-family: Oswald, "Arial Narrow", sans-serif; font-size: clamp(.9rem, 1.3vw, 1.18rem); font-weight: 700; letter-spacing: -.015em; text-transform: uppercase; }
.ptc-site .brand-name b { color: var(--ptc-gold); font: inherit; }
.ptc-site .nav-links { gap: .2rem; }
.ptc-site .nav-links a:not(.btn) {
  padding: .6rem .72rem; color: #f4f0ff; border-radius: 0;
  font-size: .88rem; font-weight: 700; text-decoration: none;
}
.ptc-site .nav-links a:not(.btn):hover,
.ptc-site .nav-links a:not(.btn)[aria-current="page"] { color: var(--ptc-gold); box-shadow: inset 0 -2px var(--ptc-gold); }
.ptc-site .nav-contact a { border: 1px solid rgba(230, 173, 39, .65); border-radius: 5px !important; }
.ptc-site .nav-contact a:hover { background: var(--ptc-gold); color: var(--ptc-navy) !important; box-shadow: none !important; }

/* Buttons and small labels */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px;
  padding: .78rem 1.15rem; border: 2px solid transparent; border-radius: 5px;
  font-size: .78rem; font-weight: 900; letter-spacing: .035em; text-decoration: none; text-transform: uppercase;
  box-shadow: 0 4px 0 rgba(40, 22, 5, .34), 0 12px 25px rgba(35, 20, 8, .12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 6px 0 rgba(40, 22, 5, .3), 0 16px 28px rgba(35, 20, 8, .16); }
.button:active { transform: translateY(1px); }
.button-primary { background: var(--ptc-navy); border-color: var(--ptc-gold); color: #ffd15a !important; }
.button-primary:hover { background: #25204b; color: #ffe49a !important; }
.button-secondary { background: rgba(255, 247, 232, .86); border-color: #b57912; color: var(--ptc-navy); }
.button-tertiary { background: transparent; border-color: #bb8b4a; color: var(--ptc-navy); box-shadow: none; }
.eyebrow, .panel-kicker {
  margin: 0 0 .75rem; color: #9a6107; font-size: .72rem; font-weight: 900;
  letter-spacing: .12em; line-height: 1.35; text-transform: uppercase;
}
.text-link { color: #a56808 !important; font-size: .82rem; font-weight: 900; text-decoration: none; }
.text-link:hover { color: var(--ptc-red) !important; }

/* Hero */
.clubhouse-hero {
  position: relative; height: clamp(540px, 36.65vw, 786px); overflow: hidden;
  background: radial-gradient(circle at 50% 35%, #9c5a2a, #5d2b12 76%);
}
.clubhouse-art {
  position: absolute; inset: 0 auto 0 -2.5%; width: 115%;
  background: url('/assets/img/collectibles-hero.webp') center 35.5% / cover no-repeat;
  box-shadow: 0 0 70px rgba(30, 12, 4, .32);
}
.hero-layout { position: relative; left: var(--ptc-desktop-shift); z-index: 2; display: flex; align-items: center; width: min(calc(100% - clamp(2rem, 10vw, 9.25rem)), 1360px) !important; height: 100%; }
.hero-copy { width: 60%; padding: 1.8rem 1rem 1.5rem 3.2%; text-align: center; }
.hero-copy .eyebrow { display: flex; justify-content: center; gap: .8rem; max-width: 32rem; margin: 0 0 .9rem; color: #78500d; text-align: center; }
.hero-copy h1 {
  margin: 25px 0 0;
  font-family: Inter, "Arial Black", sans-serif;
  font-size: clamp(4rem, 5.2vw, 5.65rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .75;
  text-align: center;
  transform: translateX(5px) scaleX(1.05);
}
.hero-copy h1 span { display: block; white-space: nowrap; }
.hero-lede { max-width: 33.25rem; margin: 1.7rem 0 1rem -.75rem; color: #302a27; font-size: clamp(1rem, 1.08vw, 1.16rem); font-weight: 540; line-height: 1.45; text-align: center; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; max-width: 32rem; gap: .72rem; }
.hero-actions .button { min-width: 142px; padding: .72rem .9rem; font-size: .72rem; }
.hero-actions .button:nth-child(1),
.hero-actions .button:nth-child(2) { position: relative; top: 2px; }
.hero-actions .button:last-child { position: relative; top: -10px; }
.hero-actions .button svg { width: 17px; height: 17px; }
.action-break { flex-basis: 100%; height: 0; }
.hero-note {
  position: absolute; left: 45%; bottom: 6.5%; display: grid; gap: .08rem;
  color: #2f2851; font-family: "Segoe Print", "Bradley Hand", cursive; line-height: 1.15;
  transform: rotate(-2deg); text-shadow: 0 1px rgba(255,255,255,.7);
}
.hero-note b { font-size: clamp(1rem, 1.45vw, 1.42rem); font-weight: 500; }
.hero-note span { font-size: clamp(.7rem, .85vw, .88rem); }

/* Store facts */
.store-strip { position: relative; z-index: 5; margin-top: 0; padding: 0 0 1px; background: linear-gradient(180deg, #7b3c18, #5a2a12); }
.store-strip-grid {
  display: grid; grid-template-columns: 1.1fr 1.08fr .92fr 1fr;
  transform: translateY(-17px); overflow: hidden;
  background: var(--ptc-cream); border: 1px solid #d5b98c; border-radius: 12px;
  box-shadow: 0 15px 36px rgba(30, 13, 5, .28);
}
.store-fact {
  display: flex; align-items: center; gap: .9rem; min-width: 0; padding: 1rem 1.05rem;
  color: var(--ptc-ink); text-decoration: none;
}
.store-fact + .store-fact { border-left: 1px solid #ddc9a6; }
.store-fact[href]:hover { background: #fff1d6; }
.fact-icon {
  display: grid; place-items: center; flex: 0 0 42px; aspect-ratio: 1;
  border: 2px solid var(--ptc-gold-dark); border-radius: 50%;
  color: var(--ptc-gold-dark); font-size: .64rem; font-weight: 900;
}
.fact-icon svg { width: 21px; height: 21px; stroke-width: 2.2; }
.store-fact:nth-child(1) .fact-icon { border-color: #5f3db9; color: #5f3db9; }
.store-fact:nth-child(3) .fact-icon { border-color: var(--ptc-red); color: var(--ptc-red); }
.store-fact:nth-child(4) .fact-icon { border-color: var(--ptc-navy); color: var(--ptc-navy); }
.store-fact b { display: block; font-size: .72rem; letter-spacing: .03em; text-transform: uppercase; }
.store-fact small { display: block; margin-top: .18rem; color: #383332; font-size: .75rem; line-height: 1.35; overflow-wrap: anywhere; }

/* Community module */
.community-section {
  margin-top: -22px;
  padding: .45rem 0 6rem;
  background:
    radial-gradient(circle at 18% 20%, rgba(239, 181, 65, .14), transparent 25%),
    linear-gradient(135deg, rgba(28, 10, 3, .1), transparent 45%),
    #7a3e1d;
  color: white;
}
.community-intro {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  align-items: end;
  min-height: clamp(250px, 23vw, 350px);
  gap: clamp(2rem, 3vw, 3rem);
  padding: clamp(2.5rem, 5vw, 5rem) 0 clamp(2.5rem, 4vw, 4rem);
}
.community-intro .eyebrow { margin: 0; color: #ffd36f; }
.community-intro h2 {
  max-width: 640px;
  margin: 0;
  color: white;
  font-family: Inter, "Arial Black", sans-serif;
  font-size: clamp(3.25rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .92;
}
.community-intro .eyebrow { transform: translateY(13px); }
.community-intro h2 { transform: translateY(29px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.section-heading .eyebrow { color: #ffd36f; }
.section-heading h2 { max-width: 760px; margin: 0; color: white; font-size: clamp(2.4rem, 5vw, 5rem); }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; align-items: stretch; }
.instagram-panel, .show-panel {
  min-width: 0; padding: clamp(1rem, 2vw, 1.55rem); border-radius: 12px;
  box-shadow: var(--ptc-shadow); overflow: hidden;
}
.instagram-panel { background: linear-gradient(145deg, #1b1639, #0d0b20); border: 2px solid #312957; }
.show-panel { position: relative; min-height: 450px; background: var(--ptc-cream); border: 2px solid #d7b875; color: var(--ptc-ink); }
.panel-heading { display: flex; align-items: start; justify-content: space-between; gap: 1rem; margin-bottom: 1.1rem; }
.panel-heading .panel-kicker { margin-bottom: .25rem; color: #c88d20; }
.panel-heading h3 { margin: 0; color: inherit; font-size: clamp(1.55rem, 2.5vw, 2.55rem); }
.instagram-panel .panel-heading h3 { color: white; }
.instagram-panel .text-link { color: #ffd053 !important; white-space: nowrap; }
.live-dot { display: inline-flex; align-items: center; gap: .4rem; color: #3f7d3c; font-size: .68rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.live-dot::before { content: ""; width: 8px; aspect-ratio: 1; border-radius: 50%; background: #4d9b4b; box-shadow: 0 0 0 5px rgba(77, 155, 75, .13); }
.story-list { display: flex; gap: clamp(.65rem, 2vw, 1.5rem); margin-bottom: 1.1rem; }
.story { flex: 1; min-width: 0; color: white !important; font-size: .66rem; font-weight: 900; text-align: center; text-decoration: none; text-transform: uppercase; }
.story > span { display: block; width: min(74px, 100%); aspect-ratio: 1; margin: 0 auto .4rem; padding: 3px; border: 2px solid var(--ptc-gold); border-radius: 50%; transition: transform .2s ease; }
.story:hover > span { transform: translateY(-3px) rotate(-2deg); }
.story img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; }
.post-grid a { position: relative; overflow: hidden; border: 1px solid rgba(230, 173, 39, .65); border-radius: 5px; background: #080714; aspect-ratio: .86; }
.post-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-grid a:hover img { transform: scale(1.055); }
.post-grid span { position: absolute; inset: auto 0 0; padding: 1.7rem .55rem .45rem; background: linear-gradient(transparent, rgba(7, 5, 17, .92)); color: white; font-size: .66rem; font-weight: 800; }

/* Schedule rows rendered by schedule.js */
.ptc-site .show-list { margin: 0; }
.ptc-site .show {
  grid-template-columns: auto minmax(0, 1fr); gap: .85rem; padding: 1rem 0;
  border-color: var(--ptc-line); background: transparent;
}
.ptc-site .show:first-child { padding-top: .25rem; }
.ptc-site .show-cost { gap: 4px; }
.ptc-site .pip { width: 30px; height: 30px; border-color: #b47a13; background: #f4c14b; color: var(--ptc-navy); font-size: .72rem; }
.ptc-site .show-body { color: var(--ptc-ink); }
.ptc-site .show-name { color: var(--ptc-ink); font-size: clamp(1.45rem, 2.7vw, 2.55rem); line-height: .94; text-transform: uppercase; }
.ptc-site .show-where { margin-top: .45rem; color: #4b4540; font-size: .86rem; font-weight: 650; }
.ptc-site .show-meta { color: #4b4540; font-size: .78rem; }
.ptc-site .show-links { gap: .55rem 1rem; }
.ptc-site .show-links a { color: #8d5908; }
.ptc-site .show-dmg { display: none; }
.ptc-site .show.is-next { margin-inline: -.65rem; padding-inline: .65rem; background: linear-gradient(90deg, rgba(230, 173, 39, .2), transparent 80%); border-radius: 7px; }
.ptc-site .badge { background: var(--ptc-gold); color: var(--ptc-navy); }
.ptc-site .state { color: #5b544d; }
.ptc-site .state h3 { color: var(--ptc-ink); }
.ptc-site .skeleton div { background: rgba(39, 28, 17, .11); }
.schedule-button { margin-top: 1rem; }
.show-panel [data-shows="teaser"] { position: relative; z-index: 2; max-width: 56%; }
.show-panel .schedule-button { position: relative; z-index: 2; }
.show-sketch {
  position: absolute; z-index: 1; right: -2%; bottom: -2%; width: 54%; height: 78%;
  overflow: hidden; opacity: .44; mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24%, #000 100%);
}
.show-sketch img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }

/* Story and conversion sections */
.story-section { padding: clamp(4.5rem, 8vw, 8rem) 0; background: #fff6e7; }
.story-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.story-art { position: relative; border: 10px solid white; border-bottom-width: 42px; transform: rotate(-2.25deg); box-shadow: var(--ptc-shadow); background: var(--ptc-navy); }
.story-art::after { content: "Professor Tero"; position: absolute; inset: auto 1rem -34px; color: #6b5a48; font-family: cursive; font-size: 1rem; text-align: center; }
.story-art img { width: 100%; aspect-ratio: 1.18; object-fit: cover; }
.story-copy h2 { margin: 0 0 1.2rem; font-size: clamp(2.7rem, 5.7vw, 5.8rem); }
.story-copy p:not(.eyebrow) { max-width: 62ch; color: #4b4541; font-size: clamp(.98rem, 1.35vw, 1.12rem); }
.trade-section, .interior-cta { padding: 4.5rem 0; background: var(--ptc-navy); }
.trade-card {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3.4rem); background: linear-gradient(135deg, #fff8e9, #ecd4ad);
  border: 2px solid var(--ptc-gold); border-radius: 12px; box-shadow: var(--ptc-shadow);
}
.trade-card h2 { max-width: 790px; margin: 0 0 .7rem; font-size: clamp(2.2rem, 4.6vw, 4.7rem); }
.trade-card p:not(.eyebrow) { max-width: 64ch; margin-bottom: 0; color: #504840; }
.trade-actions { display: flex; flex-direction: column; gap: .75rem; flex: 0 0 auto; }

/* Interior pages */
.interior-main { background: #f7ead4; }
.interior-hero {
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background:
    linear-gradient(90deg, rgba(20, 17, 47, .98), rgba(20, 17, 47, .77)),
    url('/assets/img/scene-2200.webp') center / cover;
  color: white;
}
.interior-hero .eyebrow { color: #ffd56d; }
.interior-hero h1 { max-width: 980px; margin: 0; color: white; font-size: clamp(3.2rem, 8vw, 7.6rem); }
.interior-hero p:not(.eyebrow) { max-width: 700px; margin: 1.25rem 0 0; color: #eee8fa; font-size: clamp(1rem, 1.8vw, 1.25rem); }
.interior-hero .hero-actions { justify-content: flex-start; margin-top: 2rem; }
.interior-section { padding: clamp(3rem, 7vw, 6rem) 0; }
.interior-card, .contact-card { padding: clamp(1.2rem, 4vw, 3.5rem); background: var(--ptc-cream); border: 2px solid #d0ad70; border-radius: 12px; box-shadow: var(--ptc-shadow); }
.interior-heading { display: flex; align-items: start; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid #d9c4a0; }
.interior-heading h2 { margin: 0; font-size: clamp(2.3rem, 5vw, 4.7rem); }
.interior-card .show { grid-template-columns: auto minmax(0, 1fr) auto; padding: 1.4rem .5rem; }
.interior-card .show-dmg { display: block; }
.interior-card .show-dmg b { color: var(--ptc-ink); }
.interior-card .show-dmg small { color: #675e55; }
.ptc-site .past > summary { color: #62594f; }

/* Existing form, rethemed in place */
.ptc-site .contact-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr); gap: 2rem; }
.ptc-site .contact-main, .ptc-site .contact-aside { min-width: 0; }
.ptc-site .form-shell { border: 0; background: transparent; box-shadow: none; padding: 0; }
.ptc-site .form-shell h2, .ptc-site .form-shell h3 { color: var(--ptc-ink); }
.ptc-site .form-shell label { color: var(--ptc-ink); }
.ptc-site .form-shell input, .ptc-site .form-shell textarea, .ptc-site .form-shell select {
  background: white; border-color: #bfa77e; color: var(--ptc-ink);
}
.ptc-site .form-shell .btn { background: var(--ptc-navy); border-color: var(--ptc-gold); color: var(--ptc-gold); }
.ptc-site .aside-card { padding: 1.35rem; border: 1px solid #d6bd92; border-radius: 8px; background: #fff9ef; }
.ptc-site .aside-card + .aside-card { margin-top: 1rem; }
.ptc-site .aside-card h2 { font-size: 2rem; }
.ptc-site .aside-card h3 { font-size: 1.25rem; }
.ptc-site .aside-card p, .ptc-site .aside-steps { color: #554e47; }
.ptc-site .aside-steps { display: grid; gap: .7rem; padding-left: 1.2rem; }

/* Footer */
.ptc-site .site-footer { padding: 3.5rem 0 1.5rem; border: 0; border-top: 2px solid var(--ptc-gold); background: #0d0b20; color: #cdc8db; }
.ptc-site .footer-grid { grid-template-columns: 1.45fr repeat(3, 1fr); gap: 2rem; }
.ptc-site .site-footer h2 { margin: 0 0 .8rem; color: var(--ptc-gold); font: 900 .7rem/1.2 Inter, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.ptc-site .site-footer p, .ptc-site .site-footer address { margin: 0; color: #aaa4ba; font-size: .82rem; font-style: normal; }
.ptc-site .site-footer a { color: #f4efff; }
.ptc-site .footer-brand p { margin-top: .8rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.2rem; padding-top: 1rem; border-top: 1px solid #302b47; color: #7f798f; font-size: .66rem; }

/* Motion is applied with the Web Animations API; content is never hidden. */
[data-reveal] { opacity: 1; transform: none; }
.hero-copy[data-reveal] { transform: translateY(10px); }

@media (max-width: 1040px) {
  .ptc-site .nav-links a:not(.btn) { padding-inline: .52rem; font-size: .8rem; }
  .hero-copy { width: 54%; padding-left: 1.5%; }
  .store-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .store-fact:nth-child(3) { border-left: 0; border-top: 1px solid #ddc9a6; }
  .store-fact:nth-child(4) { border-top: 1px solid #ddc9a6; }
  .community-grid { grid-template-columns: 1fr; }
  .instagram-panel, .show-panel { padding: 1.4rem; }
}

@media (max-width: 900px) {
  .ptc-site .nav-toggle {
    display: inline-flex; min-height: 42px; padding: .45rem .85rem;
    border: 1px solid var(--ptc-gold); background: transparent; color: var(--ptc-gold); border-radius: 5px;
  }
  .ptc-site .nav-links {
    top: 100%; padding: .5rem 1rem 1rem; background: #12102b; border-bottom: 2px solid var(--ptc-gold);
  }
  .ptc-site .nav-links a:not(.btn) { padding: .85rem .35rem; }
  .ptc-site .nav-contact { margin-top: .35rem; }
  .story-grid { grid-template-columns: 1fr; }
  .story-art { width: min(100%, 620px); justify-self: center; }
  .trade-card { align-items: stretch; flex-direction: column; }
  .trade-actions { flex-direction: row; flex-wrap: wrap; }
  .ptc-site .contact-layout { grid-template-columns: 1fr; }
  .ptc-site .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .ptc-site .footer-grid > :last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .ptc-site { --ptc-desktop-shift: 0px; }
  .ptc-site .wrap { width: min(100% - 1.2rem, 1360px); }
  .ptc-site .site-header .wrap,
  .store-strip .wrap,
  .community-section > .wrap { width: min(100% - 1.2rem, 1360px); }
  .ptc-site .nav { min-height: 60px; }
  .ptc-site .brand-mark { width: 32px; }
  .ptc-site .brand-name { font-size: .78rem; }
  .clubhouse-hero { height: auto; background: var(--ptc-paper); }
  .clubhouse-art { position: relative; inset: auto; width: 100%; height: clamp(290px, 73vw, 470px); background-size: 190%; background-position: 73% center; transform: none; box-shadow: none; }
  .hero-layout { width: min(100% - 1.2rem, 1360px) !important; height: auto; }
  .hero-copy,
  .hero-copy[data-reveal] { width: 100%; padding: 2.25rem .5rem 3rem; transform: none; }
  .hero-copy h1 { margin-top: 0; font-size: clamp(2.25rem, 9.5vw, 3.3rem); line-height: .86; transform: none; }
  .hero-lede { max-width: 32rem; margin: 1.2rem auto 1.35rem; font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button,
  .hero-actions .button:nth-child(1),
  .hero-actions .button:nth-child(2),
  .hero-actions .button:last-child { top: auto; width: 100%; }
  .action-break { display: none; }
  .hero-note { display: none; }
  .store-strip { padding: 1.1rem 0; }
  .store-strip-grid { transform: none; grid-template-columns: 1fr; }
  .store-fact + .store-fact { border-left: 0; border-top: 1px solid #ddc9a6; }
  .section-heading { display: block; }
  .community-section { padding: 4rem 0; }
  .community-intro { grid-template-columns: 1fr; min-height: 0; gap: 1rem; padding: 0 0 2.5rem; }
  .community-intro .eyebrow,
  .community-intro h2 { transform: none; }
  .community-intro h2 { max-width: none; font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .panel-heading { align-items: flex-start; flex-direction: column; }
  .story-list { gap: .5rem; }
  .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .show-panel { min-height: 0; }
  .show-panel [data-shows="teaser"] { max-width: none; }
  .show-sketch { position: relative; right: auto; bottom: auto; width: calc(100% + 2.8rem); height: 210px; margin: 1.25rem -1.4rem -1.4rem; opacity: .5; -webkit-mask-image: linear-gradient(180deg, transparent, #000 24%); mask-image: linear-gradient(180deg, transparent, #000 24%); }
  .story-section { padding: 4rem 0; }
  .trade-section, .interior-cta { padding: 2.7rem 0; }
  .interior-hero { padding: 4rem 0; }
  .interior-card .show { grid-template-columns: auto minmax(0, 1fr); }
  .interior-card .show-dmg { display: none; }
  .ptc-site .footer-grid { grid-template-columns: 1fr 1fr; }
  .ptc-site .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 470px) {
  .ptc-site .brand-name b { display: block; }
  .clubhouse-art { height: 300px; background-size: 195%; background-position: 73% center; }
  .hero-copy .eyebrow { font-size: .62rem; }
  .story-list { overflow-x: auto; padding-bottom: .4rem; }
  .story { flex: 0 0 64px; }
  .post-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .post-grid a { flex: 0 0 72%; scroll-snap-align: start; }
  .ptc-site .show { grid-template-columns: 1fr; }
  .ptc-site .show-cost { display: none; }
  .trade-actions { flex-direction: column; }
  .trade-actions .button { width: 100%; }
  .ptc-site .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .button, .story > span, .post-grid img { transition: none; }
}

/* --------------------------------------------------------------------------
   Cream clubhouse dashboard — implementation of the selected reference mock.
   ----------------------------------------------------------------------- */

.ptc-site {
  --ptc-desktop-shift: 0px;
  background: #17102f;
}

.ptc-site .site-header {
  min-height: 69px;
  background: #17132f;
  border-bottom: 2px solid #b9871b;
  box-shadow: none;
}

.ptc-site .nav { min-height: 67px; }
.ptc-site .site-header .wrap {
  left: 0;
  width: min(calc(100% - 2rem), 1320px);
}
.ptc-site .site-header .brand-mark { display: none; }
.ptc-site .brand-mark { width: 40px; }
.ptc-site .brand-name { font-size: 1.55rem; }
.ptc-site .nav-links { gap: .55rem; }
.ptc-site .nav-links a:not(.btn) { padding: .65rem .72rem; font-size: 1rem; }

.clubhouse-hero {
  height: 760px;
  overflow: hidden;
  background: #704116;
}

.clubhouse-art {
  inset: 0;
  width: 100%;
  background-color: #704116;
  background-image: url('/assets/img/collectibles-hero.webp');
  background-position: center top;
  background-size: min(100%, 1487px) auto;
  background-repeat: no-repeat;
  box-shadow: none;
}

.hero-layout {
  left: 0;
  align-items: flex-start;
  width: min(calc(100% - 2rem), 1320px) !important;
}

.hero-copy,
.hero-copy[data-reveal] {
  width: 505px;
  padding: 47px 0 0 14px;
  transform: none;
  text-align: left;
}

.local-card-shop {
  display: flex;
  align-items: center;
  width: 370px;
  gap: 1.25rem;
  margin: 0 0 1.1rem 83px;
  color: #b88718;
}
.local-card-shop span { width: 92px; border-top: 2px solid currentColor; }
.local-card-shop svg { width: 39px; height: 39px; stroke-width: 1.8; }

.hero-copy .eyebrow {
  display: block;
  width: max-content;
  max-width: none;
  margin: 0 0 .7rem 114px;
  color: #6f4400;
  font-size: .93rem;
  font-weight: 900;
  letter-spacing: .025em;
  white-space: nowrap;
  text-align: left;
}

.hero-copy h1 {
  margin: 0;
  color: #241544;
  font-family: Oswald, "Arial Narrow", sans-serif;
  width: 132%;
  font-size: clamp(5.2rem, 6.35vw, 5.9rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .94;
  text-align: left;
  transform: scaleX(.76);
  transform-origin: left top;
}

.hero-lede {
  max-width: 390px;
  margin: 1.6rem 0 1.1rem 9px;
  color: #2d2925;
  font-size: 1.08rem;
  font-weight: 560;
  line-height: 1.46;
  text-align: left;
}

.hero-actions {
  justify-content: flex-start;
  max-width: 480px;
  gap: .8rem 1.25rem;
  margin-left: 9px;
}
.hero-actions .button,
.hero-actions .button:nth-child(1),
.hero-actions .button:nth-child(2),
.hero-actions .button:last-child {
  position: static;
  top: auto;
  min-width: 198px;
  min-height: 55px;
  padding: .85rem 1.15rem;
  font-size: .82rem;
}
.hero-actions .button:last-child { min-width: 194px; }
.hero-actions .button:first-child {
  width: 222px;
  min-width: 222px;
  padding-inline: .6rem;
}
.hero-actions .button-primary {
  background: #2d1857;
  border-color: #c49420;
  color: #f1c544 !important;
}
.hero-actions .button-secondary,
.hero-actions .button-tertiary {
  background: rgba(255, 248, 232, .94);
  border-color: #b88925;
}
.hero-actions .action-break { flex-basis: 100%; }

.hero-note {
  left: 43.2%;
  bottom: 34.7%;
  color: #2f2451;
}
.hero-note b { font-size: 1.55rem; }
.hero-note span { font-size: .92rem; }
.hero-note svg {
  position: absolute;
  top: 51px;
  left: 202px;
  width: 48px;
  height: 48px;
  color: #89786e;
  stroke-width: 1.8;
}

.clubhouse-dashboard {
  position: relative;
  z-index: 7;
  margin-top: -188px;
  padding: 0 0 5rem;
  background: #17102f;
}

.dashboard-shell {
  width: min(calc(100% - 2rem), 1318px) !important;
  padding: 0 50px 58px 34px;
  overflow: hidden;
  background: #fff8e9;
  border: 1px solid #d7bb83;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 24px 60px rgba(12, 6, 27, .34);
}

.dashboard-shell .store-strip-grid {
  left: 0;
  grid-template-columns: repeat(4, 1fr);
  min-height: 132px;
  transform: none;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.dashboard-shell .store-fact {
  gap: 1.05rem;
  padding: 1.2rem 1.05rem;
}
.dashboard-shell .store-fact + .store-fact { border-left: 1px solid #dfcfad; }
.dashboard-shell .fact-icon {
  flex-basis: 58px;
  border-color: #b58519 !important;
  color: #785018 !important;
}
.dashboard-shell .fact-icon svg { width: 30px; height: 30px; stroke-width: 2.2; }
.dashboard-shell .store-fact b {
  color: #2d184d;
  font-size: .9rem;
  line-height: 1.2;
}
.dashboard-shell .store-fact small {
  margin-top: .28rem;
  color: #4d443c;
  font-size: .8rem;
}
.dashboard-shell .store-fact em {
  display: block;
  margin-top: .18rem;
  color: #6b3d91;
  font-size: .74rem;
  font-style: normal;
  font-weight: 800;
}
.dashboard-shell .opening-fact b,
.dashboard-shell .opening-fact em { color: #a56500; }

.featured-show {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 175px;
  align-items: center;
  min-height: 108px;
  padding: 13px 24px;
  overflow: hidden;
  background: #21143e;
  border: 1px solid #35225a;
  border-radius: 12px;
  color: white;
  box-shadow: 0 14px 26px rgba(31, 17, 60, .15);
}
.featured-show-icon {
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border: 2px solid #d3a623;
  border-radius: 50%;
  color: #e8bd36;
}
.featured-show-icon svg { width: 29px; height: 29px; }
.featured-show-copy { position: relative; z-index: 2; min-width: 0; }
.featured-show .panel-kicker { margin: 0 0 .18rem; color: #f1c438; }
.featured-show [data-shows="teaser"] { max-width: 740px; }
.featured-show .show-list { margin: 0; }
.featured-show .show {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 0;
  border: 0;
  background: transparent;
}
.featured-show .show-body {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(330px, 1.28fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 1.65rem;
}
.featured-show .show-name {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}
.featured-show .show-where {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}
.featured-show .show-meta {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 1.1rem;
  margin: .15rem 0 0;
}
.featured-show .show-cost { display: none; }
.featured-show .show-name { color: white; font-size: 1.65rem; }
.featured-show .show-where,
.featured-show .show-meta,
.featured-show .show-notes { color: #f2edf9; }
.featured-show .show-meta { margin-top: .18rem; }
.featured-show .show-meta b { color: #f4c94d; }
.featured-show .show-links { display: none; }
.featured-show .show-dmg { color: #f0c348; }
.featured-show .show-dmg b { color: #f0c348; }
.featured-show .show-dmg small { color: #d9caeb; }
.featured-show-art {
  position: absolute;
  inset: 0 150px 0 auto;
  width: 450px;
  opacity: .2;
  pointer-events: none;
}
.featured-show-art img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.4) saturate(.85) hue-rotate(220deg); }
.featured-show-button {
  position: relative;
  z-index: 2;
  justify-self: end;
  min-width: 156px;
  background: #e1b638;
  border-color: #a97808;
  color: #2b1a15 !important;
}

.dashboard-feed { padding: 36px 0 0; color: #261946; }
.dashboard-feed-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 1.25rem;
  margin-bottom: .25rem;
}
.dashboard-feed-heading > div { display: flex; align-items: end; gap: .8rem; }
.dashboard-feed-heading .panel-kicker {
  margin: 0 0 .25rem;
  color: #a37312;
}
.dashboard-feed-heading h2 {
  margin: 0;
  color: #2b184d;
  font-size: 2rem;
  letter-spacing: -.04em;
}
.dashboard-feed-heading > p { margin: 0 0 .25rem; color: #61554d; font-size: .86rem; }
.dashboard-feed .story-list {
  justify-content: flex-start;
  gap: 1.2rem;
  margin: 0 0 1.3rem;
  padding: .9rem 1rem;
  background: #f5ead5;
  border: 1px solid #dfcda6;
  border-radius: 10px;
}
.dashboard-feed .story { flex: 0 0 78px; color: #2b184d !important; }
.dashboard-feed .story > span { width: 62px; border-color: #a87c19; }
.dashboard-feed .post-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.dashboard-feed .post-grid a {
  aspect-ratio: 1.34;
  border-color: #c6a867;
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(59, 36, 13, .12);
}
.dashboard-feed .post-grid span { font-size: .76rem; }

.story-section { margin-top: -5rem; padding-top: 10rem; }

@media (max-width: 1120px) {
  .hero-copy,
  .hero-copy[data-reveal] { padding-left: 0; }
  .dashboard-shell .store-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-shell .store-fact:nth-child(3) { border-left: 0; border-top: 1px solid #dfcfad; }
  .dashboard-shell .store-fact:nth-child(4) { border-top: 1px solid #dfcfad; }
}

@media (max-width: 900px) {
  .clubhouse-hero { height: auto; background: #f4e5c7; }
  .clubhouse-art {
    position: relative;
    height: 440px;
    background-position: 66% center;
    background-size: 1180px auto;
  }
  .hero-layout { height: auto; }
  .hero-copy,
  .hero-copy[data-reveal] {
    width: 100%;
    padding: 2.5rem .4rem 4rem;
  }
  .local-card-shop { margin-left: auto; margin-right: auto; }
  .hero-copy .eyebrow { margin-left: 0; text-align: center; }
  .hero-copy h1 { text-align: center; }
  .hero-lede { margin-inline: auto; text-align: center; }
  .hero-actions { justify-content: center; margin-inline: auto; }
  .hero-note { display: none; }
  .clubhouse-dashboard { margin-top: 0; padding-top: 1rem; }
  .featured-show { grid-template-columns: 64px minmax(0, 1fr); }
  .featured-show-button { grid-column: 2; justify-self: start; margin-top: .75rem; }
  .featured-show-art { right: 0; width: 55%; }
  .dashboard-feed-heading { grid-template-columns: 1fr auto; }
  .dashboard-feed-heading > p { display: none; }
}

@media (max-width: 760px) {
  .ptc-site .site-header { min-height: 62px; }
  .ptc-site .nav { min-height: 60px; }
  .clubhouse-art { height: 330px; background-size: 920px auto; background-position: 67% center; }
  .hero-copy,
  .hero-copy[data-reveal] { padding: 2.2rem .35rem 3rem; }
  .local-card-shop { width: min(100%, 330px); }
  .local-card-shop span { flex: 1; }
  .hero-copy h1 { font-size: clamp(3rem, 16vw, 4rem); line-height: 1; }
  .hero-copy h1 span { white-space: normal; }
  .hero-lede { font-size: 1rem; }
  .hero-actions { max-width: 390px; }
  .hero-actions .button,
  .hero-actions .button:nth-child(1),
  .hero-actions .button:nth-child(2),
  .hero-actions .button:last-child { width: 100%; min-width: 0; }
  .dashboard-shell { width: min(calc(100% - 1.2rem), 1335px) !important; padding: 0 16px 36px; border-radius: 10px; }
  .dashboard-shell .store-strip-grid { grid-template-columns: 1fr; }
  .dashboard-shell .store-fact + .store-fact { border-left: 0; border-top: 1px solid #dfcfad; }
  .dashboard-shell .store-fact { min-height: 100px; }
  .featured-show { grid-template-columns: 1fr; padding: 1.25rem; }
  .featured-show-icon { margin-bottom: .8rem; }
  .featured-show-button { grid-column: 1; }
  .featured-show .show { grid-template-columns: 1fr; }
  .featured-show .show-body { display: block; }
  .featured-show .show-where { margin-top: .45rem; }
  .featured-show .show-meta { display: flex; margin-top: .2rem; }
  .featured-show .show-dmg { display: none; }
  .featured-show-art { inset: 0; width: 100%; opacity: .12; }
  .dashboard-feed-heading { display: block; }
  .dashboard-feed-heading .text-link { display: inline-block; margin-top: .65rem; }
  .dashboard-feed .story-list { overflow-x: auto; }
  .dashboard-feed .post-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .dashboard-feed .post-grid a { flex: 0 0 82%; scroll-snap-align: start; }
}
