:root {
  --jp-ink: #10251b;
  --jp-ink-2: #17382a;
  --jp-leaf: #25523a;
  --jp-cream: #f5eddf;
  --jp-paper: #fff9ee;
  --jp-lime: #d2e75a;
  --jp-sun: #ffb52e;
  --jp-coral: #e45f3f;
  --jp-coral-text: #a73b24;
  --jp-blue: #366fa5;
  --jp-pink: #d94c77;
  --jp-line: rgba(16, 37, 27, 0.18);
  --jp-display: "Fraunces", Georgia, serif;
  --jp-sans: "DM Sans", system-ui, sans-serif;
  --jp-wrap: min(1280px, calc(100% - clamp(32px, 7vw, 112px)));
  --jp-pad: clamp(72px, 9vw, 138px);
}

html { scroll-behavior: smooth; }
body.jp-site {
  margin: 0;
  color: var(--jp-ink);
  background: var(--jp-cream);
  font-family: var(--jp-sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.jp-site *, body.jp-site *::before, body.jp-site *::after { box-sizing: border-box; }
body.jp-site img { max-width: 100%; display: block; }
body.jp-site :where(a) { color: inherit; text-decoration: none; }
body.jp-site button { font: inherit; }
body.jp-site :where(h1, h2, h3, p) { margin-top: 0; }
body.jp-site :where(h1, h2, h3) { font-family: var(--jp-display); font-weight: 650; line-height: .98; letter-spacing: -.045em; overflow-wrap: break-word; }
body.jp-site em { font-weight: 500; }
.jp-container { width: var(--jp-wrap); margin-inline: auto; }
.jp-section { padding-block: var(--jp-pad); }
.jp-skip { position: fixed; z-index: 999999; left: 16px; top: -100px; background: var(--jp-lime); color: var(--jp-ink); padding: 12px 18px; border-radius: 0 0 12px 12px; font-weight: 700; }
.jp-skip:focus { top: 0; }
body.jp-site :where(a, button):focus-visible { outline: 3px solid var(--jp-ink); outline-offset: 3px; box-shadow: 0 0 0 6px rgba(255,255,255,.92); }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal!important; }

.jp-eyebrow, .jp-hero-kicker, .jp-maker-kind, .jp-news-meta {
  font-family: var(--jp-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.jp-eyebrow::before, .jp-hero-kicker::before { content: "✦"; color: var(--jp-coral); margin-right: 10px; }
.jp-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 56px;
  padding: 14px 18px 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}
.jp-button > span[aria-hidden="true"] { display: grid; place-items: center; width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; background: rgba(255,255,255,.18); }
.jp-button:hover { transform: translateY(-3px); }
body.jp-site .jp-button--sun { background: var(--jp-lime); color: var(--jp-ink); }
body.jp-site .jp-button--sun > span[aria-hidden="true"] { background: var(--jp-ink); color: var(--jp-lime); }
body.jp-site .jp-button--dark { background: var(--jp-ink); color: var(--jp-paper); }
body.jp-site .jp-button--dark > span[aria-hidden="true"] { background: var(--jp-lime); color: var(--jp-ink); }
body.jp-site .jp-button--outline { border-color: rgba(255,255,255,.72); color: white; }
body.jp-site .jp-button--outline:hover { background: var(--jp-paper); color: var(--jp-ink); }
.jp-text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 600; }
.jp-text-link span { transition: transform .2s ease; }
.jp-text-link:hover span { transform: translate(3px, -3px); }

/* Header */
.jp-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  left: 0;
  right: 0;
  width: min(1380px, calc(100% - 32px));
  margin-inline: auto;
  min-height: 74px;
  padding: 11px 14px 11px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(12,33,26,.84);
  color: white;
  box-shadow: 0 15px 45px rgba(8,18,13,.17);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: top .25s ease, background .25s ease, box-shadow .25s ease;
}
.admin-bar .jp-header { top: 50px; }
.jp-header.is-scrolled { top: 8px; background: rgba(12,33,26,.96); box-shadow: 0 15px 45px rgba(8,18,13,.28); }
.admin-bar .jp-header.is-scrolled { top: 40px; }
.jp-brand { display: flex; align-items: center; gap: 11px; min-width: 164px; }
.jp-brand-mark { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; border-radius: 50%; background: var(--jp-lime); color: var(--jp-ink); font-family: var(--jp-display); font-size: 21px; font-weight: 650; letter-spacing: -.06em; transform: rotate(-7deg); }
.jp-brand-name { color: white; font-size: 12px; font-weight: 600; line-height: 1.05; letter-spacing: .02em; }
.jp-menu { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 38px); }
.jp-menu > a { position: relative; font-size: 13px; font-weight: 500; }
.jp-menu > a:not(.jp-menu-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--jp-lime); transition: right .2s ease; }
.jp-menu > a:not(.jp-menu-cta):hover::after { right: 0; }
.jp-menu > a.is-current:not(.jp-menu-cta)::after { right: 0; }
.jp-menu .jp-menu-cta { display: flex; align-items: center; gap: 18px; padding: 12px 14px 12px 18px; border-radius: 999px; background: var(--jp-paper); color: var(--jp-ink); }
.jp-menu-cta span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: var(--jp-coral); color: white; }
.jp-menu-toggle { display: none; border: 0; background: none; color: white; width: 44px; height: 44px; padding: 11px; }
.jp-menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; background: currentColor; margin: 5px 0; transition: transform .2s ease; }

/* Hero */
.jp-hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; background: var(--jp-ink); color: white; }
.jp-hero-photo, .jp-hero-shade, .jp-hero-grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.jp-hero-photo { object-fit: cover; object-position: 50% 46%; filter: saturate(1.03) contrast(1.04); transform: scale(1.01); }
.jp-hero-shade { background: linear-gradient(90deg, rgba(8,27,20,.9) 0%, rgba(8,27,20,.69) 37%, rgba(8,27,20,.16) 70%), linear-gradient(0deg, rgba(8,27,20,.74) 0%, transparent 48%); }
.jp-hero-grain { opacity: .11; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
.jp-hero-inner { position: relative; z-index: 2; padding-top: 170px; padding-bottom: clamp(76px, 8vw, 114px); }
.jp-hero-kicker { margin-bottom: 22px; color: rgba(255,255,255,.8); }
.jp-hero h1 { max-width: 980px; margin-bottom: 38px; font-size: clamp(62px, 8.6vw, 142px); line-height: .83; letter-spacing: -.07em; text-wrap: balance; }
.jp-hero h1 em { color: var(--jp-lime); }
.jp-hero-footer { display: flex; align-items: center; gap: 34px; }
.jp-hero-footer > p { margin: 0; color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.45; }
.jp-hero-stamp { position: absolute; z-index: 3; right: 6vw; top: 19vh; width: clamp(122px, 11vw, 176px); aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; color: white; transform: rotate(9deg); }
.jp-hero-stamp::before { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.42); border-radius: 50%; }
.jp-hero-stamp span { position: relative; font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.jp-hero-stamp strong { position: relative; font-family: var(--jp-display); font-size: clamp(38px, 4vw, 62px); line-height: .9; color: var(--jp-lime); }
.jp-scroll-cue { position: absolute; z-index: 3; right: 3vw; bottom: 26px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.68); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; writing-mode: vertical-rl; }
.jp-scroll-cue i { display: block; width: 1px; height: 54px; background: rgba(255,255,255,.48); }

.jp-ticker { overflow: hidden; background: var(--jp-lime); border-block: 1px solid var(--jp-ink); color: var(--jp-ink); }
.jp-ticker-track { width: max-content; display: flex; animation: jp-marquee 24s linear infinite; }
.jp-ticker-group { min-width: 100vw; padding: 13px 24px; display: flex; align-items: center; justify-content: space-around; gap: 24px; font-family: var(--jp-display); font-size: 18px; font-weight: 650; }
.jp-ticker b { color: var(--jp-coral); }
@keyframes jp-marquee { to { transform: translateX(-50%); } }

/* Shared sections */
.jp-section-head { display: grid; grid-template-columns: 1fr minmax(310px, 690px); column-gap: 8vw; align-items: start; margin-bottom: clamp(48px, 7vw, 88px); }
.jp-section-head .jp-eyebrow { margin-top: 12px; }
.jp-section-head h2 { margin-bottom: 18px; font-size: clamp(48px, 6vw, 92px); }
.jp-section-head h2 em { color: var(--jp-coral); }
.jp-section-copy { grid-column: 2; max-width: 570px; margin: 0; color: rgba(16,37,27,.7); font-size: 18px; }
.jp-section-action { display: flex; justify-content: center; margin-top: clamp(42px, 6vw, 78px); }

/* Intro */
.jp-intro { background: var(--jp-paper); }
.jp-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(54px, 8vw, 130px); align-items: center; }
.jp-intro-copy h2 { margin-bottom: 32px; font-size: clamp(54px, 6.8vw, 106px); }
.jp-intro-copy h2 em { color: var(--jp-coral); }
.jp-lead { max-width: 590px; margin-bottom: 30px; color: rgba(16,37,27,.72); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.55; }
.jp-intro-collage { position: relative; min-height: clamp(520px, 56vw, 760px); }
.jp-photo { position: absolute; margin: 0; padding: 9px; background: var(--jp-cream); box-shadow: 0 25px 65px rgba(16,37,27,.14); }
.jp-photo img { width: 100%; height: 100%; object-fit: cover; }
.jp-photo figcaption { position: absolute; padding: 7px 10px; background: var(--jp-ink); color: white; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.jp-photo--a { inset: 0 5% 21% 0; transform: rotate(-2.5deg); }
.jp-photo--a figcaption { left: 18px; bottom: 20px; }
.jp-photo--b { width: 38%; height: 51%; right: 0; bottom: 0; transform: rotate(5deg); }
.jp-photo--b figcaption { right: 15px; bottom: 18px; }
.jp-collage-note { position: absolute; z-index: 4; right: 9%; top: 4%; display: grid; place-items: center; width: 112px; aspect-ratio: 1; border-radius: 50%; background: var(--jp-sun); font-family: var(--jp-display); font-size: 17px; font-style: italic; line-height: 1.05; text-align: center; transform: rotate(8deg); }

/* Makers */
.jp-makers { background: var(--jp-cream); }
.jp-maker-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.jp-maker-grid.jp-count-1 { grid-template-columns: minmax(0, 420px); }
.jp-maker-grid.jp-count-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.jp-maker-grid.jp-count-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.jp-maker-card { min-width: 0; border: 1px solid var(--jp-line); border-radius: 28px 28px 8px 28px; background: var(--jp-paper); overflow: hidden; transition: box-shadow .3s ease; }
.jp-maker-card:nth-child(even) { border-radius: 8px 28px 28px 28px; transform: translateY(32px); }
.jp-maker-card:focus-within { box-shadow: 0 26px 60px rgba(16,37,27,.13); }
.jp-maker-image { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; background: var(--jp-leaf); }
.jp-maker-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jp-image-placeholder { display: grid; place-content: center; gap: 6px; width: 100%; height: 100%; min-height: 260px; background: linear-gradient(145deg,var(--jp-leaf),var(--jp-ink)); color: var(--jp-paper); text-align: center; }
.jp-maker-image .jp-image-placeholder { position: absolute; inset: 0; min-height: 0; }
.jp-image-placeholder strong { font-family: var(--jp-display); font-size: clamp(58px,9vw,110px); line-height: .8; color: var(--jp-lime); }
.jp-image-placeholder small { font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.jp-maker-index { position: absolute; right: 13px; top: 13px; display: grid; place-items: center; min-width: 36px; height: 36px; padding: 0 8px; border-radius: 50%; background: var(--jp-lime); color: var(--jp-ink); font-size: 11px; font-weight: 700; }
.jp-maker-body { padding: 22px 22px 25px; }
.jp-maker-kind { margin-bottom: 12px; color: var(--jp-coral-text); }
.jp-maker-body h3 { margin-bottom: 12px; font-size: clamp(25px, 2.1vw, 34px); letter-spacing: -.04em; }
.jp-maker-body > p:not(.jp-maker-kind,.jp-social-empty) { min-height: 4.7em; margin-bottom: 17px; color: rgba(16,37,27,.65); font-size: 14px; line-height: 1.55; }
.jp-social-empty { margin: 8px 0 0; color: rgba(16,37,27,.55); font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.jp-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.jp-social { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 9px 14px; border: 1px solid var(--jp-line); border-radius: 999px; font-size: 13px; font-weight: 600; line-height: 1; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.jp-social:hover { background: var(--jp-ink); color: white; transform: translateY(-2px); }
.jp-social-icon { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.jp-social-icon-fill, .jp-social-icon-dot { fill: currentColor; stroke: none; }
.jp-social--wa:hover { border-color: #128c4a; background: #128c4a; }
.jp-social--ig:hover { border-color: #a52a75; background: #a52a75; }
.jp-social--fb:hover { border-color: #1769aa; background: #1769aa; }
.jp-social--yt:hover { border-color: #d60024; background: #d60024; }
.jp-socials.is-compact { margin-top: 0; }
.jp-socials.is-compact .jp-social { min-height: 44px; padding: 8px 11px; font-size: 11px; }
.jp-socials.is-compact .jp-social-icon { width: 17px; height: 17px; flex-basis: 17px; }

/* Cultural feature */
.jp-culture-banner { min-height: 760px; display: grid; grid-template-columns: 1.25fr .75fr; background: var(--jp-ink); color: white; }
.jp-culture-image { min-height: 680px; clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%); overflow: hidden; }
.jp-culture-image img { width: 100%; height: 100%; object-fit: cover; }
.jp-culture-copy { align-self: center; max-width: 560px; padding: clamp(50px, 7vw, 105px) clamp(36px, 6vw, 100px) clamp(50px, 7vw, 105px) clamp(25px, 4vw, 64px); }
.jp-culture-copy .jp-eyebrow::before { color: var(--jp-lime); }
.jp-culture-copy h2 { margin-bottom: 28px; font-size: clamp(54px, 6vw, 96px); }
.jp-culture-copy h2 em { color: var(--jp-lime); }
.jp-culture-copy > p:not(.jp-eyebrow) { margin-bottom: 34px; color: rgba(255,255,255,.7); font-size: 18px; }

/* Agenda */
.jp-agenda { background: var(--jp-sun); }
.jp-agenda .jp-section-head h2 em { color: var(--jp-ink); }
.jp-agenda-head { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); gap: clamp(40px,7vw,112px); align-items: end; margin-bottom: clamp(62px,7vw,104px); }
.jp-agenda-heading { padding-bottom: clamp(10px,2vw,32px); }
.jp-agenda-heading .jp-eyebrow { margin-bottom: 34px; }
.jp-agenda-heading h2 { max-width: 760px; margin: 0; font-size: clamp(64px,7.5vw,116px); }
.jp-agenda-heading h2 em { color: var(--jp-ink); }
.jp-agenda-photo { position: relative; height: clamp(380px,38vw,520px); margin: 0; overflow: hidden; background: var(--jp-leaf); clip-path: polygon(0 0,100% 7%,94% 100%,0 92%); }
.jp-agenda-photo::after { content: ""; position: absolute; inset: 40% 0 0; background: linear-gradient(0deg,rgba(7,24,17,.78),transparent); pointer-events: none; }
.jp-agenda-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 43%; }
.jp-agenda-photo figcaption { position: absolute; z-index: 1; left: clamp(24px,3vw,42px); right: clamp(32px,4vw,58px); bottom: clamp(34px,4vw,54px); color: white; }
.jp-agenda-photo figcaption span { display: block; margin-bottom: 6px; font-size: 10px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.jp-agenda-photo figcaption strong { display: block; font-family: var(--jp-display); font-size: clamp(30px,3.2vw,48px); font-weight: 500; line-height: .95; }
.jp-event-list { border-top: 1px solid rgba(16,37,27,.45); }
.jp-event-card { display: grid; grid-template-columns: 145px 1fr 70px; gap: 30px; align-items: center; min-height: 170px; padding-block: 22px; border-bottom: 1px solid rgba(16,37,27,.35); transition: background .25s ease, padding .25s ease; }
.jp-event-card:hover { padding-inline: 20px; background: rgba(255,255,255,.16); }
.jp-event-date { display: flex; flex-direction: column; align-items: flex-start; border-right: 1px solid rgba(16,37,27,.35); }
.jp-event-date time { display: flex; flex-direction: column; align-items: flex-start; }
.jp-event-date strong { font-family: var(--jp-display); font-size: 76px; line-height: .8; letter-spacing: -.06em; }
.jp-event-date span { margin-top: 10px; font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.jp-event-copy > p:first-child { margin-bottom: 7px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.jp-event-copy h3 { margin-bottom: 10px; font-size: clamp(28px, 3.2vw, 47px); }
.jp-event-copy > p:last-child { max-width: 670px; margin-bottom: 0; color: rgba(16,37,27,.7); }
.jp-event-arrow { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid var(--jp-ink); border-radius: 50%; font-size: 22px; transition: transform .2s ease, background .2s ease, color .2s ease; }
.jp-event-arrow:hover { background: var(--jp-ink); color: var(--jp-sun); transform: rotate(12deg); }
.jp-empty-event { display: grid; grid-template-columns: 130px 1fr auto; gap: 30px; align-items: center; padding: 42px 0; border-bottom: 1px solid rgba(16,37,27,.4); }
.jp-empty-symbol { display: grid; place-items: center; width: 92px; aspect-ratio: 1; border: 1px dashed var(--jp-ink); border-radius: 50%; font-size: 35px; }
.jp-empty-event h3 { margin-bottom: 8px; font-size: clamp(30px, 3.5vw, 52px); }
.jp-empty-event p:last-child { margin: 0; }

/* Gallery */
.jp-gallery { background: var(--jp-ink-2); color: white; }
.jp-gallery-head { display: grid; grid-template-columns: 1fr 2fr auto; gap: 34px; align-items: end; margin-bottom: 50px; }
.jp-gallery-head h2 { margin: 0; font-size: clamp(45px, 5.7vw, 86px); }
.jp-gallery-head h2 em { color: var(--jp-lime); }
.jp-gallery-head > p:last-child { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.jp-gallery-grid { display: grid; grid-template-columns: 1.2fr .7fr 1fr; grid-template-rows: minmax(250px, 34vw) minmax(220px, 25vw); gap: 12px; }
.jp-gallery-item { position: relative; min-width: 0; min-height: 0; padding: 0; border: 0; border-radius: 3px; background: var(--jp-leaf); cursor: zoom-in; overflow: hidden; }
.jp-gallery-item--wide { grid-column: span 2; }
.jp-gallery-item--tall { grid-row: span 2; }
.jp-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1), filter .3s ease; }
.jp-gallery-item:hover img { transform: scale(1.035); filter: saturate(1.08); }
.jp-gallery-item span { position: absolute; left: 12px; bottom: 12px; padding: 7px 10px; background: var(--jp-paper); color: var(--jp-ink); font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.jp-lightbox { width: min(1100px, 92vw); max-height: 92vh; padding: 0; border: 0; background: transparent; overflow: visible; }
.jp-lightbox::backdrop { background: rgba(5,17,12,.88); backdrop-filter: blur(8px); }
.jp-lightbox img { width: 100%; max-height: 88vh; object-fit: contain; }
.jp-lightbox button { position: absolute; z-index: 2; right: 12px; top: 12px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.85); border-radius: 50%; background: rgba(9,26,19,.88); color: white; font-size: 28px; cursor: pointer; }

/* News */
.jp-news { background: var(--jp-paper); }
.jp-news-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.jp-news-grid.jp-count-1 { grid-template-columns: minmax(0, 560px); }
.jp-news-grid.jp-count-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.jp-news-card { min-width: 0; }
.jp-news-image { display: block; aspect-ratio: 16/11; overflow: hidden; background: var(--jp-leaf); }
.jp-news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.jp-news-card:hover .jp-news-image img { transform: scale(1.04); }
.jp-news-copy { padding: 25px 0; }
.jp-news-meta { margin-bottom: 14px; color: var(--jp-coral-text); }
.jp-news-copy h3 { margin-bottom: 12px; font-size: clamp(28px, 2.8vw, 42px); }
.jp-news-copy > p:not(.jp-news-meta) { color: rgba(16,37,27,.65); }

/* Location */
.jp-location { position: relative; padding-block: var(--jp-pad); background: var(--jp-coral); color: var(--jp-ink); overflow: hidden; }
.jp-location-art { position: absolute; inset: 0; display: flex; justify-content: space-between; align-items: center; color: rgba(16,37,27,.07); font-family: var(--jp-display); pointer-events: none; }
.jp-location-art strong { font-size: 38vw; line-height: .7; letter-spacing: -.12em; }
.jp-location-art span { writing-mode: vertical-rl; font-size: 8vw; }
.jp-location-inner { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; align-items: center; }
.jp-location-copy h2 { margin-bottom: 28px; font-size: clamp(54px, 6.6vw, 104px); }
.jp-location-copy h2 em { color: var(--jp-paper); }
.jp-location-copy > p:not(.jp-eyebrow) { margin-bottom: 30px; font-size: 19px; }
.jp-location-card { position: relative; padding: 10px; background: var(--jp-paper); transform: rotate(2deg); box-shadow: 0 35px 80px rgba(88,31,18,.25); }
.jp-location-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.jp-location-card span { position: absolute; right: 24px; bottom: 24px; padding: 8px 11px; background: var(--jp-ink); color: white; font-size: 10px; letter-spacing: .12em; }

/* Interior pages */
.jp-page-hero { position: relative; min-height: 680px; padding: 190px 0 100px; display: flex; align-items: flex-end; background: var(--jp-ink); color: white; overflow: hidden; }
.jp-page-hero .jp-container { position: relative; z-index: 2; }
.jp-page-hero h1 { max-width: 1020px; margin-bottom: 25px; font-size: clamp(68px, 9vw, 145px); line-height: .86; }
.jp-page-hero h1 em { color: var(--jp-lime); }
.jp-page-hero .jp-container > p:last-child { max-width: 620px; margin: 0; color: rgba(255,255,255,.68); font-size: 19px; }
.jp-page-hero--makers { position: relative; background: linear-gradient(90deg, rgba(11,32,24,.95), rgba(11,32,24,.38)), url("joao-petini-feirantes-hamburguer.jpg?ver=1.3.0") center/cover; }
.jp-page-hero--agenda { background: var(--jp-blue); }
.jp-page-hero--agenda::after { content: "✦"; position: absolute; right: -4vw; top: 70px; color: rgba(255,255,255,.1); font-size: 45vw; line-height: 1; pointer-events: none; }
.jp-page-hero--agenda .jp-container > p:last-child { color: rgba(255,255,255,.95); }
.jp-page-hero--news { background: var(--jp-coral); color: var(--jp-ink); }
.jp-page-hero--news h1 em { color: var(--jp-paper); }
.jp-page-hero--news .jp-container > p:last-child { color: var(--jp-ink); }
.jp-page-hero--about { position: relative; background: linear-gradient(90deg, rgba(11,32,24,.88), rgba(11,32,24,.2)), url("joao-petini-danca.jpg?ver=1.3.0") center/cover; }
.jp-page-hero--contact { background: var(--jp-lime); color: var(--jp-ink); }
.jp-page-hero--contact h1 em { color: var(--jp-coral-text); }
.jp-page-hero--contact .jp-container > p:last-child { color: rgba(16,37,27,.7); }
.jp-directory { background: var(--jp-cream); }
.jp-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 60px; }
.jp-filters a { display: inline-flex; align-items: center; min-height: 46px; padding: 10px 18px; border: 1px solid var(--jp-line); border-radius: 999px; background: var(--jp-paper); font-size: 13px; font-weight: 600; }
.jp-filters a.is-active, .jp-filters a:hover { background: var(--jp-ink); color: white; }
.jp-maker-grid--directory { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; }
.jp-maker-grid--directory .jp-maker-card:nth-child(even) { transform: none; }

/* About/contact/profile/article */
.jp-story { background: var(--jp-paper); overflow: hidden; }
.jp-story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.jp-story-copy { font-size: clamp(18px, 1.6vw, 23px); line-height: 1.65; }
.jp-story-copy p { margin-bottom: 28px; }
.jp-dropcap::first-letter { float: left; margin: .08em .11em 0 0; color: var(--jp-coral); font-family: var(--jp-display); font-size: 6.2em; line-height: .66; }
.jp-story-photo { margin: 0; padding: 10px; background: var(--jp-cream); transform: rotate(1.5deg); }
.jp-story-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.jp-story-photo figcaption { padding: 12px 6px 3px; font-size: 12px; font-style: italic; }
.jp-values { padding-block: 80px; background: var(--jp-lime); }
.jp-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 50px; }
.jp-values-grid > div { border-top: 1px solid var(--jp-ink); padding-top: 22px; }
.jp-values span { font-size: 12px; font-weight: 700; }
.jp-values h3 { margin: 30px 0 12px; font-size: 38px; }
.jp-values p { margin: 0; }
.jp-contact-section { background: var(--jp-paper); }
.jp-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.jp-contact-card, .jp-contact-note { min-height: 460px; padding: clamp(34px,5vw,72px); border-radius: 36px 36px 8px 36px; }
.jp-contact-card { background: var(--jp-ink); color: white; }
.jp-contact-note { background: var(--jp-sun); }
.jp-contact-card h2, .jp-contact-note h2 { margin-bottom: 25px; font-size: clamp(45px,5vw,72px); }
.jp-contact-note > span { display: grid; place-items: center; width: 70px; height: 70px; margin-bottom: 50px; border: 1px dashed var(--jp-ink); border-radius: 50%; font-size: 28px; }
.jp-profile { min-height: 100vh; padding: 170px 0 100px; background: var(--jp-paper); }
.jp-profile-hero { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; align-items: center; }
.jp-back { display: inline-block; margin-bottom: 60px; font-size: 13px; font-weight: 600; }
.jp-profile-copy h1 { margin-bottom: 30px; font-size: clamp(60px,8vw,125px); }
.jp-profile-text { max-width: 620px; color: rgba(16,37,27,.74); font-size: 20px; }
.jp-profile-image { width: 100%; max-width: 608px; margin: 0; padding: 10px; justify-self: center; background: var(--jp-cream); transform: rotate(1.5deg); }
.jp-profile-image img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
.jp-profile-image .jp-image-placeholder { width: 100%; height: auto; min-height: 0; aspect-ratio: 4/5; }
.jp-article { background: var(--jp-paper); }
.jp-article-head { padding: 180px 0 75px; background: var(--jp-ink); color: white; }
.jp-article-head .jp-container { max-width: 1080px; }
.jp-article-head h1 { max-width: 1000px; margin-bottom: 20px; font-size: clamp(55px,7.5vw,112px); }
.jp-article-event-meta { color: var(--jp-lime); font-size: 16px; }
.jp-article-cover { width: min(1180px, calc(100% - 32px)); margin: -32px auto 0; padding: 10px; background: var(--jp-paper); }
.jp-article-cover img { width: 100%; max-height: 740px; object-fit: cover; }
.jp-article-body { max-width: 800px; padding-block: 85px 120px; font-size: 19px; line-height: 1.75; }
.jp-article-body p { margin-bottom: 1.5em; }
.jp-article-body h2, .jp-article-body h3 { margin-top: 1.6em; }
body.jp-site .jp-article-body :where(a), body.jp-site .jp-profile-text :where(a), body.jp-site .jp-story-copy :where(a) { color: var(--jp-leaf); text-decoration: underline; text-decoration-thickness: .08em; text-underline-offset: .18em; }
.jp-article-body :where(ul, ol), .jp-profile-text :where(ul, ol) { padding-left: 1.35em; }
.jp-article-body :where(img, video, iframe, embed), .jp-profile-text :where(img, video, iframe, embed) { max-width: 100%; height: auto; }
.jp-article-body :where(iframe), .jp-profile-text :where(iframe) { width: 100%; aspect-ratio: 16/9; }
.jp-article-body :where(blockquote), .jp-profile-text :where(blockquote) { margin: 2em 0; padding: .4em 0 .4em 1.25em; border-left: 4px solid var(--jp-coral); font-family: var(--jp-display); font-size: 1.25em; }
.jp-article-body :where(pre), .jp-profile-text :where(pre) { max-width: 100%; padding: 20px; overflow-x: auto; border-radius: 12px; background: var(--jp-ink); color: var(--jp-paper); }
.jp-article-body :where(table), .jp-profile-text :where(table) { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; }
.jp-article-body :where(th, td), .jp-profile-text :where(th, td) { padding: 10px 12px; border: 1px solid var(--jp-line); }
.jp-article-body :where(figcaption), .jp-profile-text :where(figcaption) { margin-top: 8px; color: rgba(16,37,27,.65); font-size: 13px; }
.jp-protected-content { padding-block: 70px; }
.jp-protected-content h1 { font-size: clamp(48px,7vw,92px); }
.jp-protected-content input[type="password"] { min-height: 48px; padding: 10px 13px; border: 1px solid var(--jp-line); border-radius: 8px; }
.jp-protected-content input[type="submit"] { min-height: 48px; padding: 10px 18px; border: 0; border-radius: 999px; background: var(--jp-ink); color: var(--jp-paper); font-weight: 700; cursor: pointer; }
.jp-past-events { margin-top: clamp(70px,9vw,130px); }
.jp-past-events > h2 { max-width: 780px; margin-bottom: 36px; font-size: clamp(42px,5vw,72px); }
.jp-past-events > p { max-width: 620px; margin: -18px 0 36px; color: rgba(16,37,27,.72); }
.jp-undated-events { padding-top: 42px; border-top: 1px solid var(--jp-line); }
.jp-pagination { margin-top: 60px; }
.jp-pagination ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; list-style: none; }
.jp-pagination a, .jp-pagination span { display: grid; place-items: center; min-width: 44px; min-height: 44px; padding: 8px 13px; border: 1px solid var(--jp-line); border-radius: 999px; }
.jp-pagination .current, .jp-pagination a:hover { background: var(--jp-ink); color: var(--jp-paper); }
.jp-empty-copy { grid-column: 1/-1; max-width: 760px; padding: 50px 0; }
.jp-empty-copy h3 { font-size: clamp(38px,5vw,68px); }
.jp-policy-contact { margin-top: 54px; padding-top: 42px; border-top: 1px solid var(--jp-line); }
.jp-policy-contact .jp-socials { margin-top: 24px; }

/* Search and 404 */
.jp-page-hero--search { background: var(--jp-lime); color: var(--jp-ink); }
.jp-page-hero--search h1 em { color: var(--jp-ink); text-decoration: underline; text-decoration-color: var(--jp-coral); text-decoration-thickness: .06em; text-underline-offset: .08em; }
.jp-page-hero--search .jp-container > p:last-child { color: rgba(16,37,27,.76); }
.jp-search-section { background: var(--jp-paper); }
.jp-search-form { max-width: 800px; margin-bottom: clamp(65px,8vw,110px); }
.jp-search-form > label { display: block; margin-bottom: 12px; font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.jp-search-form > div { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 12px; }
.jp-search-form input { width: 100%; min-height: 58px; padding: 14px 18px; border: 1px solid var(--jp-line); border-radius: 999px; background: white; color: var(--jp-ink); font: inherit; }
.jp-search-results { display: grid; gap: 0; }
.jp-search-results article { padding: 38px 0; border-top: 1px solid var(--jp-line); }
.jp-search-results article:last-child { border-bottom: 1px solid var(--jp-line); }
.jp-search-results h2 { max-width: 880px; margin: 8px 0 12px; font-size: clamp(34px,4.5vw,62px); }
.jp-search-results article > p:not(.jp-eyebrow) { max-width: 720px; }
.jp-not-found { min-height: 100svh; padding: clamp(160px,18vh,240px) 0 110px; background: var(--jp-ink); color: var(--jp-paper); overflow: hidden; }
.jp-not-found .jp-container { position: relative; }
.jp-not-found-code { position: absolute; right: 0; top: -90px; margin: 0; color: rgba(210,231,90,.12); font-family: var(--jp-display); font-size: clamp(180px,28vw,430px); line-height: .7; pointer-events: none; }
.jp-not-found h1 { position: relative; max-width: 980px; margin: 24px 0; font-size: clamp(58px,8vw,120px); }
.jp-not-found h1 em { color: var(--jp-lime); }
.jp-not-found > .jp-container > p:not(.jp-eyebrow,.jp-not-found-code) { position: relative; max-width: 540px; color: rgba(255,255,255,.72); }
.jp-not-found-actions { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 38px; }
.jp-not-found .jp-text-link { color: white; }

/* Sponsors */
.jp-sponsors { position: relative; padding: clamp(78px,10vw,145px) 0; border-top: 1px solid var(--jp-line); background: var(--jp-paper); overflow: hidden; }
.jp-sponsors::before { content: ""; position: absolute; left: -9vw; bottom: -19vw; width: 36vw; min-width: 330px; aspect-ratio: 1; border: 1px dashed rgba(16,37,27,.2); border-radius: 50%; pointer-events: none; }
.jp-sponsors-head { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px,7vw,110px); align-items: end; margin-bottom: clamp(46px,7vw,90px); }
.jp-sponsors-head h2 { margin: 14px 0 0; font-size: clamp(54px,7vw,108px); line-height: .86; }
.jp-sponsors-head h2 em { color: var(--jp-coral-text); }
.jp-sponsors-head > p { max-width: 520px; margin: 0 0 8px; color: rgba(16,37,27,.7); font-size: clamp(17px,1.6vw,21px); line-height: 1.55; }
.jp-sponsor-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,260px)); justify-content: center; gap: 18px; }
.jp-sponsor-card { position: relative; display: flex; min-height: 210px; padding: 24px; flex-direction: column; justify-content: flex-end; border: 1px solid var(--jp-line); border-radius: 26px 26px 7px 26px; background: white; color: var(--jp-ink); box-shadow: 0 14px 36px rgba(16,37,27,.06); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
a.jp-sponsor-card:hover { transform: translateY(-6px); border-color: rgba(16,37,27,.5); box-shadow: 0 24px 52px rgba(16,37,27,.13); }
.jp-sponsor-logo { display: grid; place-items: center; min-height: 92px; margin-bottom: auto; padding-bottom: 20px; }
.jp-sponsor-logo img { width: auto; max-width: 100%; height: auto; max-height: 86px; object-fit: contain; }
.jp-sponsor-level { margin-bottom: 7px; color: var(--jp-coral-text); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.jp-sponsor-card strong { padding-right: 28px; font-family: var(--jp-display); font-size: 22px; line-height: 1.05; }
.jp-sponsor-arrow { position: absolute; right: 22px; bottom: 22px; display: grid; place-items: center; width: 27px; height: 27px; border-radius: 50%; background: var(--jp-lime); font-size: 12px; }

/* Footer */
.jp-footer { position: relative; padding-top: 110px; background: #091a13; color: white; overflow: hidden; }
.jp-footer-sun { position: absolute; right: -14vw; top: -18vw; width: 48vw; aspect-ratio: 1; border-radius: 50%; background: var(--jp-sun); opacity: .95; }
.jp-footer-sun::after { content: ""; position: absolute; inset: 9%; border: 1px dashed rgba(16,37,27,.5); border-radius: 50%; }
.jp-footer-grid { position: relative; display: grid; grid-template-columns: 1.7fr .6fr .7fr; gap: 7vw; padding-bottom: 90px; }
.jp-footer-title > p { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.jp-footer-title h2 { margin: 0; font-size: clamp(70px,9vw,140px); }
.jp-footer-title h2 em { color: var(--jp-lime); }
.jp-footer-nav, .jp-footer-place { padding-top: 20px; }
.jp-footer-nav .jp-eyebrow, .jp-footer-place .jp-eyebrow { color: rgba(255,255,255,.48); }
.jp-footer-nav > a { display: block; width: fit-content; margin-bottom: 12px; font-size: 15px; }
.jp-footer-place p:not(.jp-eyebrow) { color: rgba(255,255,255,.65); }
.jp-footer-place > a { border-bottom: 1px solid rgba(255,255,255,.5); font-size: 13px; }
.jp-footer-bottom { position: relative; display: flex; justify-content: space-between; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.66); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }

@media (min-width: 821px) {
  .jp-footer-place { color: var(--jp-ink); }
  .jp-footer-place .jp-eyebrow, .jp-footer-place p:not(.jp-eyebrow) { color: rgba(16,37,27,.78); }
  .jp-footer-place > a { border-bottom-color: rgba(16,37,27,.6); color: var(--jp-ink); }
  .jp-footer-place .jp-social { border-color: rgba(16,37,27,.45); color: var(--jp-ink); }
}

/* Motion */
.jp-enhanced .jp-reveal { opacity: 0; translate: 0 24px; transition: opacity .75s cubic-bezier(.22,1,.36,1), translate .75s cubic-bezier(.22,1,.36,1); transition-delay: var(--delay, 0ms); }
.jp-enhanced .jp-reveal.is-visible { opacity: 1; translate: 0 0; }

@media (max-width: 1050px) {
  .jp-menu { gap: 17px; }
  .jp-maker-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
  .jp-maker-grid.jp-count-3, .jp-maker-grid.jp-count-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .jp-maker-card:nth-child(even) { transform: none; }
  .jp-culture-banner { grid-template-columns: 1fr 1fr; }
  .jp-location-inner { grid-template-columns: 1fr 1fr; gap: 45px; }
  .jp-footer-grid { grid-template-columns: 1.3fr .7fr .8fr; gap: 40px; }
}

@media (max-width: 820px) {
  :root { --jp-wrap: calc(100% - 36px); --jp-pad: 78px; }
  .admin-bar .jp-header, .admin-bar .jp-header.is-scrolled { top: 52px; }
  .jp-header { top: 10px; min-height: 66px; padding: 8px 10px 8px 12px; background: #0c211a; backdrop-filter: none; }
  .jp-brand-mark { width: 44px; height: 44px; flex-basis: 44px; }
  .jp-menu-toggle { display: block; position: relative; z-index: 3; }
  .jp-menu { position: fixed; inset: 0; min-height: 100svh; max-height: 100dvh; padding: 125px max(34px,env(safe-area-inset-right)) max(45px,env(safe-area-inset-bottom)) max(34px,env(safe-area-inset-left)); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 16px; border-radius: 0; background: var(--jp-ink); overflow-y: auto; overscroll-behavior: contain; transform: translateY(-110%); visibility: hidden; transition: transform .4s cubic-bezier(.22,1,.36,1), visibility .4s; }
  .jp-menu.is-open { transform: none; visibility: visible; }
  .jp-menu > a { font-family: var(--jp-display); font-size: 40px; line-height: 1.08; }
  .jp-menu .jp-menu-cta { margin-top: 20px; font-family: var(--jp-sans); font-size: 15px; }
  .jp-menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .jp-menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .jp-hero { min-height: 780px; }
  .jp-hero-photo { object-position: 57% center; }
  .jp-hero-shade { background: linear-gradient(0deg, rgba(8,27,20,.95) 0%, rgba(8,27,20,.58) 62%, rgba(8,27,20,.35)); }
  .jp-hero-inner { padding-top: 150px; padding-bottom: 64px; }
  .jp-hero h1 { font-size: clamp(58px,15vw,92px); line-height: .87; }
  .jp-hero-stamp { right: 22px; top: 130px; width: 110px; }
  .jp-scroll-cue { display: none; }
  .jp-section-head { display: block; }
  .jp-section-head .jp-eyebrow { margin-bottom: 24px; }
  .jp-section-copy { max-width: 620px; }
  .jp-intro-grid, .jp-story-grid, .jp-profile-hero { grid-template-columns: 1fr; }
  .jp-intro-collage { min-height: 620px; }
  .jp-culture-banner { grid-template-columns: 1fr; }
  .jp-culture-image { min-height: 530px; clip-path: polygon(0 0,100% 0,100% 93%,0 100%); }
  .jp-culture-copy { padding: 60px 18px; max-width: none; }
  .jp-agenda-head { grid-template-columns: 1fr; gap: 38px; }
  .jp-agenda-heading { grid-row: 1; padding-bottom: 0; }
  .jp-agenda-photo { grid-row: 2; height: min(520px,70vw); }
  .jp-event-card { grid-template-columns: 105px 1fr 54px; gap: 18px; }
  .jp-event-date strong { font-size: 58px; }
  .jp-gallery-head { display: block; }
  .jp-gallery-head .jp-eyebrow { margin-bottom: 18px; }
  .jp-gallery-head > p:last-child { margin-top: 18px; }
  .jp-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 260px 280px; }
  .jp-gallery-item--wide { grid-column: span 2; }
  .jp-gallery-item--tall { grid-row: span 2; }
  .jp-news-grid { grid-template-columns: 1fr 1fr; }
  .jp-location-inner { grid-template-columns: 1fr; }
  .jp-location-card { margin-top: 30px; }
  .jp-maker-grid--directory { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .jp-page-hero { min-height: 630px; padding-top: 170px; }
  .jp-page-hero h1 { font-size: clamp(62px,14vw,105px); }
  .jp-values-grid { grid-template-columns: 1fr; gap: 40px; }
  .jp-contact-grid { grid-template-columns: 1fr; }
  .jp-profile-copy { grid-row: 1; }
  .jp-profile-image { grid-row: 2; }
  .jp-back { margin-bottom: 36px; }
  .jp-sponsors-head { grid-template-columns: 1fr; }
  .jp-sponsors-head > p { max-width: 650px; }
  .jp-footer-grid { grid-template-columns: 1fr 1fr; }
  .jp-footer-title { grid-column: span 2; }
}

@media (max-width: 560px) {
  :root { --jp-wrap: calc(100% - 28px); --jp-pad: 66px; }
  body.jp-site { font-size: 16px; }
  .jp-brand-name { display: none; }
  .jp-header { width: calc(100% - 20px); }
  .jp-hero { min-height: 760px; }
  .jp-hero h1 { font-size: clamp(54px,17vw,78px); }
  .jp-hero-footer { align-items: flex-start; flex-direction: column; gap: 22px; }
  .jp-hero-stamp { top: 112px; width: 96px; }
  .jp-intro-copy h2, .jp-section-head h2 { font-size: clamp(47px,14vw,70px); }
  .jp-intro-collage { min-height: 510px; }
  .jp-photo--a { inset: 0 4% 18% 0; }
  .jp-photo--b { width: 43%; height: 42%; }
  .jp-collage-note { width: 90px; font-size: 14px; }
  .jp-maker-grid, .jp-maker-grid--directory { display: flex; gap: 14px; width: calc(100% + 14px); margin-right: -14px; padding-right: 30px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .jp-maker-grid::-webkit-scrollbar { display: none; }
  .jp-maker-card { flex: 0 0 min(82vw, 330px); scroll-snap-align: start; }
  .jp-maker-body > p:not(.jp-maker-kind) { min-height: 0; }
  .jp-culture-image { min-height: 420px; }
  .jp-culture-copy { padding: 58px 20px 72px; }
  .jp-culture-copy h2 { font-size: 54px; }
  .jp-agenda-head { gap: 28px; margin-bottom: 48px; }
  .jp-agenda-heading .jp-eyebrow { margin-bottom: 22px; }
  .jp-agenda-heading h2 { font-size: clamp(49px,15vw,68px); }
  .jp-agenda-photo { height: 330px; clip-path: polygon(0 0,100% 5%,95% 100%,0 94%); }
  .jp-agenda-photo figcaption { left: 22px; right: 32px; bottom: 32px; }
  .jp-event-card { grid-template-columns: 82px 1fr; min-height: 160px; }
  .jp-event-arrow { display: none; }
  .jp-event-date strong { font-size: 49px; }
  .jp-event-copy h3 { font-size: 29px; }
  .jp-empty-event { grid-template-columns: 72px 1fr; gap: 14px; }
  .jp-empty-symbol { width: 60px; }
  .jp-empty-event .jp-text-link { grid-column: 2; width: fit-content; }
  .jp-gallery-grid { grid-template-columns: 1fr; grid-template-rows: 280px 390px 260px 260px; }
  .jp-gallery-item--wide { grid-column: auto; }
  .jp-gallery-item--tall { grid-row: auto; }
  .jp-news-grid { grid-template-columns: 1fr; }
  .jp-news-grid.jp-count-1, .jp-news-grid.jp-count-2 { grid-template-columns: 1fr; }
  .jp-location-copy h2 { font-size: 54px; }
  .jp-page-hero { min-height: 590px; padding: 150px 0 65px; }
  .jp-page-hero h1 { font-size: clamp(54px,17vw,78px); }
  .jp-filters { flex-wrap: nowrap; width: calc(100% + 14px); margin-right: -14px; padding-right: 20px; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .jp-filters a { white-space: nowrap; }
  .jp-story-copy { font-size: 17px; }
  .jp-contact-card, .jp-contact-note { min-height: 400px; padding: 34px 26px; }
  .jp-profile { padding-top: 120px; }
  .jp-profile-copy h1 { font-size: 58px; }
  .jp-article-head { padding-top: 150px; }
  .jp-article-head h1 { font-size: 54px; }
  .jp-article-body { padding-block: 55px 80px; font-size: 17px; }
  .jp-search-form > div { grid-template-columns: 1fr; }
  .jp-search-form .jp-button { width: 100%; }
  .jp-not-found { padding-top: 145px; }
  .jp-not-found-code { top: -30px; right: -24px; }
  .jp-not-found h1 { font-size: clamp(44px,14.5vw,60px); }
  .jp-sponsors { padding-block: 72px; }
  .jp-sponsors-head h2 { font-size: clamp(50px,15vw,70px); }
  .jp-sponsor-grid { grid-template-columns: 1fr; }
  .jp-sponsor-card { min-height: 190px; }
  .jp-footer { padding-top: 75px; }
  .jp-footer-sun { width: 76vw; top: -20vw; right: -26vw; }
  .jp-footer-grid { grid-template-columns: 1fr; }
  .jp-footer-title { grid-column: auto; }
  .jp-footer-title h2 { font-size: 76px; }
  .jp-footer-bottom { flex-direction: column; gap: 8px; }
}

@media (hover: none), (pointer: coarse) {
  .jp-socials.is-compact .jp-social { min-height: 44px; padding: 8px 12px; font-size: 12px; }
}

@media (max-width: 820px) and (max-height: 520px) and (orientation: landscape) {
  .jp-header { top: 6px; min-height: 56px; padding-block: 5px; }
  .jp-brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
  .jp-menu { padding: 76px 30px 22px; gap: 9px; }
  .admin-bar .jp-menu { padding-top: 122px; }
  .jp-menu > a { font-size: 30px; }
  .jp-menu .jp-menu-cta { margin-top: 6px; }
}

@media (max-width: 1024px) and (max-height: 520px) and (orientation: landscape) {
  .jp-hero { min-height: 100svh; min-height: 100dvh; }
  .jp-hero-inner { padding-top: 78px; padding-bottom: 14px; }
  .jp-hero-kicker { display: none; }
  .jp-hero h1 { margin-bottom: 12px; font-size: clamp(42px, 8.5vw, 58px); line-height: .8; }
  .jp-hero-footer > p, .jp-hero-stamp { display: none; }
  .jp-hero .jp-button { min-height: 42px; padding-block: 7px; }
  .jp-page-hero { min-height: 100svh; min-height: 100dvh; padding: 90px 0 48px; }
  .jp-page-hero h1 { margin-bottom: 12px; font-size: clamp(42px, 8.5vw, 62px); line-height: .84; }
  .jp-page-hero .jp-container > p:last-child { font-size: 15px; line-height: 1.4; }
  .jp-profile { padding: 95px 0 60px; }
  .jp-article-head { padding: 100px 0 42px; }
  .jp-article-head h1 { font-size: clamp(40px, 8vw, 58px); }
  .jp-not-found { padding: 100px 0 52px; }
  .jp-not-found h1 { font-size: clamp(40px, 8.5vw, 60px); }
  .admin-bar .jp-hero-inner { padding-top: 126px; }
  .admin-bar .jp-page-hero { padding-top: 138px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.jp-site *, body.jp-site *::before, body.jp-site *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; scroll-behavior: auto!important; }
  .jp-ticker-track { animation: none!important; }
  .jp-enhanced .jp-reveal { opacity: 1; translate: none; }
}
